Python Folium Relearning(3) from May 2025(続き:国土数値情報と総務省e-Statを活用した都道府県別Choropleth Mapの描画)

 前回(https://shikuuk.blogspot.com/2025/05/pythongisfoliumfolium-in-python.html)は全国の自治体の行政区域の境界をFoliumで描画しようとして、データ量が大きすぎたため描画できないというところで終わってしまいました。

ということで、全国はあきらめて、関東地方とその周辺の都道府県にFocusしてFoliumでChoroplethMapを作成しなおすことにしました。

RepeatになるPartもありますが、ようやくChoroplethMapまでたどり着くことができましたので、一連の流れをRemainとしてmemorandumします。

まずは、国土数値情報から行政区域のGIS情報をRequestしてGetします。

import urllib.request
import zipfile
import geopandas as gpd

def download_map_data(url, zip_file_name, shp_file_name):
    zip_file_path = 'unzipped_data/' + zip_file_name

# URLからデータをダウンロード
    urllib.request.urlretrieve(url, zip_file_name)

# ZIPファイルを解凍
    with zipfile.ZipFile(zip_file_name, 'r') as zip_ref:
        zip_ref.extractall('unzipped_data')  # 解凍先のディレクトリを指定

# Shapefileを読み込む
#shapefile_path = 'unzipped_data/W05-06_36-g_Stream.shp'
    shp_file_path = 'unzipped_data/' + shp_file_name
    gdf = gpd.read_file(shp_file_path)

    return gdf

# ダウンロードとデータ読み込みのループ
url = 'http://nlftp.mlit.go.jp/ksj/gml/data/N03/N03-2024/N03-20240101_GML.zip'
zip_file_name = 'N03-20240101_GML.zip'
shp_file_name = 'N03-20240101.shp'

# データをダウンロードして読み込む
gdf = download_map_data(url, zip_file_name, shp_file_name)

# データを表示
gdf

OutputはBelowです。

N03_001N03_002N03_003N03_004N03_005N03_007geometry
0北海道石狩振興局None札幌市中央区01101POLYGON ((141.25694 42.99782, 141.2563 42.9978...
1北海道石狩振興局None札幌市北区01102POLYGON ((141.33325 43.07505, 141.3326 43.0757...
2北海道石狩振興局None札幌市東区01103POLYGON ((141.37341 43.0684, 141.37333 43.0684...
3北海道石狩振興局None札幌市白石区01104POLYGON ((141.38202 43.04832, 141.38193 43.048...
4北海道石狩振興局None札幌市豊平区01105POLYGON ((141.36371 42.94154, 141.36378 42.941...
........................
124128沖縄県None八重山郡与那国町None47382POLYGON ((122.93299 24.4517, 122.93299 24.4517...
124129沖縄県None八重山郡与那国町None47382POLYGON ((122.93396 24.4482, 122.93396 24.4482...
124130沖縄県None八重山郡与那国町None47382POLYGON ((122.94213 24.44395, 122.94214 24.443...
124131沖縄県None八重山郡与那国町None47382POLYGON ((122.99876 24.43985, 122.99875 24.439...
124132沖縄県None八重山郡与那国町None47382POLYGON ((122.93308 24.45176, 122.93308 24.451...

124133 rows × 7 columns

こちらも繰り返しになりますが、42種類の識別しやすい色分けを設定するコードです。CodeとOutputを順番にDiscriptします。

>Code<

pip install --upgrade distinctipy

>Output<

Collecting distinctipy Downloading distinctipy-1.3.4-py3-none-any.whl.metadata (7.7 kB) Requirement already satisfied: numpy>=1.16.3 in /usr/local/lib/python3.11/dist-packages (from distinctipy) (2.0.2) Downloading distinctipy-1.3.4-py3-none-any.whl (26 kB) Installing collected packages: distinctipy Successfully installed distinctipy-1.3.4

>Code<

import distinctipy

# 生成したい色の数
num_colors = 47

# 視覚的に区別しやすい色をN個生成 (RGB値のタプルで返される)
# return_hex 引数を削除
colors_rgb_float = distinctipy.get_colors(num_colors)

# RGB (0.0-1.0) を16進数カラーコードに変換する関数
def rgb_to_hex(rgb_float_tuple):
    r_int = int(rgb_float_tuple[0] * 255)
    g_int = int(rgb_float_tuple[1] * 255)
    b_int = int(rgb_float_tuple[2] * 255)
    return f"#{r_int:02x}{g_int:02x}{b_int:02x}"

colors_hex = [rgb_to_hex(c) for c in colors_rgb_float]

print(f"{num_colors}個の識別しやすいカラーコード:")
for i, hex_color in enumerate(colors_hex):
    print(f"Color {i+1}: {hex_color}")

# (オプション) 生成された色を視覚的に確認する
distinctipy.color_swatch(colors_hex)
import matplotlib.pyplot as plt
plt.show()

>Output<

47個の識別しやすいカラーコード:
Color 1: #fc00c9
Color 2: #00fe22
Color 3: #007fff
Color 4: #fda00e
Color 5: #3c03b1
Color 6: #ff0000
Color 7: #527646
Color 8: #b377e4
Color 9: #5ef8d3
Color 10: #9cfc1e
Color 11: #89113a
Color 12: #06bd8a
Color 13: #e65673
Color 14: #d1cb8e
Color 15: #07a403
Color 16: #066495
Color 17: #931ff7
Color 18: #ffff00
Color 19: #212355
Color 20: #71a6a9
Color 21: #ae6b0a
Color 22: #135102
Color 23: #54ca3e
Color 24: #0726fb
Color 25: #01d3ea
Color 26: #694aa6
Color 27: #a4c2f8
Color 28: #fb45fa
Color 29: #b00d94
Color 30: #f9a8ed
Color 31: #85f67e
Color 32: #ab8d63
Color 33: #554efb
Color 34: #fe9393
Color 35: #fa5112
Color 36: #23fd92
Color 37: #6893f8
Color 38: #eb005b
Color 39: #a1b403
Color 40: #fdf65f
Color 41: #b8f8c6
Color 42: #be2903
Color 43: #531501
Color 44: #8a4c4e
Color 45: #012bab
Color 46: #0b9a4a
Color 47: #2193c0

>Code<

import distinctipy

# 1. 47都道府県のリスト (一般的な順序)
prefectures = [
    "北海道", "青森県", "岩手県", "宮城県", "秋田県", "山形県", "福島県",
    "茨城県", "栃木県", "群馬県", "埼玉県", "千葉県", "東京都", "神奈川県",
    "新潟県", "富山県", "石川県", "福井県", "山梨県", "長野県", "岐阜県",
    "静岡県", "愛知県", "三重県", "滋賀県", "京都府", "大阪府", "兵庫県",
    "奈良県", "和歌山県", "鳥取県", "島根県", "岡山県", "広島県", "山口県",
    "徳島県", "香川県", "愛媛県", "高知県", "福岡県", "佐賀県", "長崎県",
    "熊本県", "大分県", "宮崎県", "鹿児島県", "沖縄県"
]

# 都道府県の数が47であることを確認
if len(prefectures) != 47:
    print(f"エラー: 都道府県の数が47ではありません。現在の数: {len(prefectures)}")
    exit()

# 2. distinctipy を使って47種類の識別しやすい色を生成
num_colors = 47

# distinctipy.get_colors() の戻り値を手動で16進数に変換する
# (TypeError: get_colors() got an unexpected keyword argument 'return_hex' 対策)
colors_rgb_float = distinctipy.get_colors(num_colors)

def rgb_to_hex(rgb_float_tuple):
    r_int = int(rgb_float_tuple[0] * 255)
    g_int = int(rgb_float_tuple[1] * 255)
    b_int = int(rgb_float_tuple[2] * 255)
    return f"#{r_int:02x}{g_int:02x}{b_int:02x}"

colors_hex = [rgb_to_hex(c) for c in colors_rgb_float]

# 3. 都道府県名と色を割り振る辞書を作成
prefecture_colors = {}
for i in range(num_colors):
    prefecture_colors[prefectures[i]] = colors_hex[i]

# 4. 結果を表示 (一部のみ表示)
print("生成された都道府県と色の割り当て辞書:")
count = 0
for pref, color in prefecture_colors.items():
    print(f"'{pref}': '{color}'")
    count += 1
    if count >= 10: # 最初と最後の数件のみ表示
        print("...")
        break

print("\n(辞書の全体は 'prefecture_colors' 変数に格納されています)")
print(f"辞書の要素数: {len(prefecture_colors)}")

# 辞書の全体を表示したい場合は、以下のコメントを外してください
# import pprint
# pprint.pprint(prefecture_colors)

>Output<

生成された都道府県と色の割り当て辞書: '北海道': '#00ff00' '青森県': '#ff00ff' '岩手県': '#007fff' '宮城県': '#ff7f00' '秋田県': '#7fbf7f' '山形県': '#5309a9' '福島県': '#bc0401' '茨城県': '#f47ed1' '栃木県': '#00ffff' '群馬県': '#1f7e19' ... (辞書の全体は 'prefecture_colors' 変数に格納されています) 辞書の要素数: 47

>Code<

print(gdf.crs)

>Output<

EPSG:6668

座標系をEPSG=4326に変換して関東とその近隣の都道府県を色分けした地図を表示します。まずは、超アナログなコードを組んで、確認です。

>Code<

import folium

# 地図の中心となる緯度経度を設定
center_lat = 35.6895
center_lon = 139.6917

# Foliumの地図オブジェクトを作成
m = folium.Map(location=[center_lat, center_lon], zoom_start=6, tiles="cartodbpositron")
gdf.to_crs(epsg=4326) # 座標系をEPGS=6668からEPGS=4326に変更

def func_creat_map(row, color, name):
    geom = gpd.GeoSeries(row['geometry']).simplify(tolerance=0.005)
    geojson_geom = geom.to_json()

    folium.GeoJson(
        geojson_geom,
        style_function=lambda feature: {
            'fillColor': color,
            'color': color,
            'weight': 1, # 線の太さをゼロに設定
            'fillOpacity': 0.6,
        },
        tooltip = name
    ).add_to(m)

# 簡略化した形状をGeoJSON形式で追加
for index, row in gdf.iterrows():
    if row['N03_001'] == '千葉県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '東京県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '栃木県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '群馬県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '埼玉県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '茨城県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '神奈川県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '山梨県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '福島県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '宮城県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '新潟県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

    if row['N03_001'] == '静岡県':
        color = prefecture_colors[row['N03_001']]
        func_creat_map(row, color, row['N03_001'])

# 地図を表示
m

>Output< 動的マップは省略します。


次は、JapaneseGov.Ministry of General Affairsのe-Statから都道府県別の人口比(対全国人口)をGetします。
>Code<
# このコードは総務省e-Statから都道府県別人口の割合(総人口比)をGetする
import requests
import pandas as pd

APP_ID = '**************' #自分のe-Stat API IDを*********に入力
API_URL = "http://api.e-stat.go.jp/rest/3.0/app/json/getStatsData"

params = {
    "appId": APP_ID,
    "statsDataId": "0003448233", #人口推計-総務省-都道府県別人口の割合(総人口)のstatDataID
    "lang": "J",  # 日本語を指定
    "cdTime": "2021000000" #対象とする時期(年)を2021年指定
}

#人口統計
response = requests.get(API_URL, params=params)
# Process the response
data = response.json()
data


>Output< (最初の方だけです)
{'GET_STATS_DATA': {'RESULT': {'STATUS': 0,
   'ERROR_MSG': '正常に終了しました。',
   'DATE': '2025-05-28T08:30:22.843+09:00'},
  'PARAMETER': {'LANG': 'J',
   'STATS_DATA_ID': '0003448233',
   'NARROWING_COND': {'CODE_TIME_SELECT': 2021000000},
   'DATA_FORMAT': 'J',
   'START_POSITION': 1,
   'METAGET_FLG': 'Y'},
  'STATISTICAL_DATA': {'RESULT_INF': {'TOTAL_NUMBER': 48,
    'FROM_NUMBER': 1,
    'TO_NUMBER': 48},
   'TABLE_INF': {'@id': '0003448233',
    'STAT_NAME': {'@code': '00200524', '$': '人口推計'},
    'GOV_ORG': {'@code': '00200', '$': '総務省'},
    'STATISTICS_NAME': '人口推計 各年10月1日現在人口 令和2年国勢調査基準 統計表',
    'TITLE': {'@no': '006', '$': '都道府県別人口の割合-総人口'},
    'CYCLE': '年次',
    'SURVEY_DATE': 0,
    'OPEN_DATE': '2025-04-14',
    'SMALL_AREA': 0,
    'COLLECT_AREA': '該当なし',
    'MAIN_CATEGORY': {'@code': '02', '$': '人口・世帯'},
    'SUB_CATEGORY': {'@code': '01', '$': '人口'},
    'OVERALL_TOTAL_NUMBER': 336,
    'UPDATED_DATE': '2025-04-14',
    'STATISTICS_NAME_SPEC': {'TABULATION_CATEGORY': '人口推計',
     'TABULATION_SUB_CATEGORY1': '各年10月1日現在人口',
     'TABULATION_SUB_CATEGORY2': '令和2年国勢調査基準',
     'TABULATION_SUB_CATEGORY3': '統計表'},
    'DESCRIPTION': '',
    'TITLE_SPEC': {'TABLE_NAME': '都道府県別人口の割合-総人口'}},
   'CLASS_INF': {'CLASS_OBJ': [{'@id': 'tab',
      '@name': '表章項目',
      'CLASS': {'@code': '003', '@name': '人口割合', '@level': '', '@unit': '%'}},
     {'@id': 'area',
      '@name': '全国・都道府県',
      'CLASS': [{'@code': '00000', '@name': '全国', '@level': '1'},
       {'@code': '01000', '@name': '北海道', '@level': '2'},
       {'@code': '02000', '@name': '青森県', '@level': '2'},
       {'@code': '03000', '@name': '岩手県', '@level': '2'},
       {'@code': '04000', '@name': '宮城県', '@level': '2'},
       {'@code': '05000', '@name': '秋田県', '@level': '2'},
       {'@code': '06000', '@name': '山形県', '@level': '2'},
       {'@code': '07000', '@name': '福島県', '@level': '2'},
       {'@code': '08000', '@name': '茨城県', '@level': '2'},
       {'@code': '09000', '@name': '栃木県', '@level': '2'},
       {'@code': '10000', '@name': '群馬県', '@level': '2'},
       {'@code': '11000', '@name': '埼玉県', '@level': '2'},
       {'@code': '12000', '@name': '千葉県', '@level': '2'},
       {'@code': '13000', '@name': '東京都', '@level': '2'},
       {'@code': '14000', '@name': '神奈川県', '@level': '2'},
       {'@code': '15000', '@name': '新潟県', '@level': '2'},
       {'@code': '16000', '@name': '富山県', '@level': '2'},
       {'@code': '17000', '@name': '石川県', '@level': '2'},
       {'@code': '18000', '@name': '福井県', '@level': '2'},
       {'@code': '19000', '@name': '山梨県', '@level': '2'},
       {'@code': '20000', '@name': '長野県', '@level': '2'},
       {'@code': '21000', '@name': '岐阜県', '@level': '2'},
       {'@code': '22000', '@name': '静岡県', '@level': '2'},
       {'@code': '23000', '@name': '愛知県', '@level': '2'},
       {'@code': '24000', '@name': '三重県', '@level': '2'},
       {'@code': '25000', '@name': '滋賀県', '@level': '2'},
       {'@code': '26000', '@name': '京都府', '@level': '2'},
       {'@code': '27000', '@name': '大阪府', '@level': '2'},
       {'@code': '28000', '@name': '兵庫県', '@level': '2'},
       {'@code': '29000', '@name': '奈良県', '@level': '2'},
       {'@code': '30000', '@name': '和歌山県', '@level': '2'},
       {'@code': '31000', '@name': '鳥取県', '@level': '2'},
       {'@code': '32000', '@name': '島根県', '@level': '2'},
       {'@code': '33000', '@name': '岡山県', '@level': '2'},
       {'@code': '34000', '@name': '広島県', '@level': '2'},
       {'@code': '35000', '@name': '山口県', '@level': '2'},
       {'@code': '36000', '@name': '徳島県', '@level': '2'},
       {'@code': '37000', '@name': '香川県', '@level': '2'},
       {'@code': '38000', '@name': '愛媛県', '@level': '2'},
       {'@code': '39000', '@name': '高知県', '@level': '2'},
       {'@code': '40000', '@name': '福岡県', '@level': '2'},
       {'@code': '41000', '@name': '佐賀県', '@level': '2'},
       {'@code': '42000', '@name': '長崎県', '@level': '2'},
       {'@code': '43000', '@name': '熊本県', '@level': '2'},
       {'@code': '44000', '@name': '大分県', '@level': '2'},
       {'@code': '45000', '@name': '宮崎県', '@level': '2'},
       {'@code': '46000', '@name': '鹿児島県', '@level': '2'},
       {'@code': '47000', '@name': '沖縄県', '@level': '2'}]},
     {'@id': 'time',
      '@name': '時間軸(年)',
      'CLASS': {'@code': '2021000000', '@name': '2021年', '@level': '1'}}]},
   'DATA_INF': {'NOTE': [{'@char': '***', '$': '該当数値がないもの'},
     {'@char': '-', '$': '該当数値がないもの\u3000'}],
    'VALUE': [{'@tab': '003',
      '@area': '00000',
      '@time': '2021000000',
      '@unit': '%',
      '$': '100.00'},
     {'@tab': '003',
      '@area': '01000',
      '@time': '2021000000',
      '@unit': '%',
      '$': '4.13'},

DownLoadしたJSON DataをPandasDataFrameに変換します。

>Code<

# このコードはe-StatからゲットしたデータをPandasDataFrameに変換
#JSONデータをPandasのDataFrameに変換
df = pd.DataFrame(data['GET_STATS_DATA']['STATISTICAL_DATA']['DATA_INF']['VALUE'])

# Pandas dataの加工
# Column名の変更
column_rename = {
    '@tab': 'タブ',
    '@area': '都道府県コード',
    '@time': '調査年',
    '@unit': '単位',
    '$': '人口比(対全国人口)'
}

df.rename(columns=column_rename, inplace=True)

df.head()

>Output<

タブ都道府県コード調査年単位人口比(対全国人口)
0003000002021000000100.00
10030100020210000004.13
20030200020210000000.97
30030300020210000000.95
40030400020210000001.82

都道府県コードと都道府県名を関連付ける辞書を作成し、DataFrameに都道府県名を追加します。都道府県名の列名はGeopandasDataFrme側に合わせて'N03_001'にします。

>Code<

# このコードはe-StatのPandasDataFrameの都道府県コードに基づき都道府県名を追加
# 都道府県コードと都道府県名の対応辞書
pref_code_to_name = {
    '01000': '北海道', '02000': '青森県', '03000': '岩手県', '04000': '宮城県', '05000': '秋田県',
    '06000': '山形県', '07000': '福島県', '08000': '茨城県', '09000': '栃木県', '10000': '群馬県',
    '11000': '埼玉県', '12000': '千葉県', '13000': '東京都', '14000': '神奈川県', '15000': '新潟県',
    '16000': '富山県', '17000': '石川県', '18000': '福井県', '19000': '山梨県', '20000': '長野県',
    '21000': '岐阜県', '22000': '静岡県', '23000': '愛知県', '24000': '三重県', '25000': '滋賀県',
    '26000': '京都府', '27000': '大阪府', '28000': '兵庫県', '29000': '奈良県', '30000': '和歌山県',
    '31000': '鳥取県', '32000': '島根県', '33000': '岡山県', '34000': '広島県', '35000': '山口県',
    '36000': '徳島県', '37000': '香川県', '38000': '愛媛県', '39000': '高知県', '40000': '福岡県',
    '41000': '佐賀県', '42000': '長崎県', '43000': '熊本県', '44000': '大分県', '45000': '宮崎県',
    '46000': '鹿児島県', '47000': '沖縄県', '00000': '全国'
}

# 都道府県コードに基づいて都道府県名を追加する新しい列を作成
df['N03_001'] = df['都道府県コード'].map(pref_code_to_name)
df.head()

>Output<

タブ都道府県コード調査年単位人口比(対全国人口)N03_001
0003000002021000000100.00全国
10030100020210000004.13北海道
20030200020210000000.97青森県
30030300020210000000.95岩手県
40030400020210000001.82宮城県

N03_001列ができて都道府県名が追加されました。これまでの状況を踏まえて’人口比(対全国人口)'ColumnのValueのTypeをCofirmします。

>Code<

print(df['人口比(対全国人口)'].dtype)

>Output<

object

やっぱり数値型(Int or Float)ではありません。この値をnumberにConvertします。ChoroplethMapに不要になる全国の行(先頭行)を削除しておきます。(これは試行錯誤で必要性を認識しました)

>Code<

# このコードはe-StatのDataから変換した'人口比(対全国人口)'の値を文字列から数値(float)に変換
# --- 必須のデータ型変換 ---
# '人口比(対全国人口)' 列を数値型に変換します。
# errors='coerce' を使用することで、数値に変換できない値は NaN (Not a Number) になります。
df['人口比(対全国人口)'] = pd.to_numeric(df['人口比(対全国人口)'], errors='coerce').astype(float)

# 「全国」の行を削除
df = df[df['N03_001'] != '全国'].copy()

print(df['人口比(対全国人口)'].dtype)

df.head()

>Output<

float64
タブ都道府県コード調査年単位人口比(対全国人口)N03_001
10030100020210000004.13北海道
20030200020210000000.97青森県
30030300020210000000.95岩手県
40030400020210000001.82宮城県
50030500020210000000.75秋田県

OutputにFloat64が表示されたのでOKです。これでDataFrame側のPreparationができました。


ここでGeoDataFrame側の処理にReturnします。取り出したい都道府県のGeoPandasDataをSelectするCodeです。

>Code<

import geopandas as gpd
import pandas as pd
from shapely.geometry import Polygon

# --- 2. 関東地方の都道府県リストを定義 ---
selected_prefectures = [
    "茨城県", "栃木県", "群馬県", "埼玉県", "千葉県", "東京都", "神奈川県", "山梨県", "福島県", "新潟県", "静岡県"
]
print(selected_prefectures)

# 選択された行を一時的に格納するリスト
selected_rows_list = []

for index, row in gdf.iterrows():
    if row['N03_001'] in selected_prefectures:
        selected_rows_list.append(row)

# リストから新しい GeoDataFrame を作成
# 元の gdf の CRS を引き継ぐことが重要です
if selected_rows_list: # リストが空でないことを確認
    gdf_selected = gpd.GeoDataFrame(selected_rows_list, crs=gdf.crs)
else: # 何も選択されなかった場合は空の GeoDataFrame を作成
    gdf_selected = gpd.GeoDataFrame(columns=gdf.columns, crs=gdf.crs)

gdf_selected.head()

>Output<

['茨城県', '栃木県', '群馬県', '埼玉県', '千葉県', '東京都', '神奈川県', '山梨県', '福島県', '新潟県', '静岡県']
N03_001N03_002N03_003N03_004N03_005N03_007geometry
31613福島県NoneNone福島市None07201POLYGON ((140.37454 37.65095, 140.37437 37.650...
31614福島県NoneNone会津若松市None07202POLYGON ((139.94905 37.33309, 139.94896 37.332...
31615福島県NoneNone郡山市None07203POLYGON ((140.12491 37.33085, 140.12486 37.330...
31616福島県NoneNoneいわき市None07204POLYGON ((140.84941 36.9161, 140.84926 36.916,...
31617福島県NoneNoneいわき市None07204POLYGON ((140.88896 36.91886, 140.88943 36.920...

GeoDataFrameが福島県から始まっているのでおそらく必要な都道府県をPickUpできている雰囲気です。このgdf_selectとforループを使って、念のためEachPrefectureをSortColorしてみます。

>Code<

import folium

# 地図の中心となる緯度経度を設定
center_lat = 35.6895
center_lon = 139.6917

# Foliumの地図オブジェクトを作成
m = folium.Map(location=[center_lat, center_lon], zoom_start=6, tiles="cartodbpositron")
gdf.to_crs(epsg=4326) # 座標系をEPGS=6668からEPGS=4326に変更

def func_creat_map(row, color, name):
    geom = gpd.GeoSeries(row['geometry']).simplify(tolerance=0.005)
    geojson_geom = geom.to_json()

    folium.GeoJson(
        geojson_geom,
        style_function=lambda feature: {
            'fillColor': color,
            'color': color,
            'weight': 0.1, # 線の太さをゼロに設定
            'fillOpacity': 0.6,
        },
        tooltip = name
    ).add_to(m)

# 簡略化した形状をGeoJSON形式で追加
for index, row in gdf_selected.iterrows():
    color = prefecture_colors[row['N03_001']]
    func_creat_map(row, color, row['N03_001'])

# 地図を表示
m

>Output<

大丈夫なようです。Finally、ChoroplethMapにチャレンジです。まず、gdf_selectedのgeometryの精度を下げて容量を落としたうえで、GeopandasDataFrmeをGeojson形式に一括変換します

>Code<


from shapely.geometry import mapping
from shapely.ops import unary_union

# 形状を簡略化する (toleranceの値は調整が必要)
tolerance = 0.01 #0.01  # 小さいほど元の形状に近いがデータ量は多い
#gdf['simplified_geometry'] = gdf['geometry'].apply(lambda geom: geom.simplify(tolerance))
gdf_selected['geometry'] = gdf_selected['geometry'].apply(lambda geom: geom.simplify(tolerance))

gdf_selected.head()
geojson_selected = gdf_selected.to_json(ensure_ascii=False)
print(geojson_selected)

>Output<

{"type": "FeatureCollection", "features": [{"id": "31613", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "福島市", "N03_005": null, "N03_007": "07201"}, "geometry": {"type": "Polygon", "coordinates": [[[140.485431362, 37.650839441], [140.285836472, 37.639752775], [140.277910895, 37.661956198], [140.230749144, 37.679154081], [140.240427224, 37.753527054], [140.298821284, 37.807923748], [140.262115966, 37.834416306], [140.280002581, 37.976644414], [140.334175422, 37.951390054], [140.384490856, 37.952216892], [140.398569831, 37.974420694], [140.474879831, 37.946782225], [140.468342335, 37.923468667], [140.484176498, 37.901527198], [140.458892049, 37.865255865], [140.484450052, 37.847483838], [140.471344968, 37.840548414], [140.492047367, 37.827185279], [140.482872672, 37.816044532], [140.519974527, 37.807116838], [140.527407108, 37.762983306], [140.570010584, 37.761006505], [140.539793022, 37.698791441], [140.56948978, 37.659899505], [140.549871193, 37.643184586], [140.526193502, 37.634891586], [140.526041414, 37.647543252], [140.502505499, 37.624204468], [140.503137328, 37.638712748], [140.482778366, 37.635522838], [140.485431362, 37.650839441]]]}}, {"id": "31614", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "会津若松市", "N03_005": null, "N03_007": "07202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.012729585, 37.323003613], [139.945529663, 37.326894721], [139.917551971, 37.325053279], [139.917523839, 37.355105171], [139.885764086, 37.342936838], [139.875771894, 37.363180667], [139.926137224, 37.399323667], [139.904549339, 37.460864613], [139.872638145, 37.452981865], [139.839496861, 37.498388135], [139.845874306, 37.53062836], [139.902857497, 37.54560164], [139.894373139, 37.572623225], [139.906766083, 37.583131532], [140.016102672, 37.542998171], [140.031418171, 37.503416892], [140.113355357, 37.469848532], [140.051025357, 37.414343333], [140.05354297, 37.365891081], [140.03632214, 37.33682136], [140.024887302, 37.341871919], [140.012729585, 37.323003613]]]}}, {"id": "31615", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "郡山市", "N03_005": null, "N03_007": "07203"}, "geometry": {"type": "Polygon", "coordinates": [[[140.166760415, 37.338314946], [140.075959689, 37.317158838], [140.0362738, 37.336025802], [140.05354297, 37.365891081], [140.051025357, 37.414343333], [140.113355357, 37.469848532], [140.200007588, 37.449762081], [140.190055447, 37.510244838], [140.165541115, 37.527399279], [140.203135966, 37.559898441], [140.228266278, 37.555044252], [140.238420532, 37.590081802], [140.284704423, 37.625976054], [140.277846835, 37.581605333], [140.305402802, 37.517512081], [140.319413281, 37.51848564], [140.318101245, 37.477557613], [140.334440246, 37.467310081], [140.336873995, 37.478920919], [140.367761803, 37.469575865], [140.407192529, 37.490806054], [140.474263774, 37.486558027], [140.485303839, 37.474709441], [140.471060973, 37.467385973], [140.472015863, 37.432959694], [140.427488275, 37.429633468], [140.423534475, 37.413350306], [140.438032218, 37.420944306], [140.452252335, 37.408472559], [140.4437207, 37.391196559], [140.47663144, 37.391060721], [140.479627717, 37.370303054], [140.496048664, 37.389129505], [140.536105668, 37.385109802], [140.559984942, 37.36543964], [140.538099053, 37.332864135], [140.564409831, 37.313477081], [140.560108029, 37.274030721], [140.534803217, 37.266027721], [140.378767497, 37.325457838], [140.376090363, 37.343195838], [140.237970195, 37.334832414], [140.188418029, 37.372255775], [140.166760415, 37.338314946]]]}}, {"id": "31616", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.90312546, 36.944694577], [140.800039364, 36.893960351], [140.789729857, 36.856484171], [140.721305914, 36.870889748], [140.614916939, 36.903686973], [140.566041777, 36.984366946], [140.598475914, 37.015711919], [140.617314189, 37.01515664], [140.624997445, 37.049145333], [140.664881777, 37.089952919], [140.632448145, 37.154858586], [140.623887691, 37.142963054], [140.601124475, 37.178982802], [140.607292023, 37.204230586], [140.682642023, 37.234159108], [140.695736005, 37.315094748], [140.723216446, 37.319540198], [140.74360847, 37.296899333], [140.778264578, 37.296641667], [140.804763696, 37.251497865], [140.853509689, 37.257939973], [140.877419754, 37.277279135], [140.872903774, 37.222018], [140.89993978, 37.221399387], [140.956469559, 37.185909387], [141.001394994, 37.182842252], [141.000598911, 37.108895721], [140.973663256, 37.053231216], [140.983051881, 36.995416829], [140.924913709, 36.935395811], [140.90312546, 36.944694577]]]}}, {"id": "31617", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.909594968, 36.938748631], [140.890199896, 36.926755], [140.897966304, 36.935824099], [140.904099935, 36.938563919], [140.909594968, 36.938748631]]]}}, {"id": "31618", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.883276031, 36.908022847], [140.903787224, 36.915641486], [140.907164423, 36.916447171], [140.883276031, 36.908022847]]]}}, {"id": "31619", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.876904176, 36.919716243], [140.884747484, 36.920618604], [140.873451323, 36.918186063], [140.876904176, 36.919716243]]]}}, {"id": "31620", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86482192, 36.912713649], [140.872481492, 36.917750721], [140.872577367, 36.917609955], [140.86482192, 36.912713649]]]}}, {"id": "31621", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.903647302, 36.936597847], [140.906338534, 36.934505991], [140.906580246, 36.934299874], [140.903647302, 36.936597847]]]}}, {"id": "31622", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.968631193, 36.960847495], [140.971367899, 36.962513667], [140.971484241, 36.962371676], [140.968631193, 36.960847495]]]}}, {"id": "31623", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.954537834, 36.95325891], [140.957301232, 36.954010559], [140.954385097, 36.953187721], [140.954537834, 36.95325891]]]}}, {"id": "31624", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.009183554, 37.146156928], [141.007544254, 37.148544333], [141.009321258, 37.146224495], [141.009183554, 37.146156928]]]}}, {"id": "31625", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.00379856, 37.107833757], [141.003261751, 37.108526153], [141.002780999, 37.109470117], [141.00379856, 37.107833757]]]}}, {"id": "31626", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.953139235, 36.958047063], [140.95348454, 36.958351315], [140.954330519, 36.956581694], [140.953139235, 36.958047063]]]}}, {"id": "31627", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000431543, 37.115093], [141.000324501, 37.115317432], [141.000641582, 37.115904261], [141.000431543, 37.115093]]]}}, {"id": "31628", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.998885564, 37.099759775], [141.000661284, 37.100592775], [141.000745396, 37.100443622], [140.998885564, 37.099759775]]]}}, {"id": "31629", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.861260908, 36.916666667], [140.862641803, 36.917703441], [140.860557328, 36.916053198], [140.861260908, 36.916666667]]]}}, {"id": "31630", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96348607, 36.963912351], [140.96392345, 36.964496973], [140.965177562, 36.964962649], [140.96348607, 36.963912351]]]}}, {"id": "31631", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.911730895, 36.921116892], [140.912506057, 36.922356306], [140.912666991, 36.922272676], [140.911730895, 36.921116892]]]}}, {"id": "31632", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.998570156, 37.102177928], [140.998609844, 37.103549838], [140.998754721, 37.102189811], [140.998570156, 37.102177928]]]}}, {"id": "31633", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.967808729, 36.965988216], [140.967876563, 36.964975802], [140.967657237, 36.964992126], [140.967808729, 36.965988216]]]}}, {"id": "31634", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.971414578, 36.971882559], [140.970640324, 36.971822847], [140.971443735, 36.972075838], [140.971414578, 36.971882559]]]}}, {"id": "31635", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.85002061, 36.913438279], [140.850549494, 36.913212441], [140.850108106, 36.913226054], [140.85002061, 36.913438279]]]}}, {"id": "31636", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.972418392, 36.972402703], [140.971882399, 36.972617721], [140.972382698, 36.972668162], [140.972418392, 36.972402703]]]}}, {"id": "31637", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001058067, 37.107847721], [141.000760013, 37.107897694], [141.001548431, 37.10805582], [141.001058067, 37.107847721]]]}}, {"id": "31638", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.955062477, 36.955628712], [140.95456716, 36.956461712], [140.954560467, 36.956548459], [140.955062477, 36.955628712]]]}}, {"id": "31639", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.966114176, 36.965936577], [140.965982698, 36.966948613], [140.966148885, 36.966946793], [140.966114176, 36.965936577]]]}}, {"id": "31640", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.006550441, 37.146456964], [141.006069715, 37.145330027], [141.005944682, 37.145374874], [141.006550441, 37.146456964]]]}}, {"id": "31641", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.953986602, 36.953057036], [140.954047173, 36.952937874], [140.953081881, 36.952760631], [140.953986602, 36.953057036]]]}}, {"id": "31642", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.793045914, 36.861784063], [140.793121894, 36.861734874], [140.792846109, 36.861089892], [140.793045914, 36.861784063]]]}}, {"id": "31643", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.887900843, 36.938391135], [140.887181971, 36.938125189], [140.886616135, 36.938741631], [140.887900843, 36.938391135]]]}}, {"id": "31644", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.971700973, 36.97161191], [140.970959403, 36.971551432], [140.971682322, 36.971882874], [140.971700973, 36.97161191]]]}}, {"id": "31645", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000485888, 37.118897009], [141.000488379, 37.119300586], [141.000645357, 37.119168838], [141.000485888, 37.118897009]]]}}, {"id": "31646", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.981784047, 37.009693955], [140.981811881, 37.011051495], [140.981826291, 37.009694], [140.981784047, 37.009693955]]]}}, {"id": "31647", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.981398638, 36.993339072], [140.98118703, 36.994380658], [140.981485149, 36.99335527], [140.981398638, 36.993339072]]]}}, {"id": "31648", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000001323, 37.114120973], [141.000176161, 37.11443536], [141.000263061, 37.114188775], [141.000001323, 37.114120973]]]}}, {"id": "31649", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000022049, 37.113705], [140.999631089, 37.113912225], [141.000146044, 37.113844171], [141.000022049, 37.113705]]]}}, {"id": "31650", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001226706, 37.110484396], [141.000988353, 37.110620468], [141.001204047, 37.110649613], [141.001226706, 37.110484396]]]}}, {"id": "31651", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.002752179, 37.153725631], [141.002678651, 37.153329874], [141.002645486, 37.153772009], [141.002752179, 37.153725631]]]}}, {"id": "31652", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.005949909, 37.14250555], [141.006135435, 37.141982694], [141.006061699, 37.141872865], [141.005949909, 37.14250555]]]}}, {"id": "31653", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001205006, 37.115715703], [141.001077575, 37.11560973], [141.000945227, 37.115688703], [141.001205006, 37.115715703]]]}}, {"id": "31654", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.950742815, 36.960060937], [140.950418171, 36.959563919], [140.950397795, 36.959587694], [140.950742815, 36.960060937]]]}}, {"id": "31655", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.953299598, 36.960611577], [140.953403268, 36.959923577], [140.953262931, 36.960354198], [140.953299598, 36.960611577]]]}}, {"id": "31656", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.002246226, 37.154125937], [141.00203227, 37.153939541], [141.002035979, 37.154114225], [141.002246226, 37.154125937]]]}}, {"id": "31657", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.966208755, 36.969042613], [140.966346744, 36.969449505], [140.966511012, 36.969386036], [140.966208755, 36.969042613]]]}}, {"id": "31658", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000765032, 37.119598297], [141.000608508, 37.119305261], [141.000496304, 37.119362324], [141.000523424, 37.119480018], [141.000765032, 37.119598297]]]}}, {"id": "31659", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.005963087, 37.14264482], [141.005766394, 37.142729306], [141.005841466, 37.142939955], [141.005963087, 37.14264482]]]}}, {"id": "31660", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.918151803, 36.933910901], [140.918244176, 36.934119883], [140.9183607, 36.933991793], [140.918151803, 36.933910901]]]}}, {"id": "31661", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.925777938, 36.936315486], [140.925968184, 36.936475279], [140.925967743, 36.936343982], [140.925777938, 36.936315486]]]}}, {"id": "31662", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.002375253, 37.162227243], [141.002321518, 37.162539189], [141.002407549, 37.162226018], [141.002375253, 37.162227243]]]}}, {"id": "31663", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000986913, 37.111867072], [141.000804695, 37.111958802], [141.000920246, 37.112002351], [141.000986913, 37.111867072]]]}}, {"id": "31664", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001026265, 37.112421856], [141.00092131, 37.112541297], [141.001081816, 37.112603333], [141.001026265, 37.112421856]]]}}, {"id": "31665", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.983571219, 36.991447306], [140.983556226, 36.99165273], [140.98368668, 36.991520712], [140.983571219, 36.991447306]]]}}, {"id": "31666", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001408573, 37.116148928], [141.0012331, 37.116138135], [141.00121725, 37.116248766], [141.001408573, 37.116148928]]]}}, {"id": "31667", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.925480571, 36.935871604], [140.925676304, 36.935930802], [140.925669922, 36.935786099], [140.925480571, 36.935871604]]]}}, {"id": "31668", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000755668, 37.109014468], [141.000925279, 37.108688225], [141.000687769, 37.108981892], [141.000755668, 37.109014468]]]}}, {"id": "31669", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.982008042, 37.011451856], [140.981805435, 37.011563847], [140.982006161, 37.011565865], [140.982008042, 37.011451856]]]}}, {"id": "31670", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000592542, 37.168517432], [141.000557652, 37.168423252], [141.000527315, 37.168602874], [141.000592542, 37.168517432]]]}}, {"id": "31671", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.005894176, 37.150823234], [141.005726615, 37.150732712], [141.005732322, 37.150817541], [141.005894176, 37.150823234]]]}}, {"id": "31672", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96785262, 36.97053018], [140.967763139, 36.970660342], [140.967870661, 36.970550099], [140.96785262, 36.97053018]]]}}, {"id": "31673", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.962275227, 36.968969874], [140.962371971, 36.969033838], [140.962113995, 36.968713324], [140.962275227, 36.968969874]]]}}, {"id": "31674", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.002955201, 37.157294586], [141.0028762, 37.157216342], [141.002841102, 37.157291658], [141.002955201, 37.157294586]]]}}, {"id": "31675", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96608537, 36.968779486], [140.965911764, 36.968689414], [140.965892205, 36.968718523], [140.96608537, 36.968779486]]]}}, {"id": "31676", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001337808, 37.116457171], [141.001509559, 37.116570099], [141.001521167, 37.116549441], [141.001337808, 37.116457171]]]}}, {"id": "31677", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001242789, 37.169050423], [141.001406809, 37.168938694], [141.001170752, 37.16894264], [141.001242789, 37.169050423]]]}}, {"id": "31678", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001396783, 37.116253396], [141.001357808, 37.116389667], [141.001449131, 37.116305685], [141.001396783, 37.116253396]]]}}, {"id": "31679", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000684708, 37.118676441], [141.000502892, 37.11861191], [141.000680726, 37.118775964], [141.000684708, 37.118676441]]]}}, {"id": "31680", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.95056703, 36.960867369], [140.951103735, 36.96111936], [140.951121362, 36.961098144], [140.95056703, 36.960867369]]]}}, {"id": "31681", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001437341, 37.117340261], [141.0013962, 37.117291829], [141.001466239, 37.117441081], [141.001437341, 37.117340261]]]}}, {"id": "31682", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.00201585, 37.16868227], [141.002109001, 37.168611162], [141.00201965, 37.168614477], [141.00201585, 37.16868227]]]}}, {"id": "31683", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.919325681, 36.933974568], [140.919512529, 36.934109396], [140.919588106, 36.934112766], [140.919325681, 36.933974568]]]}}, {"id": "31684", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.006297484, 37.140850937], [141.006185551, 37.140890793], [141.006229403, 37.140946045], [141.006297484, 37.140850937]]]}}, {"id": "31685", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.005670065, 37.143321288], [141.005717652, 37.143414261], [141.005779092, 37.143274973], [141.005670065, 37.143321288]]]}}, {"id": "31686", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.918080869, 36.934345468], [140.918209987, 36.934336622], [140.917953333, 36.934351793], [140.918080869, 36.934345468]]]}}, {"id": "31687", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001045798, 37.115848288], [141.001042659, 37.115746225], [141.000979131, 37.115785604], [141.001045798, 37.115848288]]]}}, {"id": "31688", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000768495, 37.118065036], [141.000675888, 37.118006649], [141.000744008, 37.118089604], [141.000768495, 37.118065036]]]}}, {"id": "31689", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.006215927, 37.141604613], [141.006113748, 37.141540378], [141.006132166, 37.141611027], [141.006215927, 37.141604613]]]}}, {"id": "31690", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001215759, 37.118759342], [141.001193671, 37.118471748], [141.001181608, 37.118704802], [141.001215759, 37.118759342]]]}}, {"id": "31691", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.919549274, 36.933881883], [140.919745564, 36.933894523], [140.919535616, 36.933871766], [140.919549274, 36.933881883]]]}}, {"id": "31692", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001461582, 37.117123486], [141.001407626, 37.116944432], [141.001463839, 37.117226829], [141.001461582, 37.117123486]]]}}, {"id": "31693", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.00212454, 37.164004964], [141.002156693, 37.163907234], [141.002087004, 37.163943793], [141.00212454, 37.164004964]]]}}, {"id": "31694", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.981191219, 37.009492883], [140.981176329, 37.009511586], [140.981480649, 37.009640748], [140.981191219, 37.009492883]]]}}, {"id": "31695", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.982001232, 37.009973991], [140.982060843, 37.010037054], [140.982167393, 37.01002027], [140.982001232, 37.009973991]]]}}, {"id": "31696", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.982516667, 37.009916973], [140.982505383, 37.009999054], [140.982568379, 37.009935297], [140.982516667, 37.009916973]]]}}, {"id": "31697", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96035773, 36.967262342], [140.96026358, 36.967190964], [140.96033939, 36.96729045], [140.96035773, 36.967262342]]]}}, {"id": "31698", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.951868586, 36.96056082], [140.952011608, 36.960527766], [140.951784929, 36.960552748], [140.951868586, 36.96056082]]]}}, {"id": "31699", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.004450337, 37.146400685], [141.004525707, 37.146419946], [141.004543087, 37.146320387], [141.004450337, 37.146400685]]]}}, {"id": "31700", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.838456952, 36.90952764], [140.83859048, 36.909491018], [140.83857799, 36.909470477], [140.838456952, 36.90952764]]]}}, {"id": "31701", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.962392633, 36.969071937], [140.962361336, 36.969081694], [140.962486213, 36.969248117], [140.962392633, 36.969071937]]]}}, {"id": "31702", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.971239339, 36.973991973], [140.971305746, 36.974046757], [140.97133952, 36.973999396], [140.971239339, 36.973991973]]]}}, {"id": "31703", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001186809, 37.115739757], [141.00126511, 37.115797108], [141.00129153, 37.115773874], [141.001186809, 37.115739757]]]}}, {"id": "31704", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.981472036, 36.994223811], [140.981435629, 36.994320586], [140.981521089, 36.994243342], [140.981472036, 36.994223811]]]}}, {"id": "31705", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.006186783, 37.14120427], [141.006129183, 37.141264766], [141.006201193, 37.141262964], [141.006186783, 37.14120427]]]}}, {"id": "31706", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.968898184, 36.972667928], [140.968815863, 36.97261573], [140.968809689, 36.972706532], [140.968898184, 36.972667928]]]}}, {"id": "31707", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96988393, 36.973091036], [140.969798444, 36.973127811], [140.969891492, 36.973154405], [140.96988393, 36.973091036]]]}}, {"id": "31708", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000304475, 37.119195712], [141.000159222, 37.119138568], [141.000241427, 37.119223], [141.000304475, 37.119195712]]]}}, {"id": "31709", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001215188, 37.111228919], [141.001173437, 37.111301685], [141.001225422, 37.111323703], [141.001215188, 37.111228919]]]}}, {"id": "31710", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001924332, 37.168062144], [141.001965473, 37.168006676], [141.001925759, 37.168008333], [141.001924332, 37.168062144]]]}}, {"id": "31711", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.966052633, 36.969048523], [140.966087276, 36.968999622], [140.965993891, 36.968987622], [140.966052633, 36.969048523]]]}}, {"id": "31712", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.961055979, 36.96733573], [140.961172944, 36.967369766], [140.961014125, 36.967307297], [140.961055979, 36.96733573]]]}}, {"id": "31713", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.969860182, 36.974100432], [140.969823048, 36.974155667], [140.969891375, 36.974143117], [140.969860182, 36.974100432]]]}}, {"id": "31714", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001387471, 37.116708721], [141.001360869, 37.116793414], [141.00138546, 37.116834712], [141.001387471, 37.116708721]]]}}, {"id": "31715", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96957751, 36.974146937], [140.969662815, 36.974142604], [140.969588353, 36.974090423], [140.96957751, 36.974146937]]]}}, {"id": "31716", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.006222309, 37.141390712], [141.006124942, 37.141397892], [141.006199079, 37.141424378], [141.006222309, 37.141390712]]]}}, {"id": "31717", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.970299637, 36.974446225], [140.970177652, 36.97443], [140.97029834, 36.974457234], [140.970299637, 36.974446225]]]}}, {"id": "31718", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.949862101, 36.953278874], [140.949936239, 36.953341126], [140.94995677, 36.953266982], [140.949862101, 36.953278874]]]}}, {"id": "31719", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001744475, 37.109216216], [141.001700208, 37.109206027], [141.001723748, 37.109259225], [141.001744475, 37.109216216]]]}}, {"id": "31720", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.96712227, 36.969953315], [140.967187834, 36.969913667], [140.967118911, 36.969908378], [140.96712227, 36.969953315]]]}}, {"id": "31721", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.792734319, 36.877386153], [140.792795227, 36.877342739], [140.792725733, 36.877343081], [140.792734319, 36.877386153]]]}}, {"id": "31722", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.982212451, 37.009636892], [140.982255953, 37.009685126], [140.982278755, 37.009636775], [140.982212451, 37.009636892]]]}}, {"id": "31723", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.982391816, 37.010089216], [140.982498807, 37.010081378], [140.98250489, 37.010066189], [140.982391816, 37.010089216]]]}}, {"id": "31724", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000573632, 37.117927369], [141.000563826, 37.117992613], [141.000590597, 37.117991631], [141.000573632, 37.117927369]]]}}, {"id": "31725", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001089494, 37.10935982], [141.001047808, 37.10930418], [141.001082283, 37.109365838], [141.001089494, 37.10935982]]]}}, {"id": "31726", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.918304358, 36.934414315], [140.918316952, 36.934480045], [140.918368923, 36.934463613], [140.918304358, 36.934414315]]]}}, {"id": "31727", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001128353, 37.112124027], [141.001091686, 37.112074198], [141.001120986, 37.112128514], [141.001128353, 37.112124027]]]}}, {"id": "31728", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.002086939, 37.166425405], [141.002027808, 37.166402568], [141.002024565, 37.16641855], [141.002086939, 37.166425405]]]}}, {"id": "31729", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.918596887, 36.933959775], [140.918595837, 36.933911739], [140.918568547, 36.933918486], [140.918596887, 36.933959775]]]}}, {"id": "31730", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.951630558, 36.960562117], [140.951768236, 36.96055073], [140.951632036, 36.960543703], [140.951630558, 36.960562117]]]}}, {"id": "31731", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001011803, 37.111480432], [141.000969209, 37.111498694], [141.000991115, 37.111540288], [141.001011803, 37.111480432]]]}}, {"id": "31732", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.999093009, 37.122108099], [140.999068716, 37.12206464], [140.99903022, 37.12210764], [140.999093009, 37.122108099]]]}}, {"id": "31733", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.969895305, 36.974248784], [140.969968003, 36.974281432], [140.969967886, 36.97425836], [140.969895305, 36.974248784]]]}}, {"id": "31734", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001343009, 37.168509685], [141.001339105, 37.168460523], [141.001307095, 37.168466153], [141.001343009, 37.168509685]]]}}, {"id": "31735", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001135473, 37.11222182], [141.001105305, 37.112256982], [141.001130052, 37.112271523], [141.001135473, 37.11222182]]]}}, {"id": "31736", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.000252088, 37.119264982], [141.000198197, 37.119287766], [141.000243593, 37.119290477], [141.000252088, 37.119264982]]]}}, {"id": "31737", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.004100091, 37.163896072], [141.004120765, 37.163857477], [141.004086148, 37.163868369], [141.004100091, 37.163896072]]]}}, {"id": "31738", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.969927458, 36.973209027], [140.969975486, 36.973183964], [140.969950597, 36.973163658], [140.969927458, 36.973209027]]]}}, {"id": "31739", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001233268, 37.109556559], [141.001202283, 37.109575333], [141.001235227, 37.109603577], [141.001233268, 37.109556559]]]}}, {"id": "31740", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.969856316, 36.972994432], [140.969907406, 36.972978622], [140.969854163, 36.972985712], [140.969856316, 36.972994432]]]}}, {"id": "31741", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001526187, 37.168047505], [141.00149345, 37.16802773], [141.001505551, 37.168052937], [141.001526187, 37.168047505]]]}}, {"id": "31742", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "いわき市", "N03_005": null, "N03_007": "07204"}, "geometry": {"type": "Polygon", "coordinates": [[[140.969950973, 36.973030468], [140.96998489, 36.973022667], [140.969950999, 36.973017045], [140.969950973, 36.973030468]]]}}, {"id": "31743", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "白河市", "N03_005": null, "N03_007": "07205"}, "geometry": {"type": "Polygon", "coordinates": [[[140.267234254, 37.000034441], [140.203080467, 37.023962387], [140.193390467, 37.065106838], [140.149243839, 37.092713054], [140.182583359, 37.108637667], [140.190867951, 37.123227081], [140.178079831, 37.129695441], [140.20104725, 37.136971198], [140.209576978, 37.167496748], [140.148464137, 37.211491333], [140.1400662, 37.199413838], [140.100854695, 37.238111892], [140.114342724, 37.261636054], [140.29023153, 37.217980279], [140.293294475, 37.188788225], [140.234918975, 37.180773667], [140.276686355, 37.167624306], [140.266403606, 37.147394027], [140.292880856, 37.13976636], [140.293498833, 37.126126892], [140.412608859, 37.116388721], [140.354636005, 37.074358838], [140.352468029, 37.046999027], [140.315636252, 37.042495559], [140.314960363, 37.019653667], [140.267234254, 37.000034441]]]}}, {"id": "31744", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "須賀川市", "N03_005": null, "N03_007": "07207"}, "geometry": {"type": "Polygon", "coordinates": [[[140.2923493, 37.250064225], [140.197048197, 37.269347721], [140.106031025, 37.318541613], [140.166760415, 37.338314946], [140.188418029, 37.372255775], [140.237970195, 37.334832414], [140.376090363, 37.343195838], [140.378767497, 37.325457838], [140.534939611, 37.266022721], [140.486522387, 37.249830946], [140.477737302, 37.224110414], [140.366658807, 37.246577586], [140.380715032, 37.266938838], [140.346521388, 37.280510135], [140.323444384, 37.248154135], [140.2923493, 37.250064225]], [[140.292575136, 37.252688387], [140.293374332, 37.252059505], [140.293986278, 37.252450333], [140.292575136, 37.252688387]], [[140.295426278, 37.252112838], [140.296147691, 37.252037559], [140.29524406, 37.252212559], [140.295426278, 37.252112838]]]}}, {"id": "31745", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "喜多方市", "N03_005": null, "N03_007": "07208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.863771997, 37.582731279], [139.810040636, 37.612003559], [139.793697056, 37.604623333], [139.799518054, 37.622708559], [139.78612428, 37.625931919], [139.8093993, 37.623426865], [139.804299274, 37.63756464], [139.782763139, 37.630349694], [139.781957977, 37.590860306], [139.71470511, 37.587450586], [139.701372049, 37.613822721], [139.669550467, 37.609221532], [139.674206355, 37.629889054], [139.700111284, 37.634972721], [139.712111141, 37.655710505], [139.705970363, 37.693475775], [139.737291025, 37.757126225], [139.729889728, 37.780244252], [139.745730804, 37.791014775], [139.728332438, 37.812241414], [139.740822335, 37.820255838], [139.720555616, 37.839568027], [139.715653696, 37.847027198], [139.714820389, 37.852810775], [139.710689805, 37.854393838], [139.697852412, 37.847711108], [139.691088197, 37.848334171], [139.689115668, 37.846663333], [139.680829196, 37.846950865], [139.706407834, 37.855993586], [139.715636524, 37.854158279], [139.741306783, 37.820292775], [139.782954475, 37.831968802], [139.809758223, 37.803261306], [139.857717173, 37.826538721], [139.886551855, 37.809163721], [139.924826744, 37.813513973], [139.93259856, 37.829393919], [139.958043748, 37.814681387], [139.998867808, 37.725119081], [139.927463995, 37.675938559], [139.909858444, 37.646451892], [139.957508586, 37.651439225], [140.000282412, 37.629576306], [139.999114501, 37.605988], [139.973022633, 37.607410721], [139.932022412, 37.579027414], [139.89823358, 37.593084], [139.863771997, 37.582731279]]]}}, {"id": "31746", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "喜多方市", "N03_005": null, "N03_007": "07208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929987951, 37.578311865], [139.92868572, 37.579439892], [139.929969364, 37.579719613], [139.929987951, 37.578311865]]]}}, {"id": "31747", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "相馬市", "N03_005": null, "N03_007": "07209"}, "geometry": {"type": "Polygon", "coordinates": [[[141.011318521, 37.72180755], [140.934869001, 37.74502664], [140.841762918, 37.733522802], [140.768506057, 37.761602586], [140.732227834, 37.749577414], [140.73566345, 37.768298919], [140.702497613, 37.759546748], [140.677574137, 37.783078559], [140.702485188, 37.803239919], [140.726969831, 37.781479171], [140.79471655, 37.773313441], [140.803190726, 37.779901135], [140.765016472, 37.798269586], [140.852106524, 37.795438054], [140.854177445, 37.841929775], [140.959169079, 37.841485135], [140.962277224, 37.830473063], [140.963260519, 37.838992514], [140.967406848, 37.844548225], [141.01089939, 37.741009919], [141.011318521, 37.72180755]]]}}, {"id": "31748", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "相馬市", "N03_005": null, "N03_007": "07209"}, "geometry": {"type": "Polygon", "coordinates": [[[140.972178664, 37.83283882], [140.971028677, 37.832794883], [140.975007951, 37.833106856], [140.972178664, 37.83283882]]]}}, {"id": "31749", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "相馬市", "N03_005": null, "N03_007": "07209"}, "geometry": {"type": "Polygon", "coordinates": [[[140.963503074, 37.833557153], [140.96338083, 37.833377315], [140.963488444, 37.833744793], [140.963503074, 37.833557153]]]}}, {"id": "31750", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "二本松市", "N03_005": null, "N03_007": "07210"}, "geometry": {"type": "Polygon", "coordinates": [[[140.529505032, 37.49998564], [140.436694773, 37.554312865], [140.418282387, 37.538176], [140.394225305, 37.561841], [140.356634695, 37.557179279], [140.334527134, 37.587408027], [140.346946498, 37.589640414], [140.344687782, 37.609676838], [140.290990337, 37.619500135], [140.280591946, 37.641557279], [140.483821336, 37.650982225], [140.502505499, 37.624204468], [140.512986135, 37.641373559], [140.554172477, 37.651247613], [140.586089559, 37.614546198], [140.630511167, 37.606334441], [140.633244475, 37.573588946], [140.684675188, 37.580688613], [140.680205837, 37.536630306], [140.529505032, 37.49998564]], [[140.354727665, 37.581710919], [140.351658145, 37.577469279], [140.355174838, 37.574749802], [140.354727665, 37.581710919]]]}}, {"id": "31751", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "田村市", "N03_005": null, "N03_007": "07211"}, "geometry": {"type": "Polygon", "coordinates": [[[140.698984721, 37.369511667], [140.723216446, 37.319540198], [140.695606278, 37.314990306], [140.693538197, 37.289050946], [140.646765616, 37.276308559], [140.641614332, 37.339983775], [140.58462939, 37.352274532], [140.51625847, 37.391914135], [140.506032192, 37.417349027], [140.518439079, 37.417302802], [140.527195746, 37.44661], [140.505414553, 37.45557464], [140.509437588, 37.469052054], [140.535599144, 37.458349892], [140.521290441, 37.477356081], [140.547305032, 37.465385333], [140.572680246, 37.509567279], [140.681911971, 37.538076667], [140.705456329, 37.523331802], [140.69158345, 37.503014973], [140.771565357, 37.472145946], [140.834721751, 37.467892279], [140.86198786, 37.411244721], [140.850422607, 37.371294613], [140.76415594, 37.38346036], [140.728456005, 37.404596865], [140.698984721, 37.369511667]]]}}, {"id": "31752", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[140.909666835, 37.518310054], [140.844158444, 37.558569054], [140.842259974, 37.593562667], [140.814876589, 37.614808667], [140.833208586, 37.630086333], [140.81356703, 37.675012252], [140.824633722, 37.699172441], [140.811272114, 37.707059171], [140.874062503, 37.746952306], [140.961485253, 37.743201108], [141.011318521, 37.72180755], [141.01488847, 37.673836523], [141.032130026, 37.673327838], [141.041016018, 37.665011874], [141.019068003, 37.671757595], [141.033073554, 37.66694936], [141.018745901, 37.657266153], [141.034602387, 37.514049162], [140.993922244, 37.50816], [140.931655863, 37.531314054], [140.909666835, 37.518310054]]]}}, {"id": "31753", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.022953061, 37.665423946], [141.021207393, 37.67054636], [141.021178949, 37.670646468], [141.022953061, 37.665423946]]]}}, {"id": "31754", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.019200973, 37.68682918], [141.01878358, 37.687498838], [141.018553839, 37.68820764], [141.019200973, 37.68682918]]]}}, {"id": "31755", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.022847328, 37.672257919], [141.025487185, 37.6728], [141.025778716, 37.672774288], [141.022847328, 37.672257919]]]}}, {"id": "31756", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.02588786, 37.663173505], [141.026128106, 37.663344991], [141.026138457, 37.663183667], [141.02588786, 37.663173505]]]}}, {"id": "31757", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.024656498, 37.638962532], [141.024466563, 37.639626703], [141.024445305, 37.639735937], [141.02473834, 37.639269766], [141.024656498, 37.638962532]]]}}, {"id": "31758", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.016201193, 37.685630811], [141.016387406, 37.685556171], [141.016193619, 37.685570495], [141.016201193, 37.685630811]]]}}, {"id": "31759", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.02308153, 37.647255459], [141.023029741, 37.647150342], [141.023048042, 37.647256937], [141.02308153, 37.647255459]]]}}, {"id": "31760", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "南相馬市", "N03_005": null, "N03_007": "07212"}, "geometry": {"type": "Polygon", "coordinates": [[[141.023436978, 37.644565523], [141.023390363, 37.644515721], [141.023402529, 37.644572883], [141.023436978, 37.644565523]]]}}, {"id": "31761", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "伊達市", "N03_005": null, "N03_007": "07213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.73666061, 37.76127064], [140.678107471, 37.73837], [140.661820506, 37.702042865], [140.611027497, 37.714168748], [140.586072049, 37.68941636], [140.565648612, 37.713924946], [140.542571284, 37.711655586], [140.568762555, 37.764465387], [140.527407108, 37.762983306], [140.519974527, 37.807116838], [140.502543359, 37.814424414], [140.496213774, 37.810621414], [140.482872672, 37.816044532], [140.557711025, 37.840225108], [140.580093087, 37.871851225], [140.59369834, 37.865164225], [140.593310778, 37.900771306], [140.615730195, 37.914768333], [140.627342283, 37.899073279], [140.690080532, 37.888213027], [140.679233969, 37.836337775], [140.695307834, 37.804515505], [140.677982698, 37.779754414], [140.702497613, 37.759546748], [140.73666061, 37.76127064]]]}}, {"id": "31762", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": null, "N03_004": "本宮市", "N03_005": null, "N03_007": "07214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.37503192, 37.472705027], [140.325601829, 37.471090108], [140.315142827, 37.504815387], [140.379173502, 37.516824505], [140.385099339, 37.534813081], [140.41381642, 37.531919108], [140.436694773, 37.554312865], [140.467066109, 37.528910505], [140.504882581, 37.525109], [140.517664838, 37.503649613], [140.500947302, 37.482638171], [140.407192529, 37.490806054], [140.37503192, 37.472705027]]]}}, {"id": "31763", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "伊達郡", "N03_004": "桑折町", "N03_005": null, "N03_007": "07301"}, "geometry": {"type": "Polygon", "coordinates": [[[140.557711025, 37.840225108], [140.478432023, 37.829504532], [140.472035551, 37.843790054], [140.484450052, 37.847483838], [140.458939559, 37.864777802], [140.468355253, 37.894030919], [140.484503165, 37.90154636], [140.562731803, 37.857277775], [140.557711025, 37.840225108]]]}}, {"id": "31764", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "伊達郡", "N03_004": "国見町", "N03_005": null, "N03_007": "07303"}, "geometry": {"type": "Polygon", "coordinates": [[[140.57436022, 37.916587775], [140.598409248, 37.907640694], [140.59369834, 37.865164225], [140.580093087, 37.871851225], [140.57439869, 37.856583279], [140.487166252, 37.893689946], [140.57436022, 37.916587775]]]}}, {"id": "31765", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "伊達郡", "N03_004": "川俣町", "N03_005": null, "N03_007": "07308"}, "geometry": {"type": "Polygon", "coordinates": [[[140.68671489, 37.547762198], [140.674623722, 37.559847279], [140.681620752, 37.585769721], [140.634559222, 37.572954505], [140.630511167, 37.606334441], [140.566588029, 37.633083171], [140.555315551, 37.651177892], [140.569416446, 37.660122559], [140.539591608, 37.694694775], [140.548235253, 37.710902505], [140.565648612, 37.713924946], [140.5875593, 37.689236054], [140.611027497, 37.714168748], [140.661820506, 37.702042865], [140.645076744, 37.688440108], [140.667174838, 37.676033667], [140.668727198, 37.629505333], [140.726247977, 37.593686667], [140.68671489, 37.547762198]]]}}, {"id": "31766", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "安達郡", "N03_004": "大玉村", "N03_005": null, "N03_007": "07322"}, "geometry": {"type": "Polygon", "coordinates": [[[140.356634695, 37.557179279], [140.400564553, 37.559255414], [140.415350052, 37.533582973], [140.318254838, 37.506652613], [140.277954617, 37.581161721], [140.28913725, 37.620715171], [140.344621946, 37.609748225], [140.346946498, 37.589640414], [140.334527134, 37.587408027], [140.356634695, 37.557179279]]]}}, {"id": "31767", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "安達郡", "N03_004": "大玉村", "N03_005": null, "N03_007": "07322"}, "geometry": {"type": "Polygon", "coordinates": [[[140.354727665, 37.581710919], [140.351658145, 37.577469279], [140.352598003, 37.584183748], [140.354727665, 37.581710919]]]}}, {"id": "31768", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "岩瀬郡", "N03_004": "鏡石町", "N03_005": null, "N03_007": "07342"}, "geometry": {"type": "Polygon", "coordinates": [[[140.312697471, 37.233133613], [140.346427782, 37.280523198], [140.375638911, 37.272928027], [140.360961284, 37.250194559], [140.388526615, 37.245453], [140.3967738, 37.225522108], [140.326383606, 37.213210748], [140.312697471, 37.233133613]]]}}, {"id": "31769", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "岩瀬郡", "N03_004": "天栄村", "N03_005": null, "N03_007": "07344"}, "geometry": {"type": "Polygon", "coordinates": [[[139.999326226, 37.199650027], [139.947994669, 37.22781664], [139.966411505, 37.246752108], [139.962422283, 37.272623414], [139.978603022, 37.273583414], [140.025413411, 37.342100802], [140.072363281, 37.318069387], [140.102897108, 37.320881892], [140.197048197, 37.269347721], [140.31730345, 37.246035838], [140.300151699, 37.223990559], [140.241917912, 37.220482892], [140.114626329, 37.261702441], [140.101478366, 37.242384667], [140.086251388, 37.246546333], [140.071356861, 37.209956694], [139.999326226, 37.199650027]], [[140.302665447, 37.23867836], [140.303672114, 37.237988333], [140.303726005, 37.238826135], [140.302665447, 37.23867836]], [[140.306533554, 37.239063054], [140.306116589, 37.237686946], [140.307479105, 37.237806946], [140.306533554, 37.239063054]]]}}, {"id": "31770", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "岩瀬郡", "N03_004": "天栄村", "N03_005": null, "N03_007": "07344"}, "geometry": {"type": "Polygon", "coordinates": [[[140.302315577, 37.222154973], [140.301035863, 37.223745], [140.302425162, 37.22580236], [140.302315577, 37.222154973]]]}}, {"id": "31771", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "岩瀬郡", "N03_004": "天栄村", "N03_005": null, "N03_007": "07344"}, "geometry": {"type": "Polygon", "coordinates": [[[140.293155694, 37.252032838], [140.292825447, 37.252805054], [140.293986278, 37.252450333], [140.293155694, 37.252032838]]]}}, {"id": "31772", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "岩瀬郡", "N03_004": "天栄村", "N03_005": null, "N03_007": "07344"}, "geometry": {"type": "Polygon", "coordinates": [[[140.295414086, 37.252324225], [140.296147691, 37.252037559], [140.29524406, 37.252212559], [140.295414086, 37.252324225]]]}}, {"id": "31773", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "南会津郡", "N03_004": "下郷町", "N03_005": null, "N03_007": "07362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.874756615, 37.146248171], [139.833196329, 37.175385775], [139.853013865, 37.196532054], [139.833827717, 37.226078027], [139.800042944, 37.241363865], [139.753086472, 37.235576694], [139.753996005, 37.248598054], [139.705504812, 37.254273054], [139.7077938, 37.268033027], [139.744388366, 37.291780171], [139.786080337, 37.284320694], [139.792029053, 37.303342306], [139.832037782, 37.318129694], [139.832472607, 37.343936865], [139.855445331, 37.35943736], [139.874983281, 37.361202054], [139.885850467, 37.342854333], [139.917848275, 37.354977946], [139.917551971, 37.325053279], [139.952654773, 37.336881667], [140.00927594, 37.327204721], [139.978603022, 37.273583414], [139.962422283, 37.272623414], [139.966411505, 37.246752108], [139.948018275, 37.227943306], [139.982140999, 37.201936198], [139.959902581, 37.180293613], [139.961261193, 37.153295748], [139.874756615, 37.146248171]]]}}, {"id": "31774", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "南会津郡", "N03_004": "檜枝岐村", "N03_005": null, "N03_007": "07364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.230346524, 36.940449721], [139.249897497, 36.955813892], [139.255665447, 36.988748586], [139.243366641, 37.01513464], [139.260326835, 37.047690414], [139.235134254, 37.110517775], [139.253848755, 37.164909333], [139.237875383, 37.187838171], [139.253879079, 37.203043441], [139.280465473, 37.163518775], [139.341221556, 37.170728468], [139.343175253, 37.121359694], [139.38730428, 37.107487802], [139.382049105, 37.082490054], [139.414550921, 37.070111468], [139.416753839, 37.038236559], [139.44887655, 37.011274252], [139.443378975, 36.980893802], [139.459977445, 36.968460586], [139.430350117, 36.925931973], [139.393289196, 36.910795505], [139.230346524, 36.940449721]]]}}, {"id": "31775", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "南会津郡", "N03_004": "只見町", "N03_005": null, "N03_007": "07367"}, "geometry": {"type": "Polygon", "coordinates": [[[139.341221556, 37.170728468], [139.280314086, 37.163614613], [139.254037419, 37.203024838], [139.237875383, 37.187838171], [139.220583113, 37.209203973], [139.1965838, 37.194028414], [139.165884916, 37.232219198], [139.213283022, 37.28781564], [139.217867912, 37.334150387], [139.233621829, 37.343606505], [139.231501505, 37.387877505], [139.197246329, 37.41076664], [139.223306939, 37.449044081], [139.362550311, 37.469968027], [139.397512698, 37.459839171], [139.402544669, 37.444662586], [139.36418703, 37.381918721], [139.381596031, 37.35461436], [139.399246005, 37.363137946], [139.429157367, 37.333242441], [139.514186252, 37.379037108], [139.554256887, 37.360293559], [139.544781167, 37.336290532], [139.575506589, 37.322809441], [139.574253995, 37.307544441], [139.525526472, 37.312031414], [139.501516978, 37.286132865], [139.474568275, 37.291528946], [139.491460752, 37.215844919], [139.433393307, 37.138644721], [139.358256394, 37.114822775], [139.33378144, 37.14816436], [139.341221556, 37.170728468]]]}}, {"id": "31776", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "南会津郡", "N03_004": "南会津町", "N03_005": null, "N03_007": "07368"}, "geometry": {"type": "Polygon", "coordinates": [[[139.535260363, 36.980584387], [139.443439805, 36.980721865], [139.44887655, 37.011274252], [139.416753839, 37.038236559], [139.414550921, 37.070111468], [139.382049105, 37.082490054], [139.387375383, 37.10734864], [139.374468975, 37.118177505], [139.456895772, 37.157513865], [139.4909838, 37.214855748], [139.47966131, 37.230105171], [139.492005136, 37.259261532], [139.474609105, 37.291568946], [139.501516978, 37.286132865], [139.525526472, 37.312031414], [139.574253995, 37.307544441], [139.597329585, 37.274534225], [139.590252607, 37.222800387], [139.606727665, 37.206527613], [139.622894578, 37.228227865], [139.709832633, 37.255217505], [139.773569948, 37.232234748], [139.808143528, 37.239861892], [139.852751115, 37.200563694], [139.833131608, 37.175571892], [139.86628939, 37.147227892], [139.815169364, 37.116859027], [139.822092996, 37.085136865], [139.774910999, 37.091894279], [139.751816887, 37.070227865], [139.673049416, 37.057650919], [139.664650921, 37.039840694], [139.582052023, 37.015081973], [139.535260363, 36.980584387]]]}}, {"id": "31777", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "耶麻郡", "N03_004": "北塩原村", "N03_005": null, "N03_007": "07402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.999029494, 37.605010505], [140.000282412, 37.629576306], [139.957508586, 37.651439225], [139.909858444, 37.646451892], [139.927463995, 37.675938559], [139.997372244, 37.722383838], [139.992568755, 37.758699532], [140.05142655, 37.779332946], [140.124410999, 37.733826802], [140.171936524, 37.756043171], [140.145756783, 37.669677], [140.096294942, 37.645406838], [140.071462049, 37.606901721], [139.999029494, 37.605010505]]]}}, {"id": "31778", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "耶麻郡", "N03_004": "西会津町", "N03_005": null, "N03_007": "07405"}, "geometry": {"type": "Polygon", "coordinates": [[[139.726484332, 37.583306171], [139.720734228, 37.569660387], [139.699702192, 37.575151694], [139.687139974, 37.521455441], [139.666740117, 37.507026586], [139.592200804, 37.509657919], [139.565767224, 37.546015027], [139.571182698, 37.577009414], [139.546010921, 37.62846364], [139.549321219, 37.64909336], [139.627203385, 37.688284441], [139.624091997, 37.710249468], [139.657887665, 37.755007468], [139.728332438, 37.812241414], [139.745730804, 37.791014775], [139.729889728, 37.780244252], [139.737291025, 37.757126225], [139.705970363, 37.693475775], [139.712111141, 37.655710505], [139.668435499, 37.622508748], [139.679585837, 37.620542946], [139.669599637, 37.609194586], [139.701372049, 37.613822721], [139.726484332, 37.583306171]]]}}, {"id": "31779", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "耶麻郡", "N03_004": "磐梯町", "N03_005": null, "N03_007": "07407"}, "geometry": {"type": "Polygon", "coordinates": [[[140.00080978, 37.544446775], [139.927318495, 37.579549892], [139.974209339, 37.607701279], [140.071462049, 37.606901721], [140.042335006, 37.580379441], [140.035535383, 37.554040333], [140.050686835, 37.540062306], [140.00080978, 37.544446775]]]}}, {"id": "31780", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "耶麻郡", "N03_004": "猪苗代町", "N03_005": null, "N03_007": "07408"}, "geometry": {"type": "Polygon", "coordinates": [[[140.200007588, 37.449762081], [140.031418171, 37.503416892], [140.014422335, 37.530919865], [140.050686835, 37.540062306], [140.035520389, 37.554141721], [140.048907613, 37.592351946], [140.0721662, 37.601071135], [140.096294942, 37.645406838], [140.14604594, 37.670040892], [140.171936524, 37.756043171], [140.237254864, 37.746468468], [140.230749144, 37.679154081], [140.277910895, 37.661956198], [140.284904163, 37.626376613], [140.238420532, 37.590081802], [140.228266278, 37.555044252], [140.203135966, 37.559898441], [140.165541115, 37.527399279], [140.190055447, 37.510244838], [140.200007588, 37.449762081]]]}}, {"id": "31781", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "河沼郡", "N03_004": "会津坂下町", "N03_005": null, "N03_007": "07421"}, "geometry": {"type": "Polygon", "coordinates": [[[139.746311245, 37.544188027], [139.753481971, 37.562591838], [139.722539248, 37.571281775], [139.718158781, 37.593867505], [139.787582218, 37.59301364], [139.782763139, 37.630349694], [139.804299274, 37.63756464], [139.8093993, 37.623426865], [139.795996355, 37.628614946], [139.78612428, 37.625931919], [139.799518054, 37.622708559], [139.793606226, 37.604719171], [139.808830895, 37.612311333], [139.85918144, 37.591463468], [139.872556278, 37.532937225], [139.798771414, 37.531055468], [139.770995305, 37.51400136], [139.746311245, 37.544188027]]]}}, {"id": "31782", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "河沼郡", "N03_004": "湯川村", "N03_005": null, "N03_007": "07422"}, "geometry": {"type": "Polygon", "coordinates": [[[139.865189883, 37.547546919], [139.860832802, 37.582286559], [139.90515834, 37.589709279], [139.902857497, 37.54560164], [139.865189883, 37.547546919]]]}}, {"id": "31783", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "河沼郡", "N03_004": "柳津町", "N03_005": null, "N03_007": "07423"}, "geometry": {"type": "Polygon", "coordinates": [[[139.748318392, 37.371131721], [139.678789728, 37.347613225], [139.649000636, 37.360849333], [139.640780895, 37.370037946], [139.667364773, 37.390218198], [139.658012892, 37.430031748], [139.686104527, 37.459735027], [139.679650636, 37.474142505], [139.714867808, 37.477356135], [139.690038807, 37.496402748], [139.594416887, 37.499732667], [139.598271971, 37.511874865], [139.682475188, 37.515850198], [139.701914695, 37.575744468], [139.753481971, 37.562591838], [139.746311245, 37.544188027], [139.766987808, 37.530381333], [139.763833774, 37.475553333], [139.737627691, 37.465797802], [139.760065863, 37.428593892], [139.748318392, 37.371131721]]]}}, {"id": "31784", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "大沼郡", "N03_004": "三島町", "N03_005": null, "N03_007": "07444"}, "geometry": {"type": "Polygon", "coordinates": [[[139.621983502, 37.368424081], [139.603013113, 37.374321027], [139.586337912, 37.421975387], [139.615472672, 37.446708667], [139.589664773, 37.46511], [139.601456083, 37.493835748], [139.694973281, 37.494912748], [139.714824189, 37.47695364], [139.679650636, 37.474142505], [139.686104527, 37.459735027], [139.658012892, 37.430031748], [139.667333671, 37.390145135], [139.621983502, 37.368424081]]]}}, {"id": "31785", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "大沼郡", "N03_004": "金山町", "N03_005": null, "N03_007": "07445"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429157367, 37.333242441], [139.399246005, 37.363137946], [139.381596031, 37.35461436], [139.36418703, 37.381918721], [139.402544669, 37.444662586], [139.414249196, 37.510155802], [139.595033061, 37.510230973], [139.603734942, 37.487380225], [139.589664773, 37.46511], [139.61570214, 37.45675864], [139.586364864, 37.422113721], [139.599543696, 37.387761559], [139.528318833, 37.390555694], [139.480313748, 37.349946027], [139.429157367, 37.333242441]]]}}, {"id": "31786", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "大沼郡", "N03_004": "昭和村", "N03_005": null, "N03_007": "07446"}, "geometry": {"type": "Polygon", "coordinates": [[[139.590331505, 37.223002613], [139.597306809, 37.274594505], [139.578378949, 37.287656973], [139.575506589, 37.322809441], [139.544781167, 37.336290532], [139.554256887, 37.360293559], [139.519945383, 37.369527694], [139.524020195, 37.38766736], [139.599543696, 37.387761559], [139.668888807, 37.348018532], [139.715424773, 37.363239279], [139.74193083, 37.287644919], [139.697392218, 37.247609171], [139.622679001, 37.228119802], [139.610294643, 37.206419559], [139.590331505, 37.223002613]]]}}, {"id": "31787", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "大沼郡", "N03_004": "会津美里町", "N03_005": null, "N03_007": "07447"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75, 37.290085135], [139.714020584, 37.351909306], [139.748304228, 37.371027279], [139.761665551, 37.404864748], [139.737816304, 37.466321414], [139.763833774, 37.475553333], [139.765217756, 37.515620532], [139.845874306, 37.53062836], [139.839636031, 37.49778036], [139.872638145, 37.452981865], [139.904549339, 37.460864613], [139.924701634, 37.394690054], [139.832630389, 37.344088532], [139.832037782, 37.318129694], [139.792029053, 37.303342306], [139.786080337, 37.284320694], [139.75, 37.290085135]]]}}, {"id": "31788", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "西郷村", "N03_005": null, "N03_007": "07461"}, "geometry": {"type": "Polygon", "coordinates": [[[140.166166498, 37.092355532], [140.097559831, 37.124345946], [139.962844747, 37.148558838], [139.959902581, 37.180293613], [139.982140999, 37.201936198], [140.071356861, 37.209956694], [140.086251388, 37.246546333], [140.099483917, 37.242834946], [140.1400662, 37.199413838], [140.148464137, 37.211491333], [140.209576978, 37.167496748], [140.166166498, 37.092355532]]]}}, {"id": "31789", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "泉崎村", "N03_005": null, "N03_007": "07464"}, "geometry": {"type": "Polygon", "coordinates": [[[140.322327951, 37.16666436], [140.340073748, 37.124463748], [140.314935499, 37.120590081], [140.266433333, 37.147348198], [140.276686355, 37.167624306], [140.234918975, 37.180773667], [140.288628859, 37.191602135], [140.322327951, 37.16666436]]]}}, {"id": "31790", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "中島村", "N03_005": null, "N03_007": "07465"}, "geometry": {"type": "Polygon", "coordinates": [[[140.337476472, 37.123378775], [140.336566861, 37.144165802], [140.346581245, 37.159872505], [140.38139786, 37.178434414], [140.403888638, 37.168130667], [140.369679883, 37.139561333], [140.37026511, 37.122235946], [140.337476472, 37.123378775]], [[140.345332607, 37.156099694], [140.345942049, 37.154635802], [140.347522088, 37.155625252], [140.345332607, 37.156099694]]]}}, {"id": "31791", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "矢吹町", "N03_005": null, "N03_007": "07466"}, "geometry": {"type": "Polygon", "coordinates": [[[140.339132192, 37.144764387], [140.282362309, 37.225185865], [140.309713281, 37.237578892], [140.316910467, 37.218974667], [140.326383606, 37.213210748], [140.354927367, 37.226966838], [140.401641894, 37.217969586], [140.409032581, 37.170914279], [140.381176744, 37.178399973], [140.339132192, 37.144764387]], [[140.301035863, 37.223745], [140.302315577, 37.222154973], [140.302425162, 37.22580236], [140.301035863, 37.223745]]]}}, {"id": "31792", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "矢吹町", "N03_005": null, "N03_007": "07466"}, "geometry": {"type": "Polygon", "coordinates": [[[140.345917056, 37.154635802], [140.346444553, 37.156077748], [140.347515966, 37.155251333], [140.345917056, 37.154635802]]]}}, {"id": "31793", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "矢吹町", "N03_005": null, "N03_007": "07466"}, "geometry": {"type": "Polygon", "coordinates": [[[140.306100752, 37.237705], [140.307494942, 37.237915838], [140.307345188, 37.237671108], [140.306100752, 37.237705]]]}}, {"id": "31794", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "西白河郡", "N03_004": "矢吹町", "N03_005": null, "N03_007": "07466"}, "geometry": {"type": "Polygon", "coordinates": [[[140.30247572, 37.238242802], [140.303726005, 37.238826135], [140.303672114, 37.237988333], [140.30247572, 37.238242802]]]}}, {"id": "31795", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "東白川郡", "N03_004": "棚倉町", "N03_005": null, "N03_007": "07481"}, "geometry": {"type": "Polygon", "coordinates": [[[140.240592088, 36.946173468], [140.253089831, 36.962967892], [140.244895305, 37.010240613], [140.267553411, 37.000068613], [140.275136667, 37.014025225], [140.314960363, 37.019653667], [140.321594423, 37.047348306], [140.354057497, 37.048820108], [140.356065227, 37.075804081], [140.37427856, 37.081523946], [140.384865357, 37.067963694], [140.403514163, 37.086415198], [140.401474501, 37.059723081], [140.432548859, 37.042287892], [140.425098444, 37.022558748], [140.447541634, 37.036064171], [140.461278366, 37.016967667], [140.428526446, 37.000895865], [140.414280467, 37.016096333], [140.403920441, 36.963249748], [140.376037173, 36.978749054], [140.34084856, 36.947074559], [140.291576861, 36.949691054], [140.27297489, 36.930154802], [140.240592088, 36.946173468]]]}}, {"id": "31796", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "東白川郡", "N03_004": "矢祭町", "N03_005": null, "N03_007": "07482"}, "geometry": {"type": "Polygon", "coordinates": [[[140.528662866, 36.842949721], [140.46419297, 36.791401748], [140.438501025, 36.821541838], [140.377206083, 36.837924694], [140.365211829, 36.884324946], [140.326697977, 36.891188279], [140.283754449, 36.93619864], [140.395378197, 36.884158865], [140.414672283, 36.894660586], [140.411698495, 36.931479586], [140.430051673, 36.927656108], [140.454154034, 36.889214252], [140.528662866, 36.842949721]]]}}, {"id": "31797", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "東白川郡", "N03_004": "塙町", "N03_005": null, "N03_007": "07483"}, "geometry": {"type": "Polygon", "coordinates": [[[140.527824812, 36.848118586], [140.454154034, 36.889214252], [140.429585006, 36.927858333], [140.411698495, 36.931479586], [140.414672283, 36.894660586], [140.395378197, 36.884158865], [140.341742607, 36.902856225], [140.290896304, 36.948857198], [140.340696031, 36.947009559], [140.376037173, 36.978749054], [140.404702944, 36.96352836], [140.414280467, 37.016096333], [140.428526446, 37.000895865], [140.462557834, 37.017083468], [140.475392607, 36.997835865], [140.450784034, 36.975089468], [140.56165192, 36.944398414], [140.565024137, 36.912701054], [140.59328214, 36.880032748], [140.527824812, 36.848118586]]]}}, {"id": "31798", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "東白川郡", "N03_004": "鮫川村", "N03_005": null, "N03_007": "07484"}, "geometry": {"type": "Polygon", "coordinates": [[[140.557940636, 37.051518135], [140.587036109, 36.946451802], [140.568147302, 36.937369559], [140.450784034, 36.975089468], [140.475748521, 37.002654505], [140.437406109, 37.072870081], [140.497773022, 37.085516081], [140.540847224, 37.064562775], [140.557940636, 37.051518135]]]}}, {"id": "31799", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "石川郡", "N03_004": "石川町", "N03_005": null, "N03_007": "07501"}, "geometry": {"type": "Polygon", "coordinates": [[[140.466479585, 37.082469468], [140.460685772, 37.111673694], [140.37026511, 37.122235946], [140.368169585, 37.136494919], [140.404251673, 37.161210333], [140.407307328, 37.182649919], [140.476076278, 37.203365108], [140.525572477, 37.176908198], [140.539299248, 37.14922164], [140.523674695, 37.120612252], [140.493638366, 37.111456694], [140.507621115, 37.096682505], [140.496870778, 37.08457164], [140.466479585, 37.082469468]]]}}, {"id": "31800", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "石川郡", "N03_004": "玉川村", "N03_005": null, "N03_007": "07502"}, "geometry": {"type": "Polygon", "coordinates": [[[140.5000193, 37.196637694], [140.472635136, 37.203289586], [140.407255383, 37.182614081], [140.388756913, 37.246491333], [140.477737302, 37.224110414], [140.486522387, 37.249830946], [140.51932847, 37.256759171], [140.5000193, 37.196637694]]]}}, {"id": "31801", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "石川郡", "N03_004": "平田村", "N03_005": null, "N03_007": "07503"}, "geometry": {"type": "Polygon", "coordinates": [[[140.610179857, 37.166663667], [140.543003061, 37.157591748], [140.498733645, 37.188174973], [140.519401855, 37.261836387], [140.557230778, 37.273557946], [140.577754423, 37.252125081], [140.601200246, 37.252208946], [140.610179857, 37.166663667]]]}}, {"id": "31802", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "石川郡", "N03_004": "浅川町", "N03_005": null, "N03_007": "07504"}, "geometry": {"type": "Polygon", "coordinates": [[[140.465391167, 37.083330306], [140.437483333, 37.072992865], [140.450884475, 37.037395], [140.425230947, 37.022546802], [140.432548859, 37.042287892], [140.401474501, 37.059723081], [140.405873606, 37.084909919], [140.384865357, 37.067963694], [140.372675772, 37.081087306], [140.417543385, 37.120939559], [140.460685772, 37.111673694], [140.465391167, 37.083330306]]]}}, {"id": "31803", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "石川郡", "N03_004": "古殿町", "N03_005": null, "N03_007": "07505"}, "geometry": {"type": "Polygon", "coordinates": [[[140.565865888, 36.999026721], [140.556626498, 37.054221468], [140.497866887, 37.083325252], [140.507621115, 37.096682505], [140.493586109, 37.111340586], [140.523674695, 37.120612252], [140.538895525, 37.159248135], [140.565295642, 37.168389225], [140.623887691, 37.142963054], [140.631397302, 37.155706613], [140.664881777, 37.089952919], [140.624997445, 37.049145333], [140.617248638, 37.015093586], [140.565865888, 36.999026721]]]}}, {"id": "31804", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "田村郡", "N03_004": "三春町", "N03_005": null, "N03_007": "07521"}, "geometry": {"type": "Polygon", "coordinates": [[[140.519102387, 37.390272721], [140.479627717, 37.370303054], [140.478379805, 37.38969264], [140.4437207, 37.391196559], [140.452214838, 37.408582838], [140.438032218, 37.420944306], [140.424490895, 37.412622802], [140.425175162, 37.427383441], [140.472015863, 37.432959694], [140.4784738, 37.483230532], [140.546589105, 37.511277441], [140.561616057, 37.475742973], [140.543699948, 37.464786198], [140.521290441, 37.477356081], [140.542442672, 37.462666775], [140.528142283, 37.457264414], [140.529582361, 37.461310225], [140.509572309, 37.469254838], [140.505414553, 37.45557464], [140.527076252, 37.444138892], [140.506032192, 37.417349027], [140.519102387, 37.390272721]]]}}, {"id": "31805", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "田村郡", "N03_004": "小野町", "N03_005": null, "N03_007": "07522"}, "geometry": {"type": "Polygon", "coordinates": [[[140.624715084, 37.208634468], [140.601672114, 37.218629198], [140.601200246, 37.252208946], [140.556764358, 37.269750171], [140.564409831, 37.313477081], [140.5376938, 37.335826081], [140.559984942, 37.36543964], [140.641614332, 37.339983775], [140.646883671, 37.276233559], [140.692032866, 37.284594586], [140.681882283, 37.233212441], [140.624715084, 37.208634468]]]}}, {"id": "31806", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "広野町", "N03_005": null, "N03_007": "07541"}, "geometry": {"type": "Polygon", "coordinates": [[[140.906103696, 37.248748973], [141.02868332, 37.237891685], [141.012409481, 37.22843018], [141.000425953, 37.183643234], [140.956469559, 37.185909387], [140.867022866, 37.227968865], [140.906103696, 37.248748973]]]}}, {"id": "31807", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "広野町", "N03_005": null, "N03_007": "07541"}, "geometry": {"type": "Polygon", "coordinates": [[[141.001463748, 37.189148505], [141.001425188, 37.189131676], [141.00142952, 37.189156865], [141.001463748, 37.189148505]]]}}, {"id": "31808", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "楢葉町", "N03_005": null, "N03_007": "07542"}, "geometry": {"type": "Polygon", "coordinates": [[[141.013024981, 37.249834541], [140.88152847, 37.239212306], [140.867058859, 37.259747892], [140.905654423, 37.300209667], [140.901329001, 37.323015468], [140.917563943, 37.337703108], [141.005967886, 37.303493559], [141.004748859, 37.314820225], [141.038590687, 37.318948595], [141.02273987, 37.309502306], [141.013024981, 37.249834541]]]}}, {"id": "31809", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "楢葉町", "N03_005": null, "N03_007": "07542"}, "geometry": {"type": "Polygon", "coordinates": [[[141.030463178, 37.313734613], [141.031502594, 37.313681018], [141.030462438, 37.313694703], [141.030463178, 37.313734613]]]}}, {"id": "31810", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[140.999901971, 37.30572664], [140.916865888, 37.337677279], [140.900844695, 37.360483441], [140.947525188, 37.383717505], [141.03558489, 37.373108811], [141.025254436, 37.324951568], [141.026426809, 37.322524892], [141.032270791, 37.321545631], [141.036067821, 37.319108441], [140.999901971, 37.30572664]]]}}, {"id": "31811", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.033475564, 37.346473595], [141.033958249, 37.346761721], [141.033780246, 37.346250369], [141.033475564, 37.346473595]]]}}, {"id": "31812", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.038384086, 37.362057171], [141.038665331, 37.361852865], [141.038552698, 37.361680198], [141.038384086, 37.362057171]]]}}, {"id": "31813", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.037644734, 37.362014153], [141.037983087, 37.362079189], [141.037963593, 37.361968649], [141.037644734, 37.362014153]]]}}, {"id": "31814", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.030004786, 37.341449009], [141.030069261, 37.341301748], [141.029834228, 37.341326297], [141.030004786, 37.341449009]]]}}, {"id": "31815", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.030358184, 37.342125649], [141.03024201, 37.342094928], [141.030319131, 37.342189748], [141.030358184, 37.342125649]]]}}, {"id": "31816", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.03142096, 37.342557126], [141.031378003, 37.34251791], [141.031353126, 37.34255691], [141.03142096, 37.342557126]]]}}, {"id": "31817", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "富岡町", "N03_005": null, "N03_007": "07543"}, "geometry": {"type": "Polygon", "coordinates": [[[141.02943358, 37.341347198], [141.029423606, 37.34130955], [141.029333606, 37.341355784], [141.02943358, 37.341347198]]]}}, {"id": "31818", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "川内村", "N03_005": null, "N03_007": "07544"}, "geometry": {"type": "Polygon", "coordinates": [[[140.793038366, 37.284885252], [140.728732244, 37.307937414], [140.701100467, 37.357219054], [140.728456005, 37.404596865], [140.789987082, 37.377703], [140.850338171, 37.371232108], [140.859798586, 37.387048946], [140.909847004, 37.373652252], [140.90574192, 37.300359667], [140.853509689, 37.257939973], [140.80463869, 37.251539532], [140.787502049, 37.267362586], [140.793038366, 37.284885252]]]}}, {"id": "31819", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "大熊町", "N03_005": null, "N03_007": "07545"}, "geometry": {"type": "Polygon", "coordinates": [[[140.956684228, 37.416661532], [141.00482192, 37.434013919], [141.042862685, 37.423317432], [141.035741712, 37.373286495], [140.872186278, 37.38119], [140.853727834, 37.421401694], [140.894370272, 37.433180865], [140.956684228, 37.416661532]]]}}, {"id": "31820", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "大熊町", "N03_005": null, "N03_007": "07545"}, "geometry": {"type": "Polygon", "coordinates": [[[141.035601712, 37.425975243], [141.035313748, 37.427253216], [141.035826641, 37.427190405], [141.035601712, 37.425975243]]]}}, {"id": "31821", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "大熊町", "N03_005": null, "N03_007": "07545"}, "geometry": {"type": "Polygon", "coordinates": [[[141.03654393, 37.42653291], [141.040622853, 37.423407009], [141.036635681, 37.426194027], [141.03654393, 37.42653291]]]}}, {"id": "31822", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "大熊町", "N03_005": null, "N03_007": "07545"}, "geometry": {"type": "Polygon", "coordinates": [[[141.040978042, 37.42216145], [141.037839079, 37.42036618], [141.037825214, 37.42038173], [141.040978042, 37.42216145]]]}}, {"id": "31823", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "双葉町", "N03_005": null, "N03_007": "07546"}, "geometry": {"type": "Polygon", "coordinates": [[[140.963439922, 37.416663135], [140.897154112, 37.426333333], [140.893153995, 37.443763054], [140.949579196, 37.447375694], [140.993527588, 37.476863667], [141.036552815, 37.466356315], [141.034845045, 37.426890045], [141.00482192, 37.434013919], [140.963439922, 37.416663135]]]}}, {"id": "31824", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[140.839303943, 37.499903306], [140.851793943, 37.502810171], [140.845094332, 37.541425171], [140.789679468, 37.531295748], [140.683697588, 37.542835559], [140.697881167, 37.573681586], [140.724026161, 37.586752775], [140.718245966, 37.601443667], [140.793187523, 37.593392667], [140.814876589, 37.614808667], [140.880031803, 37.523997198], [140.913030246, 37.518451441], [140.931655863, 37.531314054], [140.993922244, 37.50816], [141.034209754, 37.513651126], [141.045860739, 37.47972609], [141.03163406, 37.461099468], [140.993527588, 37.476863667], [140.949579196, 37.447375694], [140.903177912, 37.449091027], [140.857556252, 37.420266108], [140.835761673, 37.460892559], [140.839303943, 37.499903306]]]}}, {"id": "31825", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.046111569, 37.480617802], [141.045475798, 37.481450225], [141.044802698, 37.482471622], [141.046111569, 37.480617802]]]}}, {"id": "31826", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.034982348, 37.511683694], [141.034979715, 37.511581622], [141.034902763, 37.511688018], [141.034982348, 37.511683694]]]}}, {"id": "31827", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.035029105, 37.511706189], [141.035116628, 37.511705207], [141.035153528, 37.511586703], [141.035029105, 37.511706189]]]}}, {"id": "31828", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.035339572, 37.51138009], [141.035266615, 37.511387414], [141.035232438, 37.511436054], [141.035339572, 37.51138009]]]}}, {"id": "31829", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.038325525, 37.501096604], [141.038314137, 37.501056261], [141.038286018, 37.501101333], [141.038325525, 37.501096604]]]}}, {"id": "31830", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.038430713, 37.501223387], [141.038416096, 37.501193261], [141.038387458, 37.501226892], [141.038430713, 37.501223387]]]}}, {"id": "31831", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "浪江町", "N03_005": null, "N03_007": "07547"}, "geometry": {"type": "Polygon", "coordinates": [[[141.038339728, 37.501818198], [141.038316355, 37.501792216], [141.038305279, 37.501807108], [141.038339728, 37.501818198]]]}}, {"id": "31832", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "双葉郡", "N03_004": "葛尾村", "N03_005": null, "N03_007": "07548"}, "geometry": {"type": "Polygon", "coordinates": [[[140.835766394, 37.461961721], [140.69158345, 37.503014973], [140.705456329, 37.523331802], [140.682032555, 37.541258892], [140.789679468, 37.531295748], [140.845094332, 37.541425171], [140.851793943, 37.502810171], [140.834945811, 37.500667505], [140.835766394, 37.461961721]]]}}, {"id": "31833", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.856668949, 37.891227559], [140.900221388, 37.904329667], [140.931013956, 37.896171342], [140.946431206, 37.853217955], [140.94979249, 37.858146135], [140.962416537, 37.860869387], [140.967786342, 37.85941518], [140.9493762, 37.855243099], [140.962347899, 37.841550018], [140.854177445, 37.841929775], [140.856668949, 37.891227559]]]}}, {"id": "31834", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.970537821, 37.853880847], [140.970371855, 37.85389182], [140.976311245, 37.86753936], [140.970537821, 37.853880847]]]}}, {"id": "31835", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.940710298, 37.875130577], [140.940156291, 37.87592164], [140.940872542, 37.875202486], [140.940710298, 37.875130577]]]}}, {"id": "31836", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.938394903, 37.876005306], [140.938853489, 37.876077225], [140.938853009, 37.875999838], [140.938394903, 37.876005306]]]}}, {"id": "31837", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.933327211, 37.881651568], [140.933120441, 37.881545108], [140.933159014, 37.881670081], [140.933327211, 37.881651568]]]}}, {"id": "31838", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.94525821, 37.857274622], [140.945352153, 37.85744609], [140.945662399, 37.857538036], [140.94525821, 37.857274622]]]}}, {"id": "31839", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.945912685, 37.857669649], [140.946077419, 37.857878658], [140.946126109, 37.857851532], [140.945912685, 37.857669649]]]}}, {"id": "31840", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "新地町", "N03_005": null, "N03_007": "07561"}, "geometry": {"type": "Polygon", "coordinates": [[[140.9457307, 37.857583883], [140.945795473, 37.857666703], [140.945819961, 37.85764782], [140.9457307, 37.857583883]]]}}, {"id": "31841", "type": "Feature", "properties": {"N03_001": "福島県", "N03_002": null, "N03_003": "相馬郡", "N03_004": "飯舘村", "N03_005": null, "N03_007": "07564"}, "geometry": {"type": "Polygon", "coordinates": [[[140.813554812, 37.675226973], [140.833205253, 37.630043279], [140.803197471, 37.595745108], [140.721614086, 37.600941694], [140.674225525, 37.622376973], [140.667174838, 37.676033667], [140.644895668, 37.691653441], [140.683102023, 37.742012225], [140.768506057, 37.761602586], [140.839928444, 37.734039468], [140.842960856, 37.722106171], [140.810282088, 37.705366135], [140.824633722, 37.699172441], [140.813554812, 37.675226973]]]}}, {"id": "31842", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "水戸市", "N03_005": null, "N03_007": "08201"}, "geometry": {"type": "Polygon", "coordinates": [[[140.501725473, 36.303898721], [140.492897198, 36.321809559], [140.424907082, 36.315511135], [140.409076304, 36.345428946], [140.385677912, 36.325881775], [140.393342892, 36.312911505], [140.344302309, 36.324051586], [140.3332162, 36.336501892], [140.341712529, 36.364050721], [140.322001141, 36.38379436], [140.354560363, 36.400055946], [140.337140999, 36.429135333], [140.398395914, 36.441309135], [140.381431505, 36.464382694], [140.409934916, 36.44782136], [140.414453359, 36.46086964], [140.426380026, 36.445738027], [140.448288003, 36.452028802], [140.451919001, 36.425268892], [140.474557445, 36.399073775], [140.48390703, 36.407547919], [140.492772244, 36.37467036], [140.502703476, 36.382331441], [140.586814254, 36.336681171], [140.559116304, 36.313286586], [140.501725473, 36.303898721]]]}}, {"id": "31843", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.611435032, 36.484443964], [140.619233243, 36.48017791], [140.604147224, 36.481972081], [140.559800117, 36.494619505], [140.601575888, 36.525276387], [140.578363307, 36.573564586], [140.587713645, 36.620983027], [140.542742503, 36.613144775], [140.517408807, 36.643433973], [140.549786887, 36.667534225], [140.543612698, 36.71061], [140.716405577, 36.692723847], [140.716492516, 36.661806883], [140.693632724, 36.644578414], [140.628313061, 36.495163802], [140.620695603, 36.486452604], [140.612880506, 36.487493919], [140.611435032, 36.484443964]]]}}, {"id": "31844", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.630537276, 36.494888955], [140.633466472, 36.48144273], [140.629794929, 36.486247658], [140.629887536, 36.492185568], [140.630537276, 36.494888955]]]}}, {"id": "31845", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.636713541, 36.474523649], [140.637020623, 36.482627541], [140.636960311, 36.474512811], [140.636713541, 36.474523649]]]}}, {"id": "31846", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.630752957, 36.498484387], [140.630850052, 36.49658864], [140.630429429, 36.494842991], [140.630752957, 36.498484387]]]}}, {"id": "31847", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.646761712, 36.539485766], [140.647842931, 36.540275144], [140.647939844, 36.540165892], [140.646761712, 36.539485766]]]}}, {"id": "31848", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.635491388, 36.508405171], [140.635267782, 36.508502108], [140.635405837, 36.508654892], [140.635491388, 36.508405171]]]}}, {"id": "31849", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.629937095, 36.476826018], [140.630056265, 36.476814856], [140.629641569, 36.476268153], [140.629937095, 36.476826018]]]}}, {"id": "31850", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.638778301, 36.499082946], [140.638859144, 36.499295171], [140.638963022, 36.499156279], [140.638778301, 36.499082946]]]}}, {"id": "31851", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.712158716, 36.658601883], [140.712372101, 36.65858773], [140.712374125, 36.65844891], [140.712158716, 36.658601883]]]}}, {"id": "31852", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.680445032, 36.614258081], [140.680254423, 36.614429586], [140.680619364, 36.614406081], [140.680445032, 36.614258081]]]}}, {"id": "31853", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.708766719, 36.654639892], [140.708979805, 36.654799081], [140.70886083, 36.654585108], [140.708766719, 36.654639892]]]}}, {"id": "31854", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.671851414, 36.597440721], [140.672166589, 36.597636054], [140.672167367, 36.597593333], [140.67206847, 36.597513559], [140.671851414, 36.597440721]]]}}, {"id": "31855", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662152503, 36.58088936], [140.662144747, 36.580706468], [140.662052866, 36.580744505], [140.662152503, 36.58088936]]]}}, {"id": "31856", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.683101855, 36.616390225], [140.683298003, 36.616333225], [140.683291894, 36.616306252], [140.683101855, 36.616390225]]]}}, {"id": "31857", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.671637912, 36.597438], [140.671512412, 36.597654081], [140.671662724, 36.597570667], [140.671637912, 36.597438]]]}}, {"id": "31858", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.708551894, 36.654867559], [140.708614358, 36.654805], [140.708553748, 36.654768054], [140.708551894, 36.654867559]]]}}, {"id": "31859", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.712869222, 36.657560054], [140.71280022, 36.657570306], [140.712882412, 36.657659108], [140.712869222, 36.657560054]]]}}, {"id": "31860", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.650556913, 36.544166261], [140.65050214, 36.544092982], [140.650485798, 36.544127874], [140.650556913, 36.544166261]]]}}, {"id": "31861", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.671833476, 36.597536108], [140.671808781, 36.597608838], [140.671836589, 36.59762936], [140.671833476, 36.597536108]]]}}, {"id": "31862", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662458418, 36.581052613], [140.662511582, 36.581091252], [140.662531051, 36.581064], [140.662458418, 36.581052613]]]}}, {"id": "31863", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.66316978, 36.581075694], [140.663104034, 36.581070468], [140.66318083, 36.58112636], [140.66316978, 36.581075694]]]}}, {"id": "31864", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662810804, 36.581321252], [140.662739805, 36.581348135], [140.662788054, 36.58135564], [140.662810804, 36.581321252]]]}}, {"id": "31865", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.683549585, 36.615950946], [140.683492724, 36.615943892], [140.683495499, 36.615972775], [140.683549585, 36.615950946]]]}}, {"id": "31866", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.707913839, 36.654566198], [140.707852672, 36.654526892], [140.707873528, 36.654581802], [140.707913839, 36.654566198]]]}}, {"id": "31867", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.671783333, 36.597665171], [140.671729416, 36.597661667], [140.671760856, 36.597694054], [140.671783333, 36.597665171]]]}}, {"id": "31868", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662396355, 36.580996802], [140.662384669, 36.581042748], [140.662419001, 36.581024505], [140.662396355, 36.580996802]]]}}, {"id": "31869", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662893606, 36.581362198], [140.662832802, 36.581350919], [140.662853385, 36.581384198], [140.662893606, 36.581362198]]]}}, {"id": "31870", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662318418, 36.580918748], [140.662255447, 36.580922441], [140.662280246, 36.580943279], [140.662318418, 36.580918748]]]}}, {"id": "31871", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.671461051, 36.597578198], [140.671468833, 36.597634559], [140.671478859, 36.597579973], [140.671461051, 36.597578198]]]}}, {"id": "31872", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.662353307, 36.580962667], [140.662308664, 36.580956505], [140.662331336, 36.580987441], [140.662353307, 36.580962667]]]}}, {"id": "31873", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.663049144, 36.581067414], [140.663060195, 36.581087802], [140.663080389, 36.581075775], [140.663049144, 36.581067414]]]}}, {"id": "31874", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "日立市", "N03_005": null, "N03_007": "08202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.672149364, 36.597665027], [140.672112672, 36.597682865], [140.672154475, 36.59767264], [140.672149364, 36.597665027]]]}}, {"id": "31875", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "土浦市", "N03_005": null, "N03_007": "08203"}, "geometry": {"type": "Polygon", "coordinates": [[[140.280458885, 36.113604586], [140.262285837, 36.052204387], [140.211355006, 36.055145892], [140.188744384, 36.030926775], [140.173049663, 36.040382081], [140.15639214, 36.01509264], [140.138189001, 36.045479613], [140.173133191, 36.065989279], [140.150910467, 36.091642081], [140.161290363, 36.106229838], [140.124867198, 36.126350198], [140.144452088, 36.133410694], [140.130451725, 36.168332613], [140.176514773, 36.171852505], [140.20675144, 36.14485636], [140.193673476, 36.129332802], [140.280458885, 36.113604586]]]}}, {"id": "31876", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "古河市", "N03_005": null, "N03_007": "08204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758908171, 36.126172973], [139.708679196, 36.137594135], [139.690559144, 36.205364108], [139.727486719, 36.201580721], [139.821609196, 36.239702838], [139.822289364, 36.205249532], [139.844634527, 36.222700892], [139.8645062, 36.196591973], [139.862452477, 36.177981387], [139.850613281, 36.18253336], [139.856299196, 36.147180225], [139.827022438, 36.155081135], [139.813899805, 36.136784775], [139.802292088, 36.155826748], [139.77636808, 36.153569027], [139.780237173, 36.133899586], [139.762168807, 36.138465441], [139.758908171, 36.126172973]]]}}, {"id": "31877", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "石岡市", "N03_005": null, "N03_007": "08205"}, "geometry": {"type": "Polygon", "coordinates": [[[140.246201855, 36.132903775], [140.279725084, 36.164693387], [140.236630117, 36.205470919], [140.209761089, 36.209709865], [140.223141894, 36.192521532], [140.175203671, 36.171401387], [140.143184034, 36.171906198], [140.128029079, 36.189431721], [140.110336278, 36.231352468], [140.132672827, 36.243209946], [140.154641505, 36.316153414], [140.202529611, 36.322001892], [140.258655188, 36.272133802], [140.315719442, 36.264721721], [140.280607173, 36.254881559], [140.272122724, 36.227684667], [140.344093502, 36.188856225], [140.308594617, 36.185676586], [140.307098054, 36.165281919], [140.345811946, 36.130679108], [140.246201855, 36.132903775]]]}}, {"id": "31878", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "結城市", "N03_005": null, "N03_007": "08207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.885053333, 36.212292532], [139.828435551, 36.217479252], [139.830857445, 36.20084536], [139.816486057, 36.225062586], [139.839536719, 36.300230865], [139.880677665, 36.322963586], [139.908405447, 36.279726054], [139.888221582, 36.253246387], [139.905678275, 36.234615279], [139.885053333, 36.212292532]]]}}, {"id": "31879", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "龍ケ崎市", "N03_005": null, "N03_007": "08208"}, "geometry": {"type": "Polygon", "coordinates": [[[140.130921284, 35.885024748], [140.154245032, 35.896182468], [140.127930272, 35.919880081], [140.132454332, 35.936047306], [140.097356446, 35.956406054], [140.089019274, 35.968180252], [140.08899939, 35.983161108], [140.101902555, 35.955495748], [140.122881946, 35.947847081], [140.093228716, 36.001298054], [140.097374332, 36.008353865], [140.133717588, 35.950374468], [140.150864189, 35.942821721], [140.157361582, 35.955733387], [140.175004643, 35.932027973], [140.19534939, 35.964941694], [140.261030389, 35.930593054], [140.196243191, 35.872353919], [140.184807108, 35.888437225], [140.130921284, 35.885024748]]]}}, {"id": "31880", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "龍ケ崎市", "N03_005": null, "N03_007": "08208"}, "geometry": {"type": "Polygon", "coordinates": [[[140.175354864, 35.944491135], [140.172837367, 35.944413919], [140.172217108, 35.946634198], [140.175354864, 35.944491135]]]}}, {"id": "31881", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "下妻市", "N03_005": null, "N03_007": "08210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.923053839, 36.132463198], [139.920982827, 36.169487559], [139.933045136, 36.165811225], [139.926594475, 36.151492333], [139.944070467, 36.161039586], [139.905501336, 36.230257505], [139.927750973, 36.243361919], [139.967600804, 36.222090802], [139.998365499, 36.238733532], [140.001464501, 36.206967225], [140.038107912, 36.197406054], [140.019514773, 36.191731387], [140.024639144, 36.17924364], [139.990919922, 36.133083], [139.959165772, 36.147210748], [139.923053839, 36.132463198]]]}}, {"id": "31882", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "下妻市", "N03_005": null, "N03_007": "08210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.996371582, 36.131883838], [139.995301025, 36.133043279], [139.996648249, 36.132332694], [139.996371582, 36.131883838]]]}}, {"id": "31883", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "常総市", "N03_005": null, "N03_007": "08211"}, "geometry": {"type": "Polygon", "coordinates": [[[139.923412529, 35.974563919], [139.919646641, 36.021739694], [139.949148664, 36.02644336], [139.94649358, 36.050987225], [139.959175837, 36.05127864], [139.93546703, 36.069199667], [139.938352244, 36.089137198], [139.898191997, 36.112265721], [139.893731855, 36.136897721], [139.959165772, 36.147210748], [139.996525772, 36.13656936], [140.001518911, 36.074129171], [140.029260584, 36.033634973], [139.993982776, 36.015672865], [140.001888807, 36.000983414], [139.972388807, 36.003454505], [139.969552892, 35.976085027], [139.923412529, 35.974563919]], [[139.995465746, 36.132055775], [139.996648249, 36.132332694], [139.995196031, 36.133005775], [139.995465746, 36.132055775]]]}}, {"id": "31884", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "常陸太田市", "N03_005": null, "N03_007": "08212"}, "geometry": {"type": "Polygon", "coordinates": [[[140.499802944, 36.492719838], [140.458118975, 36.51167436], [140.442501193, 36.542690946], [140.452831141, 36.544964198], [140.430788418, 36.566959802], [140.43552358, 36.613506667], [140.414549416, 36.631970054], [140.452287173, 36.660812667], [140.443170558, 36.675518225], [140.455239079, 36.687459], [140.415157302, 36.732087973], [140.447117977, 36.73058836], [140.458300661, 36.754264333], [140.468201219, 36.746009306], [140.462342672, 36.790623414], [140.513914968, 36.823442892], [140.538035888, 36.858856279], [140.565637302, 36.864017586], [140.535786498, 36.774918108], [140.557625383, 36.761758586], [140.562001855, 36.734543694], [140.537499416, 36.697271946], [140.549786887, 36.667534225], [140.51669939, 36.649858135], [140.542742503, 36.613144775], [140.587713645, 36.620983027], [140.578363307, 36.573564586], [140.601575888, 36.525276387], [140.559800117, 36.494619505], [140.548123891, 36.504748441], [140.499802944, 36.492719838]]]}}, {"id": "31885", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.643310584, 36.773074946], [140.733149261, 36.74865582], [140.716405577, 36.692723847], [140.554769831, 36.713548387], [140.558475668, 36.75995636], [140.535786498, 36.774918108], [140.567468716, 36.863200919], [140.598456355, 36.870597694], [140.604019585, 36.85267264], [140.675973995, 36.807275667], [140.643310584, 36.773074946]]]}}, {"id": "31886", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.733411556, 36.720652667], [140.732907951, 36.720647108], [140.733236835, 36.720895171], [140.733411556, 36.720652667]]]}}, {"id": "31887", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.744631025, 36.713209775], [140.744637977, 36.712776171], [140.744400195, 36.712888946], [140.744631025, 36.713209775]]]}}, {"id": "31888", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.729851505, 36.719165198], [140.730236226, 36.719215748], [140.730096498, 36.719063802], [140.729851505, 36.719165198]]]}}, {"id": "31889", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.728452581, 36.718376613], [140.728627588, 36.718117441], [140.72834061, 36.718128559], [140.728452581, 36.718376613]]]}}, {"id": "31890", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.730222283, 36.716275198], [140.730201167, 36.71604964], [140.729984501, 36.716184919], [140.730222283, 36.716275198]]]}}, {"id": "31891", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "高萩市", "N03_005": null, "N03_007": "08214"}, "geometry": {"type": "Polygon", "coordinates": [[[140.728683411, 36.717920225], [140.728557562, 36.717728559], [140.728487562, 36.717880775], [140.728683411, 36.717920225]]]}}, {"id": "31892", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.733440117, 36.749555586], [140.688486109, 36.750341586], [140.643974475, 36.772058838], [140.679880947, 36.801479279], [140.604019585, 36.85267264], [140.564958029, 36.912856613], [140.569477056, 36.938630135], [140.586605253, 36.945105387], [140.615519442, 36.903270306], [140.798365331, 36.85823764], [140.805566667, 36.830778802], [140.768486615, 36.818328973], [140.733440117, 36.749555586]]]}}, {"id": "31893", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.787662503, 36.824382198], [140.792821245, 36.825753946], [140.785653774, 36.822469135], [140.787662503, 36.824382198]]]}}, {"id": "31894", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.799476589, 36.857392333], [140.800370999, 36.860766081], [140.800619014, 36.860878045], [140.799476589, 36.857392333]]]}}, {"id": "31895", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.757141025, 36.794027802], [140.757770752, 36.793671414], [140.757197108, 36.793700027], [140.757141025, 36.794027802]]]}}, {"id": "31896", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.785590311, 36.821030748], [140.785453191, 36.821099721], [140.786651725, 36.822377414], [140.785590311, 36.821030748]]]}}, {"id": "31897", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.798430246, 36.859395441], [140.796274034, 36.859314586], [140.79627083, 36.859379955], [140.798430246, 36.859395441]]]}}, {"id": "31898", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.762427004, 36.805793054], [140.76240153, 36.805530027], [140.762177639, 36.805811505], [140.762427004, 36.805793054]]]}}, {"id": "31899", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803825084, 36.833456054], [140.80381358, 36.833761027], [140.803946524, 36.833714252], [140.803825084, 36.833456054]]]}}, {"id": "31900", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804226809, 36.829186054], [140.80400275, 36.829153306], [140.804217471, 36.829263838], [140.804226809, 36.829186054]]]}}, {"id": "31901", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804038911, 36.833901027], [140.804081362, 36.834084505], [140.804107912, 36.833906027], [140.804038911, 36.833901027]]]}}, {"id": "31902", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803793606, 36.833279333], [140.803799144, 36.833131667], [140.803702607, 36.833123802], [140.803793606, 36.833279333]]]}}, {"id": "31903", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803691284, 36.832980802], [140.80358083, 36.83312164], [140.803688106, 36.833137441], [140.803691284, 36.832980802]]]}}, {"id": "31904", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.802529416, 36.839311441], [140.802485616, 36.839199532], [140.802448975, 36.839342468], [140.802529416, 36.839311441]]]}}, {"id": "31905", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.762189222, 36.804912694], [140.762049222, 36.804965198], [140.762041997, 36.805020748], [140.762189222, 36.804912694]]]}}, {"id": "31906", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804025499, 36.833878135], [140.80393939, 36.833778468], [140.803959585, 36.833895], [140.804025499, 36.833878135]]]}}, {"id": "31907", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803991245, 36.828953694], [140.803901725, 36.829018946], [140.804014332, 36.829015225], [140.803991245, 36.828953694]]]}}, {"id": "31908", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804291556, 36.83603164], [140.804173281, 36.83606836], [140.804305746, 36.836081081], [140.804291556, 36.83603164]]]}}, {"id": "31909", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803446226, 36.834506108], [140.803443774, 36.834596613], [140.803540311, 36.834598], [140.803446226, 36.834506108]]]}}, {"id": "31910", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.797124254, 36.843990613], [140.797217393, 36.844069892], [140.797193333, 36.84396664], [140.797124254, 36.843990613]]]}}, {"id": "31911", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.802999494, 36.837987613], [140.802949144, 36.837898333], [140.802912581, 36.837958667], [140.802999494, 36.837987613]]]}}, {"id": "31912", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804529105, 36.834614694], [140.804512802, 36.834690532], [140.80456406, 36.834672892], [140.804529105, 36.834614694]]]}}, {"id": "31913", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804418197, 36.836045468], [140.804338638, 36.836075865], [140.804422387, 36.83608536], [140.804418197, 36.836045468]]]}}, {"id": "31914", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.803427691, 36.833698198], [140.803364475, 36.833699], [140.803397134, 36.833763414], [140.803427691, 36.833698198]]]}}, {"id": "31915", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.797217562, 36.843760973], [140.797299144, 36.843747613], [140.797214721, 36.843732414], [140.797217562, 36.843760973]]]}}, {"id": "31916", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "北茨城市", "N03_005": null, "N03_007": "08215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.804136161, 36.834268333], [140.804150246, 36.834309225], [140.804171505, 36.834297532], [140.804136161, 36.834268333]]]}}, {"id": "31917", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "笠間市", "N03_005": null, "N03_007": "08216"}, "geometry": {"type": "Polygon", "coordinates": [[[140.257598249, 36.273331586], [140.162723671, 36.343685838], [140.202044747, 36.432811468], [140.253931219, 36.430855559], [140.29589358, 36.449183775], [140.349979339, 36.418692027], [140.354384812, 36.399655946], [140.322050584, 36.383257973], [140.342614475, 36.361554333], [140.333317004, 36.335828], [140.370081855, 36.312274333], [140.342532412, 36.265582198], [140.31246869, 36.280850027], [140.257598249, 36.273331586]]]}}, {"id": "31918", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "取手市", "N03_005": null, "N03_007": "08217"}, "geometry": {"type": "Polygon", "coordinates": [[[140.127416161, 35.872164775], [140.073673359, 35.876718027], [139.995202944, 35.909566586], [140.020014332, 35.954206279], [140.045069857, 35.931401721], [140.114373333, 35.947910414], [140.154245032, 35.896182468], [140.130245227, 35.891097532], [140.127416161, 35.872164775]]]}}, {"id": "31919", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "牛久市", "N03_005": null, "N03_007": "08219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.272932244, 35.943429694], [140.194397691, 35.965040306], [140.175004643, 35.932027973], [140.157361582, 35.955733387], [140.150253645, 35.942783667], [140.120187613, 35.958772081], [140.114727497, 35.979812414], [140.141249883, 35.988248748], [140.145934721, 36.028063225], [140.205266693, 35.968351973], [140.218424449, 35.984030559], [140.253753606, 35.985786865], [140.272932244, 35.943429694]], [[140.172837367, 35.944413919], [140.174631829, 35.946393919], [140.172217108, 35.946634198], [140.172837367, 35.944413919]]]}}, {"id": "31920", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "つくば市", "N03_005": null, "N03_007": "08220"}, "geometry": {"type": "Polygon", "coordinates": [[[140.079653645, 35.999711135], [140.045181089, 36.012247694], [140.049419857, 36.032429613], [140.005741608, 36.062741775], [139.998320726, 36.088607505], [140.007625162, 36.172178973], [140.049882477, 36.204098802], [140.044839442, 36.214177667], [140.060135058, 36.213433748], [140.055048521, 36.236705919], [140.058600143, 36.225420946], [140.118057108, 36.226669694], [140.144452088, 36.133410694], [140.124867198, 36.126350198], [140.161290363, 36.106229838], [140.150910467, 36.091642081], [140.173160415, 36.065773171], [140.138189001, 36.045479613], [140.138823748, 35.985880694], [140.114727497, 35.979812414], [140.094026252, 36.004719171], [140.122422503, 35.947338198], [140.090847886, 35.967627468], [140.079653645, 35.999711135]]]}}, {"id": "31921", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "ひたちなか市", "N03_005": null, "N03_007": "08221"}, "geometry": {"type": "Polygon", "coordinates": [[[140.624995447, 36.368954252], [140.587930921, 36.336095892], [140.502703476, 36.382331441], [140.492772244, 36.37467036], [140.482002827, 36.403746532], [140.518669728, 36.427859081], [140.529922023, 36.463182838], [140.556808833, 36.437874171], [140.623581025, 36.426335667], [140.609694838, 36.405178865], [140.619004617, 36.411182081], [140.624995447, 36.368954252]]]}}, {"id": "31922", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "ひたちなか市", "N03_005": null, "N03_007": "08221"}, "geometry": {"type": "Polygon", "coordinates": [[[140.601035551, 36.336550838], [140.594963541, 36.337501405], [140.596265162, 36.338229892], [140.597573606, 36.337635171], [140.599011855, 36.33735336], [140.600597198, 36.336862414], [140.60099786, 36.336646613], [140.602466329, 36.337398468], [140.601035551, 36.336550838]]]}}, {"id": "31923", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "ひたちなか市", "N03_005": null, "N03_007": "08221"}, "geometry": {"type": "Polygon", "coordinates": [[[140.622202776, 36.427308054], [140.625823528, 36.427103387], [140.62219917, 36.427161775], [140.622202776, 36.427308054]]]}}, {"id": "31924", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "ひたちなか市", "N03_005": null, "N03_007": "08221"}, "geometry": {"type": "Polygon", "coordinates": [[[140.605065577, 36.337665081], [140.60511358, 36.336672946], [140.605004475, 36.336672946], [140.605065577, 36.337665081]]]}}, {"id": "31925", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "鹿嶋市", "N03_005": null, "N03_007": "08222"}, "geometry": {"type": "Polygon", "coordinates": [[[140.624610389, 35.933331387], [140.590359494, 35.967798027], [140.596156939, 35.982848], [140.566581971, 36.012086865], [140.553857276, 36.054936802], [140.607334669, 36.08200036], [140.66756572, 35.976368171], [140.678331167, 35.967468306], [140.680740661, 35.972439279], [140.682581505, 35.968531973], [140.693496446, 35.969106739], [140.702344721, 35.963060523], [140.684896641, 35.964434027], [140.703508833, 35.938676586], [140.6923393, 35.932691586], [140.624610389, 35.933331387]]]}}, {"id": "31926", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "鹿嶋市", "N03_005": null, "N03_007": "08222"}, "geometry": {"type": "Polygon", "coordinates": [[[140.711312218, 35.940544081], [140.71287323, 35.962221694], [140.713099364, 35.962216883], [140.711312218, 35.940544081]]]}}, {"id": "31927", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "鹿嶋市", "N03_005": null, "N03_007": "08222"}, "geometry": {"type": "Polygon", "coordinates": [[[140.679675863, 35.973711613], [140.680883645, 35.973149667], [140.679606978, 35.973579108], [140.679675863, 35.973711613]]]}}, {"id": "31928", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "潮来市", "N03_005": null, "N03_007": "08223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.598861284, 35.903165802], [140.485283748, 35.969962171], [140.514487912, 35.979368667], [140.509749754, 36.002632775], [140.538183476, 35.989707198], [140.566581971, 36.012086865], [140.596156939, 35.982848], [140.590359494, 35.967798027], [140.623901141, 35.940489721], [140.598861284, 35.903165802]]]}}, {"id": "31929", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "守谷市", "N03_005": null, "N03_007": "08224"}, "geometry": {"type": "Polygon", "coordinates": [[[139.996744358, 35.913024892], [139.937276005, 35.941593919], [139.935380895, 35.975107532], [139.97141345, 35.977519748], [140.020014332, 35.954206279], [139.996744358, 35.913024892]]]}}, {"id": "31930", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "常陸大宮市", "N03_005": null, "N03_007": "08225"}, "geometry": {"type": "Polygon", "coordinates": [[[140.249647082, 36.530938721], [140.240930311, 36.650922802], [140.220066161, 36.684464], [140.229879079, 36.698825667], [140.327824669, 36.724504252], [140.333300752, 36.707760613], [140.384459611, 36.682596802], [140.426884695, 36.684881054], [140.441149144, 36.704069027], [140.451459105, 36.693782892], [140.452287173, 36.660812667], [140.414549416, 36.631970054], [140.43552358, 36.613506667], [140.430788418, 36.566959802], [140.459791219, 36.509919081], [140.417717562, 36.515260559], [140.394560895, 36.490664279], [140.368092827, 36.528235081], [140.324971582, 36.549716838], [140.280213333, 36.519776721], [140.249647082, 36.530938721]]]}}, {"id": "31931", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "那珂市", "N03_005": null, "N03_007": "08226"}, "geometry": {"type": "Polygon", "coordinates": [[[140.474557445, 36.399073775], [140.459164942, 36.434719694], [140.448288003, 36.452028802], [140.426380026, 36.445738027], [140.407995668, 36.482967892], [140.386860804, 36.484985387], [140.412453333, 36.513281387], [140.502222412, 36.490225946], [140.521076057, 36.503845802], [140.566290441, 36.494277532], [140.541680026, 36.475180775], [140.542521855, 36.456706387], [140.529922023, 36.463182838], [140.514990636, 36.447253505], [140.510640441, 36.41943136], [140.474557445, 36.399073775]]]}}, {"id": "31932", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "筑西市", "N03_005": null, "N03_007": "08227"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067448392, 36.275900252], [140.050140973, 36.230602613], [140.060135058, 36.213433748], [140.026548716, 36.198377198], [140.001464501, 36.206967225], [139.998365499, 36.238733532], [139.967600804, 36.222090802], [139.936523528, 36.24544136], [139.905474942, 36.230434441], [139.888218807, 36.253168892], [139.908405447, 36.279726054], [139.897210973, 36.29286636], [139.914777276, 36.307856865], [139.914331556, 36.336711586], [139.964501414, 36.350941748], [139.97354022, 36.378537279], [139.989928781, 36.367207802], [140.03510061, 36.378223], [140.050192827, 36.359906586], [140.034718833, 36.359299694], [140.052939339, 36.329226333], [140.050651803, 36.275440865], [140.067448392, 36.275900252]]]}}, {"id": "31933", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "坂東市", "N03_005": null, "N03_007": "08228"}, "geometry": {"type": "Polygon", "coordinates": [[[139.882845863, 35.990367775], [139.820170311, 36.05717936], [139.854616031, 36.068512559], [139.838255473, 36.089345027], [139.849807393, 36.128728], [139.827022438, 36.155081135], [139.880061777, 36.138967694], [139.959175837, 36.05127864], [139.94649358, 36.050987225], [139.949148664, 36.02644336], [139.919646641, 36.021739694], [139.923661414, 35.970237252], [139.882845863, 35.990367775]], [[139.839918833, 36.089784721], [139.843704384, 36.088275838], [139.842997173, 36.090287225], [139.839918833, 36.089784721]], [[139.843442477, 36.096931081], [139.842613865, 36.095649135], [139.843378301, 36.095607748], [139.843442477, 36.096931081]]]}}, {"id": "31934", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "坂東市", "N03_005": null, "N03_007": "08228"}, "geometry": {"type": "Polygon", "coordinates": [[[139.838035772, 36.090361694], [139.835869948, 36.094269468], [139.839324695, 36.096601667], [139.838035772, 36.090361694]]]}}, {"id": "31935", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "坂東市", "N03_005": null, "N03_007": "08228"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835992244, 36.115002198], [139.837670856, 36.113002468], [139.835270856, 36.112553027], [139.835992244, 36.115002198]]]}}, {"id": "31936", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "稲敷市", "N03_005": null, "N03_007": "08229"}, "geometry": {"type": "Polygon", "coordinates": [[[140.422886978, 35.906712721], [140.325825888, 35.90485036], [140.314568418, 35.881513171], [140.258402023, 35.898568387], [140.247227691, 35.911844532], [140.272932244, 35.943429694], [140.257545772, 35.979133802], [140.298465006, 35.985937973], [140.304897445, 35.973469667], [140.330305914, 36.005130973], [140.380091673, 35.993059802], [140.409500415, 36.023295721], [140.466108664, 35.97522336], [140.511244643, 35.958735414], [140.487176394, 35.928592], [140.502802607, 35.905520279], [140.458438171, 35.926540225], [140.422886978, 35.906712721]]]}}, {"id": "31937", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "かすみがうら市", "N03_005": null, "N03_007": "08230"}, "geometry": {"type": "Polygon", "coordinates": [[[140.391666667, 36.038323333], [140.262285837, 36.052204387], [140.259688612, 36.09340964], [140.282890558, 36.110243748], [140.193673476, 36.129332802], [140.20675144, 36.14485636], [140.176543671, 36.171798613], [140.223141894, 36.192521532], [140.209761089, 36.209709865], [140.236630117, 36.205470919], [140.279725084, 36.164693387], [140.246117977, 36.132914892], [140.366642633, 36.130509613], [140.404703671, 36.082626198], [140.391666667, 36.038323333]]]}}, {"id": "31938", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "桜川市", "N03_005": null, "N03_007": "08231"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058600143, 36.225420946], [140.067448392, 36.275900252], [140.050651803, 36.275440865], [140.041467302, 36.375228559], [140.063733307, 36.382170441], [140.066398716, 36.403773198], [140.111077004, 36.39795364], [140.125336355, 36.414131108], [140.185157471, 36.398337667], [140.191206615, 36.384784054], [140.16232642, 36.341735559], [140.182843671, 36.324412505], [140.143260804, 36.306046505], [140.152356005, 36.287456532], [140.132672827, 36.243209946], [140.098136161, 36.226277225], [140.058600143, 36.225420946]]]}}, {"id": "31939", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "神栖市", "N03_005": null, "N03_007": "08232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.628476524, 35.865213081], [140.598861284, 35.903165802], [140.620420169, 35.935744865], [140.669899637, 35.918457838], [140.686876887, 35.881008802], [140.677284332, 35.912237838], [140.711550117, 35.940642505], [140.706983476, 35.923172667], [140.743128418, 35.865226892], [140.851225863, 35.742632973], [140.8097107, 35.744472027], [140.734545772, 35.791189802], [140.706112724, 35.836571279], [140.628476524, 35.865213081]]]}}, {"id": "31940", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "神栖市", "N03_005": null, "N03_007": "08232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.694194501, 35.933188667], [140.676889948, 35.919127892], [140.655703852, 35.929101018], [140.659767393, 35.928886667], [140.694194501, 35.933188667]]]}}, {"id": "31941", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "神栖市", "N03_005": null, "N03_007": "08232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.69480192, 35.92933164], [140.697145422, 35.933013108], [140.699076342, 35.934217216], [140.69480192, 35.92933164]]]}}, {"id": "31942", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "神栖市", "N03_005": null, "N03_007": "08232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.697866394, 35.934982099], [140.697828392, 35.934499559], [140.69759061, 35.93486864], [140.697866394, 35.934982099]]]}}, {"id": "31943", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "神栖市", "N03_005": null, "N03_007": "08232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.8413293, 35.750098135], [140.841309974, 35.750428441], [140.841522244, 35.750270919], [140.8413293, 35.750098135]]]}}, {"id": "31944", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "行方市", "N03_005": null, "N03_007": "08233"}, "geometry": {"type": "Polygon", "coordinates": [[[140.483333333, 35.970350505], [140.39599489, 36.037481865], [140.404703671, 36.082626198], [140.363256446, 36.157139838], [140.394725837, 36.155945306], [140.40712022, 36.136819441], [140.438952114, 36.166316279], [140.455781051, 36.158563441], [140.446878885, 36.139755694], [140.460606641, 36.124277613], [140.507276809, 36.132608586], [140.530707665, 36.115784081], [140.566581971, 36.012086865], [140.538183476, 35.989707198], [140.509749754, 36.002632775], [140.514487912, 35.979368667], [140.483333333, 35.970350505]]]}}, {"id": "31945", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "鉾田市", "N03_005": null, "N03_007": "08234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.56168061, 36.062496973], [140.543749001, 36.068922919], [140.523949364, 36.123759108], [140.449772438, 36.131419586], [140.455781051, 36.158563441], [140.436557367, 36.165983225], [140.447778521, 36.195112054], [140.414620973, 36.219864054], [140.440988301, 36.238811468], [140.447279948, 36.228821198], [140.49633022, 36.245968838], [140.496227977, 36.275973225], [140.522407393, 36.278233171], [140.561470817, 36.253675423], [140.57443192, 36.175155261], [140.61163607, 36.085798297], [140.56168061, 36.062496973]]]}}, {"id": "31946", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "つくばみらい市", "N03_005": null, "N03_007": "08235"}, "geometry": {"type": "Polygon", "coordinates": [[[140.082066978, 35.997983919], [140.110626887, 35.942951559], [140.045069857, 35.931401721], [139.97141345, 35.977519748], [139.972334086, 36.003399775], [140.001888807, 36.000983414], [139.991366641, 36.01237564], [140.025799728, 36.03006136], [140.026776252, 36.045509694], [140.049419857, 36.032429613], [140.047902724, 36.009571838], [140.082066978, 35.997983919]]]}}, {"id": "31947", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": null, "N03_004": "小美玉市", "N03_005": null, "N03_007": "08236"}, "geometry": {"type": "Polygon", "coordinates": [[[140.307369728, 36.165740802], [140.308594617, 36.185676586], [140.344093502, 36.188856225], [140.271928859, 36.231301054], [140.280607173, 36.254881559], [140.315698885, 36.264666721], [140.312252023, 36.280844748], [140.38442131, 36.256445198], [140.384398106, 36.239901333], [140.449844578, 36.186279838], [140.40712022, 36.136819441], [140.394725837, 36.155945306], [140.363256446, 36.157139838], [140.366642633, 36.130509613], [140.345811946, 36.130679108], [140.307369728, 36.165740802]]]}}, {"id": "31948", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "茨城町", "N03_005": null, "N03_007": "08302"}, "geometry": {"type": "Polygon", "coordinates": [[[140.415172088, 36.220220721], [140.384398106, 36.239901333], [140.38442131, 36.256445198], [140.342416057, 36.268929694], [140.356793671, 36.307070748], [140.395301803, 36.314098441], [140.385677912, 36.325881775], [140.40698489, 36.345597], [140.424991245, 36.315477252], [140.492897198, 36.321809559], [140.500730169, 36.302797333], [140.532633774, 36.302806694], [140.522407393, 36.278233171], [140.496227977, 36.275973225], [140.49633022, 36.245968838], [140.415172088, 36.220220721]]]}}, {"id": "31949", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594660013, 36.333257306], [140.560786381, 36.292272739], [140.55955476, 36.25578464], [140.526112581, 36.266418171], [140.538568911, 36.314476387], [140.594660013, 36.333257306]]]}}, {"id": "31950", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58722, 36.290676045], [140.584969637, 36.293497658], [140.585087652, 36.301906739], [140.58722, 36.290676045]]]}}, {"id": "31951", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594484514, 36.321123712], [140.594379131, 36.321727865], [140.59469524, 36.321399955], [140.594484514, 36.321123712]]]}}, {"id": "31952", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594387393, 36.320344748], [140.593990272, 36.320403964], [140.593980921, 36.320828153], [140.594387393, 36.320344748]]]}}, {"id": "31953", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.593727121, 36.318536802], [140.593378872, 36.318502342], [140.593472931, 36.318967775], [140.593727121, 36.318536802]]]}}, {"id": "31954", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591089183, 36.315961378], [140.590966265, 36.315653838], [140.590783645, 36.315642739], [140.591089183, 36.315961378]]]}}, {"id": "31955", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594221505, 36.320934414], [140.59393061, 36.321187171], [140.593969494, 36.321302559], [140.594221505, 36.320934414]]]}}, {"id": "31956", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.5912438, 36.316449414], [140.591224591, 36.316201964], [140.591023009, 36.316222802], [140.5912438, 36.316449414]]]}}, {"id": "31957", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.59456607, 36.321035595], [140.594455318, 36.320721495], [140.594516265, 36.321067099], [140.59456607, 36.321035595]]]}}, {"id": "31958", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.593657211, 36.319549], [140.593460065, 36.319432279], [140.593504565, 36.319610622], [140.593657211, 36.319549]]]}}, {"id": "31959", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.593151569, 36.31918964], [140.593377432, 36.319122324], [140.593157588, 36.319053243], [140.593151569, 36.31918964]]]}}, {"id": "31960", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.592774942, 36.318515459], [140.592510532, 36.318673414], [140.592474332, 36.318775577], [140.592774942, 36.318515459]]]}}, {"id": "31961", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587682218, 36.311161946], [140.587482309, 36.311170775], [140.587690039, 36.311233811], [140.587682218, 36.311161946]]]}}, {"id": "31962", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58960725, 36.314933604], [140.589410233, 36.314989099], [140.589395992, 36.315048495], [140.58960725, 36.314933604]]]}}, {"id": "31963", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.59373428, 36.320191279], [140.593592361, 36.320244901], [140.593630402, 36.32033118], [140.59373428, 36.320191279]]]}}, {"id": "31964", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.590246083, 36.315803505], [140.590126498, 36.31565573], [140.590131336, 36.315868667], [140.590246083, 36.315803505]]]}}, {"id": "31965", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591623152, 36.317465423], [140.591536316, 36.317652982], [140.591691401, 36.317521414], [140.591623152, 36.317465423]]]}}, {"id": "31966", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594233268, 36.324298532], [140.594131193, 36.324269081], [140.594296304, 36.324331748], [140.594233268, 36.324298532]]]}}, {"id": "31967", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594564319, 36.322001027], [140.594458729, 36.322045225], [140.594548664, 36.322143703], [140.594564319, 36.322001027]]]}}, {"id": "31968", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58730144, 36.311781793], [140.587159598, 36.311737712], [140.587290493, 36.311836477], [140.58730144, 36.311781793]]]}}, {"id": "31969", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594433748, 36.321812414], [140.59422454, 36.321796622], [140.594423204, 36.321863045], [140.594433748, 36.321812414]]]}}, {"id": "31970", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594119507, 36.320076261], [140.593989377, 36.320185514], [140.59401572, 36.320225901], [140.594119507, 36.320076261]]]}}, {"id": "31971", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591592607, 36.316956414], [140.591432257, 36.317003748], [140.591479974, 36.317089613], [140.591592607, 36.316956414]]]}}, {"id": "31972", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589547471, 36.313794613], [140.589452607, 36.313772595], [140.589518067, 36.313885649], [140.589547471, 36.313794613]]]}}, {"id": "31973", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587339974, 36.311608694], [140.587134877, 36.311552667], [140.587399403, 36.311720523], [140.587339974, 36.311608694]]]}}, {"id": "31974", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587479001, 36.311602676], [140.587350013, 36.311540856], [140.587463567, 36.311688658], [140.587479001, 36.311602676]]]}}, {"id": "31975", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594863709, 36.321659622], [140.594717082, 36.321687045], [140.594783476, 36.321735559], [140.594863709, 36.321659622]]]}}, {"id": "31976", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594158119, 36.32381945], [140.594067341, 36.323806964], [140.594148003, 36.323867649], [140.594158119, 36.32381945]]]}}, {"id": "31977", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589055032, 36.310044189], [140.58896332, 36.309967171], [140.589011466, 36.31008727], [140.589055032, 36.310044189]]]}}, {"id": "31978", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.586054008, 36.310830901], [140.586203126, 36.310798324], [140.586079715, 36.310736649], [140.586054008, 36.310830901]]]}}, {"id": "31979", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587319014, 36.31251909], [140.587245642, 36.312452135], [140.587237562, 36.312467955], [140.587319014, 36.31251909]]]}}, {"id": "31980", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587501543, 36.312532991], [140.587392711, 36.312575676], [140.587526381, 36.312579243], [140.587501543, 36.312532991]]]}}, {"id": "31981", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594730402, 36.321865775], [140.594576796, 36.321909288], [140.594754553, 36.321910324], [140.594730402, 36.321865775]]]}}, {"id": "31982", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589078275, 36.313144622], [140.588978327, 36.313183919], [140.58904537, 36.313242712], [140.589078275, 36.313144622]]]}}, {"id": "31983", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587497808, 36.31140482], [140.587435655, 36.31147245], [140.587494189, 36.31149173], [140.587497808, 36.31140482]]]}}, {"id": "31984", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.590897471, 36.316335081], [140.590990272, 36.316350622], [140.59092939, 36.316238351], [140.590897471, 36.316335081]]]}}, {"id": "31985", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594512711, 36.32251209], [140.594440843, 36.322417198], [140.594422737, 36.322502216], [140.594512711, 36.32251209]]]}}, {"id": "31986", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587992075, 36.312739793], [140.587876161, 36.312741514], [140.587941232, 36.312813838], [140.587992075, 36.312739793]]]}}, {"id": "31987", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594755032, 36.32337927], [140.594801673, 36.323524973], [140.594837341, 36.323402712], [140.594755032, 36.32337927]]]}}, {"id": "31988", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591415953, 36.317321099], [140.59135192, 36.317252018], [140.591326783, 36.317289757], [140.591415953, 36.317321099]]]}}, {"id": "31989", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589615175, 36.314981045], [140.589517951, 36.31511964], [140.589648288, 36.314984982], [140.589615175, 36.314981045]]]}}, {"id": "31990", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591151608, 36.315576054], [140.591064838, 36.315632306], [140.591170804, 36.315615766], [140.591151608, 36.315576054]]]}}, {"id": "31991", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.586503904, 36.310543], [140.58640882, 36.310533505], [140.58642048, 36.310611387], [140.586503904, 36.310543]]]}}, {"id": "31992", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587986835, 36.311029784], [140.587934475, 36.311130523], [140.587968171, 36.311149595], [140.587986835, 36.311029784]]]}}, {"id": "31993", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591001907, 36.316643189], [140.590909987, 36.316535441], [140.590928275, 36.316652937], [140.591001907, 36.316643189]]]}}, {"id": "31994", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591284864, 36.317066964], [140.591209351, 36.317111964], [140.591245292, 36.317131568], [140.591284864, 36.317066964]]]}}, {"id": "31995", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58866786, 36.313358649], [140.588757121, 36.313364396], [140.588708599, 36.313297919], [140.58866786, 36.313358649]]]}}, {"id": "31996", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588594514, 36.313303775], [140.588628794, 36.313210369], [140.588570415, 36.313230658], [140.588594514, 36.313303775]]]}}, {"id": "31997", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589189507, 36.313385459], [140.589098482, 36.313392432], [140.589119481, 36.31346782], [140.589189507, 36.313385459]]]}}, {"id": "31998", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591486615, 36.316498973], [140.591386822, 36.316543955], [140.591421907, 36.316602486], [140.591486615, 36.316498973]]]}}, {"id": "31999", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594160817, 36.321897604], [140.594118119, 36.321938973], [140.594170026, 36.32193991], [140.594160817, 36.321897604]]]}}, {"id": "32000", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594204656, 36.32332518], [140.594286732, 36.323405324], [140.594250039, 36.323318676], [140.594204656, 36.32332518]]]}}, {"id": "32001", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594117121, 36.323451189], [140.594186213, 36.323410288], [140.594100843, 36.323381541], [140.594117121, 36.323451189]]]}}, {"id": "32002", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594050999, 36.324039315], [140.594125357, 36.324103649], [140.59416939, 36.324073441], [140.594050999, 36.324039315]]]}}, {"id": "32003", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587166615, 36.311507577], [140.587148612, 36.311394586], [140.587119741, 36.311391432], [140.587166615, 36.311507577]]]}}, {"id": "32004", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589269261, 36.314770631], [140.589205966, 36.314709649], [140.589193294, 36.314723162], [140.589269261, 36.314770631]]]}}, {"id": "32005", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589231401, 36.314310054], [140.589316667, 36.314363685], [140.589314695, 36.31428673], [140.589231401, 36.314310054]]]}}, {"id": "32006", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591094734, 36.316477396], [140.591027562, 36.31651], [140.591097562, 36.316493423], [140.591094734, 36.316477396]]]}}, {"id": "32007", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589180778, 36.313299441], [140.58924214, 36.313322486], [140.589273307, 36.313252351], [140.589180778, 36.313299441]]]}}, {"id": "32008", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.590262931, 36.315679559], [140.590280402, 36.315609243], [140.590220869, 36.315603225], [140.590262931, 36.315679559]]]}}, {"id": "32009", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594510687, 36.322372505], [140.594447302, 36.322279541], [140.594434682, 36.322355775], [140.594510687, 36.322372505]]]}}, {"id": "32010", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589347406, 36.314780135], [140.589398898, 36.314818838], [140.589470052, 36.314760523], [140.589347406, 36.314780135]]]}}, {"id": "32011", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589479767, 36.313989982], [140.589427276, 36.314056108], [140.589471518, 36.314081333], [140.589479767, 36.313989982]]]}}, {"id": "32012", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58890904, 36.312881712], [140.588952776, 36.312809703], [140.588891673, 36.312824775], [140.58890904, 36.312881712]]]}}, {"id": "32013", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.59127725, 36.316901631], [140.591271712, 36.316973946], [140.591316511, 36.316988081], [140.59127725, 36.316901631]]]}}, {"id": "32014", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588230986, 36.313010009], [140.588303359, 36.312997838], [140.588283969, 36.312985072], [140.588230986, 36.313010009]]]}}, {"id": "32015", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591496278, 36.317473712], [140.591384332, 36.317459459], [140.591364786, 36.317500775], [140.591496278, 36.317473712]]]}}, {"id": "32016", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591509014, 36.31684636], [140.591524345, 36.316922865], [140.591576511, 36.316881802], [140.591509014, 36.31684636]]]}}, {"id": "32017", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591383294, 36.316857973], [140.591300817, 36.316828117], [140.591353022, 36.316894396], [140.591383294, 36.316857973]]]}}, {"id": "32018", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589436952, 36.314514964], [140.589505292, 36.314557883], [140.589489014, 36.314486153], [140.589436952, 36.314514964]]]}}, {"id": "32019", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589113139, 36.313802225], [140.589155681, 36.31373418], [140.589114358, 36.313721649], [140.589113139, 36.313802225]]]}}, {"id": "32020", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589331466, 36.313152126], [140.589277639, 36.313078198], [140.58925856, 36.313120505], [140.589331466, 36.313152126]]]}}, {"id": "32021", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588937393, 36.31401973], [140.58901454, 36.314029153], [140.588977886, 36.313980991], [140.588937393, 36.31401973]]]}}, {"id": "32022", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.586204073, 36.309656613], [140.586146887, 36.309731054], [140.586242555, 36.309663036], [140.586204073, 36.309656613]]]}}, {"id": "32023", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.592232659, 36.318189045], [140.592204501, 36.318260423], [140.592241764, 36.318289568], [140.592232659, 36.318189045]]]}}, {"id": "32024", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.586356407, 36.311047009], [140.586406498, 36.310998387], [140.586369702, 36.310993387], [140.586356407, 36.311047009]]]}}, {"id": "32025", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587826018, 36.310899937], [140.587781089, 36.310941414], [140.587817056, 36.310953081], [140.587826018, 36.310899937]]]}}, {"id": "32026", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589752244, 36.314945297], [140.589802477, 36.314899288], [140.589749818, 36.314889982], [140.589752244, 36.314945297]]]}}, {"id": "32027", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.59163511, 36.316641333], [140.591573398, 36.316698234], [140.591654825, 36.316699883], [140.59163511, 36.316641333]]]}}, {"id": "32028", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588569896, 36.312611234], [140.588581271, 36.312543568], [140.588525525, 36.312548423], [140.588569896, 36.312611234]]]}}, {"id": "32029", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589951971, 36.31549164], [140.590018482, 36.315472018], [140.590015486, 36.315461225], [140.589951971, 36.31549164]]]}}, {"id": "32030", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591593476, 36.316229459], [140.591535759, 36.316295703], [140.591556693, 36.31632964], [140.591593476, 36.316229459]]]}}, {"id": "32031", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589557847, 36.313231351], [140.589487484, 36.313232703], [140.589549248, 36.313274036], [140.589557847, 36.313231351]]]}}, {"id": "32032", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589851738, 36.315134387], [140.58981668, 36.315194541], [140.589880778, 36.315166108], [140.589851738, 36.315134387]]]}}, {"id": "32033", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587737912, 36.31185664], [140.58772834, 36.311799559], [140.587689935, 36.311823865], [140.587737912, 36.31185664]]]}}, {"id": "32034", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591489805, 36.316448577], [140.591455837, 36.316390748], [140.591447782, 36.316432982], [140.591489805, 36.316448577]]]}}, {"id": "32035", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.587843813, 36.312839775], [140.587897639, 36.312866477], [140.587856615, 36.312827622], [140.587843813, 36.312839775]]]}}, {"id": "32036", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589788521, 36.313962252], [140.58982738, 36.313916045], [140.589786848, 36.313915757], [140.589788521, 36.313962252]]]}}, {"id": "32037", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589127043, 36.314239874], [140.58908476, 36.314243477], [140.589113294, 36.314292054], [140.589127043, 36.314239874]]]}}, {"id": "32038", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.589248405, 36.314572036], [140.589286031, 36.314547009], [140.589254669, 36.314540541], [140.589248405, 36.314572036]]]}}, {"id": "32039", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588078392, 36.312510874], [140.588116018, 36.312554883], [140.588119442, 36.31251809], [140.588078392, 36.312510874]]]}}, {"id": "32040", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.590070195, 36.31481882], [140.590019805, 36.314836811], [140.590054617, 36.314854793], [140.590070195, 36.31481882]]]}}, {"id": "32041", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.58617083, 36.310866757], [140.586190649, 36.310901423], [140.586236615, 36.310864631], [140.58617083, 36.310866757]]]}}, {"id": "32042", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588706083, 36.313141117], [140.588761699, 36.313146802], [140.58873537, 36.313106685], [140.588706083, 36.313141117]]]}}, {"id": "32043", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588654176, 36.313129009], [140.588633904, 36.313185198], [140.588676926, 36.313155], [140.588654176, 36.313129009]]]}}, {"id": "32044", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.588269209, 36.312909459], [140.588326654, 36.312919099], [140.588273774, 36.312886631], [140.588269209, 36.312909459]]]}}, {"id": "32045", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591716304, 36.317148315], [140.59171847, 36.317108198], [140.591698742, 36.317140946], [140.591716304, 36.317148315]]]}}, {"id": "32046", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.591457406, 36.317163027], [140.591459585, 36.317122901], [140.591439857, 36.317155658], [140.591457406, 36.317163027]]]}}, {"id": "32047", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "大洗町", "N03_005": null, "N03_007": "08309"}, "geometry": {"type": "Polygon", "coordinates": [[[140.594520026, 36.32226727], [140.594543152, 36.322240532], [140.594500934, 36.322251432], [140.594520026, 36.32226727]]]}}, {"id": "32048", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "東茨城郡", "N03_004": "城里町", "N03_005": null, "N03_007": "08310"}, "geometry": {"type": "Polygon", "coordinates": [[[140.371695084, 36.427241441], [140.29589358, 36.449183775], [140.253931219, 36.430855559], [140.202044747, 36.432811468], [140.20258406, 36.453946748], [140.254550947, 36.522404559], [140.296505136, 36.525042225], [140.324971582, 36.549716838], [140.368092827, 36.528235081], [140.386936913, 36.484848721], [140.409468716, 36.480251505], [140.41096131, 36.448074973], [140.381431505, 36.464382694], [140.398614254, 36.441792748], [140.371695084, 36.427241441]]]}}, {"id": "32049", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "那珂郡", "N03_004": "東海村", "N03_005": null, "N03_007": "08341"}, "geometry": {"type": "Polygon", "coordinates": [[[140.632885331, 36.441515559], [140.608106641, 36.424458171], [140.559816641, 36.436699973], [140.541680026, 36.475180775], [140.590601608, 36.494046279], [140.615898301, 36.480861135], [140.609274578, 36.440505694], [140.632885331, 36.441515559]]]}}, {"id": "32050", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "那珂郡", "N03_004": "東海村", "N03_005": null, "N03_007": "08341"}, "geometry": {"type": "Polygon", "coordinates": [[[140.636331077, 36.441666667], [140.640237834, 36.395267973], [140.636370182, 36.44555236], [140.636331077, 36.441666667]]]}}, {"id": "32051", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "那珂郡", "N03_004": "東海村", "N03_005": null, "N03_007": "08341"}, "geometry": {"type": "Polygon", "coordinates": [[[140.627478586, 36.437590279], [140.627759974, 36.434119468], [140.627481284, 36.434121414], [140.627478586, 36.437590279]]]}}, {"id": "32052", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "久慈郡", "N03_004": "大子町", "N03_005": null, "N03_007": "08364"}, "geometry": {"type": "Polygon", "coordinates": [[[140.285581673, 36.935545279], [140.326697977, 36.891188279], [140.365211829, 36.884324946], [140.377206083, 36.837924694], [140.438501025, 36.821541838], [140.46193022, 36.797024532], [140.46837594, 36.746195973], [140.458300661, 36.754264333], [140.447117977, 36.73058836], [140.415157302, 36.732087973], [140.442841388, 36.705032333], [140.427019416, 36.684937721], [140.384459611, 36.682596802], [140.333300752, 36.707760613], [140.329066355, 36.724321748], [140.292162387, 36.712661333], [140.254917108, 36.75986064], [140.267401414, 36.817781667], [140.248960778, 36.923214306], [140.285581673, 36.935545279]]]}}, {"id": "32053", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "稲敷郡", "N03_004": "美浦村", "N03_005": null, "N03_007": "08442"}, "geometry": {"type": "Polygon", "coordinates": [[[140.326820999, 35.999998775], [140.304897445, 35.973469667], [140.280964358, 35.987627], [140.269880337, 36.051137694], [140.39599489, 36.037481865], [140.409500415, 36.023295721], [140.380091673, 35.993059802], [140.326820999, 35.999998775]]]}}, {"id": "32054", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "稲敷郡", "N03_004": "阿見町", "N03_005": null, "N03_007": "08443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.205470584, 35.968316973], [140.158613554, 36.014759306], [140.173049663, 36.040382081], [140.188744384, 36.030926775], [140.211355006, 36.055145892], [140.269880337, 36.051137694], [140.287811855, 35.982595748], [140.218714449, 35.984091667], [140.205470584, 35.968316973]]]}}, {"id": "32055", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "稲敷郡", "N03_004": "河内町", "N03_005": null, "N03_007": "08447"}, "geometry": {"type": "Polygon", "coordinates": [[[140.198689079, 35.877827532], [140.250122866, 35.907245865], [140.312960052, 35.881482333], [140.325825888, 35.90485036], [140.369604034, 35.915984252], [140.378961479, 35.903129838], [140.319406913, 35.864644306], [140.278298106, 35.874044279], [140.232587588, 35.854110108], [140.198689079, 35.877827532]]]}}, {"id": "32056", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "結城郡", "N03_004": "八千代町", "N03_005": null, "N03_007": "08521"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919715668, 36.166665892], [139.916557912, 36.132937586], [139.893731855, 36.136897721], [139.89558786, 36.121067667], [139.856299196, 36.147180225], [139.856196252, 36.22005364], [139.885053333, 36.212292532], [139.905678275, 36.234615279], [139.944070467, 36.161039586], [139.926594475, 36.151492333], [139.933045136, 36.165811225], [139.919715668, 36.166665892]]]}}, {"id": "32057", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "猿島郡", "N03_004": "五霞町", "N03_005": null, "N03_007": "08542"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772517082, 36.083332721], [139.730280389, 36.087253054], [139.710133917, 36.135944694], [139.751795668, 36.130398532], [139.785799831, 36.104967108], [139.772517082, 36.083332721]]]}}, {"id": "32058", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "猿島郡", "N03_004": "境町", "N03_005": null, "N03_007": "08546"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819027523, 36.058022973], [139.759060947, 36.126103802], [139.762168807, 36.138465441], [139.780746887, 36.134704586], [139.77636808, 36.153569027], [139.802292088, 36.155826748], [139.806282555, 36.138718973], [139.849807393, 36.128728], [139.838255473, 36.089345027], [139.854616031, 36.068512559], [139.819027523, 36.058022973]], [[139.835869948, 36.094269468], [139.83750022, 36.092086387], [139.839324695, 36.096601667], [139.835869948, 36.094269468]], [[139.835992244, 36.115002198], [139.83571642, 36.112537198], [139.837934189, 36.114185532], [139.835992244, 36.115002198]]]}}, {"id": "32059", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "猿島郡", "N03_004": "境町", "N03_005": null, "N03_007": "08546"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840438521, 36.08708336], [139.84130856, 36.090628054], [139.843704384, 36.088275838], [139.840438521, 36.08708336]]]}}, {"id": "32060", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "猿島郡", "N03_004": "境町", "N03_005": null, "N03_007": "08546"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842639416, 36.096710532], [139.843378301, 36.095607748], [139.842613865, 36.095649135], [139.842639416, 36.096710532]]]}}, {"id": "32061", "type": "Feature", "properties": {"N03_001": "茨城県", "N03_002": null, "N03_003": "北相馬郡", "N03_004": "利根町", "N03_005": null, "N03_007": "08564"}, "geometry": {"type": "Polygon", "coordinates": [[[140.127382918, 35.882104468], [140.184807108, 35.888437225], [140.217181699, 35.867684225], [140.153879663, 35.842738414], [140.127382918, 35.882104468]]]}}, {"id": "32062", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "宇都宮市", "N03_005": null, "N03_007": "09201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963041167, 36.472938279], [139.911609805, 36.490838721], [139.873909442, 36.465030667], [139.817552529, 36.514817667], [139.832299364, 36.532591775], [139.82509834, 36.559536225], [139.795332335, 36.572370694], [139.807582503, 36.586387081], [139.747348249, 36.606997946], [139.75235917, 36.625567333], [139.795928171, 36.649048387], [139.787678301, 36.706977802], [139.817372166, 36.715946667], [139.837922503, 36.703968865], [139.860327562, 36.730079694], [139.906760052, 36.722157135], [139.945310856, 36.685655946], [139.970751089, 36.607571414], [139.992316226, 36.60898136], [140.010623411, 36.524639252], [140.002427134, 36.497849586], [139.96244131, 36.498022414], [139.963041167, 36.472938279]]]}}, {"id": "32063", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "足利市", "N03_005": null, "N03_007": "09202"}, "geometry": {"type": "Polygon", "coordinates": [[[139.422989144, 36.324961198], [139.360977717, 36.383680279], [139.406504034, 36.445709775], [139.452031634, 36.444630306], [139.503267717, 36.390124171], [139.50567786, 36.342285532], [139.548611803, 36.334793865], [139.543988833, 36.305554414], [139.516522335, 36.294156108], [139.535365616, 36.279105865], [139.481039611, 36.271320387], [139.430364306, 36.295685667], [139.422989144, 36.324961198]]]}}, {"id": "32064", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "栃木市", "N03_005": null, "N03_007": "09203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.726176109, 36.266635108], [139.687468392, 36.23170464], [139.697984189, 36.213829081], [139.685625837, 36.217526054], [139.679077419, 36.200793586], [139.630826135, 36.254460748], [139.642697886, 36.266761838], [139.613945331, 36.276064586], [139.635216226, 36.325632279], [139.617047834, 36.327249775], [139.60800297, 36.367196694], [139.646399144, 36.416283081], [139.565961673, 36.497743667], [139.593295616, 36.488158081], [139.608263865, 36.455724468], [139.630778521, 36.489032532], [139.746052555, 36.481315279], [139.796928418, 36.399631667], [139.812247108, 36.40365], [139.796383554, 36.376876414], [139.744407108, 36.348139775], [139.746621997, 36.326437559], [139.733648106, 36.330197279], [139.724424916, 36.309209532], [139.726176109, 36.266635108]]]}}, {"id": "32065", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "佐野市", "N03_005": null, "N03_007": "09204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.519279805, 36.333178586], [139.478217471, 36.422406387], [139.45189358, 36.444730027], [139.406504034, 36.445709775], [139.436474721, 36.465975306], [139.417920078, 36.494711171], [139.44284834, 36.531583108], [139.439046446, 36.550685333], [139.482634449, 36.578163441], [139.513361751, 36.564287613], [139.53583358, 36.516728108], [139.631393087, 36.44386336], [139.646399144, 36.416283081], [139.60800297, 36.367196694], [139.617047834, 36.327249775], [139.635216226, 36.325632279], [139.611605032, 36.269172387], [139.539780363, 36.277055027], [139.516522335, 36.294156108], [139.543988833, 36.305554414], [139.548290169, 36.33677136], [139.519279805, 36.333178586]]]}}, {"id": "32066", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "佐野市", "N03_005": null, "N03_007": "09204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614880895, 36.467006135], [139.600134449, 36.465765027], [139.60702144, 36.471910865], [139.614880895, 36.467006135]]]}}, {"id": "32067", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "鹿沼市", "N03_005": null, "N03_007": "09205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616154228, 36.466536135], [139.549371634, 36.503669225], [139.513513696, 36.564109], [139.465357523, 36.606493721], [139.508605642, 36.631893748], [139.495202607, 36.653072613], [139.524645966, 36.682792559], [139.522815551, 36.707937252], [139.5697338, 36.709951973], [139.578772192, 36.667762279], [139.636874747, 36.636430027], [139.65610406, 36.649459694], [139.641395136, 36.656067225], [139.648839948, 36.66758636], [139.7078307, 36.662741559], [139.716807951, 36.617504081], [139.798097276, 36.595157919], [139.807582503, 36.586387081], [139.795332335, 36.572370694], [139.825982503, 36.558106775], [139.828023165, 36.518461532], [139.790791777, 36.507798559], [139.793802244, 36.490770775], [139.774706641, 36.492915532], [139.762998366, 36.466469171], [139.669580363, 36.495574468], [139.6306538, 36.488991135], [139.616154228, 36.466536135]]]}}, {"id": "32068", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "日光市", "N03_005": null, "N03_007": "09206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.508750078, 36.632760414], [139.42776594, 36.600972279], [139.329558911, 36.627667505], [139.336945863, 36.692353946], [139.372465032, 36.746265225], [139.355915525, 36.750565775], [139.353056861, 36.773608919], [139.406699559, 36.826940108], [139.348540246, 36.852709919], [139.35614655, 36.877813532], [139.403711284, 36.923966054], [139.430350117, 36.925931973], [139.461165253, 36.970720586], [139.535260363, 36.980584387], [139.582052023, 37.015081973], [139.664650921, 37.039840694], [139.673049416, 37.057650919], [139.751816887, 37.070227865], [139.774910999, 37.091894279], [139.822092996, 37.085136865], [139.800427173, 37.046406], [139.758545058, 37.038358721], [139.740829689, 36.988599532], [139.746836278, 36.962295081], [139.732981115, 36.951262306], [139.776495279, 36.899649441], [139.771540441, 36.855228919], [139.727882802, 36.833074802], [139.726480389, 36.804835613], [139.736799364, 36.767355333], [139.852784423, 36.724540802], [139.841111699, 36.70581164], [139.787678301, 36.706977802], [139.792428638, 36.641218946], [139.725665746, 36.616365171], [139.7078307, 36.662741559], [139.648839948, 36.66758636], [139.641395136, 36.656067225], [139.65610406, 36.649459694], [139.636874747, 36.636430027], [139.578819416, 36.667720613], [139.574449053, 36.704997252], [139.547664864, 36.715034198], [139.522815551, 36.707937252], [139.524540143, 36.682592279], [139.497532944, 36.661579252], [139.508750078, 36.632760414]]]}}, {"id": "32069", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "小山市", "N03_005": null, "N03_007": "09208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.687553411, 36.232237694], [139.7001038, 36.259307081], [139.726176109, 36.266635108], [139.724424916, 36.309209532], [139.733648106, 36.330197279], [139.746621997, 36.326437559], [139.744407108, 36.348139775], [139.79718808, 36.388756694], [139.809595811, 36.370315865], [139.840775694, 36.368120838], [139.84514978, 36.350763613], [139.912312503, 36.362282387], [139.910754449, 36.301201333], [139.878818145, 36.310703027], [139.880677665, 36.322963586], [139.848978223, 36.311483919], [139.821806693, 36.239769505], [139.785699805, 36.227797306], [139.786998197, 36.254383946], [139.765795227, 36.240906279], [139.732253891, 36.263085108], [139.70652786, 36.225574892], [139.687553411, 36.232237694]]]}}, {"id": "32070", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "真岡市", "N03_005": null, "N03_007": "09209"}, "geometry": {"type": "Polygon", "coordinates": [[[139.910998197, 36.336686027], [139.93413489, 36.428100892], [139.961695279, 36.462173027], [139.96244131, 36.498022414], [140.036240363, 36.489473694], [140.048534423, 36.509981973], [140.046417367, 36.489446171], [140.072151414, 36.492598892], [140.063733307, 36.382170441], [139.989928781, 36.367207802], [139.97354022, 36.378537279], [139.964501414, 36.350941748], [139.910998197, 36.336686027]]]}}, {"id": "32071", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "大田原市", "N03_005": null, "N03_007": "09210"}, "geometry": {"type": "Polygon", "coordinates": [[[140.037987665, 36.768020171], [139.921685188, 36.870926694], [139.942502049, 36.877917505], [139.963680052, 36.840278802], [139.982620752, 36.836905441], [140.020109883, 36.881220865], [140.005269857, 36.897966775], [140.038204942, 36.911986613], [140.041748638, 36.933560252], [140.080787717, 36.921769892], [140.103702166, 36.938642586], [140.122995084, 36.914976441], [140.163858249, 36.945739441], [140.263550999, 36.935470667], [140.248379364, 36.921087081], [140.263491193, 36.785937802], [140.234501336, 36.800247054], [140.230851582, 36.837635946], [140.217070973, 36.842841802], [140.190954449, 36.814777414], [140.174286083, 36.827603838], [140.136917977, 36.784654198], [140.086057108, 36.797400946], [140.081384189, 36.784972613], [140.046630636, 36.787101333], [140.037987665, 36.768020171]]]}}, {"id": "32072", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "矢板市", "N03_005": null, "N03_007": "09211"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962060195, 36.74831764], [139.964219144, 36.729105387], [139.916917108, 36.733579081], [139.9034938, 36.766256613], [139.868709274, 36.787184414], [139.877472412, 36.803019135], [139.851036109, 36.841311946], [139.830166109, 36.846980838], [139.787110337, 36.905053333], [139.836922192, 36.927514252], [139.986578975, 36.817008748], [139.984261946, 36.77037236], [139.962060195, 36.74831764]]]}}, {"id": "32073", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "那須塩原市", "N03_005": null, "N03_007": "09213"}, "geometry": {"type": "Polygon", "coordinates": [[[139.996126031, 36.864667892], [139.996645383, 36.847074559], [139.966187276, 36.838063252], [139.942502049, 36.877917505], [139.921685188, 36.870926694], [139.836867198, 36.927533135], [139.76949275, 36.902647775], [139.771833969, 36.920621973], [139.732981115, 36.951262306], [139.746836278, 36.962295081], [139.758545058, 37.038358721], [139.803695811, 37.049405441], [139.823350195, 37.081021586], [139.815051855, 37.116615694], [139.831773139, 37.133640946], [139.961008444, 37.153432135], [139.931038638, 37.125222505], [139.932886524, 37.104412838], [139.953488275, 37.098715054], [139.948735032, 37.050790505], [139.994692866, 37.039423027], [140.032128975, 36.991892414], [140.083586524, 36.965970468], [140.086468366, 36.991378838], [140.101003113, 36.975026], [140.141153502, 36.983001721], [140.096096641, 36.924391468], [140.041139196, 36.933286946], [140.038204942, 36.911986613], [140.005269857, 36.897966775], [140.020109883, 36.881220865], [139.996126031, 36.864667892]]]}}, {"id": "32074", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "那須塩原市", "N03_005": null, "N03_007": "09213"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945626278, 37.137755252], [139.946084617, 37.138851081], [139.94647489, 37.137910802], [139.945626278, 37.137755252]]]}}, {"id": "32075", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "さくら市", "N03_005": null, "N03_007": "09214"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954650506, 36.641448946], [139.948003087, 36.681665081], [139.906880052, 36.721431027], [139.964388301, 36.729225108], [139.984786615, 36.801219613], [140.037987665, 36.768020171], [140.081252672, 36.767297054], [140.083790246, 36.745381468], [140.06629345, 36.741759532], [140.068155162, 36.719755333], [140.017676135, 36.663075919], [139.983993969, 36.671763865], [139.954650506, 36.641448946]]]}}, {"id": "32076", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "那須烏山市", "N03_005": null, "N03_007": "09215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.206219079, 36.683267667], [140.242820246, 36.636706387], [140.194599533, 36.587435694], [140.128580467, 36.626389973], [140.084668301, 36.601402], [140.079108586, 36.621411694], [140.062883722, 36.618259225], [140.059425383, 36.662970775], [140.029190311, 36.679495586], [140.081636355, 36.745384802], [140.126074034, 36.713836694], [140.148805162, 36.724406946], [140.167499857, 36.683410279], [140.206219079, 36.683267667]]]}}, {"id": "32077", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": null, "N03_004": "下野市", "N03_005": null, "N03_007": "09216"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917503385, 36.366047919], [139.842724501, 36.351781946], [139.840775694, 36.368120838], [139.809595811, 36.370315865], [139.79718808, 36.388756694], [139.830147497, 36.406493027], [139.824613502, 36.441323559], [139.847680661, 36.459010171], [139.841959728, 36.487629865], [139.873506693, 36.469453721], [139.86466856, 36.413575748], [139.925091388, 36.402849], [139.917503385, 36.366047919]], [[139.857296005, 36.410521306], [139.86030297, 36.413957135], [139.860348003, 36.414765748], [139.857296005, 36.410521306]]]}}, {"id": "32078", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "河内郡", "N03_004": "上三川町", "N03_005": null, "N03_007": "09301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961695279, 36.462173027], [139.922291051, 36.394631505], [139.891116252, 36.418599306], [139.866248275, 36.412181306], [139.867282996, 36.461917613], [139.908158833, 36.489954613], [139.947289728, 36.48363164], [139.961695279, 36.462173027]]]}}, {"id": "32079", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "河内郡", "N03_004": "上三川町", "N03_005": null, "N03_007": "09301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.859151582, 36.41068436], [139.858928521, 36.41454464], [139.860348003, 36.414765748], [139.859151582, 36.41068436]]]}}, {"id": "32080", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "芳賀郡", "N03_004": "益子町", "N03_005": null, "N03_007": "09342"}, "geometry": {"type": "Polygon", "coordinates": [[[140.144261479, 36.414044667], [140.111077004, 36.39795364], [140.066503722, 36.403813468], [140.074329248, 36.50285636], [140.109831803, 36.523235721], [140.149848495, 36.523992306], [140.139343307, 36.504355973], [140.151919222, 36.502244279], [140.159765966, 36.452982946], [140.144261479, 36.414044667]]]}}, {"id": "32081", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "芳賀郡", "N03_004": "茂木町", "N03_005": null, "N03_007": "09343"}, "geometry": {"type": "Polygon", "coordinates": [[[140.144182866, 36.414887171], [140.160304358, 36.463264586], [140.151919222, 36.502244279], [140.139359689, 36.504246802], [140.150722672, 36.52313564], [140.138487276, 36.522704], [140.156314669, 36.529795081], [140.129080947, 36.54826036], [140.128552776, 36.581125306], [140.148969948, 36.591185252], [140.131120415, 36.606327505], [140.17023083, 36.61121964], [140.200912361, 36.587162081], [140.202050584, 36.607770387], [140.239705447, 36.624991108], [140.260194034, 36.517481225], [140.229458145, 36.502081333], [140.192491167, 36.404577919], [140.156508664, 36.397992721], [140.144182866, 36.414887171]]]}}, {"id": "32082", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "芳賀郡", "N03_004": "市貝町", "N03_005": null, "N03_007": "09344"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074244773, 36.492757505], [140.046417367, 36.489446171], [140.063045473, 36.543638252], [140.079811608, 36.523243559], [140.084668301, 36.601402], [140.104011582, 36.623403892], [140.138386667, 36.62258136], [140.131210389, 36.605011387], [140.148969948, 36.591185252], [140.128552776, 36.581125306], [140.129080947, 36.54826036], [140.156286615, 36.529636468], [140.078632114, 36.512657721], [140.074244773, 36.492757505]]]}}, {"id": "32083", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "芳賀郡", "N03_004": "芳賀町", "N03_005": null, "N03_007": "09345"}, "geometry": {"type": "Polygon", "coordinates": [[[140.001181829, 36.497198198], [140.010623411, 36.524639252], [139.993384228, 36.601694973], [140.013121414, 36.579830252], [140.044102412, 36.575737108], [140.036207471, 36.604091252], [140.069299611, 36.614651721], [140.088646641, 36.598022], [140.079722724, 36.523057721], [140.063159637, 36.543693252], [140.036240363, 36.489473694], [140.001181829, 36.497198198]]]}}, {"id": "32084", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "下都賀郡", "N03_004": "壬生町", "N03_005": null, "N03_007": "09361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.797221751, 36.399474441], [139.75678725, 36.467286387], [139.774706641, 36.492915532], [139.793802244, 36.490770775], [139.790791777, 36.507798559], [139.830706744, 36.511261802], [139.848087691, 36.470316532], [139.824613502, 36.441323559], [139.830147497, 36.406493027], [139.797221751, 36.399474441]]]}}, {"id": "32085", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "下都賀郡", "N03_004": "野木町", "N03_005": null, "N03_007": "09364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688388029, 36.202857171], [139.685625837, 36.217526054], [139.697505305, 36.213246865], [139.731675837, 36.262903171], [139.765795227, 36.240906279], [139.787102088, 36.254266171], [139.785010052, 36.226684802], [139.727486719, 36.201580721], [139.688388029, 36.202857171]]]}}, {"id": "32086", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "塩谷郡", "N03_004": "塩谷町", "N03_005": null, "N03_007": "09384"}, "geometry": {"type": "Polygon", "coordinates": [[[139.881867951, 36.722660505], [139.734937691, 36.769024225], [139.727882802, 36.833074802], [139.77145572, 36.855094748], [139.779182244, 36.905400279], [139.851036109, 36.841311946], [139.877472412, 36.803019135], [139.869816498, 36.785850802], [139.938898392, 36.725763505], [139.881867951, 36.722660505]]]}}, {"id": "32087", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "塩谷郡", "N03_004": "高根沢町", "N03_005": null, "N03_007": "09386"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045229948, 36.583139054], [140.013219196, 36.579789135], [139.99788511, 36.605519135], [139.970751089, 36.607571414], [139.955371025, 36.640069775], [139.970505136, 36.646260559], [139.96726144, 36.661255306], [139.99001847, 36.673140225], [140.017676135, 36.663075919], [140.029763061, 36.677766414], [140.059425383, 36.662970775], [140.062883722, 36.618259225], [140.079108586, 36.621411694], [140.085247756, 36.599229225], [140.067043476, 36.615240892], [140.036207471, 36.604091252], [140.045229948, 36.583139054]]]}}, {"id": "32088", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "那須郡", "N03_004": "那須町", "N03_005": null, "N03_007": "09407"}, "geometry": {"type": "Polygon", "coordinates": [[[140.122229559, 36.916665054], [140.108382166, 36.935030919], [140.141153502, 36.983001721], [140.101003113, 36.975026], [140.086468366, 36.991378838], [140.083586524, 36.965970468], [140.032128975, 36.991892414], [139.994692866, 37.039423027], [139.948735032, 37.050790505], [139.953488275, 37.098715054], [139.932756524, 37.104928108], [139.939353217, 37.139434135], [139.969670726, 37.148783775], [140.100436809, 37.123429], [140.19306214, 37.065503505], [140.203080467, 37.023962387], [140.249463554, 37.025561694], [140.243037328, 36.943486252], [140.163858249, 36.945739441], [140.122229559, 36.916665054]], [[139.945390999, 37.13871636], [139.94648572, 37.137952748], [139.945755447, 37.138949135], [139.945390999, 37.13871636]]]}}, {"id": "32089", "type": "Feature", "properties": {"N03_001": "栃木県", "N03_002": null, "N03_003": "那須郡", "N03_004": "那珂川町", "N03_005": null, "N03_007": "09411"}, "geometry": {"type": "Polygon", "coordinates": [[[140.292259611, 36.712564108], [140.229654358, 36.698607892], [140.220771673, 36.673470387], [140.169209339, 36.682275], [140.148805162, 36.724406946], [140.126311803, 36.713785306], [140.093322996, 36.731115586], [140.082428223, 36.765972892], [140.045808392, 36.786002721], [140.081384189, 36.784972613], [140.087985473, 36.797694279], [140.137006861, 36.784677532], [140.174446355, 36.827699108], [140.190954449, 36.814777414], [140.206514747, 36.839103775], [140.230463256, 36.837905387], [140.231041634, 36.806258171], [140.292259611, 36.712564108]]]}}, {"id": "32090", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "前橋市", "N03_005": null, "N03_007": "10201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121526835, 36.332660613], [139.105435357, 36.316500054], [139.07125847, 36.35173836], [139.044685668, 36.351393919], [139.003894747, 36.434956135], [139.027465525, 36.417240027], [139.053222192, 36.469199748], [139.100922166, 36.516924468], [139.151878392, 36.554446946], [139.193439922, 36.559428333], [139.188684189, 36.526066135], [139.226544578, 36.403796694], [139.166521673, 36.337523667], [139.121526835, 36.332660613]]]}}, {"id": "32091", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "高崎市", "N03_005": null, "N03_007": "10202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.937467912, 36.274999468], [138.953812192, 36.305707802], [138.934591193, 36.349212775], [138.717349611, 36.415422721], [138.648387471, 36.407467613], [138.642583696, 36.438068414], [138.714370921, 36.480852252], [138.775655253, 36.477953054], [138.773795188, 36.464969694], [138.895620752, 36.482220027], [138.909139274, 36.472653387], [138.901923645, 36.457785306], [138.962861556, 36.412130306], [138.983158301, 36.426448919], [139.028243839, 36.406635865], [139.022875668, 36.376467252], [139.035705136, 36.37885336], [139.044685668, 36.351393919], [139.07125847, 36.35173836], [139.100741141, 36.299248108], [139.023138911, 36.25987], [139.018590636, 36.222496108], [138.997283645, 36.223857198], [138.97583428, 36.201584946], [138.942923307, 36.199260802], [138.963469883, 36.223506919], [138.957993087, 36.256821108], [138.937467912, 36.274999468]]]}}, {"id": "32092", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "高崎市", "N03_005": null, "N03_007": "10202"}, "geometry": {"type": "Polygon", "coordinates": [[[139.096609922, 36.277127279], [139.111267302, 36.284844198], [139.129663891, 36.283397559], [139.1038407, 36.260366441], [139.096609922, 36.277127279]]]}}, {"id": "32093", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "桐生市", "N03_005": null, "N03_007": "10203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284529831, 36.414171919], [139.334729883, 36.491738721], [139.407835162, 36.526520333], [139.429930584, 36.553297838], [139.440685058, 36.556660333], [139.450898145, 36.550993414], [139.41814428, 36.497499505], [139.436474721, 36.465975306], [139.408237691, 36.457968667], [139.378485188, 36.414369838], [139.361025227, 36.385234279], [139.368937173, 36.363564306], [139.341480661, 36.360532414], [139.284529831, 36.414171919]]]}}, {"id": "32094", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "桐生市", "N03_005": null, "N03_007": "10203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236087886, 36.392751973], [139.189469663, 36.566555559], [139.297857588, 36.595146802], [139.319203113, 36.561941505], [139.279997497, 36.514351865], [139.304467562, 36.502286559], [139.298029416, 36.491216306], [139.231800999, 36.486580838], [139.26440297, 36.451844973], [139.273961167, 36.412900532], [139.236087886, 36.392751973]]]}}, {"id": "32095", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "伊勢崎市", "N03_005": null, "N03_007": "10204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28281358, 36.253320559], [139.26677572, 36.242561973], [139.244066783, 36.244433919], [139.182466446, 36.268197], [139.140751505, 36.307735054], [139.136178521, 36.334343387], [139.166566667, 36.337558667], [139.218874812, 36.402236135], [139.236087886, 36.392751973], [139.255759974, 36.408005559], [139.250176278, 36.395136387], [139.267659948, 36.392416946], [139.267520143, 36.303209441], [139.255762309, 36.295036414], [139.28281358, 36.253320559]], [[139.26223489, 36.24537336], [139.26358406, 36.243881414], [139.263671284, 36.244744748], [139.26223489, 36.24537336]]]}}, {"id": "32096", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "太田市", "N03_005": null, "N03_007": "10205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.274189948, 36.249614198], [139.275863969, 36.280086387], [139.255762309, 36.295036414], [139.279607691, 36.373236919], [139.370346355, 36.366081802], [139.422792503, 36.332256198], [139.416733217, 36.313699838], [139.443532944, 36.293693694], [139.434886394, 36.267669306], [139.388460389, 36.267334081], [139.382918833, 36.237869108], [139.350995473, 36.254373586], [139.322266226, 36.236594775], [139.274189948, 36.249614198]]]}}, {"id": "32097", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "沼田市", "N03_005": null, "N03_007": "10206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.057601803, 36.584741946], [138.988858029, 36.59765364], [138.985283969, 36.645153054], [139.030320363, 36.683554135], [139.024658223, 36.770404414], [139.052442283, 36.79153136], [139.121140026, 36.794321027], [139.084389948, 36.739926892], [139.074699585, 36.662360505], [139.106443891, 36.672606586], [139.110162309, 36.687682694], [139.14569572, 36.684861279], [139.199676304, 36.718429], [139.208667951, 36.709632333], [139.232220117, 36.742855919], [139.273064501, 36.74136836], [139.332870661, 36.774066135], [139.353056861, 36.773608919], [139.355915525, 36.750565775], [139.372485863, 36.746451613], [139.336945863, 36.692353946], [139.328808612, 36.634625], [139.288608664, 36.589682135], [139.169104553, 36.561721387], [139.116993865, 36.658984081], [139.073077588, 36.648123586], [139.046645772, 36.621787198], [139.057601803, 36.584741946]]]}}, {"id": "32098", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "館林市", "N03_005": null, "N03_007": "10207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.459938975, 36.215094135], [139.50383869, 36.236574946], [139.479006939, 36.241676865], [139.503221673, 36.281066441], [139.625618054, 36.252726892], [139.575941193, 36.242468865], [139.579770558, 36.218232892], [139.486582944, 36.210251387], [139.459938975, 36.215094135]]]}}, {"id": "32099", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "渋川市", "N03_005": null, "N03_007": "10208"}, "geometry": {"type": "Polygon", "coordinates": [[[138.877752335, 36.483095333], [138.952591699, 36.546354198], [138.900457108, 36.555612], [138.902492438, 36.586635054], [139.073089364, 36.586557414], [139.156173256, 36.577039721], [139.169343995, 36.561696108], [139.100922166, 36.516924468], [139.04121655, 36.451910865], [138.877752335, 36.483095333]]]}}, {"id": "32100", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "藤岡市", "N03_005": null, "N03_007": "10209"}, "geometry": {"type": "Polygon", "coordinates": [[[138.960659248, 36.124405081], [138.959182607, 36.145049586], [138.922815551, 36.152202171], [138.810054358, 36.141456468], [138.911678197, 36.192818613], [139.018590636, 36.222496108], [139.020103333, 36.257323613], [139.057097419, 36.285226694], [139.111374695, 36.281727721], [139.096609922, 36.277127279], [139.111195136, 36.258497], [139.063418664, 36.196285532], [139.06215856, 36.152936559], [139.042722088, 36.14802736], [139.04217703, 36.128218135], [139.004856641, 36.133412027], [138.985326524, 36.11548864], [138.960659248, 36.124405081]]]}}, {"id": "32101", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "富岡市", "N03_005": null, "N03_007": "10210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.793721997, 36.225967838], [138.740014669, 36.289966387], [138.756181141, 36.303044387], [138.857665551, 36.276345054], [138.92119511, 36.307864748], [138.949656304, 36.301487252], [138.94413642, 36.267953919], [138.838475577, 36.179732586], [138.840527056, 36.238647027], [138.793721997, 36.225967838]]]}}, {"id": "32102", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "安中市", "N03_005": null, "N03_007": "10211"}, "geometry": {"type": "Polygon", "coordinates": [[[138.841666667, 36.279197586], [138.771466161, 36.304297721], [138.705177912, 36.279831171], [138.657284527, 36.286827108], [138.648387471, 36.407467613], [138.720101829, 36.414786054], [138.950939533, 36.335151973], [138.936593359, 36.333426135], [138.951693281, 36.302012802], [138.92119511, 36.307864748], [138.899659922, 36.288256694], [138.841666667, 36.279197586]]]}}, {"id": "32103", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": null, "N03_004": "みどり市", "N03_005": null, "N03_007": "10212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25, 36.395681775], [139.273935616, 36.413344135], [139.26440297, 36.451844973], [139.231800999, 36.486580838], [139.263299468, 36.479055802], [139.303057834, 36.499661838], [139.279973606, 36.514196586], [139.314960558, 36.544121532], [139.319163943, 36.563286775], [139.297857588, 36.595146802], [139.312140311, 36.623379505], [139.328148885, 36.633421667], [139.397898885, 36.602082252], [139.471445888, 36.602890667], [139.483529468, 36.581882054], [139.460757886, 36.553246748], [139.434948106, 36.555833946], [139.407835162, 36.526520333], [139.362118145, 36.513952], [139.294293606, 36.445713838], [139.283492892, 36.41382664], [139.31546572, 36.396791054], [139.313653943, 36.377577171], [139.273082387, 36.368684721], [139.267641051, 36.392445559], [139.25, 36.395681775]]]}}, {"id": "32104", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "北群馬郡", "N03_004": "榛東村", "N03_005": null, "N03_007": "10344"}, "geometry": {"type": "Polygon", "coordinates": [[[139.002431608, 36.419338919], [138.960487951, 36.413790306], [138.899960052, 36.463718387], [138.929109559, 36.470160333], [138.994233502, 36.450372694], [139.002431608, 36.419338919]]]}}, {"id": "32105", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "北群馬郡", "N03_004": "吉岡町", "N03_005": null, "N03_007": "10345"}, "geometry": {"type": "Polygon", "coordinates": [[[139.035491699, 36.422918081], [138.990161115, 36.433795027], [138.99277297, 36.451376802], [138.929109559, 36.470160333], [139.040446304, 36.455485027], [139.035491699, 36.422918081]]]}}, {"id": "32106", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "多野郡", "N03_004": "上野村", "N03_005": null, "N03_007": "10366"}, "geometry": {"type": "Polygon", "coordinates": [[[138.734039416, 35.999865468], [138.70116703, 35.988010505], [138.679583606, 36.011714387], [138.631965136, 36.027053802], [138.644191115, 36.049689333], [138.63033939, 36.086363135], [138.647548638, 36.10592064], [138.640180921, 36.117349802], [138.742361608, 36.118863441], [138.771440636, 36.132663694], [138.7812, 36.103097306], [138.818153671, 36.07861836], [138.828394721, 36.037302532], [138.754411193, 36.034525973], [138.734039416, 35.999865468]]]}}, {"id": "32107", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "多野郡", "N03_004": "神流町", "N03_005": null, "N03_007": "10367"}, "geometry": {"type": "Polygon", "coordinates": [[[138.880515136, 36.083332721], [138.82758, 36.041789748], [138.818153671, 36.07861836], [138.78105, 36.103367027], [138.764142581, 36.143186198], [138.764812088, 36.160407027], [138.790608197, 36.13630564], [138.864584163, 36.151697532], [138.875620246, 36.140403613], [138.959182607, 36.145049586], [138.945068586, 36.094596171], [138.880515136, 36.083332721]]]}}, {"id": "32108", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "甘楽郡", "N03_004": "下仁田町", "N03_005": null, "N03_007": "10382"}, "geometry": {"type": "Polygon", "coordinates": [[[138.828014449, 36.166631468], [138.803372387, 36.137768414], [138.774976783, 36.138653414], [138.762336887, 36.190288414], [138.718055188, 36.211343694], [138.641876719, 36.198765973], [138.611762335, 36.229502973], [138.600335525, 36.278399946], [138.653451803, 36.303043775], [138.681187328, 36.279893171], [138.74460939, 36.288682748], [138.783223943, 36.227005892], [138.840527056, 36.238647027], [138.828014449, 36.166631468]]]}}, {"id": "32109", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "甘楽郡", "N03_004": "南牧村", "N03_005": null, "N03_007": "10383"}, "geometry": {"type": "Polygon", "coordinates": [[[138.749473307, 36.122144838], [138.647609533, 36.118169802], [138.634323722, 36.133947027], [138.600767588, 36.135512333], [138.577274864, 36.168073198], [138.589313256, 36.179002081], [138.609665162, 36.161420108], [138.636068586, 36.171256505], [138.630413113, 36.203504306], [138.681621219, 36.196454838], [138.708009364, 36.214605667], [138.762336887, 36.190288414], [138.772984812, 36.136580081], [138.749473307, 36.122144838]]]}}, {"id": "32110", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "甘楽郡", "N03_004": "甘楽町", "N03_005": null, "N03_007": "10384"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826493865, 36.158333333], [138.830278612, 36.177843414], [138.877154527, 36.203551441], [138.881078197, 36.224907559], [138.900613839, 36.226276135], [138.921967665, 36.26003336], [138.957052802, 36.258253613], [138.963418223, 36.222674973], [138.942807471, 36.198084694], [138.826493865, 36.158333333]]]}}, {"id": "32111", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "中之条町", "N03_005": null, "N03_007": "10421"}, "geometry": {"type": "Polygon", "coordinates": [[[138.628595253, 36.561265586], [138.592972633, 36.594495225], [138.630262802, 36.613807505], [138.62416061, 36.629489171], [138.525113165, 36.651260306], [138.534617367, 36.665638387], [138.51406869, 36.690481081], [138.712401414, 36.738757387], [138.727027445, 36.764168838], [138.789419533, 36.744873802], [138.824727951, 36.702472892], [138.820743554, 36.664730892], [138.893203139, 36.657144468], [138.892782438, 36.612382559], [138.920697497, 36.586229505], [138.896259637, 36.582964775], [138.904812698, 36.567084225], [138.896458781, 36.561961441], [138.863206161, 36.581143973], [138.779732335, 36.575704748], [138.737798949, 36.598579468], [138.678262387, 36.597856694], [138.678135422, 36.570136721], [138.628595253, 36.561265586]]]}}, {"id": "32112", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "長野原町", "N03_005": null, "N03_007": "10424"}, "geometry": {"type": "Polygon", "coordinates": [[[138.644368885, 36.411844], [138.570938521, 36.419564027], [138.580779442, 36.456041441], [138.56904083, 36.455378081], [138.562673139, 36.530099892], [138.596028197, 36.528085802], [138.581857912, 36.569930468], [138.593891803, 36.581958279], [138.631088301, 36.558835027], [138.681554578, 36.574998108], [138.720584942, 36.553701441], [138.713544086, 36.534414225], [138.644768949, 36.515786775], [138.639685162, 36.471014802], [138.655196278, 36.451708694], [138.644368885, 36.411844]]]}}, {"id": "32113", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "嬬恋村", "N03_005": null, "N03_007": "10425"}, "geometry": {"type": "Polygon", "coordinates": [[[138.457715305, 36.411574333], [138.40078856, 36.435009198], [138.403927393, 36.521285171], [138.428840856, 36.556225387], [138.426596031, 36.59452836], [138.454973645, 36.613850838], [138.458597639, 36.634378838], [138.525113165, 36.651260306], [138.541265551, 36.599004279], [138.596568223, 36.549777748], [138.58720345, 36.521318], [138.572163995, 36.537874919], [138.562673139, 36.530099892], [138.56904083, 36.455378081], [138.580623061, 36.450581441], [138.570938521, 36.419564027], [138.540315422, 36.402729333], [138.457715305, 36.411574333]]]}}, {"id": "32114", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "草津町", "N03_005": null, "N03_007": "10426"}, "geometry": {"type": "Polygon", "coordinates": [[[138.582465966, 36.571291054], [138.541265551, 36.599004279], [138.525113165, 36.651260306], [138.624318664, 36.629307775], [138.630374189, 36.613934441], [138.593337912, 36.598553], [138.582465966, 36.571291054]]]}}, {"id": "32115", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "高山村", "N03_005": null, "N03_007": "10428"}, "geometry": {"type": "Polygon", "coordinates": [[[138.995241946, 36.591557505], [138.920697497, 36.586229505], [138.892782438, 36.612382559], [138.892953385, 36.656914198], [138.931475746, 36.662293613], [138.986148975, 36.644739171], [138.995241946, 36.591557505]]]}}, {"id": "32116", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "吾妻郡", "N03_004": "東吾妻町", "N03_005": null, "N03_007": "10429"}, "geometry": {"type": "Polygon", "coordinates": [[[138.875005357, 36.572805387], [138.952591699, 36.546354198], [138.860564475, 36.47345836], [138.791768612, 36.476776946], [138.773795188, 36.464969694], [138.775655253, 36.477953054], [138.722760389, 36.482275027], [138.655196278, 36.451708694], [138.639990441, 36.469792027], [138.648328145, 36.519823721], [138.681418171, 36.51990564], [138.722245772, 36.543560054], [138.675302944, 36.596587532], [138.875005357, 36.572805387]]]}}, {"id": "32117", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "利根郡", "N03_004": "片品村", "N03_005": null, "N03_007": "10443"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24938428, 36.744573946], [139.207348223, 36.709632333], [139.195399442, 36.733274027], [139.151688807, 36.747434613], [139.16193786, 36.775787387], [139.139100389, 36.803640441], [139.198152672, 36.841287333], [139.19542939, 36.856048135], [139.153244306, 36.871973414], [139.173324968, 36.890925306], [139.167024137, 36.951722198], [139.180072581, 36.964477468], [139.228714669, 36.961197748], [139.240847367, 36.929321135], [139.266135006, 36.94115364], [139.39559, 36.906867441], [139.35614655, 36.877813532], [139.348526083, 36.852740468], [139.406296252, 36.829622333], [139.376460169, 36.786365892], [139.273064501, 36.74136836], [139.24938428, 36.744573946]]]}}, {"id": "32118", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "利根郡", "N03_004": "川場村", "N03_005": null, "N03_007": "10444"}, "geometry": {"type": "Polygon", "coordinates": [[[139.081894086, 36.666610225], [139.087517782, 36.748243], [139.139100389, 36.803640441], [139.16193786, 36.775787387], [139.152755473, 36.744731279], [139.195099728, 36.733467919], [139.19686131, 36.717597919], [139.081894086, 36.666610225]]]}}, {"id": "32119", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "利根郡", "N03_004": "昭和村", "N03_005": null, "N03_007": "10448"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162083217, 36.571580279], [139.070131829, 36.579789441], [139.042569079, 36.615018892], [139.072897302, 36.648022748], [139.116993865, 36.658984081], [139.162083217, 36.571580279]]]}}, {"id": "32120", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "利根郡", "N03_004": "みなかみ町", "N03_005": null, "N03_007": "10449"}, "geometry": {"type": "Polygon", "coordinates": [[[139.0303462, 36.68363164], [138.984713696, 36.644596108], [138.931475746, 36.662293613], [138.820743554, 36.664730892], [138.824727951, 36.702472892], [138.789419533, 36.744873802], [138.826923502, 36.772291333], [138.821744254, 36.817626135], [138.856445383, 36.811643892], [138.929697834, 36.833174333], [138.916019001, 36.850838198], [138.923149196, 36.883599252], [138.979531284, 36.891779306], [138.966554553, 36.979075387], [139.04738917, 36.987292865], [139.091131025, 37.019733333], [139.0970162, 37.058626333], [139.179446615, 36.990758], [139.167024137, 36.951722198], [139.173324968, 36.890925306], [139.153244306, 36.871973414], [139.19542939, 36.856048135], [139.198152672, 36.841287333], [139.121140026, 36.794321027], [139.059319533, 36.793345532], [139.02512406, 36.771037198], [139.033231725, 36.741796081], [139.017987419, 36.719735802], [139.0303462, 36.68363164]]]}}, {"id": "32121", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "佐波郡", "N03_004": "玉村町", "N03_005": null, "N03_007": "10464"}, "geometry": {"type": "Polygon", "coordinates": [[[139.090213139, 36.322197838], [139.136178521, 36.334343387], [139.171367562, 36.273721721], [139.095663307, 36.288795613], [139.090213139, 36.322197838]]]}}, {"id": "32122", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "邑楽郡", "N03_004": "板倉町", "N03_005": null, "N03_007": "10521"}, "geometry": {"type": "Polygon", "coordinates": [[[139.574393113, 36.239235279], [139.593437691, 36.254599946], [139.625618054, 36.252726892], [139.589751051, 36.268624865], [139.632491505, 36.271165171], [139.641515811, 36.235458586], [139.669949948, 36.213246081], [139.624791946, 36.186583973], [139.587932218, 36.210342054], [139.574393113, 36.239235279]]]}}, {"id": "32123", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "邑楽郡", "N03_004": "明和町", "N03_005": null, "N03_007": "10522"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479056252, 36.212070802], [139.537942088, 36.221516441], [139.591556693, 36.216882027], [139.526379974, 36.191353721], [139.493468444, 36.192166135], [139.479056252, 36.212070802]]]}}, {"id": "32124", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "邑楽郡", "N03_004": "千代田町", "N03_005": null, "N03_007": "10523"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431608716, 36.241666027], [139.46338489, 36.227650225], [139.459520078, 36.215399973], [139.493468444, 36.192166135], [139.456638833, 36.190681387], [139.419454916, 36.211209135], [139.409344449, 36.234074946], [139.431608716, 36.241666027]]]}}, {"id": "32125", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "邑楽郡", "N03_004": "大泉町", "N03_005": null, "N03_007": "10524"}, "geometry": {"type": "Polygon", "coordinates": [[[139.416233839, 36.220057441], [139.382918833, 36.237869108], [139.388460389, 36.267334081], [139.405962724, 36.276451279], [139.436981362, 36.263087946], [139.409344449, 36.234074946], [139.416233839, 36.220057441]]]}}, {"id": "32126", "type": "Feature", "properties": {"N03_001": "群馬県", "N03_002": null, "N03_003": "邑楽郡", "N03_004": "邑楽町", "N03_005": null, "N03_007": "10525"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481354449, 36.240555198], [139.497547588, 36.24314464], [139.499608145, 36.242698252], [139.50383869, 36.236574946], [139.476419053, 36.219252748], [139.432918716, 36.238756865], [139.433132866, 36.286880667], [139.458673528, 36.288660081], [139.469136252, 36.270599], [139.500124137, 36.276093108], [139.481354449, 36.240555198]]]}}, {"id": "32127", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "西区", "N03_007": "11101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603677471, 35.887550586], [139.55785869, 35.874825252], [139.547758392, 35.934202306], [139.59774808, 35.936520919], [139.603677471, 35.887550586]]]}}, {"id": "32128", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "西区", "N03_007": "11101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.54059061, 35.934936748], [139.547758392, 35.934202306], [139.544286446, 35.932392306], [139.54059061, 35.934936748]]]}}, {"id": "32129", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "北区", "N03_007": "11102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.596804578, 35.915666027], [139.58829144, 35.961512802], [139.618543774, 35.964917559], [139.643606615, 35.924845198], [139.596804578, 35.915666027]]]}}, {"id": "32130", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "大宮区", "N03_007": "11103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597061388, 35.891666306], [139.597656835, 35.915172946], [139.637948418, 35.925716108], [139.649191751, 35.911269027], [139.645055006, 35.888863892], [139.622319274, 35.902247198], [139.597061388, 35.891666306]]]}}, {"id": "32131", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "見沼区", "N03_007": "11104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.649206394, 35.901433748], [139.625700389, 35.952414252], [139.666203671, 35.964828441], [139.700653191, 35.892908441], [139.649206394, 35.901433748]]]}}, {"id": "32132", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "中央区", "N03_007": "11105"}, "geometry": {"type": "Polygon", "coordinates": [[[139.639482802, 35.854363919], [139.604311946, 35.878137613], [139.62169725, 35.902216667], [139.641034358, 35.88295736], [139.639482802, 35.854363919]]]}}, {"id": "32133", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "桜区", "N03_007": "11106"}, "geometry": {"type": "Polygon", "coordinates": [[[139.63591869, 35.84101236], [139.606281479, 35.843211694], [139.568879974, 35.880724838], [139.606215305, 35.888343919], [139.634356783, 35.863492441], [139.63591869, 35.84101236]]]}}, {"id": "32134", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "浦和区", "N03_007": "11107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.633333333, 35.887125559], [139.645483061, 35.901683], [139.665256978, 35.894692135], [139.66286856, 35.846875559], [139.640196278, 35.858105414], [139.633333333, 35.887125559]]]}}, {"id": "32135", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "南区", "N03_007": "11108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.668259416, 35.833333135], [139.618703385, 35.829091441], [139.616568521, 35.833994721], [139.63591869, 35.84101236], [139.636290467, 35.860375279], [139.657901362, 35.846427748], [139.674783281, 35.865890613], [139.69393834, 35.864058171], [139.695714643, 35.848575387], [139.675913476, 35.851448387], [139.668259416, 35.833333135]]]}}, {"id": "32136", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "緑区", "N03_007": "11109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.666344669, 35.861316279], [139.660718392, 35.897470973], [139.700297393, 35.892556306], [139.69538489, 35.918457225], [139.744506641, 35.882759468], [139.736716278, 35.86933036], [139.71354428, 35.876713694], [139.709577782, 35.857104559], [139.666344669, 35.861316279]]]}}, {"id": "32137", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "さいたま市", "N03_005": "岩槻区", "N03_007": "11110"}, "geometry": {"type": "Polygon", "coordinates": [[[139.750261673, 35.882410586], [139.654424449, 35.965052054], [139.693937717, 35.974339865], [139.690782827, 36.001860946], [139.725885383, 35.985095973], [139.710894721, 35.970688775], [139.71937022, 35.95220936], [139.734995577, 35.957363505], [139.757345058, 35.93789936], [139.745357717, 35.925846892], [139.750261673, 35.882410586]]]}}, {"id": "32138", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "川越市", "N03_005": null, "N03_007": "11201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.518658664, 35.890491919], [139.468335058, 35.854249252], [139.49216869, 35.852723667], [139.477898859, 35.837584], [139.45878061, 35.859044802], [139.46218572, 35.877650333], [139.454257328, 35.871327279], [139.460355772, 35.887824198], [139.432598755, 35.881869775], [139.377440169, 35.915686414], [139.420481699, 35.924667775], [139.421460415, 35.955771279], [139.438389922, 35.962265135], [139.434746252, 35.945118252], [139.474981388, 35.960673387], [139.534960117, 35.950937252], [139.551880052, 35.929016225], [139.558337665, 35.889289946], [139.542273943, 35.877713306], [139.518658664, 35.890491919]], [[139.539421193, 35.940858667], [139.540164773, 35.938100919], [139.541129222, 35.935891468], [139.539421193, 35.940858667]]]}}, {"id": "32139", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "熊谷市", "N03_005": null, "N03_007": "11202"}, "geometry": {"type": "Polygon", "coordinates": [[[139.422151141, 36.069676667], [139.391328145, 36.104951171], [139.345052438, 36.104025387], [139.335301245, 36.088671505], [139.300367665, 36.111370108], [139.314811751, 36.146553135], [139.289611219, 36.16061564], [139.333030856, 36.179948667], [139.327872827, 36.240183054], [139.347401582, 36.253706919], [139.444204643, 36.196789694], [139.416707276, 36.188272505], [139.438395837, 36.161532225], [139.42265703, 36.138802252], [139.433083476, 36.085851946], [139.446619883, 36.083588027], [139.422151141, 36.069676667]], [[139.425719805, 36.077157225], [139.429747886, 36.080241108], [139.433583995, 36.082213333], [139.429394838, 36.080635], [139.425719805, 36.077157225]], [[139.421061284, 36.151508919], [139.424442387, 36.153468081], [139.420496278, 36.154283919], [139.421061284, 36.151508919]]]}}, {"id": "32140", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "川口市", "N03_005": null, "N03_007": "11203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.67707978, 35.832811468], [139.67526153, 35.850998108], [139.713034747, 35.858345946], [139.719012088, 35.879058108], [139.739322944, 35.870108973], [139.741382218, 35.887065027], [139.769677198, 35.866689468], [139.78828725, 35.824673694], [139.750773191, 35.810170694], [139.75996978, 35.79433764], [139.738049079, 35.780220694], [139.69525917, 35.801265387], [139.709848755, 35.826309027], [139.67707978, 35.832811468]]]}}, {"id": "32141", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "行田市", "N03_005": null, "N03_007": "11206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.508464527, 36.124867505], [139.493208444, 36.090121892], [139.460742335, 36.11584], [139.429328029, 36.112681973], [139.422117639, 36.148416694], [139.438395837, 36.161532225], [139.421494163, 36.17147], [139.423243476, 36.198314694], [139.495516783, 36.19257864], [139.497982166, 36.156009198], [139.535565772, 36.126489748], [139.508464527, 36.124867505]]]}}, {"id": "32142", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "行田市", "N03_005": null, "N03_007": "11206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.423318495, 36.150141414], [139.420496278, 36.154283919], [139.423509339, 36.154201135], [139.423318495, 36.150141414]]]}}, {"id": "32143", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "秩父市", "N03_005": null, "N03_007": "11207"}, "geometry": {"type": "Polygon", "coordinates": [[[138.877487613, 35.848047775], [138.849729416, 35.866658586], [138.813604864, 35.862367775], [138.77935, 35.899908333], [138.729450999, 35.908514505], [138.739254332, 35.939108054], [138.712550052, 35.985333], [138.754411193, 36.034525973], [138.838783087, 36.033704441], [138.839521167, 36.000800613], [138.883835499, 35.973155108], [138.943141699, 35.966650865], [138.981446887, 35.983239532], [139.027809974, 35.968368559], [139.050482918, 35.991977414], [139.040744617, 36.001515613], [139.052047782, 36.018775333], [138.984052724, 36.034343973], [138.93189297, 36.081853946], [138.964244527, 36.125904802], [139.058169339, 36.058983333], [139.086258612, 36.068443171], [139.112773333, 36.057730775], [139.174912672, 36.000411532], [139.174608716, 35.989045721], [139.106372283, 36.008906198], [139.093021336, 35.995108198], [139.095490804, 35.935731613], [139.120809053, 35.89536364], [139.10028192, 35.867188748], [139.013378755, 35.898255667], [138.954458495, 35.874910468], [138.942015357, 35.853442694], [138.877487613, 35.848047775]]]}}, {"id": "32144", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "所沢市", "N03_005": null, "N03_007": "11208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385105473, 35.806577387], [139.463373307, 35.843601225], [139.503163217, 35.814309306], [139.53226642, 35.825012613], [139.545552477, 35.812241225], [139.496922724, 35.778726333], [139.380223139, 35.766374973], [139.395689105, 35.778286892], [139.385105473, 35.806577387]]]}}, {"id": "32145", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "飯能市", "N03_005": null, "N03_007": "11209"}, "geometry": {"type": "Polygon", "coordinates": [[[139.316469053, 35.818867387], [139.280328833, 35.840680171], [139.192441505, 35.840271532], [139.101300506, 35.865716081], [139.120809053, 35.89536364], [139.102753022, 35.927391081], [139.193787302, 35.967929135], [139.267027224, 35.921371748], [139.282348444, 35.869927919], [139.366631971, 35.884088387], [139.374715253, 35.868361198], [139.350196005, 35.859208721], [139.345410272, 35.827386802], [139.316469053, 35.818867387]]]}}, {"id": "32146", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "加須市", "N03_005": null, "N03_007": "11210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.541115188, 36.083333333], [139.553966809, 36.101322775], [139.530697056, 36.111956667], [139.52556917, 36.146146171], [139.573504332, 36.13705564], [139.589298975, 36.165333468], [139.608471219, 36.159540108], [139.605631115, 36.194362333], [139.624888612, 36.186571748], [139.659278003, 36.214889135], [139.68644022, 36.203499667], [139.703030895, 36.145101081], [139.668340363, 36.107027], [139.645639754, 36.103722838], [139.632663191, 36.079228946], [139.605300895, 36.087598081], [139.563916978, 36.071104667], [139.541115188, 36.083333333]]]}}, {"id": "32147", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "本庄市", "N03_005": null, "N03_007": "11211"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146482387, 36.152932775], [139.082494332, 36.121601802], [139.056843722, 36.126196775], [139.083722049, 36.189534414], [139.107523281, 36.207369198], [139.129152218, 36.200533613], [139.129661997, 36.217537252], [139.171680506, 36.238721694], [139.155585772, 36.250008667], [139.169470052, 36.274752838], [139.243748716, 36.244511135], [139.241635032, 36.224196135], [139.223854475, 36.232410027], [139.192541803, 36.20716836], [139.166051777, 36.207972252], [139.146482387, 36.152932775]], [[139.148131414, 36.196477802], [139.145441388, 36.194393919], [139.149206693, 36.195336973], [139.148131414, 36.196477802]], [[139.149285577, 36.198044198], [139.152021699, 36.196021973], [139.150660026, 36.198581973], [139.149285577, 36.198044198]], [[139.15172725, 36.198735306], [139.155104189, 36.196390027], [139.154718664, 36.198152252], [139.15172725, 36.198735306]]]}}, {"id": "32148", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "東松山市", "N03_005": null, "N03_007": "11212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.374830973, 35.985013225], [139.336675422, 36.014402694], [139.330177717, 36.037760721], [139.385751479, 36.040954532], [139.376532166, 36.08384036], [139.390618145, 36.105093108], [139.411317328, 36.093855027], [139.405482776, 36.075196441], [139.423085577, 36.071689721], [139.418057639, 36.035332532], [139.457043191, 36.011568], [139.374830973, 35.985013225]]]}}, {"id": "32149", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "春日部市", "N03_005": null, "N03_007": "11214"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779209053, 35.938107667], [139.734995577, 35.957363505], [139.71937022, 35.95220936], [139.710894721, 35.970688775], [139.725885383, 35.985095973], [139.707857302, 35.995305414], [139.780983839, 36.004720414], [139.778079754, 36.026052306], [139.806949105, 36.043167775], [139.833331414, 35.968967027], [139.802434163, 35.941427919], [139.777905253, 35.958569892], [139.779209053, 35.938107667]]]}}, {"id": "32150", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "狭山市", "N03_005": null, "N03_007": "11215"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478308833, 35.834946225], [139.419463359, 35.817828468], [139.389923256, 35.85258564], [139.364051219, 35.842232054], [139.360888807, 35.859379532], [139.411273217, 35.900910586], [139.432598755, 35.881869775], [139.460355772, 35.887824198], [139.454257328, 35.871327279], [139.46218572, 35.877650333], [139.478308833, 35.834946225]]]}}, {"id": "32151", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "羽生市", "N03_005": null, "N03_007": "11216"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608993113, 36.166666225], [139.589298975, 36.165333468], [139.573504332, 36.13705564], [139.517113256, 36.138027802], [139.48803358, 36.173170306], [139.495516783, 36.19257864], [139.587771673, 36.210369279], [139.609883606, 36.196808135], [139.608993113, 36.166666225]]]}}, {"id": "32152", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "鴻巣市", "N03_005": null, "N03_007": "11217"}, "geometry": {"type": "Polygon", "coordinates": [[[139.541256278, 36.081288694], [139.563505279, 36.066299387], [139.567361777, 36.037030441], [139.525290026, 36.057606532], [139.531469922, 36.034863135], [139.494296446, 36.035066748], [139.483039611, 36.059058225], [139.433212633, 36.085667775], [139.431778301, 36.110690838], [139.460742335, 36.11584], [139.493529831, 36.090161892], [139.510701479, 36.124603613], [139.553966809, 36.101322775], [139.541256278, 36.081288694]]]}}, {"id": "32153", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "深谷市", "N03_005": null, "N03_007": "11218"}, "geometry": {"type": "Polygon", "coordinates": [[[139.283753748, 36.104425667], [139.180762387, 36.134667252], [139.232702244, 36.157019775], [139.190243359, 36.17666836], [139.207872335, 36.187137532], [139.195222387, 36.213977532], [139.223854475, 36.232410027], [139.241635032, 36.224196135], [139.243748716, 36.244511135], [139.26692131, 36.250552252], [139.327880337, 36.239876387], [139.333030856, 36.179948667], [139.289611219, 36.16061564], [139.314412581, 36.14775564], [139.310837717, 36.115818171], [139.283753748, 36.104425667]]]}}, {"id": "32154", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "深谷市", "N03_005": null, "N03_007": "11218"}, "geometry": {"type": "Polygon", "coordinates": [[[139.261723502, 36.244278919], [139.263671284, 36.244744748], [139.26358406, 36.243881414], [139.261723502, 36.244278919]]]}}, {"id": "32155", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "上尾市", "N03_005": null, "N03_007": "11219"}, "geometry": {"type": "Polygon", "coordinates": [[[139.534332114, 35.965396081], [139.539035032, 35.99251236], [139.574492088, 35.986534946], [139.56905297, 36.004710468], [139.584284747, 36.009675775], [139.64983358, 35.960700946], [139.588898949, 35.961820027], [139.597305772, 35.936650081], [139.574748521, 35.944141441], [139.561784942, 35.925694946], [139.534332114, 35.965396081]]]}}, {"id": "32156", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "上尾市", "N03_005": null, "N03_007": "11219"}, "geometry": {"type": "Polygon", "coordinates": [[[139.540164773, 35.938100919], [139.539421193, 35.940858667], [139.541129222, 35.935891468], [139.540164773, 35.938100919]]]}}, {"id": "32157", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "草加市", "N03_005": null, "N03_007": "11221"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811913645, 35.816528946], [139.82109808, 35.811438387], [139.79400131, 35.805198414], [139.767614942, 35.817684], [139.788036161, 35.827635333], [139.763605772, 35.863375613], [139.800555551, 35.854722225], [139.839927173, 35.870003532], [139.811913645, 35.816528946]]]}}, {"id": "32158", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "越谷市", "N03_005": null, "N03_007": "11222"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777858859, 35.858820865], [139.745502996, 35.926955505], [139.758562581, 35.94445464], [139.782245746, 35.940361279], [139.777905253, 35.958569892], [139.818056135, 35.932182892], [139.80620655, 35.917352919], [139.837111608, 35.906509865], [139.839927173, 35.870003532], [139.777858859, 35.858820865]]]}}, {"id": "32159", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "蕨市", "N03_005": null, "N03_007": "11223"}, "geometry": {"type": "Polygon", "coordinates": [[[139.690045305, 35.813699279], [139.668550895, 35.835677027], [139.709848755, 35.826309027], [139.690045305, 35.813699279]]]}}, {"id": "32160", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "戸田市", "N03_005": null, "N03_007": "11224"}, "geometry": {"type": "Polygon", "coordinates": [[[139.628832503, 35.80744536], [139.624345383, 35.834652559], [139.699518392, 35.815321775], [139.69767192, 35.798444559], [139.628832503, 35.80744536]]]}}, {"id": "32161", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "入間市", "N03_005": null, "N03_007": "11225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395697717, 35.778391892], [139.369920558, 35.791727414], [139.325729442, 35.795211865], [139.315024864, 35.814269054], [139.345410272, 35.827386802], [139.353590752, 35.860717027], [139.364319559, 35.842124838], [139.389923256, 35.85258564], [139.419463359, 35.817828468], [139.385732698, 35.807363775], [139.395697717, 35.778391892]]]}}, {"id": "32162", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "朝霞市", "N03_005": null, "N03_007": "11227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.622129105, 35.807786748], [139.597200752, 35.778366], [139.572778586, 35.799713198], [139.586547717, 35.831434225], [139.61552786, 35.835186171], [139.622129105, 35.807786748]]]}}, {"id": "32163", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "志木市", "N03_005": null, "N03_007": "11228"}, "geometry": {"type": "Polygon", "coordinates": [[[139.558094812, 35.824707865], [139.580821362, 35.837306171], [139.5832962, 35.860168333], [139.606466744, 35.842851135], [139.596105253, 35.827180892], [139.558094812, 35.824707865]]]}}, {"id": "32164", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "和光市", "N03_005": null, "N03_007": "11229"}, "geometry": {"type": "Polygon", "coordinates": [[[139.646301699, 35.797869252], [139.598207056, 35.769140198], [139.598155227, 35.783037108], [139.635959222, 35.81320536], [139.646301699, 35.797869252]]]}}, {"id": "32165", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "新座市", "N03_005": null, "N03_007": "11230"}, "geometry": {"type": "Polygon", "coordinates": [[[139.572800804, 35.799746802], [139.59370572, 35.777202667], [139.547158249, 35.753384108], [139.547662529, 35.774228252], [139.516374916, 35.765573279], [139.54349061, 35.781101838], [139.535214721, 35.820095946], [139.577946524, 35.822927865], [139.572800804, 35.799746802]]]}}, {"id": "32166", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "桶川市", "N03_005": null, "N03_007": "11231"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507799637, 35.996161505], [139.523752802, 36.011965892], [139.551655422, 36.005190694], [139.569733748, 36.040531306], [139.595617108, 36.02723636], [139.590669754, 36.007608865], [139.56905297, 36.004710468], [139.574492088, 35.986534946], [139.539035032, 35.99251236], [139.534843191, 35.960714171], [139.507799637, 35.996161505]]]}}, {"id": "32167", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "久喜市", "N03_005": null, "N03_007": "11232"}, "geometry": {"type": "Polygon", "coordinates": [[[139.560251803, 36.072166667], [139.59325489, 36.072802775], [139.605300895, 36.087598081], [139.632980143, 36.079352838], [139.703030895, 36.145101081], [139.726664669, 36.111627468], [139.693081997, 36.090881414], [139.709436329, 36.069183387], [139.684585668, 36.057620054], [139.688982802, 36.045207027], [139.684027224, 36.042006468], [139.659326939, 36.048844505], [139.648586809, 36.034747838], [139.614149027, 36.049546108], [139.587022361, 36.028881613], [139.562193191, 36.047933775], [139.560251803, 36.072166667]]]}}, {"id": "32168", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "久喜市", "N03_005": null, "N03_007": "11232"}, "geometry": {"type": "Polygon", "coordinates": [[[139.647727082, 36.033791171], [139.645066809, 36.034361721], [139.647416809, 36.034606441], [139.647727082, 36.033791171]]]}}, {"id": "32169", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "北本市", "N03_005": null, "N03_007": "11233"}, "geometry": {"type": "Polygon", "coordinates": [[[139.551655422, 36.005190694], [139.501360726, 35.996369559], [139.498328586, 36.015776171], [139.505015888, 36.027498108], [139.494296446, 36.035066748], [139.531469922, 36.034863135], [139.52515642, 36.057558468], [139.565053969, 36.034768505], [139.551655422, 36.005190694]]]}}, {"id": "32170", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "八潮市", "N03_005": null, "N03_007": "11234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.864421608, 35.823248586], [139.856485253, 35.790959468], [139.826050169, 35.79336036], [139.811467393, 35.834353919], [139.826398781, 35.829141387], [139.838360415, 35.858085225], [139.84743856, 35.828324973], [139.864421608, 35.823248586]]]}}, {"id": "32171", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "富士見市", "N03_005": null, "N03_007": "11235"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567750636, 35.833333108], [139.52884428, 35.842388108], [139.534320532, 35.863569441], [139.513493748, 35.854852], [139.511652361, 35.855947], [139.549676135, 35.869438333], [139.547733476, 35.888318559], [139.585139001, 35.860501946], [139.567750636, 35.833333108]]]}}, {"id": "32172", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "三郷市", "N03_005": null, "N03_007": "11237"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873105422, 35.783333333], [139.874748106, 35.796540279], [139.855608949, 35.801929441], [139.869069105, 35.819681081], [139.84743856, 35.828324973], [139.839780999, 35.859430468], [139.899209274, 35.866856505], [139.893778054, 35.782746387], [139.873105422, 35.783333333]]]}}, {"id": "32173", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "蓮田市", "N03_005": null, "N03_007": "11238"}, "geometry": {"type": "Polygon", "coordinates": [[[139.63862153, 35.996881721], [139.588190973, 36.028894667], [139.649595136, 36.031318108], [139.650466109, 36.010402279], [139.691968106, 35.999033721], [139.694152996, 35.974753468], [139.648372192, 35.962219838], [139.63862153, 35.996881721]]]}}, {"id": "32174", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "坂戸市", "N03_005": null, "N03_007": "11239"}, "geometry": {"type": "Polygon", "coordinates": [[[139.348884449, 35.969006054], [139.431174189, 35.998095333], [139.468291388, 35.96054036], [139.4351993, 35.945149919], [139.441248249, 35.961507081], [139.382903087, 35.952026892], [139.344667613, 35.921885586], [139.330880921, 35.920458081], [139.327176252, 35.93496364], [139.348984332, 35.930242505], [139.360135253, 35.947454694], [139.348884449, 35.969006054]]]}}, {"id": "32175", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "幸手市", "N03_005": null, "N03_007": "11240"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75072642, 36.054616171], [139.739841556, 36.040546748], [139.716560143, 36.051700333], [139.693081997, 36.090881414], [139.722775499, 36.109136667], [139.731382607, 36.086637775], [139.776217224, 36.090767414], [139.789511608, 36.061828865], [139.779952866, 36.042128387], [139.75072642, 36.054616171]]]}}, {"id": "32176", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "鶴ヶ島市", "N03_005": null, "N03_007": "11241"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396602802, 35.916666387], [139.352396278, 35.928188054], [139.417389585, 35.958724613], [139.428820661, 35.940243], [139.396602802, 35.916666387]]]}}, {"id": "32177", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "日高市", "N03_005": null, "N03_007": "11242"}, "geometry": {"type": "Polygon", "coordinates": [[[139.277467445, 35.900663441], [139.366474643, 35.927770838], [139.401961245, 35.895198081], [139.374715253, 35.868361198], [139.365286693, 35.884495892], [139.291004838, 35.868211532], [139.27540594, 35.874548468], [139.277467445, 35.900663441]]]}}, {"id": "32178", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "吉川市", "N03_005": null, "N03_007": "11243"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830456783, 35.896879027], [139.848631414, 35.911890946], [139.830252918, 35.939607892], [139.849291025, 35.938348414], [139.899209274, 35.866856505], [139.839780999, 35.859430468], [139.830456783, 35.896879027]]]}}, {"id": "32179", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "ふじみ野市", "N03_005": null, "N03_007": "11245"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468335058, 35.854249252], [139.523841193, 35.892276892], [139.551077004, 35.871932748], [139.518617419, 35.863690586], [139.511553191, 35.854851721], [139.534989974, 35.863088333], [139.521557056, 35.843300054], [139.468335058, 35.854249252]]]}}, {"id": "32180", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": null, "N03_004": "白岡市", "N03_005": null, "N03_007": "11246"}, "geometry": {"type": "Polygon", "coordinates": [[[139.710728054, 35.999999586], [139.675768054, 35.999064], [139.650466109, 36.010402279], [139.649595136, 36.031318108], [139.625518366, 36.027773081], [139.606426446, 36.045356946], [139.648919585, 36.034732], [139.659326939, 36.048844505], [139.681509468, 36.044624532], [139.710728054, 35.999999586]], [[139.645834034, 36.033114505], [139.647416809, 36.034606441], [139.644822088, 36.033872838], [139.645834034, 36.033114505]]]}}, {"id": "32181", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "北足立郡", "N03_004": "伊奈町", "N03_005": null, "N03_007": "11301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.642239442, 35.969697865], [139.590808366, 36.008662198], [139.595617108, 36.02723636], [139.645226252, 35.993037559], [139.642239442, 35.969697865]]]}}, {"id": "32182", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "入間郡", "N03_004": "三芳町", "N03_005": null, "N03_007": "11324"}, "geometry": {"type": "Polygon", "coordinates": [[[139.555286783, 35.828243135], [139.503163217, 35.814309306], [139.477898859, 35.837584], [139.52972655, 35.849946721], [139.555286783, 35.828243135]]]}}, {"id": "32183", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "入間郡", "N03_004": "毛呂山町", "N03_005": null, "N03_007": "11326"}, "geometry": {"type": "Polygon", "coordinates": [[[139.327237082, 35.935010865], [139.27063022, 35.901820667], [139.261239196, 35.933753108], [139.275684553, 35.95129364], [139.303546498, 35.945534198], [139.316105473, 35.963928892], [139.35040725, 35.969106613], [139.361266939, 35.954808865], [139.349131284, 35.930359171], [139.327237082, 35.935010865]]]}}, {"id": "32184", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "入間郡", "N03_004": "越生町", "N03_005": null, "N03_007": "11327"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213039494, 35.954484171], [139.280292166, 35.993654135], [139.321372996, 35.965580279], [139.303546498, 35.945534198], [139.275616226, 35.951259468], [139.253359728, 35.922103135], [139.213039494, 35.954484171]]]}}, {"id": "32185", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "滑川町", "N03_005": null, "N03_007": "11341"}, "geometry": {"type": "Polygon", "coordinates": [[[139.332894384, 36.041135441], [139.345879494, 36.053681108], [139.324355888, 36.069074027], [139.325738781, 36.098616225], [139.336231245, 36.088705667], [139.345052438, 36.104025387], [139.387150052, 36.101768108], [139.376532166, 36.08384036], [139.385751479, 36.040954532], [139.332894384, 36.041135441]]]}}, {"id": "32186", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "嵐山町", "N03_005": null, "N03_007": "11342"}, "geometry": {"type": "Polygon", "coordinates": [[[139.296707328, 36.032712414], [139.308485279, 36.062882081], [139.288173748, 36.106690108], [139.301615447, 36.110496225], [139.345879494, 36.053681108], [139.32951856, 36.043366], [139.342723476, 36.009008532], [139.316601479, 36.009102721], [139.296707328, 36.032712414]]]}}, {"id": "32187", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "小川町", "N03_005": null, "N03_007": "11343"}, "geometry": {"type": "Polygon", "coordinates": [[[139.197868495, 36.068953108], [139.208585006, 36.089362559], [139.247821388, 36.083038171], [139.293031219, 36.099114559], [139.308485279, 36.062882081], [139.294991219, 36.031779081], [139.249768145, 36.033327667], [139.191304942, 36.005924306], [139.186337497, 36.026347865], [139.238989027, 36.051256532], [139.197868495, 36.068953108]]]}}, {"id": "32188", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "川島町", "N03_005": null, "N03_007": "11346"}, "geometry": {"type": "Polygon", "coordinates": [[[139.545454034, 35.951658081], [139.462652192, 35.961261468], [139.421542555, 36.007583108], [139.50420192, 36.012245613], [139.501360726, 35.996369559], [139.545454034, 35.951658081]]]}}, {"id": "32189", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "吉見町", "N03_005": null, "N03_007": "11347"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500323333, 36.020106441], [139.440742335, 36.012507505], [139.417994034, 36.035446694], [139.416314137, 36.063874748], [139.450946861, 36.083611081], [139.483039611, 36.059058225], [139.500323333, 36.020106441]]]}}, {"id": "32190", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "吉見町", "N03_005": null, "N03_007": "11347"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429747886, 36.080241108], [139.429394838, 36.080635], [139.433583995, 36.082213333], [139.429747886, 36.080241108]]]}}, {"id": "32191", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "鳩山町", "N03_005": null, "N03_007": "11348"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288265616, 35.99166636], [139.343820415, 36.009056865], [139.379362361, 35.981605441], [139.326821336, 35.962260279], [139.288265616, 35.99166636]]]}}, {"id": "32192", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "比企郡", "N03_004": "ときがわ町", "N03_005": null, "N03_007": "11349"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173291193, 35.980502414], [139.176200726, 35.997730414], [139.249768145, 36.033327667], [139.302324332, 36.038131586], [139.31641703, 36.013432135], [139.212927004, 35.956444171], [139.173291193, 35.980502414]]]}}, {"id": "32193", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "秩父郡", "N03_004": "横瀬町", "N03_005": null, "N03_007": "11361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.0901462, 35.963772441], [139.106372283, 36.008906198], [139.169285422, 35.992824333], [139.178648106, 35.969959387], [139.162551608, 35.945896946], [139.102761634, 35.927224694], [139.0901462, 35.963772441]]]}}, {"id": "32194", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "秩父郡", "N03_004": "皆野町", "N03_005": null, "N03_007": "11362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129746861, 36.032720027], [139.112773333, 36.057730775], [139.086258612, 36.068443171], [139.058169339, 36.058983333], [139.055286057, 36.072722505], [139.004355422, 36.090942441], [139.053743165, 36.124998694], [139.082548781, 36.121630414], [139.093094812, 36.091015973], [139.155788249, 36.082740279], [139.156766913, 36.031589775], [139.129746861, 36.032720027]]]}}, {"id": "32195", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "秩父郡", "N03_004": "長瀞町", "N03_005": null, "N03_007": "11363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082568223, 36.12171236], [139.12484511, 36.148237198], [139.160619857, 36.134972505], [139.137726978, 36.117845532], [139.139117419, 36.090537198], [139.114194553, 36.083734081], [139.085271193, 36.096693441], [139.082568223, 36.12171236]]]}}, {"id": "32196", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "秩父郡", "N03_004": "小鹿野町", "N03_005": null, "N03_007": "11365"}, "geometry": {"type": "Polygon", "coordinates": [[[138.883048003, 35.973609], [138.839521167, 36.000800613], [138.841792802, 36.030475838], [138.828394721, 36.037302532], [138.846037056, 36.066625], [138.897858781, 36.090654613], [138.931076329, 36.088119532], [138.984052724, 36.034343973], [139.052188054, 36.018465892], [139.040744617, 36.001515613], [139.050482918, 35.991977414], [139.027809974, 35.968368559], [138.981446887, 35.983239532], [138.942721414, 35.966609198], [138.883048003, 35.973609]]]}}, {"id": "32197", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "秩父郡", "N03_004": "東秩父村", "N03_005": null, "N03_007": "11369"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176163774, 35.997829306], [139.153296329, 36.023300081], [139.157478275, 36.092586946], [139.238984306, 36.051304586], [139.18830642, 36.028108135], [139.176163774, 35.997829306]]]}}, {"id": "32198", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "美里町", "N03_005": null, "N03_007": "11381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138001803, 36.144624973], [139.166051777, 36.207972252], [139.208241245, 36.198290306], [139.189408911, 36.175349468], [139.192852412, 36.144415306], [139.165075966, 36.132013613], [139.138001803, 36.144624973]]]}}, {"id": "32199", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "美里町", "N03_005": null, "N03_007": "11381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14962808, 36.195458919], [139.150660026, 36.198581973], [139.152021699, 36.196021973], [139.14962808, 36.195458919]]]}}, {"id": "32200", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "美里町", "N03_005": null, "N03_007": "11381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145441388, 36.194393919], [139.148131414, 36.196477802], [139.149206693, 36.195336973], [139.145441388, 36.194393919]]]}}, {"id": "32201", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "美里町", "N03_005": null, "N03_007": "11381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.152550311, 36.196340865], [139.154718664, 36.198152252], [139.155104189, 36.196390027], [139.152550311, 36.196340865]]]}}, {"id": "32202", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "神川町", "N03_005": null, "N03_007": "11383"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997293748, 36.097067171], [138.976492892, 36.117210586], [139.004856641, 36.133412027], [139.04217703, 36.128218135], [139.042722088, 36.14802736], [139.06215856, 36.152936559], [139.063418664, 36.196285532], [139.096514747, 36.238247838], [139.135943696, 36.221254748], [139.129152218, 36.200533613], [139.107523281, 36.207369198], [139.083722049, 36.189534414], [139.066991089, 36.159642973], [139.075479974, 36.147768775], [139.040980272, 36.104362252], [138.997293748, 36.097067171]]]}}, {"id": "32203", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "児玉郡", "N03_004": "上里町", "N03_005": null, "N03_007": "11385"}, "geometry": {"type": "Polygon", "coordinates": [[[139.155586744, 36.249999505], [139.171680506, 36.238721694], [139.137995914, 36.220101135], [139.09587917, 36.234631135], [139.12943917, 36.283343667], [139.169470052, 36.274752838], [139.155586744, 36.249999505]]]}}, {"id": "32204", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "大里郡", "N03_004": "寄居町", "N03_005": null, "N03_007": "11408"}, "geometry": {"type": "Polygon", "coordinates": [[[139.197696005, 36.068694505], [139.174287198, 36.090103081], [139.139284643, 36.090765802], [139.137689754, 36.117739414], [139.192852412, 36.144415306], [139.189903087, 36.17658336], [139.232702244, 36.157019775], [139.180906524, 36.134495586], [139.288763191, 36.106055946], [139.2840362, 36.091383721], [139.208658054, 36.089377838], [139.197696005, 36.068694505]]]}}, {"id": "32205", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "南埼玉郡", "N03_004": "宮代町", "N03_005": null, "N03_007": "11442"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743913891, 35.999999586], [139.711269857, 36.005465387], [139.684836355, 36.034834532], [139.684585668, 36.057620054], [139.75214345, 36.013338171], [139.743913891, 35.999999586]]]}}, {"id": "32206", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "北葛飾郡", "N03_004": "杉戸町", "N03_005": null, "N03_007": "11464"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756259222, 35.999860414], [139.707598911, 36.03582564], [139.702934332, 36.062356721], [139.774934228, 36.037901721], [139.789511608, 36.061828865], [139.806949105, 36.043167775], [139.778079754, 36.026052306], [139.780983839, 36.004720414], [139.756259222, 35.999860414]]]}}, {"id": "32207", "type": "Feature", "properties": {"N03_001": "埼玉県", "N03_002": null, "N03_003": "北葛飾郡", "N03_004": "松伏町", "N03_005": null, "N03_007": "11465"}, "geometry": {"type": "Polygon", "coordinates": [[[139.807977108, 35.916528748], [139.818250856, 35.931759], [139.804990921, 35.954393468], [139.833331414, 35.968967027], [139.849291025, 35.938348414], [139.830252918, 35.939607892], [139.836111946, 35.915347054], [139.848631414, 35.911890946], [139.807977108, 35.916528748]]]}}, {"id": "32208", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "12000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.97626144, 35.667048468], [139.958528145, 35.673111333], [139.971993839, 35.670896721], [139.97626144, 35.667048468]]]}}, {"id": "32209", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "中央区", "N03_007": "12101"}, "geometry": {"type": "Polygon", "coordinates": [[[140.157712866, 35.553106081], [140.091023165, 35.564488423], [140.126891232, 35.56766773], [140.112124825, 35.570457054], [140.118257665, 35.595614775], [140.088798729, 35.59481518], [140.105019248, 35.610706225], [140.096712049, 35.621041721], [140.126205863, 35.628887667], [140.133835279, 35.614558802], [140.153811803, 35.617406892], [140.148142555, 35.606657721], [140.175437562, 35.581189667], [140.157712866, 35.553106081]]]}}, {"id": "32210", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "中央区", "N03_007": "12101"}, "geometry": {"type": "Polygon", "coordinates": [[[140.081590817, 35.588287829], [140.111730765, 35.570433261], [140.086101738, 35.569445739], [140.081590817, 35.588287829]]]}}, {"id": "32211", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "花見川区", "N03_007": "12102"}, "geometry": {"type": "Polygon", "coordinates": [[[140.125946226, 35.679212919], [140.073802309, 35.641352694], [140.034947665, 35.669632613], [140.112662114, 35.714776252], [140.123625006, 35.699029532], [140.134272827, 35.699563171], [140.152643943, 35.689292414], [140.15441917, 35.683291613], [140.142976135, 35.691381279], [140.141750415, 35.671524946], [140.125946226, 35.679212919]]]}}, {"id": "32212", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "稲毛区", "N03_007": "12103"}, "geometry": {"type": "Polygon", "coordinates": [[[140.125009468, 35.627623775], [140.097055084, 35.620107838], [140.073802309, 35.641352694], [140.125946226, 35.679212919], [140.141306744, 35.667616081], [140.152864137, 35.679015532], [140.155958145, 35.654086135], [140.128290506, 35.655311279], [140.125009468, 35.627623775]]]}}, {"id": "32213", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "若葉区", "N03_007": "12104"}, "geometry": {"type": "Polygon", "coordinates": [[[140.288728418, 35.570034892], [140.175437562, 35.581189667], [140.148142555, 35.606657721], [140.153811803, 35.617406892], [140.124627808, 35.628433505], [140.128290506, 35.655311279], [140.176451855, 35.653448613], [140.19646192, 35.641152414], [140.189976226, 35.62547436], [140.211886252, 35.654592054], [140.228736472, 35.633139468], [140.265606057, 35.627482919], [140.261316913, 35.599636613], [140.288728418, 35.570034892]]]}}, {"id": "32214", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "緑区", "N03_007": "12105"}, "geometry": {"type": "Polygon", "coordinates": [[[140.255043995, 35.494508973], [140.228642166, 35.507928775], [140.223777782, 35.542943468], [140.178363385, 35.532739973], [140.142364423, 35.547973559], [140.187432672, 35.586413532], [140.238274086, 35.561219252], [140.266665227, 35.557666919], [140.270438949, 35.569261054], [140.289388145, 35.569839333], [140.280777393, 35.542453], [140.300873917, 35.520336802], [140.272114838, 35.493602802], [140.266966329, 35.501800027], [140.262719274, 35.494261721], [140.255043995, 35.494508973]], [[140.260247367, 35.496356748], [140.259105966, 35.49598536], [140.259274864, 35.495688414], [140.260247367, 35.496356748]], [[140.26150572, 35.497122279], [140.260437665, 35.497204252], [140.2605293, 35.496930919], [140.26150572, 35.497122279]]]}}, {"id": "32215", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "緑区", "N03_007": "12105"}, "geometry": {"type": "Polygon", "coordinates": [[[140.302806978, 35.520618468], [140.302381971, 35.521217081], [140.303141971, 35.520993748], [140.302806978, 35.520618468]]]}}, {"id": "32216", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "美浜区", "N03_007": "12106"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018268171, 35.650664685], [140.042466161, 35.658932], [140.105019248, 35.610706225], [140.083001881, 35.613879541], [140.083907082, 35.596796865], [140.043596576, 35.62641036], [140.018268171, 35.650664685]]]}}, {"id": "32217", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "千葉市", "N03_005": "美浜区", "N03_007": "12106"}, "geometry": {"type": "Polygon", "coordinates": [[[140.082509481, 35.606199], [140.081498586, 35.607383604], [140.082620532, 35.606276108], [140.082509481, 35.606199]]]}}, {"id": "32218", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.762547549, 35.698060081], [140.733883022, 35.705344081], [140.745861725, 35.744423387], [140.724837224, 35.733583468], [140.728085694, 35.755506775], [140.707792633, 35.761603802], [140.692775227, 35.804358838], [140.720702166, 35.813472613], [140.81535153, 35.741514505], [140.872072827, 35.739952099], [140.864542205, 35.744230541], [140.860170584, 35.749704667], [140.860819079, 35.749775027], [140.864748742, 35.744445991], [140.871850454, 35.740918072], [140.881620091, 35.730879658], [140.867624371, 35.737974811], [140.875343139, 35.731700577], [140.865509274, 35.692285613], [140.830994423, 35.713601018], [140.762547549, 35.698060081]], [[140.7733669, 35.701902982], [140.778883671, 35.702958847], [140.779971206, 35.703804324], [140.7733669, 35.701902982]], [[140.781267043, 35.704288667], [140.78069463, 35.70418655], [140.780092075, 35.703945405], [140.781267043, 35.704288667]], [[140.781447601, 35.704409378], [140.787937613, 35.706307108], [140.804888949, 35.71100355], [140.798541414, 35.709493811], [140.781447601, 35.704409378]], [[140.810245188, 35.712451441], [140.808797678, 35.711972595], [140.810406602, 35.712378387], [140.810245188, 35.712451441]], [[140.821071647, 35.713546324], [140.821309001, 35.713677505], [140.821028249, 35.713638703], [140.821071647, 35.713546324]], [[140.870956096, 35.729818144], [140.868990285, 35.730185784], [140.868951933, 35.730161054], [140.870956096, 35.729818144]]]}}, {"id": "32219", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.861850532, 35.750019414], [140.861080389, 35.750934775], [140.861035694, 35.752872306], [140.861850532, 35.750019414]]]}}, {"id": "32220", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.878052944, 35.729786838], [140.878165811, 35.729669225], [140.876303152, 35.728670955], [140.878052944, 35.729786838]]]}}, {"id": "32221", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868150882, 35.694558423], [140.868497471, 35.695164378], [140.868501492, 35.694825261], [140.868150882, 35.694558423]]]}}, {"id": "32222", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867944695, 35.694540279], [140.867413268, 35.694208829], [140.86770716, 35.694721685], [140.867944695, 35.694540279]]]}}, {"id": "32223", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.761114371, 35.697894838], [140.762633658, 35.69794882], [140.766396861, 35.698759027], [140.762641427, 35.697913342], [140.761114371, 35.697894838]]]}}, {"id": "32224", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.838325538, 35.696387919], [140.838418184, 35.696242577], [140.837354241, 35.695968712], [140.838325538, 35.696387919]]]}}, {"id": "32225", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87451917, 35.718969586], [140.874513061, 35.718460973], [140.874100272, 35.718652081], [140.87451917, 35.718969586]]]}}, {"id": "32226", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.848558249, 35.693176883], [140.847389468, 35.694152144], [140.847468586, 35.694213946], [140.848558249, 35.693176883]]]}}, {"id": "32227", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863775811, 35.702145748], [140.863768833, 35.701751306], [140.863568586, 35.702111865], [140.863775811, 35.702145748]]]}}, {"id": "32228", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.85795572, 35.746849712], [140.859547237, 35.747536288], [140.85958476, 35.747470982], [140.85795572, 35.746849712]]]}}, {"id": "32229", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.85112323, 35.694611045], [140.849706978, 35.694002721], [140.849669754, 35.694073604], [140.85112323, 35.694611045]]]}}, {"id": "32230", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867485357, 35.70927236], [140.867935486, 35.709119955], [140.867426252, 35.709059523], [140.867485357, 35.70927236]]]}}, {"id": "32231", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864366796, 35.704513009], [140.86421751, 35.704187739], [140.864107056, 35.704294324], [140.864366796, 35.704513009]]]}}, {"id": "32232", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857172412, 35.693872117], [140.857774942, 35.694142171], [140.857929222, 35.694102099], [140.857172412, 35.693872117]]]}}, {"id": "32233", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875532374, 35.719395955], [140.875227445, 35.71919255], [140.87501035, 35.71927582], [140.875532374, 35.719395955]]]}}, {"id": "32234", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870253696, 35.72805736], [140.869805136, 35.727978081], [140.869777886, 35.728088135], [140.870253696, 35.72805736]]]}}, {"id": "32235", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86660965, 35.691328973], [140.866366252, 35.691354766], [140.866788833, 35.691575297], [140.86660965, 35.691328973]]]}}, {"id": "32236", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.876369274, 35.718031225], [140.876294825, 35.717720829], [140.876085045, 35.717889658], [140.876369274, 35.718031225]]]}}, {"id": "32237", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.8700662, 35.724815297], [140.870273268, 35.724929333], [140.870196226, 35.724673847], [140.8700662, 35.724815297]]]}}, {"id": "32238", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869128223, 35.689573252], [140.868900441, 35.689353802], [140.868796835, 35.689454919], [140.869128223, 35.689573252]]]}}, {"id": "32239", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868415616, 35.695202387], [140.868562166, 35.695445468], [140.86870655, 35.695460252], [140.868415616, 35.695202387]]]}}, {"id": "32240", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.845473658, 35.698110847], [140.845566304, 35.698027054], [140.845411401, 35.697835739], [140.845473658, 35.698110847]]]}}, {"id": "32241", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864765746, 35.704044153], [140.865026265, 35.703919423], [140.864701777, 35.70387318], [140.864765746, 35.704044153]]]}}, {"id": "32242", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86722214, 35.693850748], [140.866994358, 35.693709919], [140.867132412, 35.693901306], [140.86722214, 35.693850748]]]}}, {"id": "32243", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865965019, 35.695207306], [140.865678872, 35.695226171], [140.86567978, 35.695270775], [140.865965019, 35.695207306]]]}}, {"id": "32244", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854805512, 35.744508928], [140.854889546, 35.74430127], [140.854648366, 35.744279883], [140.854805512, 35.744508928]]]}}, {"id": "32245", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86407275, 35.703301027], [140.86385192, 35.703340468], [140.864003865, 35.703470198], [140.86407275, 35.703301027]]]}}, {"id": "32246", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875648288, 35.722007784], [140.87593144, 35.721785135], [140.875582581, 35.721960847], [140.875648288, 35.722007784]]]}}, {"id": "32247", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866487263, 35.691554901], [140.866631479, 35.69173709], [140.866740104, 35.691703613], [140.866487263, 35.691554901]]]}}, {"id": "32248", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869733632, 35.726480559], [140.869958444, 35.726642297], [140.869765603, 35.726440171], [140.869733632, 35.726480559]]]}}, {"id": "32249", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.8721, 35.696249054], [140.87219083, 35.696444333], [140.872266394, 35.696301279], [140.8721, 35.696249054]]]}}, {"id": "32250", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867232763, 35.691498387], [140.867320934, 35.691704036], [140.867405707, 35.691689604], [140.867232763, 35.691498387]]]}}, {"id": "32251", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865806524, 35.691348252], [140.865606252, 35.691246865], [140.865716809, 35.691399081], [140.865806524, 35.691348252]]]}}, {"id": "32252", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857127951, 35.746384018], [140.857238392, 35.746167486], [140.857045123, 35.746262505], [140.857127951, 35.746384018]]]}}, {"id": "32253", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.845244332, 35.697870315], [140.845112101, 35.69800455], [140.845167108, 35.69804618], [140.845244332, 35.697870315]]]}}, {"id": "32254", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871796329, 35.717659324], [140.871475811, 35.717727532], [140.871881038, 35.717731153], [140.871796329, 35.717659324]]]}}, {"id": "32255", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872228859, 35.718454865], [140.872056083, 35.718539306], [140.872235811, 35.718516802], [140.872228859, 35.718454865]]]}}, {"id": "32256", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865330143, 35.691528802], [140.865260973, 35.691382135], [140.865205694, 35.691522973], [140.865330143, 35.691528802]]]}}, {"id": "32257", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866038119, 35.691767234], [140.866249377, 35.691921802], [140.866373593, 35.691933171], [140.866038119, 35.691767234]]]}}, {"id": "32258", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.845037691, 35.697799766], [140.844956291, 35.697959171], [140.845046628, 35.698007811], [140.845037691, 35.697799766]]]}}, {"id": "32259", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871151388, 35.720444027], [140.871096109, 35.720336802], [140.870923606, 35.720427081], [140.871151388, 35.720444027]]]}}, {"id": "32260", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857073165, 35.746639108], [140.857319961, 35.746657829], [140.857084137, 35.746588631], [140.857073165, 35.746639108]]]}}, {"id": "32261", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87665725, 35.718085694], [140.876623359, 35.718239306], [140.87672725, 35.718193198], [140.87665725, 35.718085694]]]}}, {"id": "32262", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.874879637, 35.722539], [140.875040454, 35.722623685], [140.87500799, 35.722515811], [140.874879637, 35.722539]]]}}, {"id": "32263", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867651816, 35.715383288], [140.867504773, 35.715428369], [140.867768223, 35.715502108], [140.867651816, 35.715383288]]]}}, {"id": "32264", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.860136744, 35.692418838], [140.859902023, 35.692486613], [140.860095357, 35.692531613], [140.860136744, 35.692418838]]]}}, {"id": "32265", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.874957082, 35.718435532], [140.87506594, 35.718638559], [140.875027263, 35.718418613], [140.874957082, 35.718435532]]]}}, {"id": "32266", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868999507, 35.731035198], [140.869012879, 35.73076982], [140.868964202, 35.731031441], [140.868999507, 35.731035198]]]}}, {"id": "32267", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875715512, 35.718861685], [140.875535863, 35.718925342], [140.875810947, 35.718856901], [140.875715512, 35.718861685]]]}}, {"id": "32268", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.858610636, 35.694323559], [140.858527588, 35.694481333], [140.858672581, 35.694402441], [140.858610636, 35.694323559]]]}}, {"id": "32269", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870827056, 35.731579586], [140.870771777, 35.731720414], [140.870972049, 35.731630135], [140.870827056, 35.731579586]]]}}, {"id": "32270", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.85758987, 35.746668694], [140.85740847, 35.746593532], [140.857233372, 35.746509577], [140.857398846, 35.746636333], [140.85758987, 35.746668694]]]}}, {"id": "32271", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866957873, 35.690179955], [140.866891219, 35.690005937], [140.866767211, 35.690053423], [140.866957873, 35.690179955]]]}}, {"id": "32272", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870743204, 35.707779586], [140.870560791, 35.707978901], [140.870566835, 35.708009676], [140.870743204, 35.707779586]]]}}, {"id": "32273", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871627108, 35.717836991], [140.871905525, 35.717778532], [140.871517523, 35.717773586], [140.871627108, 35.717836991]]]}}, {"id": "32274", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872004968, 35.717563162], [140.872046654, 35.717420477], [140.871877925, 35.717517027], [140.872004968, 35.717563162]]]}}, {"id": "32275", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.85429415, 35.744013216], [140.854198547, 35.744127505], [140.854334825, 35.744150595], [140.85429415, 35.744013216]]]}}, {"id": "32276", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870730363, 35.728975973], [140.870612866, 35.729066252], [140.870820078, 35.72903236], [140.870730363, 35.728975973]]]}}, {"id": "32277", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864443774, 35.703506207], [140.864431349, 35.703673324], [140.864529611, 35.703529261], [140.864443774, 35.703506207]]]}}, {"id": "32278", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865095136, 35.691083559], [140.865198755, 35.691207441], [140.865219585, 35.691123], [140.865095136, 35.691083559]]]}}, {"id": "32279", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866102477, 35.691548288], [140.866269001, 35.691490532], [140.866008625, 35.691458964], [140.866102477, 35.691548288]]]}}, {"id": "32280", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869619857, 35.707187901], [140.869692698, 35.707275153], [140.869786291, 35.707205847], [140.869619857, 35.707187901]]]}}, {"id": "32281", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869460571, 35.726836495], [140.869694163, 35.726923982], [140.869501479, 35.726734117], [140.869460571, 35.726836495]]]}}, {"id": "32282", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870384721, 35.721638468], [140.870378054, 35.721796252], [140.870474721, 35.721661252], [140.870384721, 35.721638468]]]}}, {"id": "32283", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871047834, 35.725470694], [140.871082555, 35.725622919], [140.871158392, 35.725555135], [140.871047834, 35.725470694]]]}}, {"id": "32284", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875452711, 35.721867423], [140.87527978, 35.721955901], [140.875428768, 35.721963982], [140.875452711, 35.721867423]]]}}, {"id": "32285", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866096602, 35.691409721], [140.866063684, 35.691290577], [140.865965707, 35.691344324], [140.866096602, 35.691409721]]]}}, {"id": "32286", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.845273139, 35.698104595], [140.845351569, 35.697979739], [140.845316744, 35.697978495], [140.845273139, 35.698104595]]]}}, {"id": "32287", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867567665, 35.690356586], [140.867643774, 35.690548252], [140.867685162, 35.690520198], [140.867567665, 35.690356586]]]}}, {"id": "32288", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869922283, 35.722084919], [140.869929637, 35.722037892], [140.869874358, 35.721925973], [140.869770065, 35.721938685], [140.869922283, 35.722084919]]]}}, {"id": "32289", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.855143671, 35.69523636], [140.855074773, 35.695298306], [140.855102283, 35.695349135], [140.855143671, 35.69523636]]]}}, {"id": "32290", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870761751, 35.723201712], [140.870958768, 35.723214532], [140.870948936, 35.723189378], [140.870761751, 35.723201712]]]}}, {"id": "32291", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.861807886, 35.693878559], [140.86177345, 35.694030775], [140.861849274, 35.693991333], [140.861807886, 35.693878559]]]}}, {"id": "32292", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869589909, 35.707529396], [140.869591154, 35.707634027], [140.869698846, 35.707562171], [140.869589909, 35.707529396]]]}}, {"id": "32293", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870021777, 35.708095171], [140.86993511, 35.708256279], [140.870056498, 35.708188225], [140.870021777, 35.708095171]]]}}, {"id": "32294", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870593061, 35.708225856], [140.870546459, 35.708091964], [140.870556887, 35.708223018], [140.870593061, 35.708225856]]]}}, {"id": "32295", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868204112, 35.729048865], [140.868330947, 35.728992162], [140.868153061, 35.728964225], [140.868204112, 35.729048865]]]}}, {"id": "32296", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869677341, 35.707659423], [140.869798444, 35.707726523], [140.869769637, 35.707635559], [140.869677341, 35.707659423]]]}}, {"id": "32297", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859066472, 35.693940505], [140.85903869, 35.694030775], [140.859183696, 35.693979946], [140.859066472, 35.693940505]]]}}, {"id": "32298", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.856717185, 35.746693153], [140.856644708, 35.746575694], [140.856670208, 35.74678891], [140.856717185, 35.746693153]]]}}, {"id": "32299", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864855253, 35.70527855], [140.864945253, 35.705154207], [140.864797056, 35.705256252], [140.864855253, 35.70527855]]]}}, {"id": "32300", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871757095, 35.721713883], [140.871805123, 35.721615946], [140.871638833, 35.721628468], [140.871757095, 35.721713883]]]}}, {"id": "32301", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870459339, 35.728931306], [140.870329533, 35.728988027], [140.870396939, 35.729068802], [140.870459339, 35.728931306]]]}}, {"id": "32302", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872285058, 35.717905766], [140.872289961, 35.717807568], [140.872174825, 35.717920144], [140.872285058, 35.717905766]]]}}, {"id": "32303", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.873102218, 35.71914264], [140.872925006, 35.719150973], [140.872937497, 35.719220135], [140.873102218, 35.71914264]]]}}, {"id": "32304", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868165564, 35.72936682], [140.868178029, 35.729245667], [140.868134617, 35.729264432], [140.868165564, 35.72936682]]]}}, {"id": "32305", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.873741115, 35.718573198], [140.873787497, 35.718424586], [140.87367834, 35.718511252], [140.873741115, 35.718573198]]]}}, {"id": "32306", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.838135227, 35.704906108], [140.838045499, 35.704798892], [140.837997173, 35.704849721], [140.838135227, 35.704906108]]]}}, {"id": "32307", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869146563, 35.708786135], [140.869227224, 35.70870018], [140.869130973, 35.708716694], [140.869146563, 35.708786135]]]}}, {"id": "32308", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871006161, 35.731700838], [140.871047912, 35.731833865], [140.871107043, 35.731841739], [140.871006161, 35.731700838]]]}}, {"id": "32309", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871823489, 35.717639622], [140.87204939, 35.717690676], [140.872077276, 35.717676009], [140.871823489, 35.717639622]]]}}, {"id": "32310", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866918495, 35.691539919], [140.867036005, 35.691573802], [140.86705655, 35.691472694], [140.866918495, 35.691539919]]]}}, {"id": "32311", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857111089, 35.693872189], [140.857276641, 35.693823018], [140.857069624, 35.693782505], [140.857111089, 35.693872189]]]}}, {"id": "32312", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869759144, 35.726215946], [140.86974978, 35.726299027], [140.869887562, 35.726315973], [140.869759144, 35.726215946]]]}}, {"id": "32313", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869776342, 35.706685054], [140.869574604, 35.706748802], [140.869788807, 35.706700811], [140.869776342, 35.706685054]]]}}, {"id": "32314", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869320597, 35.707315667], [140.869336291, 35.707204856], [140.869258353, 35.707271225], [140.869320597, 35.707315667]]]}}, {"id": "32315", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.858210661, 35.694051838], [140.85830406, 35.694158486], [140.858330039, 35.694133748], [140.858210661, 35.694051838]]]}}, {"id": "32316", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871857354, 35.718146414], [140.871932672, 35.718056171], [140.8717762, 35.71811773], [140.871857354, 35.718146414]]]}}, {"id": "32317", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869354864, 35.708554964], [140.869362451, 35.708654126], [140.869449235, 35.708657171], [140.869354864, 35.708554964]]]}}, {"id": "32318", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.878852827, 35.718000694], [140.878904501, 35.717924027], [140.878793113, 35.717959306], [140.878852827, 35.718000694]]]}}, {"id": "32319", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875985837, 35.716206252], [140.87604083, 35.71630764], [140.876047782, 35.716206252], [140.875985837, 35.716206252]]]}}, {"id": "32320", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871289805, 35.728062919], [140.871165357, 35.728136252], [140.871351751, 35.728091252], [140.871289805, 35.728062919]]]}}, {"id": "32321", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870322802, 35.725324027], [140.870281141, 35.72544264], [140.870343359, 35.72544264], [140.870322802, 35.725324027]]]}}, {"id": "32322", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863415396, 35.702917973], [140.863520402, 35.702954847], [140.863549896, 35.702919712], [140.863415396, 35.702917973]]]}}, {"id": "32323", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86633847, 35.689770468], [140.866434034, 35.689766027], [140.866379027, 35.689736865], [140.86633847, 35.689770468]]]}}, {"id": "32324", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.861433722, 35.694092135], [140.861296991, 35.694105829], [140.861349494, 35.694176045], [140.861433722, 35.694092135]]]}}, {"id": "32325", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867864358, 35.694098802], [140.868016304, 35.694087414], [140.867836861, 35.694047973], [140.867864358, 35.694098802]]]}}, {"id": "32326", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863393476, 35.702786477], [140.863479844, 35.702842703], [140.863521102, 35.702803324], [140.863393476, 35.702786477]]]}}, {"id": "32327", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872385551, 35.719000973], [140.872539728, 35.718984586], [140.872417782, 35.718943468], [140.872385551, 35.719000973]]]}}, {"id": "32328", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.8681338, 35.694312973], [140.86816131, 35.69423964], [140.868037134, 35.694245198], [140.8681338, 35.694312973]]]}}, {"id": "32329", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869321608, 35.693321027], [140.86937022, 35.693399919], [140.86941856, 35.693315198], [140.869321608, 35.693321027]]]}}, {"id": "32330", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868796589, 35.716566838], [140.868789637, 35.716459613], [140.868734358, 35.716516], [140.868796589, 35.716566838]]]}}, {"id": "32331", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872111414, 35.721475414], [140.872132244, 35.721559865], [140.872180584, 35.721497919], [140.872111414, 35.721475414]]]}}, {"id": "32332", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865106161, 35.703229414], [140.865011946, 35.703317973], [140.865119585, 35.703251387], [140.865106161, 35.703229414]]]}}, {"id": "32333", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859694838, 35.694808279], [140.859812049, 35.694734946], [140.859708716, 35.694729387], [140.859694838, 35.694808279]]]}}, {"id": "32334", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.8698462, 35.728981532], [140.869811751, 35.729088748], [140.869922309, 35.729037919], [140.8698462, 35.728981532]]]}}, {"id": "32335", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864822529, 35.705645748], [140.864754189, 35.705542694], [140.864710584, 35.705577414], [140.864822529, 35.705645748]]]}}, {"id": "32336", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.877525616, 35.718809865], [140.877580895, 35.718747919], [140.877433385, 35.718730135], [140.877525616, 35.718809865]]]}}, {"id": "32337", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86414192, 35.703633532], [140.864271479, 35.703700414], [140.864312477, 35.703666892], [140.86414192, 35.703633532]]]}}, {"id": "32338", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869601051, 35.726656279], [140.869703554, 35.726616829], [140.86963323, 35.726563081], [140.869601051, 35.726656279]]]}}, {"id": "32339", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869504565, 35.707416568], [140.869604423, 35.707473117], [140.869629637, 35.707440099], [140.869504565, 35.707416568]]]}}, {"id": "32340", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869687445, 35.717164054], [140.869804942, 35.717113505], [140.869687445, 35.717102108], [140.869687445, 35.717164054]]]}}, {"id": "32341", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870240195, 35.691991027], [140.870329948, 35.692081306], [140.870281582, 35.691957414], [140.870240195, 35.691991027]]]}}, {"id": "32342", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854541803, 35.744454108], [140.854524994, 35.744532486], [140.854641167, 35.744495901], [140.854541803, 35.744454108]]]}}, {"id": "32343", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869797484, 35.722015324], [140.869799092, 35.722114369], [140.86986275, 35.722088405], [140.869797484, 35.722015324]]]}}, {"id": "32344", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871455279, 35.72127236], [140.871357782, 35.721257171], [140.871338054, 35.72131764], [140.871455279, 35.72127236]]]}}, {"id": "32345", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869202672, 35.722787829], [140.869228366, 35.722706225], [140.869123865, 35.722727766], [140.869202672, 35.722787829]]]}}, {"id": "32346", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872574475, 35.721352919], [140.872462529, 35.721316532], [140.872511971, 35.721374027], [140.872574475, 35.721352919]]]}}, {"id": "32347", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866695305, 35.690106586], [140.86674904, 35.690092243], [140.866575019, 35.689963766], [140.866695305, 35.690106586]]]}}, {"id": "32348", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871820817, 35.717961865], [140.871762101, 35.717874405], [140.87171249, 35.71796136], [140.871820817, 35.717961865]]]}}, {"id": "32349", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871183489, 35.720105387], [140.87124144, 35.720014757], [140.871104656, 35.720069559], [140.871183489, 35.720105387]]]}}, {"id": "32350", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872422244, 35.721616252], [140.872373917, 35.721683748], [140.872476693, 35.721650135], [140.872422244, 35.721616252]]]}}, {"id": "32351", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869031219, 35.708897108], [140.869093165, 35.708806279], [140.868969274, 35.708868775], [140.869031219, 35.708897108]]]}}, {"id": "32352", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863078755, 35.694211054], [140.862968197, 35.694306892], [140.86307153, 35.694289946], [140.863078755, 35.694211054]]]}}, {"id": "32353", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870142892, 35.728433973], [140.870076446, 35.728495667], [140.870179001, 35.728494], [140.870142892, 35.728433973]]]}}, {"id": "32354", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869907056, 35.708429892], [140.86980594, 35.708370721], [140.86977345, 35.708405171], [140.869907056, 35.708429892]]]}}, {"id": "32355", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864363061, 35.703892973], [140.864438885, 35.703954919], [140.864458586, 35.703897306], [140.864363061, 35.703892973]]]}}, {"id": "32356", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870554773, 35.726229865], [140.870465331, 35.726297081], [140.870575616, 35.726280135], [140.870554773, 35.726229865]]]}}, {"id": "32357", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870358106, 35.727354865], [140.870251025, 35.727340108], [140.870255357, 35.727395414], [140.870358106, 35.727354865]]]}}, {"id": "32358", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86986035, 35.707906883], [140.86976415, 35.707903207], [140.869761699, 35.707952982], [140.86986035, 35.707906883]]]}}, {"id": "32359", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857416213, 35.746369216], [140.857410778, 35.746470937], [140.85746406, 35.746419108], [140.857416213, 35.746369216]]]}}, {"id": "32360", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871786109, 35.721330694], [140.871676394, 35.721323198], [140.871793061, 35.721349306], [140.871786109, 35.721330694]]]}}, {"id": "32361", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869783969, 35.708647973], [140.869735149, 35.708573766], [140.869704514, 35.708614324], [140.869783969, 35.708647973]]]}}, {"id": "32362", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857237276, 35.746071595], [140.85727083, 35.746136117], [140.857282231, 35.746111505], [140.857237276, 35.746071595]]]}}, {"id": "32363", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868927834, 35.729189865], [140.869017834, 35.729127919], [140.868955616, 35.729110973], [140.868927834, 35.729189865]]]}}, {"id": "32364", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.875063087, 35.722766441], [140.87515284, 35.722707622], [140.875120519, 35.722660937], [140.875063087, 35.722766441]]]}}, {"id": "32365", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870937328, 35.731461252], [140.871068716, 35.731534306], [140.87096511, 35.731432919], [140.870937328, 35.731461252]]]}}, {"id": "32366", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859494553, 35.694447441], [140.859591219, 35.694464387], [140.859529001, 35.694396892], [140.859494553, 35.694447441]]]}}, {"id": "32367", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859183696, 35.694210775], [140.859093969, 35.694160225], [140.859080078, 35.694216613], [140.859183696, 35.694210775]]]}}, {"id": "32368", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870637198, 35.70782845], [140.870593709, 35.707747162], [140.870548405, 35.707824162], [140.870637198, 35.70782845]]]}}, {"id": "32369", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863555966, 35.701637252], [140.863641971, 35.701578279], [140.863561894, 35.701582135], [140.863555966, 35.701637252]]]}}, {"id": "32370", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868267588, 35.728973514], [140.868381621, 35.728935847], [140.868262412, 35.728932009], [140.868267588, 35.728973514]]]}}, {"id": "32371", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.838287173, 35.704815838], [140.838252724, 35.704725559], [140.838252724, 35.704804441], [140.838287173, 35.704815838]]]}}, {"id": "32372", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87195192, 35.718255973], [140.871890532, 35.718184306], [140.87186275, 35.718234865], [140.87195192, 35.718255973]]]}}, {"id": "32373", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87581559, 35.718907423], [140.875842607, 35.718987676], [140.875880467, 35.718924613], [140.87581559, 35.718907423]]]}}, {"id": "32374", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868693281, 35.694521306], [140.868603554, 35.694566586], [140.868714112, 35.694566586], [140.868693281, 35.694521306]]]}}, {"id": "32375", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.848043165, 35.696030045], [140.84814594, 35.696005748], [140.848058223, 35.69598909], [140.848043165, 35.696030045]]]}}, {"id": "32376", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871468872, 35.717694604], [140.871448158, 35.717631685], [140.871337549, 35.717658865], [140.871468872, 35.717694604]]]}}, {"id": "32377", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854230856, 35.69359164], [140.854128638, 35.693585252], [140.854211699, 35.693630252], [140.854230856, 35.69359164]]]}}, {"id": "32378", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865150026, 35.705205748], [140.865122529, 35.705121306], [140.865115577, 35.705188802], [140.865150026, 35.705205748]]]}}, {"id": "32379", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864934034, 35.703135973], [140.864873139, 35.70320264], [140.864984163, 35.703171586], [140.864934034, 35.703135973]]]}}, {"id": "32380", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864963606, 35.703859081], [140.864915279, 35.703802694], [140.864866939, 35.703853532], [140.864963606, 35.703859081]]]}}, {"id": "32381", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868402425, 35.72933955], [140.86848214, 35.729298396], [140.86845201, 35.729267649], [140.868402425, 35.72933955]]]}}, {"id": "32382", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871202075, 35.718308261], [140.871236965, 35.718365288], [140.871352257, 35.718375198], [140.871202075, 35.718308261]]]}}, {"id": "32383", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.871483022, 35.71918736], [140.871441634, 35.719102919], [140.871386355, 35.719176252], [140.871483022, 35.71918736]]]}}, {"id": "32384", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866683748, 35.690830198], [140.866655966, 35.690903252], [140.866752633, 35.690897694], [140.866683748, 35.690830198]]]}}, {"id": "32385", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867312088, 35.68896464], [140.8672293, 35.688902694], [140.86720153, 35.688942135], [140.867312088, 35.68896464]]]}}, {"id": "32386", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868122075, 35.729038847], [140.868012853, 35.729012387], [140.86809249, 35.729067045], [140.868122075, 35.729038847]]]}}, {"id": "32387", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863589637, 35.698071586], [140.863527419, 35.69800936], [140.863520467, 35.698088252], [140.863589637, 35.698071586]]]}}, {"id": "32388", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.867671284, 35.69006936], [140.867602387, 35.690119919], [140.867657393, 35.690136865], [140.867671284, 35.69006936]]]}}, {"id": "32389", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86787131, 35.694318532], [140.867857419, 35.694233802], [140.867829922, 35.694307135], [140.86787131, 35.694318532]]]}}, {"id": "32390", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868416887, 35.694566586], [140.868444669, 35.694481865], [140.868382438, 35.694481865], [140.868416887, 35.694566586]]]}}, {"id": "32391", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872112231, 35.717976477], [140.872158508, 35.718051072], [140.872189935, 35.718003027], [140.872112231, 35.717976477]]]}}, {"id": "32392", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869590895, 35.726338748], [140.869597834, 35.72641764], [140.869653113, 35.726383748], [140.869590895, 35.726338748]]]}}, {"id": "32393", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869705409, 35.722151586], [140.869717445, 35.722073883], [140.86964131, 35.722177649], [140.869705409, 35.722151586]]]}}, {"id": "32394", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866759585, 35.689471865], [140.866766524, 35.689376027], [140.866718197, 35.689392973], [140.866759585, 35.689471865]]]}}, {"id": "32395", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.876961141, 35.718143748], [140.876890311, 35.71821264], [140.876965305, 35.718175414], [140.876961141, 35.718143748]]]}}, {"id": "32396", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872733087, 35.721667081], [140.872695863, 35.721589586], [140.87268642, 35.72163236], [140.872733087, 35.721667081]]]}}, {"id": "32397", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854080311, 35.694689694], [140.854018366, 35.694638865], [140.854045863, 35.694712198], [140.854080311, 35.694689694]]]}}, {"id": "32398", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872218366, 35.721749586], [140.872132244, 35.721768468], [140.872152802, 35.721796532], [140.872218366, 35.721749586]]]}}, {"id": "32399", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870457328, 35.708564892], [140.870534553, 35.708534613], [140.870468716, 35.708499054], [140.870457328, 35.708564892]]]}}, {"id": "32400", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.855427004, 35.695084387], [140.855378664, 35.695016892], [140.855399222, 35.695084387], [140.855427004, 35.695084387]]]}}, {"id": "32401", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869852244, 35.727002973], [140.869895642, 35.727074919], [140.86990144, 35.726992081], [140.869852244, 35.727002973]]]}}, {"id": "32402", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865502633, 35.691630198], [140.86543345, 35.691692135], [140.865516524, 35.69166964], [140.865502633, 35.691630198]]]}}, {"id": "32403", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863375188, 35.699728252], [140.863313256, 35.699666027], [140.863340752, 35.699733802], [140.863375188, 35.699728252]]]}}, {"id": "32404", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.846177069, 35.699560658], [140.846179377, 35.699568658], [140.846578327, 35.699311126], [140.846177069, 35.699560658]]]}}, {"id": "32405", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868521971, 35.729771333], [140.868485914, 35.729709901], [140.868449741, 35.729749514], [140.868521971, 35.729771333]]]}}, {"id": "32406", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869376472, 35.706919054], [140.869452581, 35.706840171], [140.869342023, 35.706924613], [140.869376472, 35.706919054]]]}}, {"id": "32407", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.845621051, 35.697146387], [140.845607173, 35.697078892], [140.845586329, 35.697101387], [140.845621051, 35.697146387]]]}}, {"id": "32408", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869227704, 35.730688658], [140.869143178, 35.730699387], [140.869186316, 35.730735973], [140.869227704, 35.730688658]]]}}, {"id": "32409", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864363256, 35.697462694], [140.864314916, 35.697406306], [140.864294086, 35.697457135], [140.864363256, 35.697462694]]]}}, {"id": "32410", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854860895, 35.694740802], [140.854840052, 35.694673027], [140.854805616, 35.694718027], [140.854860895, 35.694740802]]]}}, {"id": "32411", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870161284, 35.725703775], [140.870087808, 35.72570736], [140.870095525, 35.725741135], [140.870161284, 35.725703775]]]}}, {"id": "32412", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869362866, 35.707093775], [140.869307588, 35.707054333], [140.869286744, 35.707088225], [140.869362866, 35.707093775]]]}}, {"id": "32413", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870045914, 35.73215427], [140.869971336, 35.732123459], [140.86997738, 35.732171631], [140.870045914, 35.73215427]]]}}, {"id": "32414", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870160117, 35.732257838], [140.87014869, 35.732314631], [140.870195668, 35.732306117], [140.870160117, 35.732257838]]]}}, {"id": "32415", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859004254, 35.694160225], [140.858914527, 35.694154387], [140.858998418, 35.694186892], [140.859004254, 35.694160225]]]}}, {"id": "32416", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.872581141, 35.721480973], [140.872505577, 35.721514306], [140.872586693, 35.721526802], [140.872581141, 35.721480973]]]}}, {"id": "32417", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864404643, 35.697682694], [140.864376861, 35.697626306], [140.864349364, 35.697676865], [140.864404643, 35.697682694]]]}}, {"id": "32418", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869038418, 35.730624946], [140.869021167, 35.730684937], [140.869073126, 35.730651054], [140.869038418, 35.730624946]]]}}, {"id": "32419", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870675473, 35.721475441], [140.87057904, 35.721504847], [140.870603398, 35.721533838], [140.870675473, 35.721475441]]]}}, {"id": "32420", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869206796, 35.729321721], [140.869128418, 35.729328973], [140.869180778, 35.729360342], [140.869206796, 35.729321721]]]}}, {"id": "32421", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854460311, 35.694841919], [140.854432529, 35.694791081], [140.854384189, 35.694824973], [140.854460311, 35.694841919]]]}}, {"id": "32422", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.863306329, 35.701508802], [140.863351414, 35.701472252], [140.863276524, 35.701458667], [140.863306329, 35.701508802]]]}}, {"id": "32423", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864853333, 35.703007973], [140.864908223, 35.703054135], [140.864917523, 35.702995054], [140.864853333, 35.703007973]]]}}, {"id": "32424", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868623061, 35.728929892], [140.868577134, 35.72898482], [140.868645123, 35.728960351], [140.868623061, 35.728929892]]]}}, {"id": "32425", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.861711219, 35.694081613], [140.861649001, 35.694126613], [140.86172511, 35.694115225], [140.861711219, 35.694081613]]]}}, {"id": "32426", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.855275058, 35.695270225], [140.855316446, 35.695213838], [140.855261167, 35.695236333], [140.855275058, 35.695270225]]]}}, {"id": "32427", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868329935, 35.729204162], [140.868313126, 35.72913545], [140.868281466, 35.729157351], [140.868329935, 35.729204162]]]}}, {"id": "32428", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864358106, 35.703045694], [140.864440661, 35.703033027], [140.864388911, 35.703016387], [140.864358106, 35.703045694]]]}}, {"id": "32429", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.76103642, 35.697927793], [140.761004565, 35.69782055], [140.7609825107157, 35.697925784724895], [140.76103642, 35.697927793]]]}}, {"id": "32430", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.855944773, 35.694746333], [140.855896446, 35.694802721], [140.855938106, 35.694802721], [140.855944773, 35.694746333]]]}}, {"id": "32431", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.865136109, 35.704766027], [140.865074163, 35.704771865], [140.865087782, 35.704799919], [140.865136109, 35.704766027]]]}}, {"id": "32432", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870630376, 35.720920892], [140.870688249, 35.720900288], [140.870626628, 35.720887577], [140.870630376, 35.720920892]]]}}, {"id": "32433", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.859591219, 35.694667441], [140.85958428, 35.694616613], [140.859542892, 35.694667441], [140.859591219, 35.694667441]]]}}, {"id": "32434", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870350337, 35.726659865], [140.870274501, 35.726642919], [140.870274501, 35.726671252], [140.870350337, 35.726659865]]]}}, {"id": "32435", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868855097, 35.729905018], [140.868791686, 35.729941162], [140.86885939, 35.729945901], [140.868855097, 35.729905018]]]}}, {"id": "32436", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870091453, 35.72193582], [140.870044293, 35.721878991], [140.870018703, 35.721909045], [140.870091453, 35.72193582]]]}}, {"id": "32437", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.856670026, 35.691229694], [140.856704475, 35.691116919], [140.856649196, 35.69124664], [140.856670026, 35.691229694]]]}}, {"id": "32438", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868791582, 35.729737108], [140.868757224, 35.729687198], [140.868745603, 35.729728937], [140.868791582, 35.729737108]]]}}, {"id": "32439", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868250091, 35.728748964], [140.868182542, 35.728774243], [140.868242581, 35.728775162], [140.868250091, 35.728748964]]]}}, {"id": "32440", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857017588, 35.747482387], [140.857084475, 35.747461919], [140.85702511, 35.747448667], [140.857017588, 35.747482387]]]}}, {"id": "32441", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868421349, 35.729119288], [140.868399909, 35.72906845], [140.86837511, 35.729091198], [140.868421349, 35.729119288]]]}}, {"id": "32442", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868128029, 35.72881545], [140.868066278, 35.728801378], [140.868083268, 35.728833135], [140.868128029, 35.72881545]]]}}, {"id": "32443", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87204393, 35.731028964], [140.87205834, 35.730980883], [140.872010752, 35.730992838], [140.87204393, 35.731028964]]]}}, {"id": "32444", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.868735149, 35.728955072], [140.868683281, 35.728995892], [140.868753009, 35.728969153], [140.868735149, 35.728955072]]]}}, {"id": "32445", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870467886, 35.707894054], [140.870419559, 35.707944892], [140.870474838, 35.707939054], [140.870467886, 35.707894054]]]}}, {"id": "32446", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86849332, 35.729649721], [140.868469559, 35.72959918], [140.868454514, 35.729632297], [140.86849332, 35.729649721]]]}}, {"id": "32447", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870308262, 35.724849541], [140.870343735, 35.724805883], [140.870311881, 35.72477064], [140.870308262, 35.724849541]]]}}, {"id": "32448", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.854764228, 35.69497136], [140.854729494, 35.694943306], [140.854708949, 35.694977198], [140.854764228, 35.69497136]]]}}, {"id": "32449", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.86921786, 35.707212108], [140.869169533, 35.707257108], [140.869224527, 35.707257108], [140.86921786, 35.707212108]]]}}, {"id": "32450", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.846214695, 35.697028054], [140.846166355, 35.697005559], [140.846173307, 35.697039441], [140.846214695, 35.697028054]]]}}, {"id": "32451", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.864549442, 35.70412964], [140.864528612, 35.704090198], [140.864515006, 35.704146306], [140.864549442, 35.70412964]]]}}, {"id": "32452", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870875305, 35.72273764], [140.870840558, 35.722703748], [140.870854475, 35.722748748], [140.870875305, 35.72273764]]]}}, {"id": "32453", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.855063268, 35.744468613], [140.855102477, 35.744430604], [140.855040143, 35.744440685], [140.855063268, 35.744468613]]]}}, {"id": "32454", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.866614578, 35.690683532], [140.8666007, 35.690728532], [140.866642361, 35.690717414], [140.866614578, 35.690683532]]]}}, {"id": "32455", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869431751, 35.706321559], [140.869391193, 35.706352667], [140.869444254, 35.706327387], [140.869431751, 35.706321559]]]}}, {"id": "32456", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.857982023, 35.694408], [140.857940636, 35.694408], [140.857947588, 35.694424946], [140.857982023, 35.694408]]]}}, {"id": "32457", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.870246783, 35.708271838], [140.870253722, 35.708305441], [140.870260661, 35.708288505], [140.870246783, 35.708271838]]]}}, {"id": "32458", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "銚子市", "N03_005": null, "N03_007": "12202"}, "geometry": {"type": "Polygon", "coordinates": [[[140.87034345, 35.708068775], [140.870371219, 35.708085721], [140.870371219, 35.708068775], [140.87034345, 35.708068775]]]}}, {"id": "32459", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市川市", "N03_005": null, "N03_007": "12203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946743191, 35.680982225], [139.918281971, 35.655460532], [139.886070778, 35.671136414], [139.918908366, 35.698274171], [139.890443917, 35.750275865], [139.90615655, 35.767246946], [139.939652776, 35.746720559], [139.949651894, 35.769901333], [139.97458144, 35.775036586], [139.97684572, 35.735315225], [139.93940834, 35.711025279], [139.959681699, 35.703833973], [139.963279494, 35.681477946], [139.954325188, 35.689420586], [139.953203528, 35.671761532], [139.946743191, 35.680982225]]]}}, {"id": "32460", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市川市", "N03_005": null, "N03_007": "12203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963694994, 35.672261577], [139.960398885, 35.67868364], [139.962746044, 35.680734072], [139.963694994, 35.672261577]]]}}, {"id": "32461", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市川市", "N03_005": null, "N03_007": "12203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.936433606, 35.666779919], [139.932718936, 35.665882712], [139.932617613, 35.666476027], [139.936433606, 35.666779919]]]}}, {"id": "32462", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.938836355, 35.703013865], [139.961212607, 35.734261108], [139.976776278, 35.735214108], [139.972843087, 35.748778], [140.009906978, 35.738195081], [140.014383385, 35.760820667], [140.061770415, 35.776287108], [140.069445642, 35.79906564], [140.089557419, 35.784002027], [140.089649974, 35.762054306], [140.06447642, 35.745645468], [140.06366131, 35.690917387], [140.008806524, 35.695423919], [140.004930999, 35.668807198], [139.985868975, 35.663835838], [139.988183606, 35.689848468], [139.963249442, 35.681449703], [139.959681699, 35.703833973], [139.938836355, 35.703013865]]]}}, {"id": "32463", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963694994, 35.672261577], [139.977664086, 35.679503946], [139.979452023, 35.669822027], [139.963694994, 35.672261577]]]}}, {"id": "32464", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.992786693, 35.742399333], [139.993697419, 35.755501279], [139.999532361, 35.750585694], [139.992786693, 35.742399333]]]}}, {"id": "32465", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.979176615, 35.750896054], [139.981776783, 35.752753532], [139.982581219, 35.752562135], [139.979176615, 35.750896054]]]}}, {"id": "32466", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.976615888, 35.667415613], [139.979882412, 35.666359865], [139.980786057, 35.66109564], [139.976615888, 35.667415613]]]}}, {"id": "32467", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "船橋市", "N03_005": null, "N03_007": "12204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.981625642, 35.656185613], [139.980313165, 35.660404667], [139.980829533, 35.660645532], [139.981625642, 35.656185613]]]}}, {"id": "32468", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893829339, 34.935286306], [139.824414501, 34.911297207], [139.820042516, 34.937822099], [139.758352218, 34.959684667], [139.75292262, 34.974159027], [139.849679196, 34.985406766], [139.85803454, 35.01102136], [139.833054734, 35.032280108], [139.861477691, 35.034425748], [139.883238885, 35.056402225], [139.881478781, 35.022411613], [139.892877393, 35.019825225], [139.882640415, 35.00580836], [139.933484617, 35.026070468], [139.942446226, 35.003334721], [139.904095525, 34.966549586], [139.90586655, 34.947918198], [139.926868949, 34.940659775], [139.918496446, 34.927056468], [139.895867912, 34.924039613], [139.893829339, 34.935286306]]]}}, {"id": "32469", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83829847, 35.025031108], [139.838087367, 35.024296108], [139.837917912, 35.024340559], [139.83829847, 35.025031108]]]}}, {"id": "32470", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755690467, 34.963093135], [139.754436031, 34.963358414], [139.753867977, 34.963773694], [139.755690467, 34.963093135]]]}}, {"id": "32471", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753098249, 34.972196198], [139.7523638, 34.97206564], [139.752657691, 34.97280036], [139.753098249, 34.972196198]]]}}, {"id": "32472", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752687419, 34.97312564], [139.751922996, 34.973817027], [139.751972438, 34.974114532], [139.752687419, 34.97312564]]]}}, {"id": "32473", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772835188, 34.953858441], [139.772278249, 34.954141225], [139.772877134, 34.954486775], [139.772835188, 34.953858441]]]}}, {"id": "32474", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76350166, 34.95831118], [139.764164773, 34.958316252], [139.764779533, 34.957879108], [139.76350166, 34.95831118]]]}}, {"id": "32475", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757554086, 34.959478694], [139.75776214, 34.959019252], [139.757046589, 34.959491198], [139.757554086, 34.959478694]]]}}, {"id": "32476", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754117977, 34.963211748], [139.754029079, 34.962803694], [139.753808521, 34.963302586], [139.754117977, 34.963211748]]]}}, {"id": "32477", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842313502, 35.024388613], [139.84190489, 35.024294441], [139.841749883, 35.024529721], [139.842313502, 35.024388613]]]}}, {"id": "32478", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758237834, 34.959156784], [139.75779, 34.959609045], [139.758647743, 34.95922627], [139.758237834, 34.959156784]]]}}, {"id": "32479", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752999637, 34.971439802], [139.753821025, 34.971534532], [139.75291214, 34.971335081], [139.752999637, 34.971439802]]]}}, {"id": "32480", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754369637, 34.964299162], [139.754215551, 34.964199631], [139.753981064, 34.964235802], [139.754369637, 34.964299162]]]}}, {"id": "32481", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754486861, 34.963187586], [139.754656304, 34.962848973], [139.754325746, 34.963135081], [139.754486861, 34.963187586]]]}}, {"id": "32482", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764112672, 34.955501225], [139.764431025, 34.955816495], [139.764584086, 34.955567613], [139.764112672, 34.955501225]]]}}, {"id": "32483", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758344553, 34.95945118], [139.757813113, 34.959726432], [139.758817808, 34.959332207], [139.758344553, 34.95945118]]]}}, {"id": "32484", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759477134, 34.958236225], [139.758872698, 34.958398441], [139.758759079, 34.958535387], [139.759477134, 34.958236225]]]}}, {"id": "32485", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758714021, 34.959181595], [139.758712425, 34.959138595], [139.758489844, 34.959104207], [139.758714021, 34.959181595]]]}}, {"id": "32486", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.856708846, 35.003244802], [139.856590285, 35.002423757], [139.856468521, 35.003431901], [139.856708846, 35.003244802]]]}}, {"id": "32487", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840631245, 35.024214171], [139.840662918, 35.023951946], [139.840347912, 35.024088892], [139.840631245, 35.024214171]]]}}, {"id": "32488", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758299079, 34.958481225], [139.758255473, 34.958823721], [139.758645188, 34.958531775], [139.758299079, 34.958481225]]]}}, {"id": "32489", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758347134, 34.957384829], [139.758224643, 34.957694829], [139.758509079, 34.957395667], [139.758347134, 34.957384829]]]}}, {"id": "32490", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774171025, 34.954515108], [139.774014643, 34.954128721], [139.773949637, 34.954335946], [139.774171025, 34.954515108]]]}}, {"id": "32491", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777773645, 34.955484928], [139.778099131, 34.955227613], [139.777790597, 34.955201054], [139.777773645, 34.955484928]]]}}, {"id": "32492", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772576278, 34.977253595], [139.772490259, 34.977615586], [139.772837432, 34.977484685], [139.772576278, 34.977253595]]]}}, {"id": "32493", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764366861, 34.957000946], [139.764412412, 34.956699829], [139.764225746, 34.956997333], [139.764366861, 34.957000946]]]}}, {"id": "32494", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773591816, 34.95458227], [139.772875136, 34.954650703], [139.772969572, 34.954723315], [139.773591816, 34.95458227]]]}}, {"id": "32495", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.750971025, 34.969452027], [139.751268807, 34.969161198], [139.75085214, 34.969409532], [139.750971025, 34.969452027]]]}}, {"id": "32496", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777096031, 34.955334586], [139.777366031, 34.955185135], [139.777140195, 34.955188748], [139.777096031, 34.955334586]]]}}, {"id": "32497", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75589131, 34.962828135], [139.755959079, 34.963117586], [139.756107419, 34.962852586], [139.75589131, 34.962828135]]]}}, {"id": "32498", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769619624, 34.95497618], [139.769922477, 34.954852477], [139.769517873, 34.954733], [139.769619624, 34.95497618]]]}}, {"id": "32499", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752148807, 34.964418973], [139.752417419, 34.964221198], [139.752116031, 34.964241198], [139.752148807, 34.964418973]]]}}, {"id": "32500", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753054916, 34.971894802], [139.753308807, 34.971767306], [139.75289214, 34.971764252], [139.753054916, 34.971894802]]]}}, {"id": "32501", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756782698, 34.959583135], [139.756787691, 34.959323973], [139.756539079, 34.959574802], [139.756782698, 34.959583135]]]}}, {"id": "32502", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753649364, 34.96412064], [139.753889637, 34.963939532], [139.753408807, 34.964077027], [139.753649364, 34.96412064]]]}}, {"id": "32503", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756684345, 34.96117864], [139.756369144, 34.961346027], [139.756888016, 34.961172459], [139.756684345, 34.96117864]]]}}, {"id": "32504", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824402607, 34.924690171], [139.82374882, 34.924329757], [139.824332918, 34.924784153], [139.824402607, 34.924690171]]]}}, {"id": "32505", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765860052, 34.958022775], [139.765606822, 34.95785118], [139.765483722, 34.958009225], [139.765860052, 34.958022775]]]}}, {"id": "32506", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767915123, 34.95609555], [139.767806991, 34.955893919], [139.767709442, 34.955872324], [139.767915123, 34.95609555]]]}}, {"id": "32507", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769738353, 34.954515595], [139.769922464, 34.954305369], [139.769581479, 34.954331694], [139.769738353, 34.954515595]]]}}, {"id": "32508", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758687185, 34.958715333], [139.758314099, 34.958984468], [139.758809922, 34.958727586], [139.758687185, 34.958715333]]]}}, {"id": "32509", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.845367198, 35.02167073], [139.845284137, 35.021700036], [139.84451952, 35.022878333], [139.845367198, 35.02167073]]]}}, {"id": "32510", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752729922, 34.965260919], [139.75253131, 34.965148694], [139.752336861, 34.965305081], [139.752729922, 34.965260919]]]}}, {"id": "32511", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757414034, 34.962042811], [139.756984112, 34.962287198], [139.757577665, 34.962120171], [139.757414034, 34.962042811]]]}}, {"id": "32512", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769408962, 34.955119586], [139.769337095, 34.954890937], [139.769061375, 34.955043595], [139.769408962, 34.955119586]]]}}, {"id": "32513", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762702296, 34.958727748], [139.763216537, 34.958686577], [139.763139248, 34.958788757], [139.762702296, 34.958727748]]]}}, {"id": "32514", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763923256, 34.957894667], [139.763647419, 34.958033883], [139.764169637, 34.95801245], [139.763923256, 34.957894667]]]}}, {"id": "32515", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762278521, 34.957775108], [139.762290467, 34.957503162], [139.762167134, 34.957758721], [139.762278521, 34.957775108]]]}}, {"id": "32516", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752802698, 34.96210036], [139.752994916, 34.961942027], [139.752662698, 34.961956468], [139.752802698, 34.96210036]]]}}, {"id": "32517", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767439364, 34.955755946], [139.767498521, 34.955479559], [139.767350467, 34.955479559], [139.767439364, 34.955755946]]]}}, {"id": "32518", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765163671, 34.957726342], [139.764987328, 34.957533234], [139.764893204, 34.957615937], [139.765163671, 34.957726342]]]}}, {"id": "32519", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758518457, 34.960998676], [139.758641958, 34.961129018], [139.758686783, 34.961085054], [139.758518457, 34.960998676]]]}}, {"id": "32520", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764666667, 34.95746491], [139.764686524, 34.95768073], [139.764886407, 34.957484324], [139.764666667, 34.95746491]]]}}, {"id": "32521", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756492594, 34.962123631], [139.75632201, 34.962338622], [139.756538184, 34.962317477], [139.756492594, 34.962123631]]]}}, {"id": "32522", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765928638, 34.957850721], [139.765696459, 34.957764414], [139.76574716, 34.957897144], [139.765928638, 34.957850721]]]}}, {"id": "32523", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816253956, 34.979359288], [139.815664501, 34.979329369], [139.815642477, 34.979366234], [139.816253956, 34.979359288]]]}}, {"id": "32524", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764716239, 34.957755117], [139.765044514, 34.957753234], [139.764723748, 34.957685171], [139.764716239, 34.957755117]]]}}, {"id": "32525", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781667198, 34.978305946], [139.781716083, 34.978443162], [139.781838301, 34.978394279], [139.781667198, 34.978305946]]]}}, {"id": "32526", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779786239, 34.95452882], [139.779549974, 34.95465564], [139.779700259, 34.954735306], [139.779786239, 34.95452882]]]}}, {"id": "32527", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75296131, 34.965397027], [139.752614086, 34.965407027], [139.752572698, 34.965488973], [139.75296131, 34.965397027]]]}}, {"id": "32528", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762741297, 34.95881855], [139.76263166, 34.958989405], [139.76294249, 34.958906378], [139.762741297, 34.95881855]]]}}, {"id": "32529", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753115499, 34.972795946], [139.75344799, 34.972130243], [139.7532738, 34.972300685], [139.753115499, 34.972795946]]]}}, {"id": "32530", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826615162, 34.927298], [139.826217198, 34.927016622], [139.826014708, 34.927033018], [139.826615162, 34.927298]]]}}, {"id": "32531", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772894708, 34.977490477], [139.772915694, 34.977711802], [139.773112685, 34.977622748], [139.772894708, 34.977490477]]]}}, {"id": "32532", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753650752, 34.962175919], [139.753545746, 34.961995919], [139.753454086, 34.962122027], [139.753650752, 34.962175919]]]}}, {"id": "32533", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758940013, 34.958842514], [139.75852428, 34.958929063], [139.758492127, 34.959000982], [139.758940013, 34.958842514]]]}}, {"id": "32534", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769602218, 34.954699874], [139.769907354, 34.954590054], [139.769576381, 34.954549405], [139.769602218, 34.954699874]]]}}, {"id": "32535", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768370311, 34.955926946], [139.768390532, 34.956125459], [139.768467873, 34.955927631], [139.768370311, 34.955926946]]]}}, {"id": "32536", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757158936, 34.962707667], [139.756765422, 34.962891505], [139.757241712, 34.962710243], [139.757158936, 34.962707667]]]}}, {"id": "32537", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764026511, 34.957626541], [139.764416965, 34.957653261], [139.764233074, 34.957569234], [139.764026511, 34.957626541]]]}}, {"id": "32538", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754710519, 34.971423495], [139.75472703, 34.971100595], [139.754632905, 34.97138982], [139.754710519, 34.971423495]]]}}, {"id": "32539", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752461051, 34.975431198], [139.752432438, 34.975269252], [139.752264384, 34.975492586], [139.752461051, 34.975431198]]]}}, {"id": "32540", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771534319, 34.954149523], [139.771323735, 34.954184216], [139.771546991, 34.954324775], [139.771534319, 34.954149523]]]}}, {"id": "32541", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771690233, 34.954729883], [139.771950934, 34.954742189], [139.771639974, 34.954598784], [139.771690233, 34.954729883]]]}}, {"id": "32542", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767984527, 34.955138577], [139.768025019, 34.955452946], [139.76809249, 34.95514855], [139.767984527, 34.955138577]]]}}, {"id": "32543", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753412088, 34.965458829], [139.753296342, 34.965445865], [139.75308808, 34.96554209], [139.753412088, 34.965458829]]]}}, {"id": "32544", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770289715, 34.954708523], [139.770102944, 34.954825622], [139.770350389, 34.95483873], [139.770289715, 34.954708523]]]}}, {"id": "32545", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753418457, 34.969385315], [139.753337341, 34.969236423], [139.753209105, 34.969343883], [139.753418457, 34.969385315]]]}}, {"id": "32546", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781442192, 34.978736775], [139.781537471, 34.978641495], [139.781429974, 34.978695387], [139.781442192, 34.978736775]]]}}, {"id": "32547", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.760196589, 34.959126514], [139.760178223, 34.959220622], [139.76049869, 34.959022306], [139.760196589, 34.959126514]]]}}, {"id": "32548", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752547173, 34.975641198], [139.752398003, 34.975801468], [139.752613554, 34.97576064], [139.752547173, 34.975641198]]]}}, {"id": "32549", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76995668, 34.954233991], [139.769627523, 34.954112297], [139.769570752, 34.95418682], [139.76995668, 34.954233991]]]}}, {"id": "32550", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753646083, 34.965147342], [139.753609728, 34.965020117], [139.753358275, 34.965164459], [139.753646083, 34.965147342]]]}}, {"id": "32551", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763626407, 34.958528964], [139.763356122, 34.958579378], [139.763332931, 34.958689162], [139.763626407, 34.958528964]]]}}, {"id": "32552", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775569364, 34.955075622], [139.775453385, 34.955270279], [139.775634721, 34.955098009], [139.775569364, 34.955075622]]]}}, {"id": "32553", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769156135, 34.955126757], [139.768929987, 34.955179649], [139.7692438, 34.955172784], [139.769156135, 34.955126757]]]}}, {"id": "32554", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823868755, 34.92168382], [139.823505499, 34.921623838], [139.823866563, 34.921722225], [139.823868755, 34.92168382]]]}}, {"id": "32555", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777060661, 34.955578261], [139.777063865, 34.955851865], [139.777204137, 34.95584255], [139.777175798, 34.955665757], [139.777060661, 34.955578261]]]}}, {"id": "32556", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775494942, 34.955348369], [139.77560869, 34.955213288], [139.775432763, 34.955329315], [139.775494942, 34.955348369]]]}}, {"id": "32557", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.784797601, 34.953696964], [139.784508288, 34.953745441], [139.784371855, 34.953751153], [139.784480558, 34.953800414], [139.784797601, 34.953696964]]]}}, {"id": "32558", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768211518, 34.957483802], [139.768248405, 34.957641766], [139.768316537, 34.957605649], [139.768211518, 34.957483802]]]}}, {"id": "32559", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767025292, 34.957813288], [139.767072711, 34.957661955], [139.766859131, 34.957739901], [139.767025292, 34.957813288]]]}}, {"id": "32560", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780181128, 34.954783297], [139.780360506, 34.954736324], [139.780129416, 34.954652108], [139.780181128, 34.954783297]]]}}, {"id": "32561", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761323256, 34.958178441], [139.761411025, 34.958311775], [139.761397691, 34.958124279], [139.761323256, 34.958178441]]]}}, {"id": "32562", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752214384, 34.97576036], [139.752192724, 34.975604532], [139.752132166, 34.975763414], [139.752214384, 34.97576036]]]}}, {"id": "32563", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823412503, 34.981267072], [139.823439689, 34.981099306], [139.823344176, 34.981115162], [139.823412503, 34.981267072]]]}}, {"id": "32564", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76100214, 34.958193162], [139.760783256, 34.958182333], [139.760993528, 34.958250667], [139.76100214, 34.958193162]]]}}, {"id": "32565", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7657838, 34.957258441], [139.765603528, 34.957364559], [139.765819922, 34.957326495], [139.7657838, 34.957258441]]]}}, {"id": "32566", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77349856, 34.977590216], [139.773270415, 34.977593523], [139.773343619, 34.977678207], [139.77349856, 34.977590216]]]}}, {"id": "32567", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751416887, 34.974009802], [139.751340778, 34.973925081], [139.751241894, 34.974113135], [139.751416887, 34.974009802]]]}}, {"id": "32568", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761075435, 34.959132811], [139.76128607, 34.958930919], [139.760988859, 34.95909418], [139.761075435, 34.959132811]]]}}, {"id": "32569", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757812477, 34.959937829], [139.758105538, 34.959894748], [139.758167938, 34.959792559], [139.757812477, 34.959937829]]]}}, {"id": "32570", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781385473, 34.954567198], [139.781344228, 34.954513991], [139.781206446, 34.954412514], [139.781385473, 34.954567198]]]}}, {"id": "32571", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754259598, 34.964405468], [139.754147977, 34.964555216], [139.754331933, 34.964452387], [139.754259598, 34.964405468]]]}}, {"id": "32572", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.853548405, 34.98940909], [139.853694825, 34.989285387], [139.853198859, 34.989380126], [139.853548405, 34.98940909]]]}}, {"id": "32573", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762740467, 34.958063441], [139.762601025, 34.958115946], [139.762744358, 34.958142054], [139.762740467, 34.958063441]]]}}, {"id": "32574", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775751258, 34.95489], [139.775533061, 34.95485582], [139.775526965, 34.954958405], [139.775751258, 34.95489]]]}}, {"id": "32575", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759678573, 34.977216072], [139.759861038, 34.977332748], [139.759894397, 34.977263351], [139.759678573, 34.977216072]]]}}, {"id": "32576", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767640999, 34.955882288], [139.767700856, 34.956063523], [139.767763995, 34.955982063], [139.767640999, 34.955882288]]]}}, {"id": "32577", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768069818, 34.956394649], [139.768219222, 34.956337306], [139.76815118, 34.956254604], [139.768069818, 34.956394649]]]}}, {"id": "32578", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767700752, 34.95771882], [139.76790834, 34.957595784], [139.767649883, 34.957644414], [139.767700752, 34.95771882]]]}}, {"id": "32579", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779656265, 34.955718712], [139.779856031, 34.955642991], [139.77976594, 34.955595441], [139.779656265, 34.955718712]]]}}, {"id": "32580", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767197691, 34.955948162], [139.767259364, 34.956052613], [139.76729214, 34.955995946], [139.767197691, 34.955948162]]]}}, {"id": "32581", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827092387, 34.927458937], [139.826814371, 34.927336054], [139.826757782, 34.92734236], [139.826923165, 34.927465243], [139.827092387, 34.927458937]]]}}, {"id": "32582", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76840284, 34.955222459], [139.768564553, 34.955237955], [139.768469676, 34.955165333], [139.76840284, 34.955222459]]]}}, {"id": "32583", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768872412, 34.955436631], [139.768819857, 34.955575784], [139.768939844, 34.955453973], [139.768872412, 34.955436631]]]}}, {"id": "32584", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767475188, 34.95771455], [139.767545837, 34.957820333], [139.767558223, 34.957810153], [139.767475188, 34.95771455]]]}}, {"id": "32585", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76156668, 34.958979045], [139.761537393, 34.959149946], [139.761715772, 34.959018613], [139.76156668, 34.958979045]]]}}, {"id": "32586", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771064838, 34.954409541], [139.771183359, 34.954345685], [139.77100415, 34.954300523], [139.771064838, 34.954409541]]]}}, {"id": "32587", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77450118, 34.954717667], [139.774708418, 34.954753829], [139.774585888, 34.954621523], [139.77450118, 34.954717667]]]}}, {"id": "32588", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768029754, 34.957754243], [139.767906744, 34.957671063], [139.767827613, 34.957775225], [139.768029754, 34.957754243]]]}}, {"id": "32589", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842854864, 35.024223468], [139.842952387, 35.024105369], [139.842783515, 35.024179757], [139.842854864, 35.024223468]]]}}, {"id": "32590", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751717134, 34.97339536], [139.751664086, 34.973267027], [139.751606861, 34.973451748], [139.751717134, 34.97339536]]]}}, {"id": "32591", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763558223, 34.957851369], [139.763641582, 34.957944], [139.763640415, 34.957774252], [139.763558223, 34.957851369]]]}}, {"id": "32592", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781803307, 34.954390144], [139.781851219, 34.954289198], [139.781741297, 34.954265171], [139.781803307, 34.954390144]]]}}, {"id": "32593", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766517717, 34.957735748], [139.766665149, 34.957685982], [139.766534228, 34.957632811], [139.766517717, 34.957735748]]]}}, {"id": "32594", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767948664, 34.956730928], [139.76810725, 34.956560991], [139.767962425, 34.956647009], [139.767948664, 34.956730928]]]}}, {"id": "32595", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753386316, 34.965946423], [139.753413658, 34.96598818], [139.753497393, 34.96602745], [139.753386316, 34.965946423]]]}}, {"id": "32596", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751485227, 34.973639252], [139.751363554, 34.973648694], [139.751394112, 34.973748973], [139.751485227, 34.973639252]]]}}, {"id": "32597", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751793281, 34.974670081], [139.751736329, 34.974566748], [139.751721051, 34.974663973], [139.751793281, 34.974670081]]]}}, {"id": "32598", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764042711, 34.957369982], [139.764002075, 34.957260252], [139.763853035, 34.957405306], [139.764042711, 34.957369982]]]}}, {"id": "32599", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767831077, 34.957554279], [139.767809144, 34.95745618], [139.767650104, 34.957520559], [139.767831077, 34.957554279]]]}}, {"id": "32600", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766101881, 34.957960171], [139.766275616, 34.958008495], [139.766317613, 34.957941721], [139.766101881, 34.957960171]]]}}, {"id": "32601", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.783192698, 34.953874027], [139.783371582, 34.953815135], [139.7831438, 34.953836532], [139.783192698, 34.953874027]]]}}, {"id": "32602", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766700636, 34.958075171], [139.766638119, 34.958195117], [139.766832127, 34.958232279], [139.766700636, 34.958075171]]]}}, {"id": "32603", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75266214, 34.971358135], [139.752757419, 34.971449532], [139.75278131, 34.971397306], [139.75266214, 34.971358135]]]}}, {"id": "32604", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762474086, 34.958993459], [139.762541025, 34.959079495], [139.762601505, 34.959039775], [139.762474086, 34.958993459]]]}}, {"id": "32605", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763902944, 34.957825243], [139.7640807, 34.957774955], [139.763917613, 34.957705171], [139.763902944, 34.957825243]]]}}, {"id": "32606", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758831842, 34.95930409], [139.758939961, 34.959388532], [139.759076278, 34.95927945], [139.758831842, 34.95930409]]]}}, {"id": "32607", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778765694, 34.955626009], [139.778896446, 34.955587396], [139.778802957, 34.955573198], [139.778765694, 34.955626009]]]}}, {"id": "32608", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.760901271, 34.958954757], [139.760909818, 34.959064288], [139.760998171, 34.958960586], [139.760901271, 34.958954757]]]}}, {"id": "32609", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762122724, 34.958832964], [139.762032724, 34.958950108], [139.762173619, 34.958859595], [139.762122724, 34.958832964]]]}}, {"id": "32610", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7556538, 34.962880081], [139.755569079, 34.962803694], [139.755514086, 34.962869802], [139.7556538, 34.962880081]]]}}, {"id": "32611", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767888405, 34.956507243], [139.767957639, 34.956605811], [139.767989896, 34.956523162], [139.767888405, 34.956507243]]]}}, {"id": "32612", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.782036304, 34.95426264], [139.782196304, 34.954297081], [139.782206861, 34.95424264], [139.782036304, 34.95426264]]]}}, {"id": "32613", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769431855, 34.955249865], [139.769423865, 34.955381207], [139.769462996, 34.95533318], [139.769431855, 34.955249865]]]}}, {"id": "32614", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757828249, 34.958710108], [139.757736861, 34.958814532], [139.7578638, 34.958764279], [139.757828249, 34.958710108]]]}}, {"id": "32615", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768112763, 34.955954847], [139.768241025, 34.955891811], [139.768251725, 34.955797973], [139.768112763, 34.955954847]]]}}, {"id": "32616", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770790519, 34.954458081], [139.77098227, 34.954420586], [139.77095428, 34.954372072], [139.770790519, 34.954458081]]]}}, {"id": "32617", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823035927, 34.915774063], [139.822907341, 34.915648117], [139.822836978, 34.915642243], [139.823035927, 34.915774063]]]}}, {"id": "32618", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767827613, 34.956125613], [139.76770118, 34.956217946], [139.767678262, 34.956259847], [139.767871556, 34.956215153], [139.767827613, 34.956125613]]]}}, {"id": "32619", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.760951518, 34.958837144], [139.760831505, 34.958844649], [139.760814942, 34.958868252], [139.760951518, 34.958837144]]]}}, {"id": "32620", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752398807, 34.965505919], [139.752328521, 34.965584252], [139.752456861, 34.965573973], [139.752398807, 34.965505919]]]}}, {"id": "32621", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768245811, 34.954831757], [139.768132529, 34.954772649], [139.76815677, 34.954863532], [139.768245811, 34.954831757]]]}}, {"id": "32622", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82265022, 34.923697441], [139.822545772, 34.923766613], [139.822673839, 34.923769387], [139.82265022, 34.923697441]]]}}, {"id": "32623", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753612853, 34.971976378], [139.753571816, 34.971830216], [139.753524527, 34.972029054], [139.753612853, 34.971976378]]]}}, {"id": "32624", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769378885, 34.954659369], [139.769433035, 34.954576099], [139.769298664, 34.954599739], [139.769378885, 34.954659369]]]}}, {"id": "32625", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767225914, 34.957776342], [139.767299805, 34.957667577], [139.76716454, 34.957710324], [139.767225914, 34.957776342]]]}}, {"id": "32626", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76526546, 34.957780216], [139.765310623, 34.957854432], [139.765403956, 34.957804099], [139.76526546, 34.957780216]]]}}, {"id": "32627", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766205227, 34.975507306], [139.766271051, 34.975441468], [139.766187173, 34.975429252], [139.766205227, 34.975507306]]]}}, {"id": "32628", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764632114, 34.957144495], [139.764568106, 34.957207117], [139.764671453, 34.957234847], [139.764632114, 34.957144495]]]}}, {"id": "32629", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761360052, 34.97640864], [139.761327069, 34.976307775], [139.761276511, 34.976405243], [139.761360052, 34.97640864]]]}}, {"id": "32630", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780343528, 34.954114027], [139.780434086, 34.954028198], [139.780329637, 34.954056802], [139.780343528, 34.954114027]]]}}, {"id": "32631", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773693658, 34.977388198], [139.773585785, 34.977534541], [139.773625266, 34.977596135], [139.773693658, 34.977388198]]]}}, {"id": "32632", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767934021, 34.955726225], [139.767819001, 34.955792865], [139.767951193, 34.955754901], [139.767934021, 34.955726225]]]}}, {"id": "32633", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752118003, 34.975348694], [139.75215022, 34.975416198], [139.752257173, 34.975319252], [139.752118003, 34.975348694]]]}}, {"id": "32634", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768086861, 34.955480378], [139.768057899, 34.955693207], [139.768134708, 34.955620586], [139.768086861, 34.955480378]]]}}, {"id": "32635", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770728521, 34.954340676], [139.77084677, 34.954194423], [139.770722179, 34.954189856], [139.770728521, 34.954340676]]]}}, {"id": "32636", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773091025, 34.954018721], [139.773010752, 34.954103721], [139.773121582, 34.954062892], [139.773091025, 34.954018721]]]}}, {"id": "32637", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754008975, 34.96447327], [139.754076226, 34.964343505], [139.753931258, 34.964444018], [139.754008975, 34.96447327]]]}}, {"id": "32638", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779660636, 34.976211036], [139.779512555, 34.976229], [139.779531881, 34.976313928], [139.779660636, 34.976211036]]]}}, {"id": "32639", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77593703, 34.955103288], [139.775985383, 34.95500045], [139.77586821, 34.955034829], [139.77593703, 34.955103288]]]}}, {"id": "32640", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776265071, 34.955108847], [139.776395045, 34.95526045], [139.776372594, 34.955112324], [139.776265071, 34.955108847]]]}}, {"id": "32641", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771864812, 34.954526423], [139.771922776, 34.954473802], [139.771768988, 34.95440909], [139.771864812, 34.954526423]]]}}, {"id": "32642", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763706952, 34.95846473], [139.763898482, 34.958441495], [139.763940778, 34.958406541], [139.763706952, 34.95846473]]]}}, {"id": "32643", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764966537, 34.957382946], [139.764770091, 34.957393748], [139.764976161, 34.957397288], [139.764966537, 34.957382946]]]}}, {"id": "32644", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774915486, 34.954888072], [139.77506262, 34.954936189], [139.775073359, 34.954914108], [139.774915486, 34.954888072]]]}}, {"id": "32645", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767061051, 34.975679802], [139.767082724, 34.975792865], [139.767128833, 34.975695081], [139.767061051, 34.975679802]]]}}, {"id": "32646", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780580752, 34.953941802], [139.780719922, 34.953993468], [139.780744358, 34.953939027], [139.780580752, 34.953941802]]]}}, {"id": "32647", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763858495, 34.955517892], [139.763741829, 34.955587333], [139.763870726, 34.955587333], [139.763858495, 34.955517892]]]}}, {"id": "32648", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751748249, 34.969027306], [139.751758521, 34.968925919], [139.751676589, 34.969021748], [139.751748249, 34.969027306]]]}}, {"id": "32649", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757127147, 34.962030099], [139.75703323, 34.96211027], [139.75729511, 34.962040297], [139.757127147, 34.962030099]]]}}, {"id": "32650", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780939754, 34.954182252], [139.780901829, 34.954076135], [139.780872374, 34.954087027], [139.780939754, 34.954182252]]]}}, {"id": "32651", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758279066, 34.960897297], [139.758478586, 34.960890117], [139.758487147, 34.960869387], [139.758279066, 34.960897297]]]}}, {"id": "32652", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779251829, 34.976145405], [139.779300208, 34.976206189], [139.779349209, 34.976129225], [139.779251829, 34.976145405]]]}}, {"id": "32653", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752067134, 34.973326748], [139.752127977, 34.973417306], [139.752169637, 34.973348414], [139.752067134, 34.973326748]]]}}, {"id": "32654", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768223658, 34.976047414], [139.768112827, 34.976179514], [139.768232555, 34.976157396], [139.768223658, 34.976047414]]]}}, {"id": "32655", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770660039, 34.954408432], [139.770550921, 34.954349243], [139.770613165, 34.954426892], [139.770660039, 34.954408432]]]}}, {"id": "32656", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767234955, 34.95757027], [139.767337289, 34.957626396], [139.767350999, 34.957596297], [139.767234955, 34.95757027]]]}}, {"id": "32657", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.760148288, 34.958649694], [139.759931323, 34.958699865], [139.759907873, 34.958729874], [139.760148288, 34.958649694]]]}}, {"id": "32658", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767613541, 34.956270901], [139.767522036, 34.956225874], [139.767566005, 34.956279261], [139.767613541, 34.956270901]]]}}, {"id": "32659", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755935409, 34.962268144], [139.755945188, 34.962357667], [139.75600131, 34.96230055], [139.755935409, 34.962268144]]]}}, {"id": "32660", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770850947, 34.954610009], [139.770784799, 34.954494946], [139.770741712, 34.954562721], [139.770850947, 34.954610009]]]}}, {"id": "32661", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768548534, 34.976157207], [139.768396239, 34.976230685], [139.768396316, 34.976270982], [139.768548534, 34.976157207]]]}}, {"id": "32662", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767569222, 34.957735604], [139.76775677, 34.957771495], [139.767772555, 34.957749324], [139.767569222, 34.957735604]]]}}, {"id": "32663", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777292944, 34.955677351], [139.777369416, 34.955605541], [139.777292892, 34.955600459], [139.777292944, 34.955677351]]]}}, {"id": "32664", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763199922, 34.956843721], [139.763094358, 34.956806495], [139.763086861, 34.956862333], [139.763199922, 34.956843721]]]}}, {"id": "32665", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7624338, 34.957850387], [139.762330467, 34.957919279], [139.762461855, 34.957873441], [139.7624338, 34.957850387]]]}}, {"id": "32666", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765426576, 34.958001802], [139.765407601, 34.957906505], [139.765296511, 34.957965946], [139.765426576, 34.958001802]]]}}, {"id": "32667", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780505603, 34.954539324], [139.780515953, 34.954626766], [139.780576719, 34.954619946], [139.780505603, 34.954539324]]]}}, {"id": "32668", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764379896, 34.957581036], [139.764432659, 34.957471982], [139.764304397, 34.957525459], [139.764379896, 34.957581036]]]}}, {"id": "32669", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76279716, 34.958545432], [139.762651543, 34.958525874], [139.762640584, 34.958538847], [139.76279716, 34.958545432]]]}}, {"id": "32670", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769310324, 34.954395559], [139.769414319, 34.954421036], [139.769394125, 34.95433773], [139.769310324, 34.954395559]]]}}, {"id": "32671", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752356589, 34.972814802], [139.752398249, 34.972896198], [139.752444086, 34.972824252], [139.752356589, 34.972814802]]]}}, {"id": "32672", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778072555, 34.955009171], [139.778024332, 34.95509109], [139.778149053, 34.955072306], [139.778072555, 34.955009171]]]}}, {"id": "32673", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768906861, 34.954652991], [139.768982581, 34.954577937], [139.768918846, 34.954577811], [139.768906861, 34.954652991]]]}}, {"id": "32674", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779497938, 34.976134523], [139.779516615, 34.976048441], [139.779452425, 34.976053189], [139.779497938, 34.976134523]]]}}, {"id": "32675", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762629079, 34.957722613], [139.762553256, 34.957798162], [139.76261297, 34.957788162], [139.762629079, 34.957722613]]]}}, {"id": "32676", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778927458, 34.955730559], [139.779019507, 34.955775676], [139.778968016, 34.95564909], [139.778927458, 34.955730559]]]}}, {"id": "32677", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774983463, 34.954757027], [139.774946524, 34.954824532], [139.7750269, 34.954815099], [139.774983463, 34.954757027]]]}}, {"id": "32678", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771551647, 34.954839883], [139.771433813, 34.95486182], [139.771542192, 34.954897847], [139.771551647, 34.954839883]]]}}, {"id": "32679", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75439965, 34.971487748], [139.75439511, 34.971315649], [139.754363476, 34.971517658], [139.75439965, 34.971487748]]]}}, {"id": "32680", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753096031, 34.966252009], [139.753276109, 34.966208495], [139.753286874, 34.966180108], [139.753096031, 34.966252009]]]}}, {"id": "32681", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753605616, 34.968474126], [139.753546316, 34.968540802], [139.753650065, 34.968491739], [139.753605616, 34.968474126]]]}}, {"id": "32682", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769125499, 34.954952486], [139.76905118, 34.954917649], [139.76898847, 34.955013982], [139.769125499, 34.954952486]]]}}, {"id": "32683", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753651089, 34.968563405], [139.753907678, 34.968449541], [139.753942322, 34.968415937], [139.753651089, 34.968563405]]]}}, {"id": "32684", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768183878, 34.955605829], [139.768220078, 34.955522099], [139.768167964, 34.955512604], [139.768183878, 34.955605829]]]}}, {"id": "32685", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778390272, 34.955062775], [139.7785162, 34.955065351], [139.77841013, 34.955007342], [139.778390272, 34.955062775]]]}}, {"id": "32686", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768220454, 34.954633604], [139.768293061, 34.954615432], [139.768207173, 34.954542811], [139.768220454, 34.954633604]]]}}, {"id": "32687", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.760428664, 34.958464883], [139.760295655, 34.958545216], [139.760448366, 34.958468946], [139.760428664, 34.958464883]]]}}, {"id": "32688", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767697289, 34.955182595], [139.767768288, 34.955263225], [139.767778664, 34.955164604], [139.767697289, 34.955182595]]]}}, {"id": "32689", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779576835, 34.955624027], [139.779472399, 34.95557836], [139.779442361, 34.955627477], [139.779576835, 34.955624027]]]}}, {"id": "32690", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758959883, 34.959154072], [139.759109248, 34.959144523], [139.759130311, 34.959095306], [139.758959883, 34.959154072]]]}}, {"id": "32691", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771745344, 34.954543486], [139.771669416, 34.954468901], [139.771632374, 34.95450836], [139.771745344, 34.954543486]]]}}, {"id": "32692", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764025901, 34.957842261], [139.764116732, 34.957898928], [139.764161012, 34.957844234], [139.764025901, 34.957842261]]]}}, {"id": "32693", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77227987, 34.976857423], [139.772134073, 34.976898189], [139.77213406, 34.976920099], [139.77227987, 34.976857423]]]}}, {"id": "32694", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754797263, 34.971065667], [139.754941297, 34.971054667], [139.754910493, 34.970966667], [139.754797263, 34.971065667]]]}}, {"id": "32695", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759438768, 34.958612847], [139.759620143, 34.958566532], [139.75964262, 34.958532739], [139.759438768, 34.958612847]]]}}, {"id": "32696", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774466291, 34.97746682], [139.774560947, 34.977426748], [139.774415422, 34.977385036], [139.774466291, 34.97746682]]]}}, {"id": "32697", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768355447, 34.955898721], [139.768276615, 34.955891378], [139.768245318, 34.956003865], [139.768355447, 34.955898721]]]}}, {"id": "32698", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752269079, 34.97317564], [139.752181582, 34.973188135], [139.752223528, 34.973216468], [139.752269079, 34.97317564]]]}}, {"id": "32699", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756477458, 34.962384514], [139.756495577, 34.96244645], [139.756585084, 34.962408649], [139.756477458, 34.962384514]]]}}, {"id": "32700", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762183191, 34.95906982], [139.76220393, 34.959144928], [139.762276226, 34.959107378], [139.762183191, 34.95906982]]]}}, {"id": "32701", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753787717, 34.972013631], [139.753779274, 34.97190482], [139.753697419, 34.972062973], [139.753787717, 34.972013631]]]}}, {"id": "32702", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.751935772, 34.975269252], [139.752032166, 34.975298694], [139.752014384, 34.975227865], [139.751935772, 34.975269252]]]}}, {"id": "32703", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761634345, 34.958728919], [139.761545266, 34.95879864], [139.761655357, 34.958739568], [139.761634345, 34.958728919]]]}}, {"id": "32704", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752884916, 34.967018126], [139.752826511, 34.966950477], [139.75276677, 34.96701327], [139.752884916, 34.967018126]]]}}, {"id": "32705", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781468223, 34.954441568], [139.781576122, 34.954368955], [139.781507717, 34.954326369], [139.781468223, 34.954441568]]]}}, {"id": "32706", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752996706, 34.96625582], [139.752927198, 34.966337541], [139.753070285, 34.966276423], [139.752996706, 34.96625582]]]}}, {"id": "32707", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753114643, 34.966150514], [139.753031997, 34.96622736], [139.753161064, 34.966164162], [139.753114643, 34.966150514]]]}}, {"id": "32708", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77773393, 34.955606252], [139.777806796, 34.955536324], [139.777709001, 34.955561072], [139.77773393, 34.955606252]]]}}, {"id": "32709", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774080324, 34.977786568], [139.774078846, 34.977698405], [139.774016589, 34.97777455], [139.774080324, 34.977786568]]]}}, {"id": "32710", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765231492, 34.957414468], [139.765146433, 34.957390171], [139.765139922, 34.957454261], [139.765231492, 34.957414468]]]}}, {"id": "32711", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813868158, 34.978385243], [139.813752477, 34.978472126], [139.813753346, 34.978515847], [139.813868158, 34.978385243]]]}}, {"id": "32712", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768798067, 34.955284414], [139.768828042, 34.955187703], [139.768764267, 34.955244099], [139.768798067, 34.955284414]]]}}, {"id": "32713", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776219261, 34.955317613], [139.776096641, 34.95530782], [139.776100778, 34.955340631], [139.776219261, 34.955317613]]]}}, {"id": "32714", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776874047, 34.955463865], [139.776956926, 34.955489865], [139.776871686, 34.955408423], [139.776874047, 34.955463865]]]}}, {"id": "32715", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767958236, 34.956401261], [139.76800821, 34.95647864], [139.768039274, 34.956383279], [139.767958236, 34.956401261]]]}}, {"id": "32716", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758987652, 34.958715162], [139.759119611, 34.958696126], [139.759156213, 34.958667847], [139.758987652, 34.958715162]]]}}, {"id": "32717", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761560687, 34.977025099], [139.76163358, 34.977072378], [139.76162738, 34.977029378], [139.761560687, 34.977025099]]]}}, {"id": "32718", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77973022, 34.975995703], [139.779680739, 34.975942135], [139.77966952, 34.976028856], [139.77973022, 34.975995703]]]}}, {"id": "32719", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778680778, 34.95554736], [139.778665707, 34.955473072], [139.778610415, 34.955482784], [139.778680778, 34.95554736]]]}}, {"id": "32720", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763566667, 34.957575162], [139.763681699, 34.957510234], [139.763698703, 34.957474811], [139.763566667, 34.957575162]]]}}, {"id": "32721", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7710262, 34.977103072], [139.77108834, 34.977036126], [139.770992815, 34.97706555], [139.7710262, 34.977103072]]]}}, {"id": "32722", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75840725, 34.959013009], [139.758406641, 34.959080622], [139.75847904, 34.959055784], [139.75840725, 34.959013009]]]}}, {"id": "32723", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771453074, 34.955032036], [139.771454228, 34.955088559], [139.77149642, 34.955046838], [139.771453074, 34.955032036]]]}}, {"id": "32724", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.802541894, 34.975811892], [139.802413528, 34.975816631], [139.802424695, 34.975837189], [139.802541894, 34.975811892]]]}}, {"id": "32725", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768491543, 34.955076459], [139.768557613, 34.955023045], [139.768495201, 34.955022829], [139.768491543, 34.955076459]]]}}, {"id": "32726", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824328158, 34.911261414], [139.824455824, 34.911249378], [139.824276732, 34.911212045], [139.824328158, 34.911261414]]]}}, {"id": "32727", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773683619, 34.954513261], [139.77373131, 34.954581081], [139.773748872, 34.954530063], [139.773683619, 34.954513261]]]}}, {"id": "32728", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788067652, 34.952593919], [139.788197147, 34.952641739], [139.788222335, 34.952634991], [139.788067652, 34.952593919]]]}}, {"id": "32729", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788264436, 34.952541072], [139.788434527, 34.952634351], [139.788447458, 34.952630207], [139.788264436, 34.952541072]]]}}, {"id": "32730", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754367056, 34.971674514], [139.754429455, 34.971581613], [139.754417977, 34.971565288], [139.754367056, 34.971674514]]]}}, {"id": "32731", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765598405, 34.957568288], [139.765497912, 34.957541009], [139.76549131, 34.957568405], [139.765598405, 34.957568288]]]}}, {"id": "32732", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753241933, 34.965324396], [139.753141219, 34.965401045], [139.753283333, 34.965319559], [139.753241933, 34.965324396]]]}}, {"id": "32733", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771702153, 34.954311333], [139.771764955, 34.954237171], [139.771687652, 34.95424345], [139.771702153, 34.954311333]]]}}, {"id": "32734", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753239339, 34.966075234], [139.753266887, 34.966117351], [139.753327601, 34.966079892], [139.753239339, 34.966075234]]]}}, {"id": "32735", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779998029, 34.954643036], [139.780061777, 34.954621432], [139.780025681, 34.954558045], [139.779998029, 34.954643036]]]}}, {"id": "32736", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764915019, 34.957176577], [139.764959533, 34.957115748], [139.76490594, 34.957167099], [139.764915019, 34.957176577]]]}}, {"id": "32737", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770311946, 34.954565198], [139.770401946, 34.954568856], [139.770400791, 34.954514405], [139.770311946, 34.954565198]]]}}, {"id": "32738", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765169326, 34.957915928], [139.765254929, 34.957945], [139.765308392, 34.957915018], [139.765169326, 34.957915928]]]}}, {"id": "32739", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754754682, 34.97081809], [139.754653256, 34.970838757], [139.754734163, 34.970856297], [139.754754682, 34.97081809]]]}}, {"id": "32740", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772493528, 34.977193153], [139.772583139, 34.977164532], [139.772567717, 34.977141081], [139.772493528, 34.977193153]]]}}, {"id": "32741", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767956589, 34.956129018], [139.767943165, 34.956209784], [139.767966498, 34.956203757], [139.767956589, 34.956129018]]]}}, {"id": "32742", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768090039, 34.956157847], [139.768038288, 34.956115901], [139.768026174, 34.956196216], [139.768090039, 34.956157847]]]}}, {"id": "32743", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76915677, 34.955580297], [139.769142062, 34.955482748], [139.769127302, 34.955585865], [139.76915677, 34.955580297]]]}}, {"id": "32744", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768386472, 34.955719613], [139.768366031, 34.955807225], [139.768374241, 34.955807414], [139.768386472, 34.955719613]]]}}, {"id": "32745", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769352399, 34.954208342], [139.769318625, 34.954275306], [139.769365253, 34.954301928], [139.769352399, 34.954208342]]]}}, {"id": "32746", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769191634, 34.955521081], [139.769265759, 34.955522568], [139.769278742, 34.955445225], [139.769191634, 34.955521081]]]}}, {"id": "32747", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75399847, 34.969465829], [139.754081375, 34.969464261], [139.754121712, 34.969420027], [139.75399847, 34.969465829]]]}}, {"id": "32748", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772161751, 34.954247829], [139.772249676, 34.954238234], [139.772151907, 34.954229441], [139.772161751, 34.954247829]]]}}, {"id": "32749", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780560389, 34.954825838], [139.780624254, 34.954778171], [139.78054572, 34.954810234], [139.780560389, 34.954825838]]]}}, {"id": "32750", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770667484, 34.954557631], [139.770649689, 34.95448091], [139.770631608, 34.954493153], [139.770667484, 34.954557631]]]}}, {"id": "32751", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753716031, 34.971960126], [139.753723385, 34.971836541], [139.753646304, 34.972043468], [139.753716031, 34.971960126]]]}}, {"id": "32752", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.789121686, 34.952257604], [139.789192607, 34.952296297], [139.789197095, 34.952294405], [139.789121686, 34.952257604]]]}}, {"id": "32753", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768512244, 34.957155739], [139.768438898, 34.957128387], [139.76842847, 34.957170387], [139.768512244, 34.957155739]]]}}, {"id": "32754", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764730104, 34.957150414], [139.764675292, 34.957091604], [139.764665642, 34.957113144], [139.764730104, 34.957150414]]]}}, {"id": "32755", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788032153, 34.952825676], [139.788041375, 34.952784027], [139.787963969, 34.952784811], [139.788032153, 34.952825676]]]}}, {"id": "32756", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781638612, 34.954240423], [139.78165358, 34.954303811], [139.781686355, 34.954236027], [139.781638612, 34.954240423]]]}}, {"id": "32757", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762346329, 34.958958225], [139.762292412, 34.959010658], [139.762369196, 34.95897555], [139.762346329, 34.958958225]]]}}, {"id": "32758", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756889364, 34.961967117], [139.756878807, 34.962017955], [139.756943541, 34.962003207], [139.756889364, 34.961967117]]]}}, {"id": "32759", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773206887, 34.95436645], [139.773215577, 34.954307135], [139.773158833, 34.954351189], [139.773206887, 34.95436645]]]}}, {"id": "32760", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781151051, 34.95422273], [139.781229429, 34.954251072], [139.781239287, 34.954239892], [139.781151051, 34.95422273]]]}}, {"id": "32761", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77473144, 34.954724811], [139.774785992, 34.954683279], [139.774726096, 34.954692892], [139.77473144, 34.954724811]]]}}, {"id": "32762", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768094877, 34.95724918], [139.76806, 34.957173883], [139.768019144, 34.957188739], [139.768094877, 34.95724918]]]}}, {"id": "32763", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762886213, 34.958648432], [139.762886278, 34.95869918], [139.762948936, 34.958662622], [139.762886213, 34.958648432]]]}}, {"id": "32764", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768202905, 34.95674982], [139.768272231, 34.956727856], [139.768246744, 34.956698189], [139.768202905, 34.95674982]]]}}, {"id": "32765", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759593204, 34.958689658], [139.75961559, 34.95864045], [139.759553022, 34.958681523], [139.759593204, 34.958689658]]]}}, {"id": "32766", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753266381, 34.965742423], [139.753357471, 34.965769982], [139.753404903, 34.965746667], [139.753266381, 34.965742423]]]}}, {"id": "32767", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768148638, 34.955037874], [139.768094371, 34.954980514], [139.768116524, 34.955073649], [139.768148638, 34.955037874]]]}}, {"id": "32768", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757271012, 34.962528432], [139.757195577, 34.962508108], [139.757179468, 34.96253009], [139.757271012, 34.962528432]]]}}, {"id": "32769", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756317134, 34.962508721], [139.756339961, 34.96246655], [139.756306744, 34.962501685], [139.756317134, 34.962508721]]]}}, {"id": "32770", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788842853, 34.952376495], [139.788936018, 34.952401676], [139.788956394, 34.952368333], [139.788842853, 34.952376495]]]}}, {"id": "32771", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759058742, 34.958810486], [139.759171453, 34.958764315], [139.759032244, 34.958800198], [139.759058742, 34.958810486]]]}}, {"id": "32772", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753994384, 34.968371252], [139.754031712, 34.968387505], [139.754125642, 34.968298595], [139.753994384, 34.968371252]]]}}, {"id": "32773", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764659624, 34.956985495], [139.764591816, 34.957020252], [139.764654968, 34.957041297], [139.764659624, 34.956985495]]]}}, {"id": "32774", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780823826, 34.954153532], [139.780853671, 34.95421773], [139.780892879, 34.954199901], [139.780823826, 34.954153532]]]}}, {"id": "32775", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758847224, 34.958774297], [139.758947121, 34.958731], [139.75882786, 34.958753559], [139.758847224, 34.958774297]]]}}, {"id": "32776", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754779559, 34.970923667], [139.754719403, 34.970948694], [139.754730233, 34.970958973], [139.754779559, 34.970923667]]]}}, {"id": "32777", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768004877, 34.955022387], [139.768061245, 34.955048559], [139.768032931, 34.955002027], [139.768004877, 34.955022387]]]}}, {"id": "32778", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768203735, 34.956119955], [139.768211038, 34.956023946], [139.768191245, 34.956119676], [139.768203735, 34.956119955]]]}}, {"id": "32779", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75386511, 34.969555081], [139.753853645, 34.969510901], [139.753826459, 34.969542342], [139.75386511, 34.969555081]]]}}, {"id": "32780", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767945499, 34.957140378], [139.767930999, 34.957200865], [139.767985188, 34.957206477], [139.767945499, 34.957140378]]]}}, {"id": "32781", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.783207471, 34.954181495], [139.783252387, 34.954132568], [139.783188872, 34.954151559], [139.783207471, 34.954181495]]]}}, {"id": "32782", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766592672, 34.958202036], [139.766633152, 34.958241811], [139.766717367, 34.958241865], [139.766592672, 34.958202036]]]}}, {"id": "32783", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768238716, 34.955349297], [139.768182049, 34.955292559], [139.768216148, 34.955366955], [139.768238716, 34.955349297]]]}}, {"id": "32784", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768707782, 34.954818396], [139.768765577, 34.95483691], [139.768765266, 34.954808775], [139.768707782, 34.954818396]]]}}, {"id": "32785", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769007147, 34.955502324], [139.769012348, 34.955432649], [139.768979922, 34.955458045], [139.769007147, 34.955502324]]]}}, {"id": "32786", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753871777, 34.964910847], [139.753831219, 34.964958784], [139.753918638, 34.964926928], [139.753871777, 34.964910847]]]}}, {"id": "32787", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78844751, 34.952538342], [139.78847511, 34.952500225], [139.788416537, 34.952507234], [139.78844751, 34.952538342]]]}}, {"id": "32788", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765422387, 34.957768495], [139.765455811, 34.957725964], [139.765411556, 34.957758036], [139.765422387, 34.957768495]]]}}, {"id": "32789", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776147562, 34.955144315], [139.776200363, 34.955095928], [139.776146602, 34.955107532], [139.776147562, 34.955144315]]]}}, {"id": "32790", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776035279, 34.955215658], [139.776039403, 34.95526209], [139.776114747, 34.955241027], [139.776035279, 34.955215658]]]}}, {"id": "32791", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788279092, 34.952752928], [139.788278898, 34.95271227], [139.788228301, 34.952737577], [139.788279092, 34.952752928]]]}}, {"id": "32792", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757654176, 34.962276441], [139.757757549, 34.962278216], [139.757776615, 34.962262991], [139.757654176, 34.962276441]]]}}, {"id": "32793", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757591855, 34.959555018], [139.757678936, 34.959528568], [139.757571505, 34.959541667], [139.757591855, 34.959555018]]]}}, {"id": "32794", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.777387004, 34.955516838], [139.777459248, 34.955536892], [139.777434436, 34.955474946], [139.777387004, 34.955516838]]]}}, {"id": "32795", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771959364, 34.976779378], [139.771845668, 34.976789144], [139.771834267, 34.976801486], [139.771959364, 34.976779378]]]}}, {"id": "32796", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768864851, 34.95516573], [139.768849883, 34.955114423], [139.768816926, 34.955124955], [139.768864851, 34.95516573]]]}}, {"id": "32797", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778147069, 34.955257748], [139.778221427, 34.955247955], [139.77814917, 34.955222405], [139.778147069, 34.955257748]]]}}, {"id": "32798", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753711284, 34.969279126], [139.753671725, 34.969313721], [139.75375725, 34.969317108], [139.753711284, 34.969279126]]]}}, {"id": "32799", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767474514, 34.956364586], [139.767468431, 34.956443369], [139.767497484, 34.956390288], [139.767474514, 34.956364586]]]}}, {"id": "32800", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763721051, 34.957715703], [139.763778301, 34.957736559], [139.763783359, 34.957709243], [139.763721051, 34.957715703]]]}}, {"id": "32801", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755913606, 34.962060613], [139.755964604, 34.962083631], [139.755988936, 34.962057144], [139.755913606, 34.962060613]]]}}, {"id": "32802", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753593243, 34.969271838], [139.753543411, 34.969266577], [139.753570752, 34.969312117], [139.753593243, 34.969271838]]]}}, {"id": "32803", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775465058, 34.955026441], [139.77539048, 34.955029108], [139.775380285, 34.955050288], [139.775465058, 34.955026441]]]}}, {"id": "32804", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757200091, 34.962609703], [139.75727201, 34.962637694], [139.757295772, 34.962632748], [139.757200091, 34.962609703]]]}}, {"id": "32805", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770575875, 34.954649622], [139.770639144, 34.954672288], [139.770606874, 34.954636748], [139.770575875, 34.954649622]]]}}, {"id": "32806", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757699689, 34.962207414], [139.757656939, 34.96225309], [139.757711803, 34.962244658], [139.757699689, 34.962207414]]]}}, {"id": "32807", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780531089, 34.954757577], [139.780551582, 34.954722162], [139.780494086, 34.954749811], [139.780531089, 34.954757577]]]}}, {"id": "32808", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.787806654, 34.952924477], [139.787808392, 34.952966396], [139.787838171, 34.952954514], [139.787806654, 34.952924477]]]}}, {"id": "32809", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769188508, 34.955319604], [139.769137147, 34.955324892], [139.769176316, 34.955359441], [139.769188508, 34.955319604]]]}}, {"id": "32810", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768381388, 34.955637396], [139.768350545, 34.955596811], [139.768355214, 34.955644144], [139.768381388, 34.955637396]]]}}, {"id": "32811", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762960791, 34.958635946], [139.762990169, 34.958596748], [139.762935188, 34.958614649], [139.762960791, 34.958635946]]]}}, {"id": "32812", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770152322, 34.954542847], [139.770197575, 34.954501225], [139.770136148, 34.954507144], [139.770152322, 34.954542847]]]}}, {"id": "32813", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753352153, 34.965263532], [139.753306498, 34.965256108], [139.753302309, 34.965289459], [139.753352153, 34.965263532]]]}}, {"id": "32814", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768427899, 34.955112847], [139.768459248, 34.955072658], [139.768414241, 34.955080027], [139.768427899, 34.955112847]]]}}, {"id": "32815", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.75437655, 34.964403018], [139.754326641, 34.964375216], [139.75431677, 34.96438973], [139.75437655, 34.964403018]]]}}, {"id": "32816", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779211362, 34.955911703], [139.779255733, 34.955877649], [139.779198249, 34.955884117], [139.779211362, 34.955911703]]]}}, {"id": "32817", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.762979442, 34.958718802], [139.763024799, 34.958688541], [139.762960843, 34.958691477], [139.762979442, 34.958718802]]]}}, {"id": "32818", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781104293, 34.954396153], [139.781150739, 34.954370937], [139.781081971, 34.954375234], [139.781104293, 34.954396153]]]}}, {"id": "32819", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841202088, 35.025497189], [139.841153658, 35.025509721], [139.841195746, 35.025524045], [139.841202088, 35.025497189]]]}}, {"id": "32820", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753355162, 34.969152685], [139.753328625, 34.969190171], [139.753378262, 34.969164243], [139.753355162, 34.969152685]]]}}, {"id": "32821", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77824524, 34.955158532], [139.778246693, 34.955114991], [139.778219741, 34.955143468], [139.77824524, 34.955158532]]]}}, {"id": "32822", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779981206, 34.955601306], [139.780006524, 34.955574901], [139.779971141, 34.95558327], [139.779981206, 34.955601306]]]}}, {"id": "32823", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779908301, 34.955578108], [139.779848638, 34.95555473], [139.779843476, 34.95557591], [139.779908301, 34.955578108]]]}}, {"id": "32824", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779224086, 34.955724477], [139.779269611, 34.955751991], [139.779233398, 34.955708162], [139.779224086, 34.955724477]]]}}, {"id": "32825", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768175979, 34.955219541], [139.768177458, 34.955275432], [139.768197549, 34.955211622], [139.768175979, 34.955219541]]]}}, {"id": "32826", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768503567, 34.955651162], [139.768496822, 34.955606811], [139.768473022, 34.955650784], [139.768503567, 34.955651162]]]}}, {"id": "32827", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.773994565, 34.954532622], [139.774001505, 34.954489441], [139.77396799, 34.954494559], [139.773994565, 34.954532622]]]}}, {"id": "32828", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768141725, 34.95726291], [139.768164202, 34.957231189], [139.768114916, 34.957242514], [139.768141725, 34.95726291]]]}}, {"id": "32829", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770602594, 34.95421918], [139.770550674, 34.954233757], [139.770585266, 34.954245766], [139.770602594, 34.95421918]]]}}, {"id": "32830", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763051958, 34.958682694], [139.763063593, 34.958656108], [139.76301585, 34.958655541], [139.763051958, 34.958682694]]]}}, {"id": "32831", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781348405, 34.954144568], [139.781376576, 34.95410455], [139.781350519, 34.954106523], [139.781348405, 34.954144568]]]}}, {"id": "32832", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.763381154, 34.958512865], [139.763384462, 34.958478432], [139.763362114, 34.958486892], [139.763381154, 34.958512865]]]}}, {"id": "32833", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765179507, 34.957514234], [139.765149313, 34.957490144], [139.765130467, 34.95749636], [139.765179507, 34.957514234]]]}}, {"id": "32834", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770246018, 34.954448423], [139.770290013, 34.954476847], [139.770308418, 34.954457919], [139.770246018, 34.954448423]]]}}, {"id": "32835", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756233722, 34.962605126], [139.756295901, 34.962616432], [139.75630489, 34.962610586], [139.756233722, 34.962605126]]]}}, {"id": "32836", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756026887, 34.962235027], [139.755982088, 34.962247441], [139.756037497, 34.962247387], [139.756026887, 34.962235027]]]}}, {"id": "32837", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775768262, 34.955159099], [139.775787665, 34.95512855], [139.775755357, 34.955139441], [139.775768262, 34.955159099]]]}}, {"id": "32838", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76829227, 34.955615532], [139.76828201, 34.955585234], [139.768273437, 34.955615523], [139.76829227, 34.955615532]]]}}, {"id": "32839", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841180169, 35.025428405], [139.841208768, 35.025449495], [139.841205486, 35.025423532], [139.841180169, 35.025428405]]]}}, {"id": "32840", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779686096, 34.955801667], [139.779711518, 34.955780225], [139.779677782, 34.955792198], [139.779686096, 34.955801667]]]}}, {"id": "32841", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "館山市", "N03_005": null, "N03_007": "12205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769336316, 34.955188333], [139.769329209, 34.955167234], [139.769312438, 34.955195261], [139.769336316, 34.955188333]]]}}, {"id": "32842", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91874965, 35.385998541], [139.903273515, 35.431480964], [139.939890545, 35.44492755], [139.943990441, 35.416516333], [140.011753995, 35.404335919], [139.992157445, 35.393387027], [140.004411336, 35.386173973], [140.00341572, 35.343767919], [140.047599222, 35.380590306], [140.091518275, 35.388538], [140.129536329, 35.34554836], [140.109146719, 35.319192108], [140.084037665, 35.346917171], [140.051596809, 35.35534836], [140.014025447, 35.312686559], [140.001300078, 35.333093775], [139.997021284, 35.315559387], [139.980894034, 35.315128027], [139.964272776, 35.331527171], [139.904610636, 35.335212838], [139.887814838, 35.370888054], [139.91874965, 35.385998541]]]}}, {"id": "32843", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872203878, 35.465383162], [139.875548573, 35.464172811], [139.879077043, 35.461755847], [139.872203878, 35.465383162]]]}}, {"id": "32844", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.908201245, 35.387247514], [139.911178729, 35.386046568], [139.913115357, 35.385502333], [139.912274475, 35.384194351], [139.91123297, 35.384737613], [139.908201245, 35.387247514]]]}}, {"id": "32845", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914440973, 35.388126333], [139.914094864, 35.388446018], [139.917904086, 35.389287054], [139.914440973, 35.388126333]]]}}, {"id": "32846", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.882439987, 35.376873523], [139.88987716, 35.37687009], [139.891970233, 35.377692631], [139.882439987, 35.376873523]]]}}, {"id": "32847", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.892593982, 35.378027658], [139.896854994, 35.379773874], [139.892263139, 35.37788909], [139.892593982, 35.378027658]]]}}, {"id": "32848", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.900234228, 35.416043694], [139.900073567, 35.416575252], [139.901010687, 35.415822685], [139.900234228, 35.416043694]]]}}, {"id": "32849", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912179974, 35.436707162], [139.911898093, 35.436341829], [139.911660584, 35.43640427], [139.912179974, 35.436707162]]]}}, {"id": "32850", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889420078, 35.453957216], [139.889178353, 35.453925144], [139.88928013, 35.454060225], [139.889420078, 35.453957216]]]}}, {"id": "32851", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890925097, 35.452773685], [139.890862542, 35.452956874], [139.891020999, 35.452860171], [139.890925097, 35.452773685]]]}}, {"id": "32852", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887530921, 35.455717712], [139.887600765, 35.455543261], [139.887441958, 35.455636901], [139.887530921, 35.455717712]]]}}, {"id": "32853", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.883811167, 35.458139144], [139.884044747, 35.458154649], [139.883966446, 35.458030829], [139.883811167, 35.458139144]]]}}, {"id": "32854", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.885415992, 35.457036676], [139.885644073, 35.457080387], [139.885581958, 35.456941685], [139.885415992, 35.457036676]]]}}, {"id": "32855", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887226991, 35.455427414], [139.887228962, 35.45524055], [139.88714716, 35.455318919], [139.887226991, 35.455427414]]]}}, {"id": "32856", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899529728, 35.418215405], [139.899346148, 35.418057937], [139.899545888, 35.418307964], [139.899529728, 35.418215405]]]}}, {"id": "32857", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901282075, 35.415509477], [139.901588145, 35.415465856], [139.901157185, 35.415483405], [139.901282075, 35.415509477]]]}}, {"id": "32858", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893881946, 35.373325135], [139.893967341, 35.373462288], [139.894017575, 35.373382036], [139.893881946, 35.373325135]]]}}, {"id": "32859", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895099313, 35.373946586], [139.895284293, 35.373924766], [139.895149105, 35.373867595], [139.895099313, 35.373946586]]]}}, {"id": "32860", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.894516407, 35.373595234], [139.8946007, 35.373730946], [139.89465083, 35.373653856], [139.894516407, 35.373595234]]]}}, {"id": "32861", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.89644358, 35.374411288], [139.896482309, 35.374534586], [139.896537497, 35.374454874], [139.89644358, 35.374411288]]]}}, {"id": "32862", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895755357, 35.374227396], [139.895899287, 35.374187036], [139.89580559, 35.374147505], [139.895755357, 35.374227396]]]}}, {"id": "32863", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9275762, 35.440821514], [139.928116096, 35.440592766], [139.927570013, 35.440811153], [139.9275762, 35.440821514]]]}}, {"id": "32864", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901148872, 35.427520036], [139.901098534, 35.427631568], [139.901163061, 35.427625847], [139.901148872, 35.427520036]]]}}, {"id": "32865", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893287004, 35.373069604], [139.893313696, 35.373142153], [139.893344475, 35.373094459], [139.893287004, 35.373069604]]]}}, {"id": "32866", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.922625045, 35.440631649], [139.922546667, 35.44067173], [139.922611232, 35.440683315], [139.922625045, 35.440631649]]]}}, {"id": "32867", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.897060389, 35.374746117], [139.897147315, 35.374722541], [139.89709061, 35.374698505], [139.897060389, 35.374746117]]]}}, {"id": "32868", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "木更津市", "N03_005": null, "N03_007": "12206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.939870156, 35.44274391], [139.939941258, 35.442704811], [139.93988166, 35.442695306], [139.939870156, 35.44274391]]]}}, {"id": "32869", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "松戸市", "N03_005": null, "N03_007": "12207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932884189, 35.749166946], [139.90615655, 35.767246946], [139.890443917, 35.750275865], [139.879389857, 35.768013081], [139.894543307, 35.780325838], [139.888514501, 35.830197973], [139.928316446, 35.849768721], [139.9584862, 35.809272081], [140.001364527, 35.792337333], [139.968410441, 35.786308505], [139.983650636, 35.773391559], [139.957278366, 35.775126054], [139.932884189, 35.749166946]]]}}, {"id": "32870", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "野田市", "N03_005": null, "N03_007": "12208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87462594, 35.913074532], [139.814259248, 35.997061225], [139.817282438, 36.032504721], [139.776305006, 36.090354919], [139.786775668, 36.104099892], [139.884163645, 35.988828081], [139.934598638, 35.967994748], [139.933586304, 35.94643836], [139.951899922, 35.935846946], [139.924424449, 35.916532252], [139.87462594, 35.913074532]]]}}, {"id": "32871", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "茂原市", "N03_005": null, "N03_007": "12210"}, "geometry": {"type": "Polygon", "coordinates": [[[140.249530921, 35.403143198], [140.265011115, 35.422926667], [140.244448807, 35.459397171], [140.260277445, 35.502152559], [140.378882892, 35.487499225], [140.377909585, 35.468647865], [140.360346355, 35.474446505], [140.342339948, 35.453208532], [140.346922335, 35.428169387], [140.324037276, 35.418777838], [140.307966667, 35.382218667], [140.279641997, 35.380213532], [140.277715577, 35.403396171], [140.249530921, 35.403143198]]]}}, {"id": "32872", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "茂原市", "N03_005": null, "N03_007": "12210"}, "geometry": {"type": "Polygon", "coordinates": [[[140.276443217, 35.496666667], [140.277315694, 35.49501], [140.275563217, 35.49580336], [140.276443217, 35.496666667]]]}}, {"id": "32873", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "茂原市", "N03_005": null, "N03_007": "12210"}, "geometry": {"type": "Polygon", "coordinates": [[[140.261642672, 35.498225613], [140.261387108, 35.497031171], [140.2605293, 35.496930919], [140.261642672, 35.498225613]]]}}, {"id": "32874", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "成田市", "N03_005": null, "N03_007": "12211"}, "geometry": {"type": "Polygon", "coordinates": [[[140.387024695, 35.723269387], [140.362815305, 35.731979694], [140.366997886, 35.748359252], [140.323328638, 35.777657108], [140.303152412, 35.747763], [140.26329869, 35.754765306], [140.249153891, 35.78857136], [140.255607497, 35.813510225], [140.286121751, 35.828573532], [140.273224034, 35.849500414], [140.289363165, 35.871425946], [140.320250532, 35.864939306], [140.375885331, 35.902367892], [140.401027665, 35.872463108], [140.394356031, 35.852792838], [140.452393359, 35.870367892], [140.472491803, 35.850901135], [140.442976252, 35.788175441], [140.423847198, 35.775282721], [140.402442555, 35.783892748], [140.389082529, 35.757774694], [140.403193671, 35.741733081], [140.38384489, 35.743253865], [140.381552088, 35.740847748], [140.387024695, 35.723269387]]]}}, {"id": "32875", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "佐倉市", "N03_005": null, "N03_007": "12212"}, "geometry": {"type": "Polygon", "coordinates": [[[140.256794669, 35.632020441], [140.221858418, 35.637178973], [140.206867717, 35.706579721], [140.140810311, 35.69331236], [140.12625406, 35.716536135], [140.142190311, 35.72526], [140.138179689, 35.753906838], [140.189232633, 35.745656838], [140.209641505, 35.766147865], [140.25892297, 35.739710613], [140.257589222, 35.722726441], [140.245049728, 35.724715387], [140.2646938, 35.700516694], [140.278092555, 35.707760252], [140.30023428, 35.700826225], [140.279766031, 35.688427721], [140.283318249, 35.684998802], [140.285758418, 35.668248532], [140.27256345, 35.682167505], [140.257256861, 35.665354], [140.278623839, 35.656365802], [140.281349611, 35.64900664], [140.258369339, 35.661277892], [140.256794669, 35.632020441]]]}}, {"id": "32876", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "佐倉市", "N03_005": null, "N03_007": "12212"}, "geometry": {"type": "Polygon", "coordinates": [[[140.275683645, 35.705303613], [140.276714773, 35.709033054], [140.277772283, 35.70825136], [140.275683645, 35.705303613]]]}}, {"id": "32877", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.379737562, 35.504325306], [140.32619, 35.556895919], [140.288558392, 35.566466], [140.338665811, 35.586323306], [140.32302428, 35.600998306], [140.305845577, 35.594236721], [140.330153774, 35.606205468], [140.3092138, 35.609921081], [140.316511245, 35.630895694], [140.341255863, 35.617179306], [140.330569611, 35.606497694], [140.382889585, 35.60442736], [140.393750726, 35.585408775], [140.425343061, 35.595862081], [140.434111089, 35.556839892], [140.415086861, 35.527108], [140.388388392, 35.528896919], [140.410381219, 35.518639414], [140.400916109, 35.505861946], [140.379737562, 35.504325306]], [[140.38782144, 35.529734135], [140.385390415, 35.535754414], [140.383398755, 35.534366081], [140.38782144, 35.529734135]], [[140.392600584, 35.529996081], [140.392242827, 35.530882468], [140.391875888, 35.530585252], [140.392600584, 35.529996081]], [[140.324003645, 35.618879054], [140.324638054, 35.617471838], [140.324865006, 35.618134613], [140.324003645, 35.618879054]], [[140.326993333, 35.615444892], [140.325136887, 35.61115436], [140.328576641, 35.614077387], [140.326993333, 35.615444892]], [[140.326106329, 35.610312414], [140.330343554, 35.610840468], [140.328983281, 35.611954081], [140.326106329, 35.610312414]]]}}, {"id": "32878", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.327628807, 35.545097865], [140.324941051, 35.546011468], [140.329788249, 35.547417306], [140.327628807, 35.545097865]]]}}, {"id": "32879", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.334545058, 35.621208468], [140.336110895, 35.622227892], [140.335074501, 35.620905414], [140.334545058, 35.621208468]]]}}, {"id": "32880", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.324343281, 35.612050748], [140.323403307, 35.61315936], [140.324727717, 35.612338802], [140.324343281, 35.612050748]]]}}, {"id": "32881", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.32431358, 35.61380964], [140.325171894, 35.612715748], [140.323973022, 35.613491865], [140.32431358, 35.61380964]]]}}, {"id": "32882", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "東金市", "N03_005": null, "N03_007": "12213"}, "geometry": {"type": "Polygon", "coordinates": [[[140.337017523, 35.619071252], [140.338413087, 35.618145135], [140.336929468, 35.618966532], [140.337017523, 35.619071252]]]}}, {"id": "32883", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "旭市", "N03_005": null, "N03_007": "12215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.733883022, 35.705344081], [140.761004565, 35.69782055], [140.728423333, 35.684161532], [140.737016978, 35.691885027], [140.735196355, 35.695482559], [140.693124358, 35.699998081], [140.612073113, 35.675357279], [140.604364617, 35.708703667], [140.578580078, 35.712800694], [140.599087445, 35.716841468], [140.60430856, 35.737509748], [140.573884254, 35.733616928], [140.565641245, 35.755155721], [140.624566083, 35.793665171], [140.654020415, 35.791365919], [140.670892023, 35.765061441], [140.687341025, 35.782858], [140.727893476, 35.755811775], [140.725509728, 35.73301764], [140.745861725, 35.744423387], [140.733883022, 35.705344081]]]}}, {"id": "32884", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "旭市", "N03_005": null, "N03_007": "12215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.656263606, 35.801024252], [140.653397198, 35.800248694], [140.655151997, 35.805844532], [140.656263606, 35.801024252]]]}}, {"id": "32885", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "旭市", "N03_005": null, "N03_007": "12215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.646082698, 35.798376225], [140.646491025, 35.798907613], [140.646654643, 35.798828441], [140.646082698, 35.798376225]]]}}, {"id": "32886", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "旭市", "N03_005": null, "N03_007": "12215"}, "geometry": {"type": "Polygon", "coordinates": [[[140.728542192, 35.687535559], [140.728531556, 35.687629721], [140.728750052, 35.689239171], [140.728542192, 35.687535559]]]}}, {"id": "32887", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "習志野市", "N03_005": null, "N03_007": "12216"}, "geometry": {"type": "Polygon", "coordinates": [[[139.991670363, 35.654942775], [140.008806524, 35.695423919], [140.060832672, 35.690027108], [140.063510117, 35.706583252], [140.085099027, 35.703840225], [140.066150311, 35.676349865], [140.041759974, 35.677848198], [140.019651907, 35.652477829], [139.991670363, 35.654942775]]]}}, {"id": "32888", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "柏市", "N03_005": null, "N03_007": "12217"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052231141, 35.833317586], [140.034468781, 35.816432414], [140.029907756, 35.798948946], [140.017045616, 35.781215081], [140.028360726, 35.798958333], [139.967341725, 35.802707919], [139.940864695, 35.834257613], [139.957443917, 35.834828973], [139.952521829, 35.851437], [139.934523696, 35.851084532], [139.948947134, 35.858438108], [139.92512572, 35.864057027], [139.950428664, 35.872720027], [139.929799079, 35.900768667], [139.919272633, 35.898983667], [139.928078106, 35.883349225], [139.914872581, 35.893969532], [139.92016834, 35.916888946], [139.951899922, 35.935846946], [140.031106641, 35.900612306], [140.020125668, 35.888360414], [139.989959144, 35.880934946], [139.993586835, 35.867515505], [140.11135834, 35.847894306], [140.094067691, 35.825012748], [140.052231141, 35.833317586]], [[139.995741673, 35.882386027], [139.996294721, 35.883931586], [139.995287224, 35.882341306], [139.995741673, 35.882386027]]]}}, {"id": "32889", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.257869689, 35.137945865], [140.250821219, 35.12960964], [140.250264254, 35.128417892], [140.246626835, 35.127619333], [140.24503144, 35.124934135], [140.234348223, 35.121849018], [140.232513022, 35.115134802], [140.211805214, 35.114466477], [140.21323594, 35.150439081], [140.188543645, 35.175437135], [140.237886719, 35.179746225], [140.245622114, 35.214075468], [140.260052166, 35.224396054], [140.251731336, 35.233065802], [140.286806472, 35.244498838], [140.318130973, 35.215369748], [140.303456693, 35.196303135], [140.317014773, 35.174190054], [140.346680661, 35.175809171], [140.32606358, 35.138970748], [140.310201725, 35.134714198], [140.299090921, 35.151124441], [140.286181115, 35.134302387], [140.257869689, 35.137945865]], [[140.256935499, 35.221165586], [140.256581167, 35.220842865], [140.257706835, 35.220587441], [140.256935499, 35.221165586]], [[140.261262438, 35.220846027], [140.262205499, 35.220931171], [140.261213061, 35.221037586], [140.261262438, 35.220846027]]]}}, {"id": "32890", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.320361362, 35.137173667], [140.319410804, 35.136177865], [140.319148859, 35.136844532], [140.320361362, 35.137173667]]]}}, {"id": "32891", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.322126355, 35.137647279], [140.321637756, 35.138130054], [140.322217756, 35.138134505], [140.322126355, 35.137647279]]]}}, {"id": "32892", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.278262283, 35.128175198], [140.278815331, 35.128034081], [140.278512555, 35.127815748], [140.278262283, 35.128175198]]]}}, {"id": "32893", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.253267717, 35.127501613], [140.253678003, 35.127446333], [140.253534112, 35.127270225], [140.253267717, 35.127501613]]]}}, {"id": "32894", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.308934358, 35.137385108], [140.308835746, 35.136984279], [140.308657419, 35.137169279], [140.308934358, 35.137385108]]]}}, {"id": "32895", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.240017082, 35.117979721], [140.239917367, 35.118336108], [140.240181803, 35.118025838], [140.240017082, 35.117979721]]]}}, {"id": "32896", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.286942866, 35.133342667], [140.286535357, 35.133545441], [140.28697869, 35.133473775], [140.286942866, 35.133342667]]]}}, {"id": "32897", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.347408885, 35.175268721], [140.347349364, 35.175561306], [140.347503554, 35.175310054], [140.347408885, 35.175268721]]]}}, {"id": "32898", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.291674553, 35.136547081], [140.291387613, 35.136801532], [140.29171345, 35.136729865], [140.291674553, 35.136547081]]]}}, {"id": "32899", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.318491362, 35.135967027], [140.318866355, 35.135945919], [140.31870192, 35.135802586], [140.318491362, 35.135967027]]]}}, {"id": "32900", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.250480143, 35.128414333], [140.251555162, 35.128077387], [140.250462866, 35.128346946], [140.250480143, 35.128414333]]]}}, {"id": "32901", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.289584838, 35.135471279], [140.289938716, 35.135477667], [140.289766498, 35.135334333], [140.289584838, 35.135471279]]]}}, {"id": "32902", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.239411803, 35.117931946], [140.239205136, 35.118208333], [140.239469027, 35.118123613], [140.239411803, 35.117931946]]]}}, {"id": "32903", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.258668301, 35.136202252], [140.25876, 35.136496739], [140.258935772, 35.136450207], [140.258668301, 35.136202252]]]}}, {"id": "32904", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.281621725, 35.132856838], [140.281767004, 35.132643775], [140.281569494, 35.132684333], [140.281621725, 35.132856838]]]}}, {"id": "32905", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.290844838, 35.136406252], [140.291109559, 35.136257919], [140.290896498, 35.13625264], [140.290844838, 35.136406252]]]}}, {"id": "32906", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.281245888, 35.132366838], [140.281466446, 35.132245171], [140.281243943, 35.132201279], [140.281245888, 35.132366838]]]}}, {"id": "32907", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.221061751, 35.115712171], [140.220699805, 35.115500333], [140.220962581, 35.115789586], [140.221061751, 35.115712171]]]}}, {"id": "32908", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.308788807, 35.138460108], [140.308849637, 35.138233171], [140.308756031, 35.138244559], [140.308788807, 35.138460108]]]}}, {"id": "32909", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.327834475, 35.145230306], [140.328037523, 35.145310306], [140.328018366, 35.145278919], [140.327834475, 35.145230306]]]}}, {"id": "32910", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.283303969, 35.132905441], [140.283442309, 35.133091559], [140.283451479, 35.132972387], [140.283303969, 35.132905441]]]}}, {"id": "32911", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.307221894, 35.147531775], [140.307224384, 35.147364], [140.307126887, 35.147492892], [140.307221894, 35.147531775]]]}}, {"id": "32912", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.275270311, 35.130265748], [140.275235863, 35.130121586], [140.275146978, 35.130176865], [140.275270311, 35.130265748]]]}}, {"id": "32913", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346012672, 35.174839532], [140.346103333, 35.174751171], [140.345975032, 35.174770802], [140.346012672, 35.174839532]]]}}, {"id": "32914", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.259469974, 35.136311865], [140.25948275, 35.136179108], [140.259415525, 35.136208838], [140.259469974, 35.136311865]]]}}, {"id": "32915", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.2835362, 35.132730441], [140.283405357, 35.132647667], [140.283426744, 35.132762946], [140.2835362, 35.132730441]]]}}, {"id": "32916", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.259231349, 35.136456468], [140.259370687, 35.136436568], [140.259265396, 35.136392694], [140.259231349, 35.136456468]]]}}, {"id": "32917", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.34628594, 35.174895694], [140.346174968, 35.174949441], [140.346310661, 35.174932279], [140.34628594, 35.174895694]]]}}, {"id": "32918", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346492581, 35.175455505], [140.346473333, 35.175520667], [140.346523645, 35.175453748], [140.346492581, 35.175455505]]]}}, {"id": "32919", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346069689, 35.174901919], [140.346069559, 35.174949252], [140.346097613, 35.174940748], [140.346069689, 35.174901919]]]}}, {"id": "32920", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346497367, 35.175309108], [140.346482049, 35.175335108], [140.346527834, 35.175336108], [140.346497367, 35.175309108]]]}}, {"id": "32921", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346610856, 35.175479973], [140.34657144, 35.175479532], [140.346605577, 35.175496775], [140.346610856, 35.175479973]]]}}, {"id": "32922", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "勝浦市", "N03_005": null, "N03_007": "12218"}, "geometry": {"type": "Polygon", "coordinates": [[[140.346897134, 35.175262694], [140.346895383, 35.175280198], [140.346907302, 35.175274], [140.346897134, 35.175262694]]]}}, {"id": "32923", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.122947367, 35.25205064], [140.122141362, 35.313710775], [140.101347782, 35.319719054], [140.129614112, 35.347100586], [140.105588003, 35.384425532], [140.089904332, 35.380861919], [140.087568859, 35.427607973], [140.032622555, 35.423570027], [140.043167691, 35.437372225], [140.009763165, 35.486242667], [140.036225966, 35.495293027], [140.025218612, 35.501636171], [140.045908586, 35.511398667], [140.036919883, 35.517539613], [140.060677639, 35.530064586], [140.066398651, 35.553424342], [140.09608869, 35.535401586], [140.092330804, 35.554484613], [140.178363385, 35.532739973], [140.217642088, 35.545311748], [140.231949105, 35.534441505], [140.228642166, 35.507928775], [140.256339559, 35.494312027], [140.248490506, 35.481753748], [140.206304358, 35.484692468], [140.1705793, 35.456667252], [140.186523943, 35.448053387], [140.173027082, 35.431277333], [140.231036109, 35.304112387], [140.199086719, 35.308068387], [140.202815136, 35.287712279], [140.141236939, 35.231205135], [140.122947367, 35.25205064]]]}}, {"id": "32924", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.036197108, 35.510785892], [140.034239339, 35.512251225], [140.036546446, 35.510944027], [140.036197108, 35.510785892]]]}}, {"id": "32925", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.260247367, 35.496356748], [140.259085694, 35.495911198], [140.259909585, 35.496734802], [140.260247367, 35.496356748]]]}}, {"id": "32926", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.070767406, 35.557548865], [140.068749805, 35.556882279], [140.077928833, 35.561778459], [140.070767406, 35.557548865]]]}}, {"id": "32927", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.040667004, 35.513116027], [140.04223, 35.513385559], [140.045464475, 35.51155036], [140.040667004, 35.513116027]]]}}, {"id": "32928", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.059939883, 35.542886333], [140.059052477, 35.542782721], [140.060710078, 35.544587225], [140.059939883, 35.542886333]]]}}, {"id": "32929", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "市原市", "N03_005": null, "N03_007": "12219"}, "geometry": {"type": "Polygon", "coordinates": [[[140.029610661, 35.507554919], [140.02937022, 35.507858279], [140.029815616, 35.507828613], [140.029610661, 35.507554919]]]}}, {"id": "32930", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "流山市", "N03_005": null, "N03_007": "12220"}, "geometry": {"type": "Polygon", "coordinates": [[[139.928316446, 35.849768721], [139.888514501, 35.830197973], [139.90033869, 35.864174865], [139.874755668, 35.912940081], [139.915592776, 35.919709225], [139.914872581, 35.893969532], [139.928078106, 35.883349225], [139.919272633, 35.898983667], [139.929799079, 35.900768667], [139.950428664, 35.872720027], [139.92512572, 35.864057027], [139.944776615, 35.863058667], [139.934633969, 35.850842027], [139.94775489, 35.855430333], [139.957547808, 35.834984252], [139.928316446, 35.849768721]]]}}, {"id": "32931", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "八千代市", "N03_005": null, "N03_007": "12221"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064717639, 35.709359081], [140.06447642, 35.745645468], [140.089649974, 35.762054306], [140.088210752, 35.783465919], [140.151881751, 35.759793198], [140.12625406, 35.716536135], [140.136668911, 35.697436225], [140.112951673, 35.714762532], [140.093393385, 35.692412198], [140.064717639, 35.709359081]]]}}, {"id": "32932", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "我孫子市", "N03_005": null, "N03_007": "12222"}, "geometry": {"type": "Polygon", "coordinates": [[[140.129823333, 35.865539505], [140.146469663, 35.845718135], [140.031739339, 35.856566802], [139.988670778, 35.879294108], [140.031106641, 35.900612306], [140.129823333, 35.865539505]]]}}, {"id": "32933", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "我孫子市", "N03_005": null, "N03_007": "12222"}, "geometry": {"type": "Polygon", "coordinates": [[[139.996994721, 35.883126865], [139.996294721, 35.883931586], [139.997225837, 35.883575468], [139.996994721, 35.883126865]]]}}, {"id": "32934", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[139.99803358, 35.096864027], [139.996759196, 35.115443108], [139.983100026, 35.105257892], [139.936282672, 35.121848973], [139.930749144, 35.146575], [140.090931582, 35.168351532], [140.138986939, 35.191081054], [140.173851582, 35.165555252], [140.202133722, 35.170242108], [140.216357588, 35.141261054], [140.203382387, 35.109466865], [140.191790584, 35.127214802], [140.119582892, 35.114873532], [140.102286835, 35.076532468], [140.073014968, 35.055786333], [140.037676563, 35.052018856], [140.020199974, 35.088631505], [139.99803358, 35.096864027]]]}}, {"id": "32935", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.102749339, 35.075941108], [140.105445058, 35.077046865], [140.106546252, 35.075159225], [140.102749339, 35.075941108]]]}}, {"id": "32936", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108093411, 35.072644946], [140.10580131, 35.074095333], [140.108966031, 35.072736973], [140.108093411, 35.072644946]]]}}, {"id": "32937", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108683087, 35.090801225], [140.110471245, 35.090896865], [140.110501479, 35.090556387], [140.108683087, 35.090801225]]]}}, {"id": "32938", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.101918521, 35.089909721], [140.101342698, 35.089052775], [140.101016861, 35.089469441], [140.101918521, 35.089909721]]]}}, {"id": "32939", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.073136472, 35.055422225], [140.072277588, 35.054966613], [140.072033969, 35.055529171], [140.073136472, 35.055422225]]]}}, {"id": "32940", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063651479, 35.057012225], [140.064094617, 35.057527108], [140.064180532, 35.057044838], [140.063651479, 35.057012225]]]}}, {"id": "32941", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.091944501, 35.072136135], [140.091676005, 35.072748721], [140.092011556, 35.072664], [140.091944501, 35.072136135]]]}}, {"id": "32942", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.077818444, 35.060788279], [140.077966641, 35.060203892], [140.077448444, 35.060602171], [140.077818444, 35.060788279]]]}}, {"id": "32943", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.1080138, 35.075070586], [140.107667419, 35.074699748], [140.107520467, 35.075267802], [140.1080138, 35.075070586]]]}}, {"id": "32944", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109297134, 35.075032252], [140.108589079, 35.075239198], [140.108568807, 35.075481694], [140.109297134, 35.075032252]]]}}, {"id": "32945", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053260311, 35.051048414], [140.052280584, 35.051364], [140.053390584, 35.051195081], [140.053260311, 35.051048414]]]}}, {"id": "32946", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.050718911, 35.051758721], [140.051465305, 35.051448721], [140.050390026, 35.051465667], [140.050718911, 35.051758721]]]}}, {"id": "32947", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.104252698, 35.084945559], [140.103598807, 35.084966946], [140.104177328, 35.085320802], [140.104252698, 35.084945559]]]}}, {"id": "32948", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.110020752, 35.074112252], [140.1103838, 35.073587802], [140.109691855, 35.07390364], [140.110020752, 35.074112252]]]}}, {"id": "32949", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.068615914, 35.057151333], [140.068780246, 35.057640667], [140.069052529, 35.057546946], [140.068615914, 35.057151333]]]}}, {"id": "32950", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.076170363, 35.057253586], [140.075581479, 35.056904414], [140.075834812, 35.057625532], [140.076170363, 35.057253586]]]}}, {"id": "32951", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108071336, 35.089069414], [140.107701051, 35.089480802], [140.108193061, 35.089353667], [140.108071336, 35.089069414]]]}}, {"id": "32952", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045101388, 35.04980264], [140.04469083, 35.049408198], [140.044642776, 35.049571802], [140.045101388, 35.04980264]]]}}, {"id": "32953", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074040311, 35.055186694], [140.073910363, 35.054588306], [140.073882866, 35.055230532], [140.074040311, 35.055186694]]]}}, {"id": "32954", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.106273528, 35.076479468], [140.106036355, 35.076130532], [140.105917224, 35.076682279], [140.106273528, 35.076479468]]]}}, {"id": "32955", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.110664643, 35.072449468], [140.1104138, 35.07207364], [140.110267419, 35.072562252], [140.110664643, 35.072449468]]]}}, {"id": "32956", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058425331, 35.056402838], [140.057651414, 35.056307], [140.058322866, 35.056680505], [140.058425331, 35.056402838]]]}}, {"id": "32957", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108420752, 35.074536135], [140.108979637, 35.074540586], [140.108959079, 35.074456135], [140.108420752, 35.074536135]]]}}, {"id": "32958", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063589222, 35.056611414], [140.063465888, 35.056295586], [140.063124501, 35.056656694], [140.063589222, 35.056611414]]]}}, {"id": "32959", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.120946057, 35.089243802], [140.120808833, 35.089678252], [140.121186057, 35.089508532], [140.120946057, 35.089243802]]]}}, {"id": "32960", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.19972022, 35.110015946], [140.199491894, 35.110332054], [140.199873281, 35.110316775], [140.19972022, 35.110015946]]]}}, {"id": "32961", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109085188, 35.074209468], [140.108831855, 35.073843081], [140.10845214, 35.074129198], [140.109085188, 35.074209468]]]}}, {"id": "32962", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052691699, 35.051690919], [140.051780584, 35.051358441], [140.051924475, 35.051803721], [140.052691699, 35.051690919]]]}}, {"id": "32963", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.099167977, 35.075545054], [140.098759079, 35.075702027], [140.099019079, 35.075904775], [140.099167977, 35.075545054]]]}}, {"id": "32964", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.178566835, 35.118807865], [140.178921855, 35.118521171], [140.178263528, 35.118545586], [140.178566835, 35.118807865]]]}}, {"id": "32965", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.171230532, 35.121440919], [140.170991245, 35.121148441], [140.171074747, 35.12155036], [140.171230532, 35.121440919]]]}}, {"id": "32966", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.101690752, 35.079230333], [140.102136031, 35.079376694], [140.102252412, 35.079156973], [140.101690752, 35.079230333]]]}}, {"id": "32967", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.104026861, 35.075577838], [140.103704916, 35.075420054], [140.103609079, 35.075600333], [140.104026861, 35.075577838]]]}}, {"id": "32968", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064339805, 35.056812865], [140.064480532, 35.057110441], [140.064616589, 35.056835775], [140.064339805, 35.056812865]]]}}, {"id": "32969", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058980052, 35.056476441], [140.058607082, 35.056515694], [140.058898106, 35.056690333], [140.058980052, 35.056476441]]]}}, {"id": "32970", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.205637198, 35.110813973], [140.205293307, 35.110764252], [140.205368301, 35.110952586], [140.205637198, 35.110813973]]]}}, {"id": "32971", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.185560778, 35.120691108], [140.185167328, 35.120715054], [140.185730532, 35.121075919], [140.185560778, 35.120691108]]]}}, {"id": "32972", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.091675006, 35.065266532], [140.091867912, 35.064868748], [140.091641803, 35.065240694], [140.091675006, 35.065266532]]]}}, {"id": "32973", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183480169, 35.118468865], [140.183648755, 35.118279694], [140.183352361, 35.118269559], [140.183480169, 35.118468865]]]}}, {"id": "32974", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042642218, 35.049549306], [140.04236834, 35.049368748], [140.042532776, 35.049639027], [140.042642218, 35.049549306]]]}}, {"id": "32975", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.112944112, 35.088663838], [140.112726329, 35.088454946], [140.112794669, 35.088742441], [140.112944112, 35.088663838]]]}}, {"id": "32976", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.18319786, 35.117106667], [140.18328131, 35.117356505], [140.183580921, 35.117093135], [140.18319786, 35.117106667]]]}}, {"id": "32977", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.085784864, 35.070944865], [140.085359857, 35.071108505], [140.085270973, 35.071272108], [140.085784864, 35.070944865]]]}}, {"id": "32978", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.10049214, 35.075910333], [140.10034131, 35.075702], [140.100320752, 35.075989505], [140.10049214, 35.075910333]]]}}, {"id": "32979", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109504112, 35.092202441], [140.109412996, 35.092439946], [140.109682438, 35.092281333], [140.109504112, 35.092202441]]]}}, {"id": "32980", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.143255694, 35.117644171], [140.142844332, 35.11762636], [140.143271699, 35.117753], [140.143255694, 35.117644171]]]}}, {"id": "32981", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.076407056, 35.058014973], [140.076393411, 35.057626081], [140.076263139, 35.058048865], [140.076407056, 35.058014973]]]}}, {"id": "32982", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.043204163, 35.049414027], [140.042861673, 35.049250414], [140.042841115, 35.049368748], [140.043204163, 35.049414027]]]}}, {"id": "32983", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063199001, 35.057474802], [140.063249105, 35.057636721], [140.063431219, 35.057366468], [140.063199001, 35.057474802]]]}}, {"id": "32984", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.081674838, 35.061639081], [140.081626783, 35.061481306], [140.081592607, 35.061898532], [140.081674838, 35.061639081]]]}}, {"id": "32985", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183358949, 35.117629306], [140.183432218, 35.117930838], [140.183561051, 35.117789198], [140.183358949, 35.117629306]]]}}, {"id": "32986", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183349248, 35.117974333], [140.182888885, 35.117716505], [140.183148755, 35.118064694], [140.183349248, 35.117974333]]]}}, {"id": "32987", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.073502581, 35.055529414], [140.073328145, 35.055292505], [140.073228418, 35.055529441], [140.073502581, 35.055529414]]]}}, {"id": "32988", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.19917192, 35.113177586], [140.198954112, 35.113003414], [140.198986887, 35.113204532], [140.19917192, 35.113177586]]]}}, {"id": "32989", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.182554189, 35.117728198], [140.182649663, 35.117577279], [140.18245847, 35.117507171], [140.182554189, 35.117728198]]]}}, {"id": "32990", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.198616887, 35.11290064], [140.198372166, 35.112981468], [140.198598833, 35.113018135], [140.198616887, 35.11290064]]]}}, {"id": "32991", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.059254228, 35.056076171], [140.059192555, 35.056312838], [140.059308949, 35.056166441], [140.059254228, 35.056076171]]]}}, {"id": "32992", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.180768392, 35.118903135], [140.180460921, 35.118758532], [140.180743528, 35.118940252], [140.180768392, 35.118903135]]]}}, {"id": "32993", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.179075525, 35.11817964], [140.178759416, 35.118014667], [140.178875279, 35.118220135], [140.179075525, 35.11817964]]]}}, {"id": "32994", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.092011284, 35.073725108], [140.092031829, 35.073950387], [140.092120726, 35.073764559], [140.092011284, 35.073725108]]]}}, {"id": "32995", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.091422114, 35.072592333], [140.091217419, 35.072800865], [140.09141572, 35.072669559], [140.091422114, 35.072592333]]]}}, {"id": "32996", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184109728, 35.118249865], [140.184073502, 35.118472441], [140.184217056, 35.118538919], [140.184109728, 35.118249865]]]}}, {"id": "32997", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064658885, 35.058932586], [140.064422529, 35.058737054], [140.06434192, 35.05892236], [140.064658885, 35.058932586]]]}}, {"id": "32998", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.07416703, 35.053618613], [140.07394786, 35.05372], [140.073953411, 35.053777505], [140.07416703, 35.053618613]]]}}, {"id": "32999", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.11099856, 35.090123], [140.111216057, 35.090241892], [140.111251803, 35.090162387], [140.11099856, 35.090123]]]}}, {"id": "33000", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.068166329, 35.057381892], [140.068437808, 35.057616838], [140.068625966, 35.057631252], [140.068166329, 35.057381892]]]}}, {"id": "33001", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.075365914, 35.056814694], [140.075146744, 35.056769414], [140.075386472, 35.056917198], [140.075365914, 35.056814694]]]}}, {"id": "33002", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.086243748, 35.071395973], [140.085934034, 35.07148264], [140.085969585, 35.071570694], [140.086243748, 35.071395973]]]}}, {"id": "33003", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.100347977, 35.082673919], [140.100231582, 35.082927532], [140.100347977, 35.082888081], [140.100347977, 35.082673919]]]}}, {"id": "33004", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.104465227, 35.089424441], [140.104654838, 35.089409802], [140.104552023, 35.089323748], [140.104465227, 35.089424441]]]}}, {"id": "33005", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074934254, 35.056549694], [140.074571193, 35.056470802], [140.074975357, 35.05661164], [140.074934254, 35.056549694]]]}}, {"id": "33006", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.156934254, 35.120210946], [140.157134254, 35.120184171], [140.157022672, 35.120152108], [140.156934254, 35.120210946]]]}}, {"id": "33007", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.07430153, 35.058936], [140.074457834, 35.05882736], [140.074278885, 35.058906748], [140.07430153, 35.058936]]]}}, {"id": "33008", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.119862724, 35.087761865], [140.120157717, 35.087767414], [140.119917717, 35.08765464], [140.119862724, 35.087761865]]]}}, {"id": "33009", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.160598664, 35.119449622], [140.16036987, 35.119458297], [140.160266342, 35.119521108], [140.160598664, 35.119449622]]]}}, {"id": "33010", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.086942633, 35.072139865], [140.086963191, 35.07198764], [140.086798755, 35.072100414], [140.086942633, 35.072139865]]]}}, {"id": "33011", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074852309, 35.055337748], [140.0747562, 35.055523586], [140.07490703, 35.055348865], [140.074852309, 35.055337748]]]}}, {"id": "33012", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052961505, 35.057458054], [140.052871115, 35.057307387], [140.05274131, 35.057346748], [140.052961505, 35.057458054]]]}}, {"id": "33013", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.099457691, 35.081033946], [140.099563087, 35.08118136], [140.09962214, 35.081118387], [140.099457691, 35.081033946]]]}}, {"id": "33014", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074830636, 35.056938027], [140.075041673, 35.056902829], [140.07477869, 35.056835667], [140.074830636, 35.056938027]]]}}, {"id": "33015", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.068550078, 35.055619441], [140.068543139, 35.055822505], [140.068659533, 35.055743613], [140.068550078, 35.055619441]]]}}, {"id": "33016", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06691655, 35.058076973], [140.067046978, 35.057987468], [140.06700083, 35.057947198], [140.06691655, 35.058076973]]]}}, {"id": "33017", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06440856, 35.056700865], [140.064554034, 35.056537252], [140.064378833, 35.056537586], [140.06440856, 35.056700865]]]}}, {"id": "33018", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.120603281, 35.088640748], [140.120842996, 35.088635468], [140.12061022, 35.088567414], [140.120603281, 35.088640748]]]}}, {"id": "33019", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.083859857, 35.068301559], [140.083933476, 35.068412387], [140.0840107, 35.068346559], [140.083859857, 35.068301559]]]}}, {"id": "33020", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.185649754, 35.118930694], [140.185299559, 35.118806748], [140.185243891, 35.11894836], [140.185649754, 35.118930694]]]}}, {"id": "33021", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.18400297, 35.117503973], [140.18375489, 35.117473838], [140.1837762, 35.117557721], [140.18400297, 35.117503973]]]}}, {"id": "33022", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.103389079, 35.088973613], [140.103403256, 35.088801559], [140.103238249, 35.088832775], [140.103389079, 35.088973613]]]}}, {"id": "33023", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.100649364, 35.082690865], [140.100800195, 35.082786694], [140.100779637, 35.082640027], [140.100649364, 35.082690865]]]}}, {"id": "33024", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.10121131, 35.082352532], [140.101259079, 35.082504748], [140.1013138, 35.082363919], [140.10121131, 35.082352532]]]}}, {"id": "33025", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.105991855, 35.089440748], [140.106183554, 35.089469973], [140.10625144, 35.089339279], [140.105991855, 35.089440748]]]}}, {"id": "33026", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.107317173, 35.090483865], [140.107513748, 35.090581333], [140.107509144, 35.090446586], [140.107317173, 35.090483865]]]}}, {"id": "33027", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.105958249, 35.085931667], [140.106143256, 35.086005], [140.106047419, 35.085875279], [140.105958249, 35.085931667]]]}}, {"id": "33028", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.04199834, 35.050214027], [140.042128612, 35.050169027], [140.042080558, 35.050016802], [140.04199834, 35.050214027]]]}}, {"id": "33029", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.111075746, 35.072432532], [140.111130467, 35.072579198], [140.11119214, 35.07248336], [140.111075746, 35.072432532]]]}}, {"id": "33030", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.081455668, 35.061453252], [140.081325383, 35.061633532], [140.081517328, 35.061571586], [140.081455668, 35.061453252]]]}}, {"id": "33031", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.194841115, 35.119516135], [140.194573191, 35.119469054], [140.194779974, 35.119587892], [140.194841115, 35.119516135]]]}}, {"id": "33032", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.158287302, 35.120005306], [140.15828808, 35.12020064], [140.158465447, 35.119963802], [140.158287302, 35.120005306]]]}}, {"id": "33033", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.185802477, 35.121274279], [140.185849754, 35.121071054], [140.185744449, 35.121253081], [140.185802477, 35.121274279]]]}}, {"id": "33034", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.044293333, 35.049414027], [140.044361946, 35.049537919], [140.044437224, 35.049430973], [140.044293333, 35.049414027]]]}}, {"id": "33035", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.087093191, 35.06928236], [140.087244034, 35.069355694], [140.087209585, 35.069242919], [140.087093191, 35.06928236]]]}}, {"id": "33036", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184232088, 35.118281775], [140.184422672, 35.118386081], [140.184523774, 35.11837], [140.184434864, 35.118236505], [140.184232088, 35.118281775]]]}}, {"id": "33037", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.182971971, 35.117595838], [140.182799105, 35.117425667], [140.182726835, 35.117433279], [140.182971971, 35.117595838]]]}}, {"id": "33038", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.061172283, 35.055191171], [140.061124228, 35.055348946], [140.061233943, 35.055348946], [140.061172283, 35.055191171]]]}}, {"id": "33039", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.105680532, 35.088523108], [140.105492698, 35.088458775], [140.105456615, 35.088551108], [140.105680532, 35.088523108]]]}}, {"id": "33040", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.104992996, 35.089582225], [140.105093281, 35.089667198], [140.105159689, 35.089534559], [140.104992996, 35.089582225]]]}}, {"id": "33041", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.185909689, 35.120467081], [140.185748366, 35.120579694], [140.185771219, 35.120644892], [140.185909689, 35.120467081]]]}}, {"id": "33042", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042299728, 35.050084586], [140.042334163, 35.050276252], [140.042409442, 35.050270414], [140.042299728, 35.050084586]]]}}, {"id": "33043", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184662477, 35.119164946], [140.184766005, 35.11900464], [140.18472275, 35.118970973], [140.184662477, 35.119164946]]]}}, {"id": "33044", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183753645, 35.118950892], [140.183654747, 35.118965865], [140.183792607, 35.119034694], [140.183753645, 35.118950892]]]}}, {"id": "33045", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.04268834, 35.053295135], [140.042683333, 35.053427081], [140.042773061, 35.053414027], [140.04268834, 35.053295135]]]}}, {"id": "33046", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057164747, 35.056577838], [140.057130311, 35.056752559], [140.057219468, 35.056634225], [140.057164747, 35.056577838]]]}}, {"id": "33047", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.103082438, 35.088208252], [140.103162218, 35.088051135], [140.103052023, 35.088156613], [140.103082438, 35.088208252]]]}}, {"id": "33048", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066035811, 35.058130252], [140.066058495, 35.05829364], [140.066115162, 35.058056973], [140.066035811, 35.058130252]]]}}, {"id": "33049", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066411946, 35.058204532], [140.066505253, 35.058090468], [140.066451336, 35.058066252], [140.066411946, 35.058204532]]]}}, {"id": "33050", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.156465357, 35.120611252], [140.156344332, 35.120387108], [140.156272412, 35.120373694], [140.156465357, 35.120611252]]]}}, {"id": "33051", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.059815616, 35.057468387], [140.059918392, 35.057609225], [140.059877276, 35.057445892], [140.059815616, 35.057468387]]]}}, {"id": "33052", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184194553, 35.117412532], [140.184055966, 35.117380865], [140.184119468, 35.117500919], [140.184194553, 35.117412532]]]}}, {"id": "33053", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069614916, 35.058382306], [140.069495006, 35.058354054], [140.069513696, 35.058526919], [140.069614916, 35.058382306]]]}}, {"id": "33054", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.076742607, 35.057778306], [140.076701777, 35.05789664], [140.076797613, 35.057840252], [140.076742607, 35.057778306]]]}}, {"id": "33055", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.083476252, 35.067974613], [140.083517367, 35.068104054], [140.083572088, 35.068059054], [140.083476252, 35.067974613]]]}}, {"id": "33056", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064087302, 35.058867775], [140.064206498, 35.058917225], [140.06411214, 35.058772532], [140.064087302, 35.058867775]]]}}, {"id": "33057", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0910593, 35.065813198], [140.091134864, 35.065939586], [140.091196524, 35.06585264], [140.0910593, 35.065813198]]]}}, {"id": "33058", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.158928885, 35.119965892], [140.158797302, 35.119933252], [140.158876861, 35.120099], [140.158928885, 35.119965892]]]}}, {"id": "33059", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066520078, 35.058332946], [140.06638297, 35.058418865], [140.066458949, 35.058498468], [140.066520078, 35.058332946]]]}}, {"id": "33060", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064249339, 35.056687919], [140.064337497, 35.05653764], [140.064167419, 35.056556919], [140.064249339, 35.056687919]]]}}, {"id": "33061", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109308521, 35.074309468], [140.109431855, 35.07421364], [140.109308521, 35.07421364], [140.109308521, 35.074309468]]]}}, {"id": "33062", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.107008833, 35.08931164], [140.107132166, 35.089413306], [140.107141479, 35.089342667], [140.107008833, 35.08931164]]]}}, {"id": "33063", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063080246, 35.057269054], [140.063107834, 35.057140198], [140.062993476, 35.057169532], [140.063080246, 35.057269054]]]}}, {"id": "33064", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053348275, 35.058105225], [140.053252581, 35.058030586], [140.053125863, 35.058082198], [140.053348275, 35.058105225]]]}}, {"id": "33065", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066710584, 35.057892135], [140.066871025, 35.057833225], [140.066859728, 35.057791946], [140.066710584, 35.057892135]]]}}, {"id": "33066", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067660337, 35.057555865], [140.067717886, 35.057703225], [140.067744695, 35.057455279], [140.067660337, 35.057555865]]]}}, {"id": "33067", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.060165058, 35.055754775], [140.060192555, 35.055884505], [140.060226719, 35.055800054], [140.060165058, 35.055754775]]]}}, {"id": "33068", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069127224, 35.058282387], [140.069122283, 35.058092081], [140.069024254, 35.058162775], [140.069127224, 35.058282387]]]}}, {"id": "33069", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.110943554, 35.090523279], [140.111038003, 35.090422441], [140.110922996, 35.090466892], [140.110943554, 35.090523279]]]}}, {"id": "33070", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.085955966, 35.068583225], [140.086065694, 35.068526838], [140.085976524, 35.068498775], [140.085955966, 35.068583225]]]}}, {"id": "33071", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108261025, 35.074435586], [140.108315188, 35.074286973], [140.108219364, 35.07443336], [140.108261025, 35.074435586]]]}}, {"id": "33072", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074564527, 35.05506136], [140.074460804, 35.055179108], [140.074591751, 35.055129135], [140.074564527, 35.05506136]]]}}, {"id": "33073", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057938029, 35.055980081], [140.057971997, 35.056071171], [140.058021167, 35.056014225], [140.057938029, 35.055980081]]]}}, {"id": "33074", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058050752, 35.056872225], [140.058130532, 35.056783], [140.057994578, 35.056863946], [140.058050752, 35.056872225]]]}}, {"id": "33075", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109130467, 35.074546135], [140.109221855, 35.074636973], [140.109257977, 35.074577532], [140.109130467, 35.074546135]]]}}, {"id": "33076", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.051753087, 35.051031505], [140.051869468, 35.051087892], [140.051801141, 35.051009], [140.051753087, 35.051031505]]]}}, {"id": "33077", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.08778489, 35.072867081], [140.087880726, 35.072940414], [140.087894617, 35.072884027], [140.08778489, 35.072867081]]]}}, {"id": "33078", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.121528833, 35.089317414], [140.121357445, 35.089311306], [140.121446615, 35.089373802], [140.121528833, 35.089317414]]]}}, {"id": "33079", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057390856, 35.056132559], [140.057495305, 35.056244225], [140.057442802, 35.056123108], [140.057390856, 35.056132559]]]}}, {"id": "33080", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065352283, 35.056157802], [140.065481167, 35.056200306], [140.065446719, 35.056104468], [140.065352283, 35.056157802]]]}}, {"id": "33081", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.109851971, 35.073648694], [140.109972698, 35.073570865], [140.109815188, 35.073604748], [140.109851971, 35.073648694]]]}}, {"id": "33082", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.050075032, 35.055010946], [140.049985863, 35.054931775], [140.049937808, 35.055010946], [140.050075032, 35.055010946]]]}}, {"id": "33083", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.070887886, 35.057415252], [140.070730856, 35.057319108], [140.070869728, 35.057498414], [140.070887886, 35.057415252]]]}}, {"id": "33084", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.110356589, 35.074050027], [140.110500195, 35.074117802], [140.110507977, 35.074066414], [140.110356589, 35.074050027]]]}}, {"id": "33085", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066049027, 35.058393532], [140.065948171, 35.058354054], [140.065971634, 35.058511865], [140.066049027, 35.058393532]]]}}, {"id": "33086", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.071285668, 35.057495333], [140.071075032, 35.057446802], [140.071293411, 35.057564108], [140.071285668, 35.057495333]]]}}, {"id": "33087", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.107780506, 35.085604721], [140.107876615, 35.085655559], [140.107856057, 35.085559721], [140.107780506, 35.085604721]]]}}, {"id": "33088", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.106752724, 35.089469973], [140.10680345, 35.089392441], [140.106687082, 35.089385586], [140.106752724, 35.089469973]]]}}, {"id": "33089", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.15612703, 35.120754505], [140.155927393, 35.120763414], [140.15614061, 35.120805108], [140.15612703, 35.120754505]]]}}, {"id": "33090", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067399105, 35.057602414], [140.067454163, 35.057455468], [140.067420246, 35.057442108], [140.067399105, 35.057602414]]]}}, {"id": "33091", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063162918, 35.057743973], [140.063223139, 35.057673892], [140.063097471, 35.057704414], [140.063162918, 35.057743973]]]}}, {"id": "33092", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067513606, 35.057653306], [140.067640973, 35.057608441], [140.067574838, 35.057559252], [140.067513606, 35.057653306]]]}}, {"id": "33093", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.107369637, 35.075870586], [140.107486304, 35.075825586], [140.107369637, 35.075825586], [140.107369637, 35.075870586]]]}}, {"id": "33094", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.059569222, 35.055940892], [140.059617276, 35.056031171], [140.059630895, 35.056014225], [140.059569222, 35.055940892]]]}}, {"id": "33095", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074865914, 35.055055802], [140.074814812, 35.055159414], [140.074900078, 35.055117748], [140.074865914, 35.055055802]]]}}, {"id": "33096", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058713113, 35.057552838], [140.058857004, 35.057558387], [140.058747276, 35.057496441], [140.058713113, 35.057552838]]]}}, {"id": "33097", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.049615863, 35.054977054], [140.049705032, 35.055061505], [140.049711971, 35.054994], [140.049615863, 35.054977054]]]}}, {"id": "33098", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.165480441, 35.122688225], [140.165374643, 35.122755667], [140.165491336, 35.122747973], [140.165480441, 35.122688225]]]}}, {"id": "33099", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.054171414, 35.058113468], [140.054010584, 35.058195973], [140.05402834, 35.058239108], [140.054171414, 35.058113468]]]}}, {"id": "33100", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.056650856, 35.057147], [140.056698911, 35.057242838], [140.056733087, 35.057158387], [140.056650856, 35.057147]]]}}, {"id": "33101", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108604501, 35.089166748], [140.108727173, 35.089143027], [140.108599105, 35.08908636], [140.108604501, 35.089166748]]]}}, {"id": "33102", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066127276, 35.058186054], [140.06623144, 35.058157], [140.066218444, 35.058135306], [140.066127276, 35.058186054]]]}}, {"id": "33103", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042470999, 35.053571775], [140.042559883, 35.053479667], [140.042464228, 35.053489838], [140.042470999, 35.053571775]]]}}, {"id": "33104", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062903359, 35.057413973], [140.062751673, 35.057383081], [140.062900584, 35.057471054], [140.062903359, 35.057413973]]]}}, {"id": "33105", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058521167, 35.057389505], [140.058637562, 35.057451441], [140.058644501, 35.057395054], [140.058521167, 35.057389505]]]}}, {"id": "33106", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065783217, 35.058408865], [140.065693645, 35.058438865], [140.065740506, 35.05853864], [140.065783217, 35.058408865]]]}}, {"id": "33107", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.108205473, 35.075493081], [140.10823297, 35.075391414], [140.1081438, 35.075419748], [140.108205473, 35.075493081]]]}}, {"id": "33108", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.04195572, 35.053382441], [140.041864773, 35.053354387], [140.041903411, 35.053427694], [140.04195572, 35.053382441]]]}}, {"id": "33109", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.157708807, 35.120758667], [140.157605746, 35.120665802], [140.157627004, 35.120798441], [140.157708807, 35.120758667]]]}}, {"id": "33110", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064442244, 35.059080387], [140.064375331, 35.058997306], [140.064405863, 35.059088838], [140.064442244, 35.059080387]]]}}, {"id": "33111", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.048923917, 35.054903721], [140.048999468, 35.054982613], [140.049020026, 35.054960108], [140.048923917, 35.054903721]]]}}, {"id": "33112", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.075995914, 35.057749973], [140.076132866, 35.057800802], [140.076132866, 35.057772748], [140.075995914, 35.057749973]]]}}, {"id": "33113", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057301699, 35.056752559], [140.05741808, 35.056713108], [140.057308638, 35.056696171], [140.057301699, 35.056752559]]]}}, {"id": "33114", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.100464358, 35.081135333], [140.100539922, 35.081214198], [140.100526031, 35.081135306], [140.100464358, 35.081135333]]]}}, {"id": "33115", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062855331, 35.057722198], [140.062721751, 35.057658721], [140.062667834, 35.057710919], [140.062855331, 35.057722198]]]}}, {"id": "33116", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06331297, 35.057342252], [140.063227328, 35.057295802], [140.063239442, 35.057432802], [140.06331297, 35.057342252]]]}}, {"id": "33117", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.091613748, 35.06554736], [140.091655694, 35.06543236], [140.091580143, 35.065483198], [140.091613748, 35.06554736]]]}}, {"id": "33118", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057612088, 35.055899532], [140.057712802, 35.055856441], [140.057598911, 35.055810054], [140.057612088, 35.055899532]]]}}, {"id": "33119", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053730246, 35.058074865], [140.053615772, 35.058107892], [140.05365572, 35.058168306], [140.053730246, 35.058074865]]]}}, {"id": "33120", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183919027, 35.118755135], [140.183777445, 35.118770054], [140.183942114, 35.118791054], [140.183919027, 35.118755135]]]}}, {"id": "33121", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.043279442, 35.049515414], [140.043375279, 35.049560414], [140.043361673, 35.049470414], [140.043279442, 35.049515414]]]}}, {"id": "33122", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064294942, 35.058941468], [140.064210584, 35.058805171], [140.064285188, 35.058950775], [140.064294942, 35.058941468]]]}}, {"id": "33123", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042875279, 35.053382081], [140.042964449, 35.05343264], [140.042943891, 35.053348198], [140.042875279, 35.053382081]]]}}, {"id": "33124", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069430804, 35.057989171], [140.069486135, 35.057974387], [140.069384475, 35.05796636], [140.069430804, 35.057989171]]]}}, {"id": "33125", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069332361, 35.058098892], [140.069148197, 35.057994333], [140.069120467, 35.058001333], [140.069332361, 35.058098892]]]}}, {"id": "33126", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.167153606, 35.123487775], [140.167038054, 35.123452225], [140.167147108, 35.123509802], [140.167153606, 35.123487775]]]}}, {"id": "33127", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.183902918, 35.118838586], [140.183867082, 35.118926838], [140.183952529, 35.118893252], [140.183902918, 35.118838586]]]}}, {"id": "33128", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062833995, 35.057504252], [140.062748418, 35.057549306], [140.062863061, 35.057577865], [140.062833995, 35.057504252]]]}}, {"id": "33129", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066938612, 35.057963613], [140.066955746, 35.057867586], [140.06690131, 35.057957919], [140.066938612, 35.057963613]]]}}, {"id": "33130", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053310856, 35.057276586], [140.05326856, 35.057362387], [140.053359468, 35.057300108], [140.053310856, 35.057276586]]]}}, {"id": "33131", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064619689, 35.056614838], [140.064702023, 35.056536946], [140.0645707, 35.056537198], [140.064619689, 35.056614838]]]}}, {"id": "33132", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.156769196, 35.120257441], [140.156679196, 35.120331865], [140.156728003, 35.120383468], [140.156769196, 35.120257441]]]}}, {"id": "33133", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.178955162, 35.117917108], [140.178846719, 35.117906252], [140.1790062, 35.117994748], [140.178955162, 35.117917108]]]}}, {"id": "33134", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.074562866, 35.05585164], [140.074591751, 35.055929414], [140.074646744, 35.05585636], [140.074562866, 35.05585164]]]}}, {"id": "33135", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058603385, 35.056876721], [140.058671997, 35.056955613], [140.058678664, 35.056899225], [140.058603385, 35.056876721]]]}}, {"id": "33136", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063194112, 35.057410081], [140.063133839, 35.057342973], [140.063163333, 35.057420532], [140.063194112, 35.057410081]]]}}, {"id": "33137", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.167376031, 35.123060333], [140.167363671, 35.123148171], [140.167425162, 35.123166135], [140.167376031, 35.123060333]]]}}, {"id": "33138", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069776161, 35.058029613], [140.069779948, 35.057896198], [140.069746355, 35.058041468], [140.069776161, 35.058029613]]]}}, {"id": "33139", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067557004, 35.057606892], [140.067507445, 35.057527225], [140.067485863, 35.057572865], [140.067557004, 35.057606892]]]}}, {"id": "33140", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052962192, 35.057671694], [140.052897523, 35.057755721], [140.053012892, 35.057686198], [140.052962192, 35.057671694]]]}}, {"id": "33141", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064219805, 35.056705802], [140.064153606, 35.056759387], [140.064223943, 35.056782252], [140.064219805, 35.056705802]]]}}, {"id": "33142", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063518495, 35.057213505], [140.063429883, 35.057278838], [140.063467471, 35.057310775], [140.063518495, 35.057213505]]]}}, {"id": "33143", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.100799922, 35.081105586], [140.100886744, 35.081136027], [140.100888249, 35.081070586], [140.100799922, 35.081105586]]]}}, {"id": "33144", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069564137, 35.058220586], [140.069630246, 35.058302054], [140.069679831, 35.058313306], [140.069662335, 35.058211748], [140.069564137, 35.058220586]]]}}, {"id": "33145", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064052802, 35.056967027], [140.063969805, 35.056927865], [140.0639562, 35.05696036], [140.064052802, 35.056967027]]]}}, {"id": "33146", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053013645, 35.051612027], [140.052951971, 35.051674252], [140.053047808, 35.051668414], [140.053013645, 35.051612027]]]}}, {"id": "33147", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.060537977, 35.058672721], [140.06048642, 35.058827694], [140.060569079, 35.058670054], [140.060537977, 35.058672721]]]}}, {"id": "33148", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069599339, 35.058072946], [140.069642827, 35.058173919], [140.069664358, 35.058114468], [140.069599339, 35.058072946]]]}}, {"id": "33149", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.181519689, 35.117874225], [140.181473748, 35.117904468], [140.181513191, 35.117914613], [140.181519689, 35.117874225]]]}}, {"id": "33150", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065851362, 35.058505505], [140.065766693, 35.058533279], [140.065805837, 35.058575468], [140.065851362, 35.058505505]]]}}, {"id": "33151", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042161414, 35.053182414], [140.04208, 35.053243775], [140.042163087, 35.053232441], [140.042161414, 35.053182414]]]}}, {"id": "33152", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063034163, 35.05772736], [140.062976498, 35.057647775], [140.062920415, 35.057707027], [140.063034163, 35.05772736]]]}}, {"id": "33153", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045807328, 35.054797441], [140.045750947, 35.054862613], [140.045751025, 35.054945559], [140.045807328, 35.054797441]]]}}, {"id": "33154", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06758192, 35.057498748], [140.067512114, 35.057437252], [140.067490026, 35.057497946], [140.06758192, 35.057498748]]]}}, {"id": "33155", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.044348054, 35.048844586], [140.044334449, 35.048743198], [140.044300272, 35.048771252], [140.044348054, 35.048844586]]]}}, {"id": "33156", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184131997, 35.118070054], [140.184117419, 35.118176027], [140.18415214, 35.118164279], [140.184131997, 35.118070054]]]}}, {"id": "33157", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.048840921, 35.055031333], [140.048905642, 35.055084775], [140.048902698, 35.055016], [140.048840921, 35.055031333]]]}}, {"id": "33158", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.181886861, 35.117555414], [140.181872166, 35.117606559], [140.181923022, 35.117620468], [140.181886861, 35.117555414]]]}}, {"id": "33159", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.159061829, 35.119877198], [140.158994578, 35.119878441], [140.159014034, 35.119965225], [140.159061829, 35.119877198]]]}}, {"id": "33160", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069110752, 35.057593414], [140.069031284, 35.057669667], [140.069119689, 35.057611721], [140.069110752, 35.057593414]]]}}, {"id": "33161", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.184202892, 35.118151252], [140.184165162, 35.118157865], [140.184252503, 35.118229892], [140.184202892, 35.118151252]]]}}, {"id": "33162", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.194603061, 35.123000198], [140.194578521, 35.123063919], [140.194654812, 35.123043865], [140.194603061, 35.123000198]]]}}, {"id": "33163", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042106161, 35.053313586], [140.042054254, 35.053370468], [140.042086719, 35.053386108], [140.042106161, 35.053313586]]]}}, {"id": "33164", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.07026594, 35.05763364], [140.070209468, 35.057596973], [140.0701893, 35.057633775], [140.07026594, 35.05763364]]]}}, {"id": "33165", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.165505577, 35.122795441], [140.165504916, 35.122853468], [140.165551089, 35.122845306], [140.165505577, 35.122795441]]]}}, {"id": "33166", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.167643748, 35.123305333], [140.167522283, 35.12333164], [140.167658275, 35.123314387], [140.167643748, 35.123305333]]]}}, {"id": "33167", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052223165, 35.057584946], [140.052137445, 35.057590333], [140.052153061, 35.057609333], [140.052223165, 35.057584946]]]}}, {"id": "33168", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052635668, 35.057650468], [140.052674228, 35.057725505], [140.052694643, 35.057689225], [140.052635668, 35.057650468]]]}}, {"id": "33169", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053933307, 35.05819964], [140.053978392, 35.058254721], [140.054002114, 35.058186333], [140.053933307, 35.05819964]]]}}, {"id": "33170", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062843554, 35.057267694], [140.062847613, 35.057349559], [140.062890532, 35.057366135], [140.062843554, 35.057267694]]]}}, {"id": "33171", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.159278003, 35.120159135], [140.159331479, 35.120227306], [140.159331505, 35.120152667], [140.159278003, 35.120159135]]]}}, {"id": "33172", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.044998612, 35.04926736], [140.045005551, 35.049165973], [140.044978054, 35.049177081], [140.044998612, 35.04926736]]]}}, {"id": "33173", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.071085058, 35.057504387], [140.071116031, 35.057558946], [140.071157639, 35.05754464], [140.071085058, 35.057504387]]]}}, {"id": "33174", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.179571608, 35.118454333], [140.179509559, 35.118364279], [140.179491219, 35.118360721], [140.179571608, 35.118454333]]]}}, {"id": "33175", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052121115, 35.057512919], [140.052082361, 35.057576198], [140.052144942, 35.057529027], [140.052121115, 35.057512919]]]}}, {"id": "33176", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.044855279, 35.049182919], [140.044827782, 35.04909264], [140.044834721, 35.049188468], [140.044855279, 35.049182919]]]}}, {"id": "33177", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.05875192, 35.057744054], [140.05866083, 35.057827171], [140.058657613, 35.057857838], [140.05875192, 35.057744054]]]}}, {"id": "33178", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042279222, 35.053513505], [140.042264189, 35.053464667], [140.042242309, 35.053519333], [140.042279222, 35.053513505]]]}}, {"id": "33179", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067451608, 35.057905225], [140.067362283, 35.057866892], [140.067454475, 35.057942532], [140.067451608, 35.057905225]]]}}, {"id": "33180", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.070257756, 35.057496892], [140.07021939, 35.057532505], [140.070300558, 35.057552081], [140.070257756, 35.057496892]]]}}, {"id": "33181", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06746358, 35.057796748], [140.067397977, 35.057775414], [140.067459364, 35.057814613], [140.06746358, 35.057796748]]]}}, {"id": "33182", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069293165, 35.058388081], [140.069331894, 35.058468505], [140.069319754, 35.058332225], [140.069293165, 35.058388081]]]}}, {"id": "33183", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062977056, 35.057301694], [140.062916667, 35.057346171], [140.062982023, 35.057357135], [140.062977056, 35.057301694]]]}}, {"id": "33184", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064757523, 35.056590027], [140.064723281, 35.056536919], [140.064720363, 35.056548279], [140.064757523, 35.056590027]]]}}, {"id": "33185", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064277082, 35.056921973], [140.064217445, 35.056922441], [140.064219416, 35.056997973], [140.064277082, 35.056921973]]]}}, {"id": "33186", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057525162, 35.057750306], [140.057445837, 35.057808775], [140.057468664, 35.057818108], [140.057525162, 35.057750306]]]}}, {"id": "33187", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067352892, 35.057887198], [140.067298807, 35.057909919], [140.06734345, 35.057954838], [140.067352892, 35.057887198]]]}}, {"id": "33188", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.05777847, 35.056572802], [140.057695863, 35.056589721], [140.057773969, 35.05660536], [140.05777847, 35.056572802]]]}}, {"id": "33189", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069367665, 35.058527108], [140.069411608, 35.058512414], [140.06939808, 35.058428441], [140.069367665, 35.058527108]]]}}, {"id": "33190", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.066592698, 35.058376171], [140.066537198, 35.058410802], [140.066582412, 35.058433973], [140.066592698, 35.058376171]]]}}, {"id": "33191", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.194918586, 35.122874135], [140.194923645, 35.122821748], [140.194897056, 35.122839748], [140.194918586, 35.122874135]]]}}, {"id": "33192", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.070967562, 35.057508586], [140.070919222, 35.05755564], [140.070939637, 35.057567694], [140.070967562, 35.057508586]]]}}, {"id": "33193", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053127834, 35.057466667], [140.053054189, 35.057517108], [140.053064553, 35.057541613], [140.053127834, 35.057466667]]]}}, {"id": "33194", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.054313385, 35.058080108], [140.054243139, 35.058126586], [140.054240999, 35.058151468], [140.054313385, 35.058080108]]]}}, {"id": "33195", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.056824137, 35.057787559], [140.056851505, 35.057843946], [140.056888366, 35.057822892], [140.056824137, 35.057787559]]]}}, {"id": "33196", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069025447, 35.058043054], [140.068951167, 35.058062667], [140.068965772, 35.058076721], [140.069025447, 35.058043054]]]}}, {"id": "33197", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057873865, 35.056660775], [140.057790921, 35.056629468], [140.057863606, 35.056675505], [140.057873865, 35.056660775]]]}}, {"id": "33198", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067855253, 35.057818802], [140.067871855, 35.057878973], [140.067895525, 35.05787136], [140.067855253, 35.057818802]]]}}, {"id": "33199", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.194797004, 35.122969414], [140.194812776, 35.122916], [140.194763671, 35.122950054], [140.194797004, 35.122969414]]]}}, {"id": "33200", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045346472, 35.054842946], [140.04531428, 35.054938108], [140.045329728, 35.054943135], [140.045346472, 35.054842946]]]}}, {"id": "33201", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.057474916, 35.057700468], [140.057423943, 35.057737252], [140.057464423, 35.057743838], [140.057474916, 35.057700468]]]}}, {"id": "33202", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.063426498, 35.057127225], [140.0634693, 35.057146441], [140.063442166, 35.057088171], [140.063426498, 35.057127225]]]}}, {"id": "33203", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065311582, 35.058635919], [140.06527594, 35.058710559], [140.065298664, 35.058720775], [140.065311582, 35.058635919]]]}}, {"id": "33204", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067780661, 35.057538748], [140.067736667, 35.057601865], [140.067747782, 35.057615171], [140.067780661, 35.057538748]]]}}, {"id": "33205", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065278249, 35.058755], [140.065242335, 35.058805721], [140.065263774, 35.058827505], [140.065278249, 35.058755]]]}}, {"id": "33206", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.067035188, 35.057814973], [140.067059883, 35.057860441], [140.067072023, 35.057816532], [140.067035188, 35.057814973]]]}}, {"id": "33207", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058702049, 35.05775364], [140.058640636, 35.057747333], [140.05862061, 35.057791919], [140.058702049, 35.05775364]]]}}, {"id": "33208", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042351479, 35.053348694], [140.042307951, 35.053381586], [140.042280506, 35.053414333], [140.042351479, 35.053348694]]]}}, {"id": "33209", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.179015811, 35.118788919], [140.179091284, 35.118813838], [140.179017173, 35.118775919], [140.179015811, 35.118788919]]]}}, {"id": "33210", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.049254254, 35.055127946], [140.049273022, 35.05518236], [140.049291894, 35.055145559], [140.049254254, 35.055127946]]]}}, {"id": "33211", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064219948, 35.058749694], [140.06421061, 35.058782532], [140.064275525, 35.058780414], [140.064219948, 35.058749694]]]}}, {"id": "33212", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0567007, 35.057909505], [140.056665422, 35.057955252], [140.056715032, 35.057932279], [140.0567007, 35.057909505]]]}}, {"id": "33213", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.065671855, 35.05829964], [140.065700467, 35.058339135], [140.065692866, 35.058286865], [140.065671855, 35.05829964]]]}}, {"id": "33214", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0426338, 35.053578694], [140.042623917, 35.053520387], [140.042622309, 35.053587027], [140.0426338, 35.053578694]]]}}, {"id": "33215", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069171894, 35.058302225], [140.06920917, 35.058345505], [140.069208755, 35.058272225], [140.069171894, 35.058302225]]]}}, {"id": "33216", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0643393, 35.059123865], [140.064315058, 35.059120306], [140.06428786, 35.059150802], [140.0643393, 35.059123865]]]}}, {"id": "33217", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045495914, 35.054809414], [140.045459585, 35.054878919], [140.045521219, 35.054804054], [140.045495914, 35.054809414]]]}}, {"id": "33218", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069207471, 35.057977973], [140.069187977, 35.057986667], [140.069263995, 35.058002838], [140.069207471, 35.057977973]]]}}, {"id": "33219", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.04906834, 35.055009468], [140.049109883, 35.055013919], [140.049095253, 35.054991225], [140.04906834, 35.055009468]]]}}, {"id": "33220", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.058594695, 35.057865252], [140.058598521, 35.057901198], [140.058611608, 35.057869721], [140.058594695, 35.057865252]]]}}, {"id": "33221", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064113839, 35.056993306], [140.064085162, 35.057015919], [140.064123281, 35.056998892], [140.064113839, 35.056993306]]]}}, {"id": "33222", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.062868586, 35.057671865], [140.062883917, 35.057711414], [140.062905227, 35.057682532], [140.062868586, 35.057671865]]]}}, {"id": "33223", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.045439144, 35.054940333], [140.045403191, 35.054948505], [140.045414747, 35.054964], [140.045439144, 35.054940333]]]}}, {"id": "33224", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069244034, 35.058150559], [140.069234332, 35.058095946], [140.069207977, 35.05811464], [140.069244034, 35.058150559]]]}}, {"id": "33225", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069536355, 35.058055054], [140.069504695, 35.05809864], [140.069535863, 35.058107613], [140.069536355, 35.058055054]]]}}, {"id": "33226", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.048666252, 35.055102054], [140.048675772, 35.055143306], [140.048695772, 35.055122802], [140.048666252, 35.055102054]]]}}, {"id": "33227", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042719831, 35.053565586], [140.042698949, 35.053544414], [140.0426862, 35.053574387], [140.042719831, 35.053565586]]]}}, {"id": "33228", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.048031115, 35.055074946], [140.048037886, 35.055108387], [140.048069831, 35.055089667], [140.048031115, 35.055074946]]]}}, {"id": "33229", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.06736642, 35.057898613], [140.06739192, 35.057956441], [140.067369559, 35.057887973], [140.06736642, 35.057898613]]]}}, {"id": "33230", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069460778, 35.057924306], [140.069397198, 35.057892252], [140.069461025, 35.057936559], [140.069460778, 35.057924306]]]}}, {"id": "33231", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.049261115, 35.055074306], [140.049263943, 35.05511036], [140.049292335, 35.055102748], [140.049261115, 35.055074306]]]}}, {"id": "33232", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.049163139, 35.054998748], [140.049196524, 35.055022505], [140.049196226, 35.054996081], [140.049163139, 35.054998748]]]}}, {"id": "33233", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069293865, 35.058138198], [140.069332192, 35.058163171], [140.069335447, 35.058147667], [140.069293865, 35.058138198]]]}}, {"id": "33234", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.069112192, 35.058355973], [140.069072387, 35.058353171], [140.069101388, 35.058379441], [140.069112192, 35.058355973]]]}}, {"id": "33235", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.064347717, 35.059115802], [140.064356913, 35.059034748], [140.064346835, 35.059033252], [140.064347717, 35.059115802]]]}}, {"id": "33236", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鴨川市", "N03_005": null, "N03_007": "12223"}, "geometry": {"type": "Polygon", "coordinates": [[[140.042699559, 35.053525054], [140.04267131, 35.053538613], [140.042669948, 35.053561505], [140.042699559, 35.053525054]]]}}, {"id": "33237", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "鎌ケ谷市", "N03_005": null, "N03_007": "12224"}, "geometry": {"type": "Polygon", "coordinates": [[[140.02884489, 35.764450613], [140.013432581, 35.739863414], [140.009504189, 35.738146748], [140.006432023, 35.742461225], [140.006986744, 35.743437892], [139.993138911, 35.741781838], [139.982851971, 35.744852973], [139.983126226, 35.752478532], [139.979175616, 35.749680468], [139.972843087, 35.748778], [139.984319559, 35.776165441], [139.968668418, 35.778191586], [140.001930195, 35.803928946], [140.0284007, 35.798762225], [140.01518572, 35.767946225], [140.02884489, 35.764450613]], [[139.993697419, 35.755501279], [139.992786693, 35.742399333], [139.999532361, 35.750585694], [139.993697419, 35.755501279]], [[139.977939274, 35.75366436], [139.979176615, 35.750896054], [139.982581219, 35.752562135], [139.977939274, 35.75366436]]]}}, {"id": "33238", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916578003, 35.272129559], [139.845931025, 35.375341423], [139.887519663, 35.361489649], [139.898950363, 35.337342279], [139.964272776, 35.331527171], [139.980894034, 35.315128027], [139.997021284, 35.315559387], [140.001223411, 35.333098775], [140.015506005, 35.313466559], [140.051596809, 35.35534836], [140.084037665, 35.346917171], [140.105398301, 35.313800171], [140.122141362, 35.313710775], [140.122212555, 35.24769564], [140.162164721, 35.18295936], [140.121110947, 35.190889135], [140.090931582, 35.168351532], [139.992965422, 35.155542613], [140.000895136, 35.172351225], [139.978085032, 35.243911721], [139.952197808, 35.240681838], [139.956203748, 35.257182892], [139.916578003, 35.272129559]]]}}, {"id": "33239", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.857059494, 35.341611802], [139.853884773, 35.341013225], [139.855996719, 35.342590973], [139.857059494, 35.341611802]]]}}, {"id": "33240", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.882095175, 35.376873486], [139.869658457, 35.376817108], [139.869655616, 35.376878135], [139.882095175, 35.376873486]]]}}, {"id": "33241", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.861029027, 35.376886171], [139.869327549, 35.376816505], [139.861028573, 35.376820459], [139.861029027, 35.376886171]]]}}, {"id": "33242", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.858060026, 35.339530973], [139.858793113, 35.340274306], [139.858662802, 35.339540973], [139.858060026, 35.339530973]]]}}, {"id": "33243", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.85451585, 35.354245568], [139.855029689, 35.353389315], [139.854484332, 35.354062135], [139.85451585, 35.354245568]]]}}, {"id": "33244", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.856282802, 35.351800324], [139.856715785, 35.351129766], [139.856260674, 35.351789514], [139.856282802, 35.351800324]]]}}, {"id": "33245", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "君津市", "N03_005": null, "N03_007": "12225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.852264617, 35.37258145], [139.852772023, 35.372334739], [139.852450013, 35.372363279], [139.852264617, 35.37258145]]]}}, {"id": "33246", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818738625, 35.331265414], [139.818779429, 35.331286243], [139.82324297, 35.326081414], [139.821270999, 35.323310793], [139.840276096, 35.334415757], [139.821673995, 35.346344018], [139.837765616, 35.358939063], [139.882575227, 35.319999919], [139.916578003, 35.272129559], [139.956203748, 35.257182892], [139.952197808, 35.240681838], [139.976734228, 35.245808667], [139.997368275, 35.192505198], [139.992965422, 35.155542613], [139.931194112, 35.13915836], [139.854355746, 35.164277505], [139.817728755, 35.155134306], [139.823394189, 35.197214225], [139.870739105, 35.228592], [139.85180118, 35.286507378], [139.783912944, 35.312840342], [139.819736148, 35.316475117], [139.81574655, 35.320015045], [139.821908612, 35.327152369], [139.818738625, 35.331265414]], [[139.856594747, 35.340033775], [139.855996719, 35.342590973], [139.853884773, 35.341013225], [139.856594747, 35.340033775]], [[139.858662802, 35.339540973], [139.858066446, 35.34016236], [139.858060026, 35.339530973], [139.858662802, 35.339540973]]]}}, {"id": "33247", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742966407, 35.310861658], [139.739577108, 35.312080874], [139.744475901, 35.312658514], [139.742966407, 35.310861658]]]}}, {"id": "33248", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767921751, 35.314394198], [139.770389351, 35.315442153], [139.770808223, 35.314354982], [139.767921751, 35.314394198]]]}}, {"id": "33249", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819594721, 35.301527991], [139.824801012, 35.300932901], [139.824965201, 35.300672126], [139.819594721, 35.301527991]]]}}, {"id": "33250", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81562524, 35.302347505], [139.817740117, 35.301717703], [139.817787069, 35.301702739], [139.81562524, 35.302347505]]]}}, {"id": "33251", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818406887, 35.301205414], [139.818392905, 35.301276081], [139.819546783, 35.300849937], [139.818406887, 35.301205414]]]}}, {"id": "33252", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816117198, 35.184930559], [139.816426083, 35.184654441], [139.81599358, 35.184586667], [139.816117198, 35.184930559]]]}}, {"id": "33253", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820590052, 35.163932378], [139.819862542, 35.164145036], [139.821244591, 35.164225414], [139.820590052, 35.163932378]]]}}, {"id": "33254", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819859222, 35.348936946], [139.819937562, 35.348934523], [139.823068638, 35.347747387], [139.819859222, 35.348936946]]]}}, {"id": "33255", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.847508171, 35.212509306], [139.847377613, 35.212351532], [139.847329559, 35.212379586], [139.847508171, 35.212509306]]]}}, {"id": "33256", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815411089, 35.170732523], [139.815207782, 35.170678856], [139.815255409, 35.170781261], [139.815411089, 35.170732523]]]}}, {"id": "33257", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816897108, 35.160642333], [139.816773774, 35.160552054], [139.816753217, 35.160619838], [139.816897108, 35.160642333]]]}}, {"id": "33258", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81714406, 35.160169], [139.817047665, 35.160251505], [139.817164617, 35.160219838], [139.81714406, 35.160169]]]}}, {"id": "33259", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.839025357, 35.207166838], [139.838943139, 35.207257108], [139.839025357, 35.207228775], [139.839025357, 35.207166838]]]}}, {"id": "33260", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816918223, 35.160042613], [139.816787393, 35.160090108], [139.816936005, 35.160102333], [139.816918223, 35.160042613]]]}}, {"id": "33261", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832128145, 35.204140468], [139.832052581, 35.204213802], [139.832121193, 35.204202414], [139.832128145, 35.204140468]]]}}, {"id": "33262", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815746641, 35.185217775], [139.815671089, 35.185178333], [139.815684695, 35.185257225], [139.815746641, 35.185217775]]]}}, {"id": "33263", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832560636, 35.204670198], [139.832491751, 35.204608252], [139.832478145, 35.204658802], [139.832560636, 35.204670198]]]}}, {"id": "33264", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832471193, 35.204472973], [139.832478145, 35.204394081], [139.832430078, 35.204427973], [139.832471193, 35.204472973]]]}}, {"id": "33265", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832073139, 35.204388532], [139.832045642, 35.204326306], [139.832011479, 35.204371586], [139.832073139, 35.204388532]]]}}, {"id": "33266", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815780804, 35.184980838], [139.815794695, 35.184918892], [139.815760246, 35.184969721], [139.815780804, 35.184980838]]]}}, {"id": "33267", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富津市", "N03_005": null, "N03_007": "12226"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831391725, 35.204117694], [139.831336719, 35.204076586], [139.831352555, 35.20412964], [139.831391725, 35.204117694]]]}}, {"id": "33268", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "浦安市", "N03_005": null, "N03_007": "12227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.874778184, 35.625], [139.888352438, 35.672740865], [139.939509222, 35.641080973], [139.90008511, 35.631678694], [139.897569416, 35.616671991], [139.874778184, 35.625]]]}}, {"id": "33269", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "四街道市", "N03_005": null, "N03_007": "12228"}, "geometry": {"type": "Polygon", "coordinates": [[[140.212440441, 35.657518721], [140.189709274, 35.625530748], [140.19646192, 35.641152414], [140.157801167, 35.646346667], [140.152864137, 35.679015532], [140.141306744, 35.667616081], [140.1376938, 35.683567946], [140.153991946, 35.682539414], [140.148795694, 35.700844586], [140.160980117, 35.691151586], [140.205089079, 35.707318919], [140.212440441, 35.657518721]]]}}, {"id": "33270", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "袖ケ浦市", "N03_005": null, "N03_007": "12229"}, "geometry": {"type": "Polygon", "coordinates": [[[139.996998197, 35.350000135], [140.00445022, 35.385993135], [139.992223281, 35.393702586], [140.011753995, 35.404335919], [139.938402387, 35.421396586], [139.951092283, 35.456138171], [139.962701479, 35.458757802], [139.964728171, 35.452982694], [139.955143385, 35.443803306], [139.974460558, 35.448472198], [139.965690078, 35.468514], [139.9820262, 35.474791865], [139.989188171, 35.454286775], [139.99336834, 35.453239468], [140.002539948, 35.482552414], [140.039788003, 35.445545532], [140.032622555, 35.423570027], [140.087714695, 35.427461865], [140.092386355, 35.389868], [140.047599222, 35.380590306], [140.012944643, 35.343605108], [139.996998197, 35.350000135]]]}}, {"id": "33271", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "袖ケ浦市", "N03_005": null, "N03_007": "12229"}, "geometry": {"type": "Polygon", "coordinates": [[[139.998405772, 35.467090198], [139.998445616, 35.467071946], [139.998425188, 35.467062865], [139.998405772, 35.467090198]]]}}, {"id": "33272", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "袖ケ浦市", "N03_005": null, "N03_007": "12229"}, "geometry": {"type": "Polygon", "coordinates": [[[139.998562088, 35.46690036], [139.998599105, 35.46688436], [139.99858428, 35.466874532], [139.998562088, 35.46690036]]]}}, {"id": "33273", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "八街市", "N03_005": null, "N03_007": "12230"}, "geometry": {"type": "Polygon", "coordinates": [[[140.274769883, 35.582138532], [140.248775305, 35.64984464], [140.258431556, 35.661304559], [140.281349611, 35.64900664], [140.257154643, 35.665154559], [140.27256345, 35.682167505], [140.285758418, 35.668248532], [140.279766031, 35.688427721], [140.30128345, 35.699581748], [140.288856744, 35.70384464], [140.301447691, 35.716059919], [140.35446572, 35.656790225], [140.326332944, 35.657914973], [140.329194617, 35.631514559], [140.307748392, 35.624695198], [140.314764306, 35.604139694], [140.33016572, 35.606265468], [140.311511219, 35.60161], [140.305845577, 35.594236721], [140.32302428, 35.600998306], [140.338604137, 35.586230252], [140.292117056, 35.572586838], [140.274769883, 35.582138532]]]}}, {"id": "33274", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "八街市", "N03_005": null, "N03_007": "12230"}, "geometry": {"type": "Polygon", "coordinates": [[[140.326901582, 35.685657027], [140.328341025, 35.686572865], [140.328806031, 35.686452306], [140.327277134, 35.68554536], [140.326901582, 35.685657027]]]}}, {"id": "33275", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "印西市", "N03_005": null, "N03_007": "12231"}, "geometry": {"type": "Polygon", "coordinates": [[[140.256478249, 35.739569225], [140.209124838, 35.76624564], [140.1898293, 35.745839333], [140.167533385, 35.74995436], [140.096909339, 35.782904532], [140.111105279, 35.79945864], [140.087061556, 35.816298333], [140.117976913, 35.851081505], [140.231882218, 35.841170973], [140.250401699, 35.820937694], [140.256478249, 35.739569225]], [[140.24582192, 35.819767973], [140.247133307, 35.817945468], [140.248253606, 35.819471027], [140.24582192, 35.819767973]]]}}, {"id": "33276", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "白井市", "N03_005": null, "N03_007": "12232"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016487588, 35.766666198], [140.056170052, 35.835734532], [140.086240246, 35.832303865], [140.111105279, 35.79945864], [140.096909339, 35.782904532], [140.070449248, 35.799631198], [140.061529027, 35.776128225], [140.016487588, 35.766666198]]]}}, {"id": "33277", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "富里市", "N03_005": null, "N03_007": "12233"}, "geometry": {"type": "Polygon", "coordinates": [[[140.405305227, 35.690256613], [140.327063217, 35.683681198], [140.320484423, 35.708341387], [140.30883572, 35.703337279], [140.288089974, 35.730537748], [140.309951803, 35.739497135], [140.301512412, 35.747003559], [140.322412529, 35.777576], [140.366997886, 35.748359252], [140.365856641, 35.725909108], [140.386257951, 35.713216586], [140.369901388, 35.697079892], [140.405305227, 35.690256613]], [[140.326901582, 35.685657027], [140.328418249, 35.686430919], [140.328806031, 35.686452306], [140.328148521, 35.686501468], [140.326901582, 35.685657027]]]}}, {"id": "33278", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829785188, 34.912198559], [139.893829339, 34.935286306], [139.895867912, 34.924039613], [139.918496446, 34.927056468], [139.926868949, 34.940659775], [139.90586655, 34.947918198], [139.904095525, 34.966549586], [139.942446226, 35.003334721], [139.933484617, 35.026070468], [139.882640415, 35.00580836], [139.892877393, 35.019825225], [139.881478781, 35.022411613], [139.883238885, 35.056402225], [139.853219364, 35.032114108], [139.810451699, 35.037492297], [139.832528431, 35.045159901], [139.819121427, 35.065812459], [139.841877108, 35.082905982], [139.836908106, 35.101101441], [139.9185493, 35.113387613], [139.930450752, 35.128720081], [139.983100026, 35.105257892], [139.997811971, 35.114811721], [139.996297471, 35.093149586], [140.020199974, 35.088631505], [140.037676563, 35.052018856], [139.978795499, 35.008367072], [139.960692633, 34.937577937], [139.88859524, 34.899396243], [139.829785188, 34.912198559]]]}}, {"id": "33279", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.892027938, 34.903491721], [139.890345966, 34.904311252], [139.893260895, 34.904921775], [139.892027938, 34.903491721]]]}}, {"id": "33280", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.897716083, 34.902192135], [139.895793684, 34.903163234], [139.898576485, 34.902192126], [139.897716083, 34.902192135]]]}}, {"id": "33281", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.89293035, 34.904227883], [139.892964423, 34.903214054], [139.892188768, 34.903307739], [139.89293035, 34.904227883]]]}}, {"id": "33282", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.902717082, 34.904531991], [139.901218988, 34.904079568], [139.902054228, 34.904599532], [139.902717082, 34.904531991]]]}}, {"id": "33283", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.926161323, 34.909337721], [139.926599857, 34.909896153], [139.927294449, 34.90989545], [139.926161323, 34.909337721]]]}}, {"id": "33284", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.89583118, 34.903262108], [139.894667302, 34.903375387], [139.894820091, 34.903560027], [139.89583118, 34.903262108]]]}}, {"id": "33285", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.928824955, 34.908566468], [139.929751154, 34.910494018], [139.929836576, 34.909521874], [139.928824955, 34.908566468]]]}}, {"id": "33286", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965367056, 34.942781919], [139.965991219, 34.94313164], [139.966049274, 34.942999135], [139.965367056, 34.942781919]]]}}, {"id": "33287", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964164202, 34.943103216], [139.964407017, 34.942683135], [139.964098236, 34.942656243], [139.964164202, 34.943103216]]]}}, {"id": "33288", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819711518, 35.028825081], [139.82065703, 35.028461802], [139.819693878, 35.028779198], [139.819711518, 35.028825081]]]}}, {"id": "33289", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.884713658, 34.903090351], [139.885532257, 34.903248486], [139.885248651, 34.902766667], [139.884713658, 34.903090351]]]}}, {"id": "33290", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.902255746, 34.90414236], [139.903001012, 34.904091811], [139.902249909, 34.903976495], [139.902255746, 34.90414236]]]}}, {"id": "33291", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.953631414, 34.928087468], [139.954059754, 34.928263586], [139.953345577, 34.927932468], [139.953631414, 34.928087468]]]}}, {"id": "33292", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920740026, 34.906599495], [139.920914189, 34.906189495], [139.920553359, 34.906420054], [139.920740026, 34.906599495]]]}}, {"id": "33293", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929458262, 34.91102018], [139.931433567, 34.911202234], [139.931434695, 34.911134622], [139.929458262, 34.91102018]]]}}, {"id": "33294", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895478405, 34.902103604], [139.896884864, 34.901579748], [139.89609786, 34.90168355], [139.895478405, 34.902103604]]]}}, {"id": "33295", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.909139131, 34.905339315], [139.908399805, 34.904956189], [139.908346278, 34.90504745], [139.909139131, 34.905339315]]]}}, {"id": "33296", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971173113, 34.984821459], [139.972472542, 34.985292982], [139.970943969, 34.984170135], [139.971173113, 34.984821459]]]}}, {"id": "33297", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959609533, 34.935771081], [139.959203943, 34.935429414], [139.959071725, 34.935670532], [139.959609533, 34.935771081]]]}}, {"id": "33298", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887328573, 34.900040838], [139.887517678, 34.899917072], [139.887040052, 34.89941155], [139.887328573, 34.900040838]]]}}, {"id": "33299", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.915072957, 34.906641631], [139.91500786, 34.906212207], [139.914734021, 34.906382595], [139.915072957, 34.906641631]]]}}, {"id": "33300", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.884269948, 34.903099099], [139.883978599, 34.902836171], [139.883725318, 34.902708532], [139.884269948, 34.903099099]]]}}, {"id": "33301", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898460052, 34.900944171], [139.898229313, 34.900841252], [139.897910973, 34.901078604], [139.898460052, 34.900944171]]]}}, {"id": "33302", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.950605305, 34.926738027], [139.950992529, 34.926685252], [139.950688366, 34.926616919], [139.950605305, 34.926738027]]]}}, {"id": "33303", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887463956, 34.900093153], [139.88666559, 34.899695856], [139.886911479, 34.900240793], [139.887463956, 34.900093153]]]}}, {"id": "33304", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966297912, 34.945385802], [139.966043748, 34.944973586], [139.965860415, 34.945048865], [139.966297912, 34.945385802]]]}}, {"id": "33305", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.937644449, 34.915594162], [139.938072776, 34.915468054], [139.937552503, 34.915434441], [139.937644449, 34.915594162]]]}}, {"id": "33306", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942052503, 34.917013054], [139.942542776, 34.916866387], [139.941999728, 34.916852495], [139.942052503, 34.917013054]]]}}, {"id": "33307", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.906026226, 34.903862505], [139.90663546, 34.90380255], [139.905974553, 34.903697658], [139.906026226, 34.903862505]]]}}, {"id": "33308", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.923393515, 34.909668883], [139.924203152, 34.909939676], [139.924492815, 34.909896973], [139.923393515, 34.909668883]]]}}, {"id": "33309", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954349468, 34.928910252], [139.954666135, 34.928859414], [139.954383917, 34.928610252], [139.954349468, 34.928910252]]]}}, {"id": "33310", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.804410467, 35.066711306], [139.804073528, 35.066965748], [139.804245188, 35.067016306], [139.804410467, 35.066711306]]]}}, {"id": "33311", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972321414, 34.979871946], [139.972196135, 34.980195829], [139.972410584, 34.980215279], [139.972321414, 34.979871946]]]}}, {"id": "33312", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965357938, 34.944594054], [139.965268962, 34.944619667], [139.965092957, 34.944918874], [139.965357938, 34.944594054]]]}}, {"id": "33313", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.923126744, 34.909950198], [139.922847471, 34.909955928], [139.923047847, 34.910253189], [139.923126744, 34.909950198]]]}}, {"id": "33314", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930657095, 34.910763676], [139.93055572, 34.910425063], [139.930349429, 34.910478919], [139.930657095, 34.910763676]]]}}, {"id": "33315", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895472853, 34.902299414], [139.896182114, 34.902263441], [139.896343982, 34.902159775], [139.895472853, 34.902299414]]]}}, {"id": "33316", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952767691, 34.929263045], [139.952631284, 34.928791252], [139.952466446, 34.928873], [139.952767691, 34.929263045]]]}}, {"id": "33317", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.905404073, 34.904285856], [139.905509326, 34.90463836], [139.905850636, 34.904525658], [139.905404073, 34.904285856]]]}}, {"id": "33318", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931529235, 34.910884306], [139.930909027, 34.910728586], [139.931521193, 34.91097236], [139.931529235, 34.910884306]]]}}, {"id": "33319", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817010143, 35.03470664], [139.816921803, 35.035091919], [139.817132918, 35.03481164], [139.817010143, 35.03470664]]]}}, {"id": "33320", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820977445, 35.068235171], [139.820619105, 35.068412667], [139.820956057, 35.068392667], [139.820977445, 35.068235171]]]}}, {"id": "33321", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823966887, 34.910494586], [139.823988638, 34.910764306], [139.824453307, 34.910658144], [139.823966887, 34.910494586]]]}}, {"id": "33322", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.882250208, 34.903337928], [139.882484864, 34.90305909], [139.882117185, 34.903038505], [139.882250208, 34.903337928]]]}}, {"id": "33323", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957308794, 34.934823892], [139.957002283, 34.934677982], [139.957366291, 34.935129171], [139.957308794, 34.934823892]]]}}, {"id": "33324", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.86076406, 34.902849081], [139.860850441, 34.902631586], [139.86046655, 34.902706865], [139.86076406, 34.902849081]]]}}, {"id": "33325", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.905290052, 34.904792468], [139.90478738, 34.904706766], [139.904679014, 34.904798865], [139.905290052, 34.904792468]]]}}, {"id": "33326", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832602672, 35.032022198], [139.832252944, 35.032227468], [139.832696278, 35.032119414], [139.832602672, 35.032022198]]]}}, {"id": "33327", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965001855, 34.96004], [139.964861025, 34.959844721], [139.964735188, 34.959985], [139.965001855, 34.96004]]]}}, {"id": "33328", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.915210337, 34.905731748], [139.915281725, 34.905542027], [139.914875888, 34.905623135], [139.915210337, 34.905731748]]]}}, {"id": "33329", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875596485, 34.904013108], [139.875459585, 34.903770387], [139.875244981, 34.903944901], [139.875596485, 34.904013108]]]}}, {"id": "33330", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903087211, 34.904844775], [139.903183528, 34.904600505], [139.902790324, 34.904695297], [139.903087211, 34.904844775]]]}}, {"id": "33331", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887609805, 34.899071072], [139.88803572, 34.899491333], [139.887591686, 34.898967315], [139.887609805, 34.899071072]]]}}, {"id": "33332", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956658353, 34.934614243], [139.956862931, 34.934457802], [139.956719611, 34.934438838], [139.956658353, 34.934614243]]]}}, {"id": "33333", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842122114, 34.902705495], [139.84185572, 34.902545495], [139.841817665, 34.902663829], [139.842122114, 34.902705495]]]}}, {"id": "33334", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964254553, 34.942202748], [139.964579274, 34.942080252], [139.964233165, 34.942119694], [139.964254553, 34.942202748]]]}}, {"id": "33335", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.922851349, 34.910295901], [139.922605383, 34.909909333], [139.92256725, 34.910195207], [139.922851349, 34.910295901]]]}}, {"id": "33336", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959575914, 34.935912468], [139.959702866, 34.936129973], [139.959913139, 34.935872468], [139.959575914, 34.935912468]]]}}, {"id": "33337", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.935675214, 34.914299306], [139.935936005, 34.914644441], [139.936177173, 34.914702387], [139.935675214, 34.914299306]]]}}, {"id": "33338", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932186848, 34.913597505], [139.932365863, 34.913944243], [139.932454228, 34.913529856], [139.932186848, 34.913597505]]]}}, {"id": "33339", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87416725, 34.903080919], [139.874007198, 34.90338018], [139.87430022, 34.903345279], [139.87416725, 34.903080919]]]}}, {"id": "33340", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918350584, 34.905506748], [139.918058949, 34.905294532], [139.917858949, 34.905462027], [139.918350584, 34.905506748]]]}}, {"id": "33341", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963836498, 34.939186919], [139.964127328, 34.939127198], [139.96389703, 34.939032198], [139.963836498, 34.939186919]]]}}, {"id": "33342", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887652607, 34.899264514], [139.887410519, 34.899529477], [139.887770908, 34.899631811], [139.887792918, 34.899478189], [139.887652607, 34.899264514]]]}}, {"id": "33343", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96611428, 34.944415802], [139.965881505, 34.944503027], [139.966205966, 34.944659973], [139.96611428, 34.944415802]]]}}, {"id": "33344", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948422348, 34.927065099], [139.948031012, 34.92704473], [139.94814821, 34.927259982], [139.948422348, 34.927065099]]]}}, {"id": "33345", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.915658392, 34.905519252], [139.916020337, 34.905478694], [139.915483113, 34.905352027], [139.915658392, 34.905519252]]]}}, {"id": "33346", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956325058, 34.930997748], [139.956370052, 34.931324414], [139.956452555, 34.931330532], [139.956325058, 34.930997748]]]}}, {"id": "33347", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826708975, 35.053728342], [139.826582931, 35.053411829], [139.826452036, 35.053457171], [139.826708975, 35.053728342]]]}}, {"id": "33348", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958409222, 34.935949712], [139.958263204, 34.936174144], [139.958569546, 34.936275162], [139.958409222, 34.935949712]]]}}, {"id": "33349", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810144669, 35.037246505], [139.810127756, 35.036974523], [139.810061984, 35.036992631], [139.810144669, 35.037246505]]]}}, {"id": "33350", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829450804, 35.051938153], [139.829017795, 35.051810847], [139.829164786, 35.052088234], [139.829450804, 35.051938153]]]}}, {"id": "33351", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969328885, 34.976318333], [139.969278612, 34.976507775], [139.969429442, 34.976418892], [139.969328885, 34.976318333]]]}}, {"id": "33352", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946132231, 34.923748613], [139.94621297, 34.923718874], [139.946040493, 34.92341127], [139.946132231, 34.923748613]]]}}, {"id": "33353", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96663511, 34.943497198], [139.966602892, 34.943279973], [139.966544838, 34.943444414], [139.96663511, 34.943497198]]]}}, {"id": "33354", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946711388, 34.923269441], [139.946806394, 34.923062495], [139.946672218, 34.923172775], [139.946711388, 34.923269441]]]}}, {"id": "33355", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919093645, 34.906027], [139.918610856, 34.906124532], [139.919103087, 34.906077], [139.919093645, 34.906027]]]}}, {"id": "33356", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.8118693, 35.040680802], [139.811594578, 35.040798865], [139.811723748, 35.040841919], [139.8118693, 35.040680802]]]}}, {"id": "33357", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.845338534, 34.902588396], [139.844999935, 34.902343135], [139.844925642, 34.902393802], [139.845338534, 34.902588396]]]}}, {"id": "33358", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.800337134, 35.061719108], [139.800220752, 35.061972441], [139.800344916, 35.061912171], [139.800337134, 35.061719108]]]}}, {"id": "33359", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.878458444, 34.903437748], [139.878760778, 34.90341609], [139.878737873, 34.903359667], [139.878458444, 34.903437748]]]}}, {"id": "33360", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952945253, 34.929426676], [139.953236342, 34.929151162], [139.953049351, 34.929050739], [139.952945253, 34.929426676]]]}}, {"id": "33361", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82550406, 34.909990577], [139.825245447, 34.910162477], [139.825396252, 34.910227577], [139.82550406, 34.909990577]]]}}, {"id": "33362", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957563969, 34.935549324], [139.957796524, 34.935436135], [139.957530765, 34.935383757], [139.957563969, 34.935549324]]]}}, {"id": "33363", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.92029358, 34.907514802], [139.920349183, 34.907213027], [139.920018885, 34.907488396], [139.92029358, 34.907514802]]]}}, {"id": "33364", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913949118, 34.903290117], [139.914034488, 34.902970297], [139.913852776, 34.903013964], [139.913949118, 34.903290117]]]}}, {"id": "33365", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963192049, 34.940978306], [139.963254838, 34.940653865], [139.96312345, 34.940888865], [139.963192049, 34.940978306]]]}}, {"id": "33366", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967977639, 34.946217198], [139.968073748, 34.946437748], [139.968193748, 34.946335802], [139.967977639, 34.946217198]]]}}, {"id": "33367", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95686061, 34.93382636], [139.956752827, 34.93366664], [139.956590895, 34.933870802], [139.95686061, 34.93382636]]]}}, {"id": "33368", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.935248508, 34.914298495], [139.935055331, 34.914467955], [139.935272879, 34.914449919], [139.935248508, 34.914298495]]]}}, {"id": "33369", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951551971, 34.927409135], [139.951623645, 34.927134694], [139.951447523, 34.927150802], [139.951551971, 34.927409135]]]}}, {"id": "33370", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.035839974, 35.049695441], [140.035531634, 35.049622387], [140.035819416, 35.049751838], [140.035839974, 35.049695441]]]}}, {"id": "33371", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965896044, 34.954535721], [139.965983346, 34.954898829], [139.965990493, 34.954504063], [139.965896044, 34.954535721]]]}}, {"id": "33372", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.005720895, 35.03226564], [140.006124617, 35.03225164], [140.005670376, 35.03216655], [140.005720895, 35.03226564]]]}}, {"id": "33373", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932141115, 34.912737802], [139.931693061, 34.912703081], [139.932201388, 34.912810027], [139.932141115, 34.912737802]]]}}, {"id": "33374", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.939897198, 34.91684418], [139.93971952, 34.916974775], [139.939955785, 34.917035694], [139.939897198, 34.91684418]]]}}, {"id": "33375", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969601673, 34.976779721], [139.969903333, 34.976791667], [139.969666109, 34.976691108], [139.969601673, 34.976779721]]]}}, {"id": "33376", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.905944034, 34.904093063], [139.905917743, 34.904058288], [139.905583943, 34.903995018], [139.905738768, 34.904113739], [139.905944034, 34.904093063]]]}}, {"id": "33377", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836740441, 34.901717973], [139.836763502, 34.901540748], [139.836697393, 34.90158436], [139.836740441, 34.901717973]]]}}, {"id": "33378", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916403943, 34.905401748], [139.91646978, 34.905202865], [139.916206719, 34.905279802], [139.916403943, 34.905401748]]]}}, {"id": "33379", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965448327, 34.945324703], [139.965488379, 34.945041414], [139.965259377, 34.945124414], [139.965448327, 34.945324703]]]}}, {"id": "33380", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946046394, 34.922933613], [139.946001673, 34.922749721], [139.94589, 34.922942775], [139.946046394, 34.922933613]]]}}, {"id": "33381", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957434799, 34.93511855], [139.957705953, 34.935117459], [139.957447406, 34.934982865], [139.957434799, 34.93511855]]]}}, {"id": "33382", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.879047004, 34.903355486], [139.879319429, 34.903473477], [139.879477211, 34.903467919], [139.879047004, 34.903355486]]]}}, {"id": "33383", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965659676, 34.947669847], [139.965313256, 34.947598739], [139.965193061, 34.947610144], [139.965659676, 34.947669847]]]}}, {"id": "33384", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957028664, 34.933630252], [139.957244228, 34.93346136], [139.957012283, 34.933492468], [139.957028664, 34.933630252]]]}}, {"id": "33385", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.933597095, 34.914415703], [139.933556719, 34.914243649], [139.933376018, 34.914410658], [139.933597095, 34.914415703]]]}}, {"id": "33386", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.938033489, 34.914944288], [139.938321997, 34.915054838], [139.938467808, 34.914990613], [139.938168625, 34.914843568], [139.938033489, 34.914944288]]]}}, {"id": "33387", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813366524, 35.036583865], [139.813364812, 35.036405378], [139.813164981, 35.036500631], [139.813366524, 35.036583865]]]}}, {"id": "33388", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965438807, 34.960356946], [139.965157419, 34.960350829], [139.965364643, 34.960472775], [139.965438807, 34.960356946]]]}}, {"id": "33389", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.896952075, 34.904320685], [139.896732127, 34.90431827], [139.897226472, 34.904400234], [139.896952075, 34.904320685]]]}}, {"id": "33390", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964260195, 34.960772495], [139.964075188, 34.960967775], [139.964341855, 34.960839721], [139.964260195, 34.960772495]]]}}, {"id": "33391", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.880883411, 34.903024928], [139.881146005, 34.903162577], [139.881180713, 34.903021748], [139.880883411, 34.903024928]]]}}, {"id": "33392", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967041556, 34.954210802], [139.966991284, 34.954021081], [139.966840441, 34.954148865], [139.967041556, 34.954210802]]]}}, {"id": "33393", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963927302, 34.938872748], [139.963793969, 34.938648306], [139.963690921, 34.938683027], [139.963927302, 34.938872748]]]}}, {"id": "33394", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960751349, 34.938168081], [139.960366744, 34.938074541], [139.960969092, 34.938381856], [139.960751349, 34.938168081]]]}}, {"id": "33395", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972628949, 34.984407775], [139.972634501, 34.984190559], [139.972483113, 34.984343054], [139.972628949, 34.984407775]]]}}, {"id": "33396", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964630389, 34.93939136], [139.96433345, 34.939206919], [139.964600117, 34.93942636], [139.964630389, 34.93939136]]]}}, {"id": "33397", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932660843, 34.913790937], [139.932466148, 34.913785865], [139.932544553, 34.913916514], [139.932660843, 34.913790937]]]}}, {"id": "33398", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813429403, 35.04305155], [139.813628444, 35.043104135], [139.813486187, 35.043024694], [139.813429403, 35.04305155]]]}}, {"id": "33399", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018815746, 35.036425802], [140.018544397, 35.036536378], [140.018606122, 35.036643288], [140.018815746, 35.036425802]]]}}, {"id": "33400", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87953642, 34.903271829], [139.879726018, 34.903418514], [139.879758898, 34.903314018], [139.87953642, 34.903271829]]]}}, {"id": "33401", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964089481, 34.943962405], [139.964176744, 34.943836108], [139.964016278, 34.943855387], [139.964089481, 34.943962405]]]}}, {"id": "33402", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870071336, 34.902820432], [139.869780882, 34.902954757], [139.870099741, 34.902941856], [139.870071336, 34.902820432]]]}}, {"id": "33403", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945505824, 34.924145757], [139.945394773, 34.923930757], [139.945355227, 34.924065838], [139.945505824, 34.924145757]]]}}, {"id": "33404", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888020947, 34.899643604], [139.88828489, 34.899673775], [139.88823738, 34.899474387], [139.888020947, 34.899643604]]]}}, {"id": "33405", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841606252, 34.903418162], [139.841092568, 34.902993414], [139.841069261, 34.903037144], [139.841606252, 34.903418162]]]}}, {"id": "33406", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971971167, 34.984092775], [139.971707276, 34.984175829], [139.971937276, 34.984212775], [139.971971167, 34.984092775]]]}}, {"id": "33407", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965149611, 34.947066054], [139.965063165, 34.94723436], [139.965275642, 34.947212045], [139.965149611, 34.947066054]]]}}, {"id": "33408", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.908001219, 34.904894955], [139.908341673, 34.904928099], [139.908001232, 34.904786054], [139.908001219, 34.904894955]]]}}, {"id": "33409", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.80301297, 35.065901306], [139.803180467, 35.066068802], [139.803241855, 35.065941586], [139.80301297, 35.065901306]]]}}, {"id": "33410", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932842088, 34.914164991], [139.932829351, 34.914219811], [139.932666381, 34.914395559], [139.932884254, 34.914287288], [139.932842088, 34.914164991]]]}}, {"id": "33411", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887601868, 34.898318964], [139.887825629, 34.898310027], [139.887652698, 34.898250784], [139.887601868, 34.898318964]]]}}, {"id": "33412", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965931971, 34.947337991], [139.965606796, 34.947328703], [139.96599524, 34.947391559], [139.965931971, 34.947337991]]]}}, {"id": "33413", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946250493, 34.924104946], [139.946541089, 34.924105577], [139.946335447, 34.923880667], [139.946250493, 34.924104946]]]}}, {"id": "33414", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829734358, 35.051822694], [139.829926031, 35.051980468], [139.829953528, 35.051873252], [139.829734358, 35.051822694]]]}}, {"id": "33415", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954492853, 34.933330811], [139.9543162, 34.933494973], [139.954440026, 34.933587883], [139.954492853, 34.933330811]]]}}, {"id": "33416", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.938535084, 34.916423739], [139.938721764, 34.916571874], [139.938711829, 34.916424036], [139.938535084, 34.916423739]]]}}, {"id": "33417", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.92116454, 34.909876153], [139.92121463, 34.909841775], [139.921079235, 34.909721432], [139.92116454, 34.909876153]]]}}, {"id": "33418", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965138444, 34.942522748], [139.965101219, 34.942264135], [139.965026783, 34.942290532], [139.965138444, 34.942522748]]]}}, {"id": "33419", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954480441, 34.933673207], [139.954768677, 34.933757838], [139.95482725, 34.933616613], [139.954480441, 34.933673207]]]}}, {"id": "33420", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966241245, 34.944776081], [139.965930973, 34.944845802], [139.966262633, 34.944845802], [139.966241245, 34.944776081]]]}}, {"id": "33421", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96688406, 34.955167775], [139.966964617, 34.955006667], [139.966895447, 34.954954441], [139.96688406, 34.955167775]]]}}, {"id": "33422", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890705032, 34.902315369], [139.890715733, 34.902116946], [139.890585383, 34.902244748], [139.890705032, 34.902315369]]]}}, {"id": "33423", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969244773, 34.977130712], [139.969459235, 34.977080081], [139.969249987, 34.976909667], [139.969244773, 34.977130712]]]}}, {"id": "33424", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942170687, 34.921912477], [139.942432931, 34.921917829], [139.94238463, 34.92180627], [139.942170687, 34.921912477]]]}}, {"id": "33425", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810386368, 35.038706207], [139.810314773, 35.038776144], [139.810477497, 35.038921946], [139.810386368, 35.038706207]]]}}, {"id": "33426", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899441569, 34.905179279], [139.899685396, 34.905193937], [139.899318495, 34.905084243], [139.899441569, 34.905179279]]]}}, {"id": "33427", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913873593, 34.903151333], [139.91367013, 34.903216649], [139.913841245, 34.903302532], [139.913873593, 34.903151333]]]}}, {"id": "33428", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96118511, 34.937058712], [139.961439468, 34.937026261], [139.961305616, 34.936903883], [139.96118511, 34.937058712]]]}}, {"id": "33429", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872552101, 34.903258775], [139.872330337, 34.903113793], [139.872312944, 34.903134901], [139.872552101, 34.903258775]]]}}, {"id": "33430", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.905077951, 34.904379081], [139.905304734, 34.904309982], [139.905199974, 34.904256946], [139.905077951, 34.904379081]]]}}, {"id": "33431", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826005266, 34.910090676], [139.825771946, 34.910094], [139.825487185, 34.910229018], [139.826005266, 34.910090676]]]}}, {"id": "33432", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952793917, 34.927776919], [139.952951971, 34.927672748], [139.952770026, 34.927679414], [139.952793917, 34.927776919]]]}}, {"id": "33433", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.891646719, 34.90353418], [139.891844514, 34.903609631], [139.891922464, 34.903508811], [139.891646719, 34.90353418]]]}}, {"id": "33434", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824419922, 34.910204667], [139.824214086, 34.910147162], [139.824144358, 34.910253559], [139.824419922, 34.910204667]]]}}, {"id": "33435", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810250804, 35.037465847], [139.810448236, 35.037368532], [139.810261466, 35.037366874], [139.810250804, 35.037465847]]]}}, {"id": "33436", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875578923, 34.903050324], [139.87523415, 34.903084703], [139.875668599, 34.903155595], [139.875578923, 34.903050324]]]}}, {"id": "33437", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890303709, 34.901278667], [139.89048821, 34.901441297], [139.890484423, 34.901353405], [139.890303709, 34.901278667]]]}}, {"id": "33438", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948359676, 34.925928748], [139.94851572, 34.925821955], [139.948325214, 34.925775793], [139.948359676, 34.925928748]]]}}, {"id": "33439", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966334942, 34.952395126], [139.966268158, 34.952535739], [139.966343385, 34.952608946], [139.966334942, 34.952395126]]]}}, {"id": "33440", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.876729248, 34.903123667], [139.876808016, 34.903303396], [139.876892244, 34.903259099], [139.876729248, 34.903123667]]]}}, {"id": "33441", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887396822, 34.90050318], [139.887194682, 34.900432144], [139.887178573, 34.90057855], [139.887396822, 34.90050318]]]}}, {"id": "33442", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.897032711, 34.901459315], [139.897324812, 34.901383982], [139.897268949, 34.901316486], [139.897032711, 34.901459315]]]}}, {"id": "33443", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969369494, 34.982782252], [139.969531997, 34.982709748], [139.969392827, 34.982686694], [139.969369494, 34.982782252]]]}}, {"id": "33444", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961459066, 34.937447766], [139.961422361, 34.937641991], [139.96150013, 34.937601793], [139.961459066, 34.937447766]]]}}, {"id": "33445", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888998444, 34.899714306], [139.888862335, 34.899540694], [139.888889559, 34.899725694], [139.888998444, 34.899714306]]]}}, {"id": "33446", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018898677, 35.036510775], [140.018626265, 35.036679405], [140.018698067, 35.036781973], [140.018898677, 35.036510775]]]}}, {"id": "33447", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.973447523, 34.979935829], [139.973221141, 34.979891667], [139.973298366, 34.979994721], [139.973447523, 34.979935829]]]}}, {"id": "33448", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970102192, 34.983763622], [139.970427899, 34.983607027], [139.970120259, 34.983625766], [139.970102192, 34.983763622]]]}}, {"id": "33449", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946035136, 34.923257658], [139.946247302, 34.923136937], [139.946010065, 34.923091901], [139.946035136, 34.923257658]]]}}, {"id": "33450", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890085253, 34.901203766], [139.890266576, 34.901218099], [139.890124462, 34.901095928], [139.890085253, 34.901203766]]]}}, {"id": "33451", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971993645, 34.979376667], [139.972148638, 34.979558333], [139.972172244, 34.979518892], [139.971993645, 34.979376667]]]}}, {"id": "33452", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956424942, 34.934301477], [139.956343035, 34.934358631], [139.956426109, 34.934572468], [139.956424942, 34.934301477]]]}}, {"id": "33453", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.904194293, 34.904836117], [139.904290765, 34.904666577], [139.904170428, 34.904828378], [139.904194293, 34.904836117]]]}}, {"id": "33454", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90586786, 34.903959829], [139.905675642, 34.903838441], [139.905577302, 34.903905946], [139.90586786, 34.903959829]]]}}, {"id": "33455", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.939158054, 34.915135559], [139.939020272, 34.914891667], [139.938923333, 34.914912495], [139.939158054, 34.915135559]]]}}, {"id": "33456", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.89955096, 34.900348874], [139.899262866, 34.900370486], [139.899282633, 34.900461523], [139.89955096, 34.900348874]]]}}, {"id": "33457", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.845358353, 34.902741108], [139.844909792, 34.902504775], [139.844844371, 34.902562027], [139.845358353, 34.902741108]]]}}, {"id": "33458", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968187977, 34.958075279], [139.96802572, 34.957969559], [139.968024086, 34.958121667], [139.968187977, 34.958075279]]]}}, {"id": "33459", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966460143, 34.945141919], [139.966756524, 34.945043306], [139.966453191, 34.945107198], [139.966460143, 34.945141919]]]}}, {"id": "33460", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.953232957, 34.929451721], [139.953211038, 34.929662144], [139.953377678, 34.929539559], [139.953232957, 34.929451721]]]}}, {"id": "33461", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812636459, 35.04179955], [139.81280821, 35.041835901], [139.812746654, 35.041660649], [139.812636459, 35.04179955]]]}}, {"id": "33462", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.907078431, 34.904303333], [139.907081816, 34.904165225], [139.906786628, 34.904222559], [139.907078431, 34.904303333]]]}}, {"id": "33463", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96501594, 34.942830495], [139.96489227, 34.942716775], [139.964664747, 34.942770387], [139.96501594, 34.942830495]]]}}, {"id": "33464", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970172555, 34.982782252], [139.969959222, 34.982763081], [139.96994978, 34.982873919], [139.970172555, 34.982782252]]]}}, {"id": "33465", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964301725, 34.942500153], [139.96452179, 34.942506144], [139.964199092, 34.942329441], [139.964301725, 34.942500153]]]}}, {"id": "33466", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918666433, 34.907285892], [139.91897808, 34.907280532], [139.919008742, 34.907186036], [139.918666433, 34.907285892]]]}}, {"id": "33467", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899984189, 34.904725991], [139.900099339, 34.904763523], [139.90037511, 34.904783559], [139.900325136, 34.904696324], [139.899984189, 34.904725991]]]}}, {"id": "33468", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969094423, 34.97834382], [139.969346187, 34.978523108], [139.96910607, 34.978300351], [139.969094423, 34.97834382]]]}}, {"id": "33469", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829304643, 35.048114919], [139.82946214, 35.048193802], [139.829410752, 35.048079919], [139.829304643, 35.048114919]]]}}, {"id": "33470", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872200973, 34.902836], [139.872191141, 34.903092838], [139.872326265, 34.903064396], [139.872200973, 34.902836]]]}}, {"id": "33471", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964750661, 34.942887577], [139.965243658, 34.942964577], [139.965133178, 34.942888333], [139.964750661, 34.942887577]]]}}, {"id": "33472", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968408249, 34.957531387], [139.968423528, 34.957704162], [139.96853131, 34.957632495], [139.968408249, 34.957531387]]]}}, {"id": "33473", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898507549, 34.904273342], [139.898108327, 34.904238937], [139.898097964, 34.904275541], [139.898507549, 34.904273342]]]}}, {"id": "33474", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841577108, 34.902618559], [139.841382672, 34.902643], [139.841593774, 34.902698559], [139.841577108, 34.902618559]]]}}, {"id": "33475", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873786291, 34.903200495], [139.873778301, 34.903417486], [139.873915084, 34.903428261], [139.873786291, 34.903200495]]]}}, {"id": "33476", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820865772, 35.071531252], [139.821016615, 35.071373198], [139.820886329, 35.071356532], [139.820865772, 35.071531252]]]}}, {"id": "33477", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.940110687, 34.916983901], [139.94021738, 34.916975874], [139.940012374, 34.916867423], [139.940110687, 34.916983901]]]}}, {"id": "33478", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81858441, 35.065737748], [139.818509987, 35.065586117], [139.818409987, 35.065613604], [139.81858441, 35.065737748]]]}}, {"id": "33479", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.937586628, 34.915805234], [139.937725875, 34.915660964], [139.937530311, 34.915668351], [139.937586628, 34.915805234]]]}}, {"id": "33480", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96533083, 34.945238198], [139.965129585, 34.945231739], [139.965353904, 34.945361495], [139.96533083, 34.945238198]]]}}, {"id": "33481", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917845331, 34.905003694], [139.917685888, 34.905135081], [139.917913113, 34.905101468], [139.917845331, 34.905003694]]]}}, {"id": "33482", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820732996, 35.064671279], [139.820939948, 35.064583775], [139.820844669, 35.064460721], [139.820732996, 35.064671279]]]}}, {"id": "33483", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964349637, 34.959580829], [139.964299637, 34.959443613], [139.964106485, 34.959521748], [139.964349637, 34.959580829]]]}}, {"id": "33484", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946127328, 34.924242901], [139.94629441, 34.924367955], [139.946413658, 34.924247324], [139.946127328, 34.924242901]]]}}, {"id": "33485", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.944962503, 34.922997775], [139.944833333, 34.922849441], [139.944754721, 34.922929162], [139.944962503, 34.922997775]]]}}, {"id": "33486", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945119728, 34.923195559], [139.944902503, 34.923256387], [139.945110558, 34.923283054], [139.945119728, 34.923195559]]]}}, {"id": "33487", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942250713, 34.918615766], [139.942091894, 34.918438135], [139.942187808, 34.918718766], [139.942250713, 34.918615766]]]}}, {"id": "33488", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.922415006, 34.909788793], [139.922334358, 34.909989225], [139.922494099, 34.909980225], [139.922415006, 34.909788793]]]}}, {"id": "33489", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871939624, 34.902964279], [139.871730584, 34.902886541], [139.871786446, 34.903004261], [139.871939624, 34.902964279]]]}}, {"id": "33490", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903824578, 34.904375667], [139.904053333, 34.90432027], [139.904163048, 34.904271622], [139.903824578, 34.904375667]]]}}, {"id": "33491", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94291083, 34.919122225], [139.942940272, 34.918952495], [139.942838612, 34.918934721], [139.94291083, 34.919122225]]]}}, {"id": "33492", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956331997, 34.933950802], [139.956089222, 34.933995252], [139.956353671, 34.934052748], [139.956331997, 34.933950802]]]}}, {"id": "33493", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825567834, 34.91034045], [139.82544799, 34.910487838], [139.825590687, 34.91045945], [139.825567834, 34.91034045]]]}}, {"id": "33494", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959188392, 34.935227748], [139.959066161, 34.935030532], [139.958987834, 34.935062748], [139.959188392, 34.935227748]]]}}, {"id": "33495", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.97140978, 34.983884721], [139.971454501, 34.984046667], [139.971544501, 34.983986387], [139.97140978, 34.983884721]]]}}, {"id": "33496", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.921119468, 34.905882], [139.920783645, 34.905928108], [139.921156693, 34.905943387], [139.921119468, 34.905882]]]}}, {"id": "33497", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810500415, 35.039159135], [139.810574306, 35.039311919], [139.810608197, 35.039208586], [139.810500415, 35.039159135]]]}}, {"id": "33498", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825583178, 34.909988784], [139.82545118, 34.910220631], [139.825727082, 34.910043604], [139.825583178, 34.909988784]]]}}, {"id": "33499", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.973894773, 34.986353613], [139.973700895, 34.986426387], [139.973895888, 34.986441946], [139.973894773, 34.986353613]]]}}, {"id": "33500", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82744655, 35.053502568], [139.827264786, 35.053495793], [139.827447198, 35.053559631], [139.82744655, 35.053502568]]]}}, {"id": "33501", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.950375032, 34.926457748], [139.950430311, 34.926632198], [139.950503917, 34.926449973], [139.950375032, 34.926457748]]]}}, {"id": "33502", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967359339, 34.951184973], [139.967311829, 34.951017198], [139.967272672, 34.951149135], [139.967359339, 34.951184973]]]}}, {"id": "33503", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966683696, 34.948287234], [139.966420752, 34.948111198], [139.966470674, 34.948307396], [139.966683696, 34.948287234]]]}}, {"id": "33504", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871425292, 34.902417144], [139.871199053, 34.90229209], [139.871133333, 34.902385685], [139.871425292, 34.902417144]]]}}, {"id": "33505", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817257821, 35.035142369], [139.817241569, 35.035267757], [139.817410052, 35.035184577], [139.817257821, 35.035142369]]]}}, {"id": "33506", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972447873, 34.986378928], [139.972258262, 34.986312432], [139.972115953, 34.986426901], [139.972447873, 34.986378928]]]}}, {"id": "33507", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970985616, 34.983375279], [139.970869494, 34.983528081], [139.97105061, 34.983390559], [139.970985616, 34.983375279]]]}}, {"id": "33508", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826395227, 35.076922631], [139.826186757, 35.077047559], [139.826330739, 35.077076955], [139.826395227, 35.076922631]]]}}, {"id": "33509", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916962231, 34.906165982], [139.916939572, 34.905952622], [139.916877678, 34.905994315], [139.916962231, 34.906165982]]]}}, {"id": "33510", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810098223, 35.037543982], [139.810175227, 35.037714099], [139.810227769, 35.037545171], [139.810098223, 35.037543982]]]}}, {"id": "33511", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960297523, 34.936986261], [139.960512659, 34.937072216], [139.960566213, 34.937020685], [139.960297523, 34.936986261]]]}}, {"id": "33512", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959012283, 34.935453027], [139.95890978, 34.935304135], [139.958904773, 34.935456919], [139.959012283, 34.935453027]]]}}, {"id": "33513", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960836135, 34.936999396], [139.960907601, 34.937132649], [139.960906861, 34.936934865], [139.960836135, 34.936999396]]]}}, {"id": "33514", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.881247108, 34.903165604], [139.88153572, 34.903062441], [139.881231427, 34.90310845], [139.881247108, 34.903165604]]]}}, {"id": "33515", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965884215, 34.952016541], [139.965792387, 34.952238766], [139.965967484, 34.952114712], [139.965884215, 34.952016541]]]}}, {"id": "33516", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875136952, 34.90303164], [139.875052425, 34.903158595], [139.875274332, 34.903133459], [139.875136952, 34.90303164]]]}}, {"id": "33517", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.8684593, 34.901098252], [139.868586252, 34.901216586], [139.8686193, 34.901066586], [139.8684593, 34.901098252]]]}}, {"id": "33518", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.933228054, 34.913739468], [139.93306834, 34.913589468], [139.932997782, 34.913604748], [139.933228054, 34.913739468]]]}}, {"id": "33519", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930409611, 34.910955234], [139.930404449, 34.911030243], [139.930687069, 34.911071757], [139.930550895, 34.910952595], [139.930409611, 34.910955234]]]}}, {"id": "33520", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95477882, 34.930986495], [139.954769105, 34.931074396], [139.954960947, 34.930974685], [139.95477882, 34.930986495]]]}}, {"id": "33521", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898395798, 34.900770937], [139.89860275, 34.900674369], [139.898409831, 34.900671946], [139.898395798, 34.900770937]]]}}, {"id": "33522", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95779559, 34.933880982], [139.957778236, 34.934056703], [139.957914747, 34.933913946], [139.95779559, 34.933880982]]]}}, {"id": "33523", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969721414, 34.982387802], [139.969633385, 34.982506414], [139.969735331, 34.982475865], [139.969721414, 34.982387802]]]}}, {"id": "33524", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828756252, 34.907724766], [139.829012425, 34.907937432], [139.828991958, 34.907831423], [139.828756252, 34.907724766]]]}}, {"id": "33525", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961507211, 34.937082622], [139.961539546, 34.937253505], [139.961601907, 34.937084955], [139.961507211, 34.937082622]]]}}, {"id": "33526", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.006496602, 35.032466018], [140.006516381, 35.03264745], [140.006622996, 35.032532721], [140.006496602, 35.032466018]]]}}, {"id": "33527", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968595837, 34.975969441], [139.968581388, 34.976129162], [139.96868917, 34.976129162], [139.968595837, 34.975969441]]]}}, {"id": "33528", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966653774, 34.955707775], [139.966596005, 34.955499441], [139.966532944, 34.955613054], [139.966653774, 34.955707775]]]}}, {"id": "33529", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957070895, 34.934017468], [139.956838949, 34.934106081], [139.957081725, 34.934070532], [139.957070895, 34.934017468]]]}}, {"id": "33530", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948201258, 34.926052396], [139.947876265, 34.925882414], [139.947841025, 34.925884072], [139.948201258, 34.926052396]]]}}, {"id": "33531", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963940389, 34.941580532], [139.964137328, 34.94168136], [139.963961777, 34.941545532], [139.963940389, 34.941580532]]]}}, {"id": "33532", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886085733, 34.90323445], [139.885820882, 34.903178405], [139.885805266, 34.903233856], [139.886085733, 34.90323445]]]}}, {"id": "33533", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887121608, 34.901317883], [139.887072387, 34.901177459], [139.886960324, 34.901318045], [139.887121608, 34.901317883]]]}}, {"id": "33534", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948069689, 34.925894856], [139.947972114, 34.925785955], [139.947834293, 34.925690441], [139.948069689, 34.925894856]]]}}, {"id": "33535", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820032581, 35.028415577], [139.819949053, 35.028507793], [139.820241569, 35.028448865], [139.820032581, 35.028415577]]]}}, {"id": "33536", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.876083645, 34.903987252], [139.876029676, 34.904150982], [139.876200778, 34.904083216], [139.876083645, 34.903987252]]]}}, {"id": "33537", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965749922, 34.960375279], [139.96571297, 34.960509441], [139.965861025, 34.960478892], [139.965749922, 34.960375279]]]}}, {"id": "33538", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9427307, 34.920067532], [139.942982827, 34.920037108], [139.942660571, 34.920001423], [139.9427307, 34.920067532]]]}}, {"id": "33539", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942518612, 34.918774162], [139.94254834, 34.918663054], [139.942377224, 34.918623892], [139.942518612, 34.918774162]]]}}, {"id": "33540", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.93242083, 34.91291364], [139.932402218, 34.913060586], [139.932480272, 34.913023919], [139.93242083, 34.91291364]]]}}, {"id": "33541", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932563709, 34.914102748], [139.932471077, 34.914245532], [139.932506874, 34.914256045], [139.932563709, 34.914102748]]]}}, {"id": "33542", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890757393, 34.903501252], [139.890918119, 34.903316279], [139.890575409, 34.903489973], [139.890757393, 34.903501252]]]}}, {"id": "33543", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964313165, 34.941865252], [139.964382335, 34.941953027], [139.964398444, 34.941883027], [139.964313165, 34.941865252]]]}}, {"id": "33544", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965071115, 34.949874342], [139.965475435, 34.949934207], [139.965031816, 34.949813712], [139.965071115, 34.949874342]]]}}, {"id": "33545", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.892562023, 34.902855009], [139.892750078, 34.902786045], [139.892797821, 34.902694703], [139.892562023, 34.902855009]]]}}, {"id": "33546", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871433502, 34.902195198], [139.871375331, 34.902282387], [139.871572075, 34.902292694], [139.871433502, 34.902195198]]]}}, {"id": "33547", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.876231336, 34.903921838], [139.876439987, 34.903866054], [139.876308197, 34.903792541], [139.876231336, 34.903921838]]]}}, {"id": "33548", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83579489, 34.901423532], [139.835705447, 34.901595198], [139.83577489, 34.901630748], [139.83579489, 34.901423532]]]}}, {"id": "33549", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.897114981, 34.904701568], [139.896850739, 34.904733072], [139.89682978, 34.904794297], [139.897114981, 34.904701568]]]}}, {"id": "33550", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.89849668, 34.904791432], [139.898723385, 34.904479757], [139.898483346, 34.904673252], [139.89849668, 34.904791432]]]}}, {"id": "33551", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969025305, 34.982361135], [139.96894642, 34.982464468], [139.96906725, 34.982387802], [139.969025305, 34.982361135]]]}}, {"id": "33552", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.938314527, 34.916407973], [139.938493217, 34.916377982], [139.938409507, 34.916307198], [139.938314527, 34.916407973]]]}}, {"id": "33553", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.973140921, 34.98745336], [139.9732462, 34.987335027], [139.973074527, 34.987371414], [139.973140921, 34.98745336]]]}}, {"id": "33554", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949570869, 34.928300748], [139.949515564, 34.928043243], [139.949426576, 34.928049189], [139.949570869, 34.928300748]]]}}, {"id": "33555", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968121699, 34.982351694], [139.968020311, 34.982211414], [139.968000026, 34.982367802], [139.968121699, 34.982351694]]]}}, {"id": "33556", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.927022218, 34.909462135], [139.926696083, 34.90950273], [139.927032361, 34.909518252], [139.927022218, 34.909462135]]]}}, {"id": "33557", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960225953, 34.93657255], [139.960124202, 34.936400568], [139.960083735, 34.936419721], [139.960225953, 34.93657255]]]}}, {"id": "33558", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969562335, 34.977167586], [139.96966393, 34.977268892], [139.969708547, 34.977165982], [139.969562335, 34.977167586]]]}}, {"id": "33559", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813157289, 35.036590054], [139.813143982, 35.036773135], [139.813205279, 35.036626928], [139.813157289, 35.036590054]]]}}, {"id": "33560", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957713671, 34.934533306], [139.957643385, 34.934675532], [139.957767562, 34.934671081], [139.957713671, 34.934533306]]]}}, {"id": "33561", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965345603, 34.947967955], [139.965219857, 34.948071937], [139.965372607, 34.948010829], [139.965345603, 34.947967955]]]}}, {"id": "33562", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810628755, 35.039343856], [139.810775396, 35.039368856], [139.810690389, 35.039205225], [139.810628755, 35.039343856]]]}}, {"id": "33563", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917407004, 34.905291748], [139.917461167, 34.905425919], [139.917512283, 34.905361468], [139.917407004, 34.905291748]]]}}, {"id": "33564", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967250143, 34.950267468], [139.967233191, 34.950145252], [139.967198755, 34.950234694], [139.967250143, 34.950267468]]]}}, {"id": "33565", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916571855, 34.906241802], [139.916360636, 34.90621373], [139.916567652, 34.906305541], [139.916571855, 34.906241802]]]}}, {"id": "33566", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964884838, 34.939770802], [139.964890947, 34.939586081], [139.964806226, 34.939710802], [139.964884838, 34.939770802]]]}}, {"id": "33567", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834303502, 34.900833532], [139.834148223, 34.900900468], [139.834320999, 34.900941306], [139.834303502, 34.900833532]]]}}, {"id": "33568", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898795863, 34.903831459], [139.898789844, 34.903695423], [139.898746005, 34.90373836], [139.898795863, 34.903831459]]]}}, {"id": "33569", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965513178, 34.947464748], [139.965206511, 34.947459126], [139.965574215, 34.947492261], [139.965513178, 34.947464748]]]}}, {"id": "33570", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958874449, 34.936797252], [139.959049001, 34.936838901], [139.958945253, 34.936706856], [139.958874449, 34.936797252]]]}}, {"id": "33571", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960826952, 34.937718162], [139.960916278, 34.937644865], [139.960761115, 34.937541901], [139.960826952, 34.937718162]]]}}, {"id": "33572", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970486226, 34.977664703], [139.970518405, 34.977780234], [139.970567639, 34.977746378], [139.970486226, 34.977664703]]]}}, {"id": "33573", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969350752, 34.958071081], [139.969509637, 34.958197468], [139.969453256, 34.958058306], [139.969350752, 34.958071081]]]}}, {"id": "33574", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888266485, 34.89914118], [139.888415058, 34.899113982], [139.888237626, 34.899022559], [139.888266485, 34.89914118]]]}}, {"id": "33575", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965982387, 34.951784847], [139.965958158, 34.951968144], [139.966102387, 34.951856477], [139.965982387, 34.951784847]]]}}, {"id": "33576", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932335435, 34.913395721], [139.932212049, 34.913257622], [139.93214476, 34.913367928], [139.932335435, 34.913395721]]]}}, {"id": "33577", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95429607, 34.932683387], [139.95410454, 34.932703856], [139.954274436, 34.932789153], [139.95429607, 34.932683387]]]}}, {"id": "33578", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952327224, 34.928653802], [139.952143878, 34.928652721], [139.952213891, 34.928774081], [139.952327224, 34.928653802]]]}}, {"id": "33579", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.007373398, 35.032734027], [140.007377665, 35.032881324], [140.007429948, 35.032732685], [140.007373398, 35.032734027]]]}}, {"id": "33580", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96909987, 34.978059667], [139.969243891, 34.977995586], [139.969051102, 34.977975793], [139.96909987, 34.978059667]]]}}, {"id": "33581", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.911666446, 34.906268694], [139.911508949, 34.906150919], [139.911432555, 34.906186198], [139.911666446, 34.906268694]]]}}, {"id": "33582", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.974470363, 34.987148081], [139.974503696, 34.986993054], [139.974381751, 34.987020586], [139.974470363, 34.987148081]]]}}, {"id": "33583", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82136856, 35.070003748], [139.82143022, 35.069840441], [139.821320506, 35.069891279], [139.82136856, 35.070003748]]]}}, {"id": "33584", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965625577, 34.947981712], [139.965745746, 34.948087865], [139.965798846, 34.948019928], [139.965625577, 34.947981712]]]}}, {"id": "33585", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913173761, 34.907047667], [139.913067912, 34.906909622], [139.912994423, 34.906957991], [139.913173761, 34.907047667]]]}}, {"id": "33586", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009555772, 35.033614775], [140.009679105, 35.033710613], [140.009624384, 35.033580892], [140.009555772, 35.033614775]]]}}, {"id": "33587", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841439053, 34.900217694], [139.841347108, 34.900321027], [139.841459883, 34.900348532], [139.841439053, 34.900217694]]]}}, {"id": "33588", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898058444, 34.898400027], [139.898216628, 34.898355405], [139.898081154, 34.898334117], [139.898058444, 34.898400027]]]}}, {"id": "33589", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920032283, 34.907742342], [139.920024903, 34.907588369], [139.919928651, 34.907749622], [139.920032283, 34.907742342]]]}}, {"id": "33590", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965350376, 34.949240658], [139.96522856, 34.94933391], [139.965476978, 34.949395396], [139.965350376, 34.949240658]]]}}, {"id": "33591", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.974370856, 34.986389667], [139.974512672, 34.986239892], [139.974438755, 34.986186667], [139.974370856, 34.986389667]]]}}, {"id": "33592", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972521881, 34.986614757], [139.972351077, 34.986721324], [139.972528586, 34.98669309], [139.972521881, 34.986614757]]]}}, {"id": "33593", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95499642, 34.929097198], [139.954810584, 34.92909164], [139.954961971, 34.92917636], [139.95499642, 34.929097198]]]}}, {"id": "33594", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.906422529, 34.904299847], [139.906371427, 34.904186387], [139.906164319, 34.904230955], [139.906422529, 34.904299847]]]}}, {"id": "33595", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903940104, 34.904606829], [139.903701582, 34.904641676], [139.903995097, 34.904678468], [139.903940104, 34.904606829]]]}}, {"id": "33596", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957384773, 34.934252468], [139.957411725, 34.934385802], [139.957470895, 34.934354694], [139.957384773, 34.934252468]]]}}, {"id": "33597", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.921861414, 34.907914775], [139.921735863, 34.907825613], [139.921685305, 34.907892559], [139.921861414, 34.907914775]]]}}, {"id": "33598", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895481569, 34.903696892], [139.895516719, 34.903587432], [139.895372438, 34.90365791], [139.895481569, 34.903696892]]]}}, {"id": "33599", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.861958495, 34.904036892], [139.862038781, 34.904147162], [139.862086835, 34.904052441], [139.861958495, 34.904036892]]]}}, {"id": "33600", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946456667, 34.922593333], [139.946342503, 34.922694441], [139.946456667, 34.922721946], [139.946456667, 34.922593333]]]}}, {"id": "33601", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970571971, 34.977986946], [139.970564747, 34.977833333], [139.970536135, 34.977851108], [139.970571971, 34.977986946]]]}}, {"id": "33602", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972222827, 34.986025306], [139.972406161, 34.986044198], [139.972231997, 34.98595364], [139.972222827, 34.986025306]]]}}, {"id": "33603", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932971388, 34.91334864], [139.93294917, 34.91345864], [139.933034449, 34.913366973], [139.932971388, 34.91334864]]]}}, {"id": "33604", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945558885, 34.923104162], [139.945429442, 34.923199441], [139.945586394, 34.923188054], [139.945558885, 34.923104162]]]}}, {"id": "33605", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.92830454, 34.909899171], [139.928240246, 34.909983198], [139.928388418, 34.910005135], [139.92830454, 34.909899171]]]}}, {"id": "33606", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820358003, 35.068132667], [139.820500778, 35.068127667], [139.820467445, 35.068037667], [139.820358003, 35.068132667]]]}}, {"id": "33607", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96396677, 34.942319414], [139.963901673, 34.942418009], [139.964025979, 34.942443838], [139.96396677, 34.942319414]]]}}, {"id": "33608", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898992815, 34.900788919], [139.898822866, 34.900903324], [139.899059494, 34.900845405], [139.898992815, 34.900788919]]]}}, {"id": "33609", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946365006, 34.923435559], [139.946476667, 34.923550559], [139.94642083, 34.923412495], [139.946365006, 34.923435559]]]}}, {"id": "33610", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968765305, 34.982070865], [139.968904747, 34.982181694], [139.968890856, 34.982070865], [139.968765305, 34.982070865]]]}}, {"id": "33611", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875898755, 34.90308936], [139.8757393, 34.903006865], [139.875731803, 34.90310464], [139.875898755, 34.90308936]]]}}, {"id": "33612", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952442075, 34.92874736], [139.952283761, 34.928802234], [139.952409326, 34.928887027], [139.952442075, 34.92874736]]]}}, {"id": "33613", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958994228, 34.936739342], [139.959177341, 34.936790721], [139.959243256, 34.936801468], [139.959082763, 34.936649378], [139.958994228, 34.936739342]]]}}, {"id": "33614", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970707004, 34.98342864], [139.970567834, 34.983375306], [139.970544501, 34.983470865], [139.970707004, 34.98342864]]]}}, {"id": "33615", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840891829, 34.901071306], [139.840787665, 34.901140198], [139.840921284, 34.901191586], [139.840891829, 34.901071306]]]}}, {"id": "33616", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965169416, 34.949111126], [139.965360143, 34.949049441], [139.965150298, 34.949001892], [139.965169416, 34.949111126]]]}}, {"id": "33617", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964875746, 34.960235], [139.964742412, 34.96029], [139.964890752, 34.960302225], [139.964875746, 34.960235]]]}}, {"id": "33618", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886482607, 34.899537108], [139.886567056, 34.899679892], [139.886580389, 34.899544333], [139.886482607, 34.899537108]]]}}, {"id": "33619", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972122555, 34.983889441], [139.972122555, 34.984037225], [139.972195616, 34.983991108], [139.972122555, 34.983889441]]]}}, {"id": "33620", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963783489, 34.943342973], [139.963948301, 34.943239126], [139.963725331, 34.943258018], [139.963783489, 34.943342973]]]}}, {"id": "33621", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018819857, 35.036355216], [140.018779066, 35.03615145], [140.018788418, 35.036362658], [140.018819857, 35.036355216]]]}}, {"id": "33622", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893489702, 34.903423577], [139.89370642, 34.903350982], [139.893439014, 34.903386009], [139.893489702, 34.903423577]]]}}, {"id": "33623", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945203061, 34.923678333], [139.945110558, 34.923785], [139.94524, 34.923743054], [139.945203061, 34.923678333]]]}}, {"id": "33624", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959233113, 34.93582409], [139.959045629, 34.935775604], [139.959166667, 34.93589745], [139.959233113, 34.93582409]]]}}, {"id": "33625", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95848808, 34.935832432], [139.958592477, 34.935948171], [139.958620558, 34.935838793], [139.95848808, 34.935832432]]]}}, {"id": "33626", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91319227, 34.906497928], [139.912985214, 34.906484721], [139.913237082, 34.906562622], [139.91319227, 34.906497928]]]}}, {"id": "33627", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955092802, 34.929493586], [139.955078911, 34.929635252], [139.955161414, 34.929601081], [139.955092802, 34.929493586]]]}}, {"id": "33628", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.854857665, 34.904481613], [139.854853217, 34.904610225], [139.854920169, 34.904584667], [139.854857665, 34.904481613]]]}}, {"id": "33629", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966828171, 34.943912198], [139.966699559, 34.943896081], [139.966770117, 34.943981081], [139.966828171, 34.943912198]]]}}, {"id": "33630", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972533671, 34.984578892], [139.972634501, 34.984671108], [139.972685058, 34.984574162], [139.972533671, 34.984578892]]]}}, {"id": "33631", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.85139489, 34.89869964], [139.851249053, 34.898736306], [139.851379339, 34.898804919], [139.85139489, 34.89869964]]]}}, {"id": "33632", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.856540999, 34.904632441], [139.856491829, 34.904731892], [139.856603502, 34.904698559], [139.856540999, 34.904632441]]]}}, {"id": "33633", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967632633, 34.944187468], [139.967598197, 34.944325532], [139.9676893, 34.944279135], [139.967632633, 34.944187468]]]}}, {"id": "33634", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962317977, 34.962725279], [139.962455188, 34.962678892], [139.962374358, 34.962625829], [139.962317977, 34.962725279]]]}}, {"id": "33635", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966042607, 34.943705252], [139.965959001, 34.94381664], [139.96609428, 34.943837748], [139.966042607, 34.943705252]]]}}, {"id": "33636", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955797704, 34.934081252], [139.955917302, 34.934201387], [139.955939987, 34.934144486], [139.955797704, 34.934081252]]]}}, {"id": "33637", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968577198, 34.976650162], [139.968562957, 34.976846243], [139.968668275, 34.976824495], [139.968577198, 34.976650162]]]}}, {"id": "33638", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969673917, 34.978208892], [139.969818366, 34.978226667], [139.969732802, 34.978143054], [139.969673917, 34.978208892]]]}}, {"id": "33639", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971808392, 34.983796946], [139.971887004, 34.983695279], [139.971746446, 34.983681387], [139.971808392, 34.983796946]]]}}, {"id": "33640", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888099831, 34.898223748], [139.888052607, 34.898343748], [139.888147056, 34.89828736], [139.888099831, 34.898223748]]]}}, {"id": "33641", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893596109, 34.902583423], [139.893631816, 34.902473333], [139.893530986, 34.902562], [139.893596109, 34.902583423]]]}}, {"id": "33642", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961954981, 34.937665045], [139.961845188, 34.937533991], [139.961822555, 34.937690784], [139.961954981, 34.937665045]]]}}, {"id": "33643", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964757886, 34.95050373], [139.964611569, 34.950413468], [139.964493748, 34.950400712], [139.964757886, 34.95050373]]]}}, {"id": "33644", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951674695, 34.928701595], [139.951651686, 34.928843595], [139.951690908, 34.928863027], [139.951674695, 34.928701595]]]}}, {"id": "33645", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913938664, 34.903454532], [139.913835616, 34.90355064], [139.913953671, 34.903533973], [139.913938664, 34.903454532]]]}}, {"id": "33646", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886708898, 34.901695072], [139.886953567, 34.901696225], [139.887005953, 34.901650135], [139.886708898, 34.901695072]]]}}, {"id": "33647", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.973983411, 34.986503892], [139.973933696, 34.986636108], [139.974022309, 34.986595279], [139.973983411, 34.986503892]]]}}, {"id": "33648", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825226706, 34.910512342], [139.825330324, 34.91062864], [139.825445901, 34.910529577], [139.825226706, 34.910512342]]]}}, {"id": "33649", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.8705838, 34.903119306], [139.870471128, 34.90320155], [139.870582309, 34.903191604], [139.8705838, 34.903119306]]]}}, {"id": "33650", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.856054332, 34.904632441], [139.855942672, 34.904676613], [139.856112387, 34.904724387], [139.856054332, 34.904632441]]]}}, {"id": "33651", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965847108, 34.95232164], [139.965982114, 34.952389973], [139.965899053, 34.952267468], [139.965847108, 34.95232164]]]}}, {"id": "33652", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.848318223, 34.902343829], [139.848236005, 34.902473279], [139.848379611, 34.902383279], [139.848318223, 34.902343829]]]}}, {"id": "33653", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836001621, 34.901573613], [139.835906316, 34.901708658], [139.835936732, 34.901726685], [139.836001621, 34.901573613]]]}}, {"id": "33654", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823851855, 34.910509387], [139.823764643, 34.910609946], [139.823865746, 34.910604108], [139.823851855, 34.910509387]]]}}, {"id": "33655", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.907178379, 34.90447464], [139.907274955, 34.904417523], [139.907011089, 34.904379369], [139.907178379, 34.90447464]]]}}, {"id": "33656", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94323834, 34.919468054], [139.943188054, 34.919544441], [139.943264721, 34.919522495], [139.94323834, 34.919468054]]]}}, {"id": "33657", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.851168223, 34.899420748], [139.851058781, 34.899526027], [139.851191556, 34.899517414], [139.851168223, 34.899420748]]]}}, {"id": "33658", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890697588, 34.902458982], [139.890614527, 34.902457396], [139.890623593, 34.902589189], [139.890697588, 34.902458982]]]}}, {"id": "33659", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964373281, 34.959259495], [139.964027017, 34.959519045], [139.964405966, 34.959291468], [139.964373281, 34.959259495]]]}}, {"id": "33660", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870299027, 34.903478631], [139.870159468, 34.903409532], [139.870089014, 34.90344291], [139.870299027, 34.903478631]]]}}, {"id": "33661", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955055123, 34.930775811], [139.95505227, 34.930920955], [139.955161803, 34.93081555], [139.955055123, 34.930775811]]]}}, {"id": "33662", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962801582, 34.962068333], [139.962769364, 34.962201108], [139.962898249, 34.962121387], [139.962801582, 34.962068333]]]}}, {"id": "33663", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.915226719, 34.905383694], [139.915193943, 34.905279802], [139.915128106, 34.905347586], [139.915226719, 34.905383694]]]}}, {"id": "33664", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966441777, 34.944208586], [139.966300117, 34.944129135], [139.966300117, 34.944203306], [139.966441777, 34.944208586]]]}}, {"id": "33665", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825273671, 34.910263622], [139.825112905, 34.910333568], [139.825276615, 34.910366577], [139.825273671, 34.910263622]]]}}, {"id": "33666", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.833507224, 34.90688764], [139.833516304, 34.907020973], [139.833637665, 34.907018901], [139.833507224, 34.90688764]]]}}, {"id": "33667", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.904025914, 34.903860108], [139.903929533, 34.903969829], [139.904090363, 34.903962333], [139.904025914, 34.903860108]]]}}, {"id": "33668", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966741051, 34.954832009], [139.966838677, 34.954739315], [139.966769728, 34.954689631], [139.966741051, 34.954832009]]]}}, {"id": "33669", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966421154, 34.95465964], [139.966319961, 34.954776937], [139.966469274, 34.954687712], [139.966421154, 34.95465964]]]}}, {"id": "33670", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.935723333, 34.914626685], [139.935705084, 34.914466234], [139.935613878, 34.914437739], [139.935723333, 34.914626685]]]}}, {"id": "33671", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958037004, 34.934097198], [139.958090895, 34.934203865], [139.958128664, 34.934079414], [139.958037004, 34.934097198]]]}}, {"id": "33672", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951379144, 34.928844225], [139.95148061, 34.928764523], [139.951381634, 34.928755243], [139.951379144, 34.928844225]]]}}, {"id": "33673", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971325888, 34.983690829], [139.971448949, 34.983630829], [139.971303385, 34.983593613], [139.971325888, 34.983690829]]]}}, {"id": "33674", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920220078, 34.907750946], [139.92025847, 34.907841342], [139.920324384, 34.907767459], [139.920220078, 34.907750946]]]}}, {"id": "33675", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956515668, 34.934656216], [139.956590337, 34.934518027], [139.956568457, 34.934523009], [139.956515668, 34.934656216]]]}}, {"id": "33676", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960668145, 34.937104324], [139.960771634, 34.936983144], [139.9607193, 34.936905225], [139.960668145, 34.937104324]]]}}, {"id": "33677", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825882464, 35.077096766], [139.825987717, 35.077193315], [139.825987082, 35.077035649], [139.825882464, 35.077096766]]]}}, {"id": "33678", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818710532, 35.066153162], [139.818686109, 35.066002432], [139.818591595, 35.066006658], [139.818710532, 35.066153162]]]}}, {"id": "33679", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.861687951, 34.904204667], [139.861647951, 34.904319387], [139.861730726, 34.904284108], [139.861687951, 34.904204667]]]}}, {"id": "33680", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964654306, 34.945855252], [139.964757912, 34.945799973], [139.964648197, 34.945809973], [139.964654306, 34.945855252]]]}}, {"id": "33681", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931713567, 34.91077309], [139.931581868, 34.910665901], [139.931505759, 34.910687306], [139.931713567, 34.91077309]]]}}, {"id": "33682", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96203904, 34.939625495], [139.96214406, 34.939569946], [139.962023528, 34.939500297], [139.96203904, 34.939625495]]]}}, {"id": "33683", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951245032, 34.92637664], [139.95129725, 34.926473586], [139.951388911, 34.926424973], [139.951245032, 34.92637664]]]}}, {"id": "33684", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964313009, 34.942569468], [139.964081608, 34.942589369], [139.964356226, 34.942621622], [139.964313009, 34.942569468]]]}}, {"id": "33685", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.904054591, 34.904766423], [139.904138534, 34.904651883], [139.903995149, 34.904725162], [139.904054591, 34.904766423]]]}}, {"id": "33686", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842895447, 34.901744667], [139.842840441, 34.901838559], [139.842946005, 34.901810775], [139.842895447, 34.901744667]]]}}, {"id": "33687", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968869546, 34.976733126], [139.968938003, 34.976873505], [139.968949481, 34.97672736], [139.968869546, 34.976733126]]]}}, {"id": "33688", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969940337, 34.977516486], [139.969858547, 34.977403802], [139.969843761, 34.977535432], [139.969940337, 34.977516486]]]}}, {"id": "33689", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009671025, 35.034682568], [140.009556187, 35.034739261], [140.009664436, 35.03477345], [140.009671025, 35.034682568]]]}}, {"id": "33690", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949273398, 34.927240252], [139.94915546, 34.927118667], [139.949066524, 34.927236306], [139.949273398, 34.927240252]]]}}, {"id": "33691", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889205538, 34.900458279], [139.889330571, 34.900408189], [139.889243787, 34.900377847], [139.889205538, 34.900458279]]]}}, {"id": "33692", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873619105, 34.903246793], [139.873452542, 34.903198892], [139.87338332, 34.903289423], [139.873619105, 34.903246793]]]}}, {"id": "33693", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958468664, 34.934622198], [139.958366161, 34.934755252], [139.958479494, 34.934733027], [139.958468664, 34.934622198]]]}}, {"id": "33694", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959764073, 34.936347216], [139.959666459, 34.936293225], [139.959663865, 34.936318378], [139.959764073, 34.936347216]]]}}, {"id": "33695", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970255577, 34.977358892], [139.970248366, 34.977471387], [139.970363359, 34.97743], [139.970255577, 34.977358892]]]}}, {"id": "33696", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962047082, 34.937413523], [139.961889961, 34.937391514], [139.962045875, 34.937479243], [139.962047082, 34.937413523]]]}}, {"id": "33697", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91589978, 34.905089802], [139.915713385, 34.90513064], [139.915916161, 34.905139532], [139.91589978, 34.905089802]]]}}, {"id": "33698", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836258003, 34.901572793], [139.836147043, 34.901691613], [139.836227367, 34.90175336], [139.836258003, 34.901572793]]]}}, {"id": "33699", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917317756, 34.906488117], [139.917349676, 34.906341964], [139.917224462, 34.906425342], [139.917317756, 34.906488117]]]}}, {"id": "33700", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955476991, 34.932030252], [139.955445058, 34.931829973], [139.955421958, 34.931833964], [139.955476991, 34.932030252]]]}}, {"id": "33701", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871738729, 34.902756099], [139.871700713, 34.902894216], [139.871805279, 34.902794748], [139.871738729, 34.902756099]]]}}, {"id": "33702", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.839172944, 34.904241333], [139.83903655, 34.904249387], [139.839120169, 34.904313559], [139.839172944, 34.904241333]]]}}, {"id": "33703", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831911868, 35.050569694], [139.831899598, 35.050456649], [139.831766835, 35.050520108], [139.831911868, 35.050569694]]]}}, {"id": "33704", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965952607, 34.944144973], [139.965984838, 34.94425636], [139.966036226, 34.94417664], [139.965952607, 34.944144973]]]}}, {"id": "33705", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931304267, 34.912536261], [139.931454877, 34.912641802], [139.931530467, 34.912612712], [139.931304267, 34.912536261]]]}}, {"id": "33706", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.010782892, 35.034720973], [140.010772244, 35.03486036], [140.010868923, 35.034816766], [140.010782892, 35.034720973]]]}}, {"id": "33707", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965088833, 34.944048324], [139.964825499, 34.94395891], [139.964795746, 34.94397382], [139.965088833, 34.944048324]]]}}, {"id": "33708", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90770489, 34.904648396], [139.907997471, 34.904740532], [139.907688093, 34.904601802], [139.90770489, 34.904648396]]]}}, {"id": "33709", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930060402, 34.91263255], [139.930147899, 34.912493018], [139.929988988, 34.912576982], [139.930060402, 34.91263255]]]}}, {"id": "33710", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90391524, 34.904952117], [139.904033152, 34.905017856], [139.904045551, 34.904929144], [139.90391524, 34.904952117]]]}}, {"id": "33711", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966272905, 34.95201882], [139.966411829, 34.952005423], [139.966301051, 34.951952441], [139.966272905, 34.95201882]]]}}, {"id": "33712", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962382412, 34.962015279], [139.962326031, 34.962114721], [139.962463256, 34.962114721], [139.962382412, 34.962015279]]]}}, {"id": "33713", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843281388, 34.902946649], [139.843200324, 34.903042486], [139.843323956, 34.902966117], [139.843281388, 34.902946649]]]}}, {"id": "33714", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970176693, 34.978354162], [139.970219468, 34.978464441], [139.970278366, 34.978429162], [139.970176693, 34.978354162]]]}}, {"id": "33715", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81297441, 35.036382865], [139.813046835, 35.036489703], [139.813146783, 35.036514144], [139.813080947, 35.036381261], [139.81297441, 35.036382865]]]}}, {"id": "33716", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834702218, 35.078513721], [139.834695551, 35.078389838], [139.83462, 35.078417892], [139.834702218, 35.078513721]]]}}, {"id": "33717", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873144565, 34.903321595], [139.873138495, 34.903443928], [139.873224267, 34.903402523], [139.873144565, 34.903321595]]]}}, {"id": "33718", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.851087393, 34.898927135], [139.851044617, 34.899041865], [139.851149883, 34.898985198], [139.851087393, 34.898927135]]]}}, {"id": "33719", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951814968, 34.928737243], [139.951763294, 34.928580793], [139.95170083, 34.928607991], [139.951814968, 34.928737243]]]}}, {"id": "33720", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942906316, 34.91970245], [139.94305585, 34.919716468], [139.942864189, 34.919623793], [139.942906316, 34.91970245]]]}}, {"id": "33721", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.847463502, 34.902222721], [139.847443217, 34.902380495], [139.847518223, 34.902228279], [139.847463502, 34.902222721]]]}}, {"id": "33722", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930658573, 34.91131482], [139.930786394, 34.911225559], [139.930583969, 34.911247], [139.930658573, 34.91131482]]]}}, {"id": "33723", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840681284, 34.902350225], [139.840685447, 34.902472162], [139.840757393, 34.902392162], [139.840681284, 34.902350225]]]}}, {"id": "33724", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901723787, 34.904105072], [139.901633878, 34.904024171], [139.901630324, 34.904082856], [139.901723787, 34.904105072]]]}}, {"id": "33725", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970014345, 34.983367072], [139.969903087, 34.983319324], [139.969764436, 34.983324261], [139.970014345, 34.983367072]]]}}, {"id": "33726", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96367511, 34.942381117], [139.963823281, 34.942410162], [139.963691595, 34.942281577], [139.96367511, 34.942381117]]]}}, {"id": "33727", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955390117, 34.931024279], [139.95531546, 34.931168054], [139.955445305, 34.931109595], [139.955390117, 34.931024279]]]}}, {"id": "33728", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96684153, 34.945593865], [139.9667807, 34.945688865], [139.966865966, 34.945663865], [139.96684153, 34.945593865]]]}}, {"id": "33729", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827496589, 35.055622387], [139.827567977, 35.055496279], [139.827500752, 35.055489613], [139.827496589, 35.055622387]]]}}, {"id": "33730", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931953813, 34.913293081], [139.932075525, 34.913301721], [139.93215524, 34.913249279], [139.931953813, 34.913293081]]]}}, {"id": "33731", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957875694, 34.935383586], [139.95780559, 34.935278811], [139.957775824, 34.935359532], [139.957875694, 34.935383586]]]}}, {"id": "33732", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.910639754, 34.906876414], [139.910694501, 34.906990919], [139.910734358, 34.906910081], [139.910639754, 34.906876414]]]}}, {"id": "33733", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.005881595, 35.031862369], [140.00596013, 35.031891468], [140.005891479, 35.031769955], [140.005881595, 35.031862369]]]}}, {"id": "33734", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.897402451, 34.901318045], [139.897531894, 34.901182838], [139.897357458, 34.901295351], [139.897402451, 34.901318045]]]}}, {"id": "33735", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.855379883, 34.904544108], [139.855357665, 34.904639667], [139.855473774, 34.904588279], [139.855379883, 34.904544108]]]}}, {"id": "33736", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969456952, 34.977613486], [139.969381492, 34.977486369], [139.969409105, 34.977628234], [139.969456952, 34.977613486]]]}}, {"id": "33737", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961451907, 34.937278838], [139.961563761, 34.93740682], [139.96156559, 34.937319108], [139.961451907, 34.937278838]]]}}, {"id": "33738", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965213671, 34.945091829], [139.965147951, 34.945007883], [139.96513725, 34.945020423], [139.965213671, 34.945091829]]]}}, {"id": "33739", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824111582, 34.910366126], [139.823900493, 34.910248288], [139.823865253, 34.910246036], [139.824111582, 34.910366126]]]}}, {"id": "33740", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914079494, 34.904352865], [139.914158106, 34.904458135], [139.914164773, 34.904374532], [139.914079494, 34.904352865]]]}}, {"id": "33741", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972569442, 34.985916423], [139.972440324, 34.98599455], [139.972571154, 34.986023694], [139.972569442, 34.985916423]]]}}, {"id": "33742", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824737134, 34.910081054], [139.824639637, 34.910124108], [139.824740752, 34.910164387], [139.824737134, 34.910081054]]]}}, {"id": "33743", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969048042, 34.976851748], [139.969133632, 34.976949189], [139.969110208, 34.976828324], [139.969048042, 34.976851748]]]}}, {"id": "33744", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.936131219, 34.914977108], [139.935962348, 34.91488782], [139.936139624, 34.915043811], [139.936131219, 34.914977108]]]}}, {"id": "33745", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964191868, 34.946390162], [139.964328495, 34.946320964], [139.964108872, 34.946391252], [139.964191868, 34.946390162]]]}}, {"id": "33746", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811984228, 35.036916541], [139.812098547, 35.036936667], [139.811932296, 35.036836486], [139.811984228, 35.036916541]]]}}, {"id": "33747", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967153333, 34.953643766], [139.967047613, 34.953741153], [139.967120311, 34.95380445], [139.967153333, 34.953643766]]]}}, {"id": "33748", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.911337004, 34.90639064], [139.911303671, 34.906296198], [139.911225058, 34.906359252], [139.911337004, 34.90639064]]]}}, {"id": "33749", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966226783, 34.947385991], [139.966036913, 34.947439468], [139.966254604, 34.947396505], [139.966226783, 34.947385991]]]}}, {"id": "33750", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886625227, 34.902268], [139.886654695, 34.902145838], [139.88646537, 34.902278802], [139.886625227, 34.902268]]]}}, {"id": "33751", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818996796, 35.066245955], [139.81888882, 35.066128577], [139.818902283, 35.066226117], [139.818996796, 35.066245955]]]}}, {"id": "33752", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.939125603, 34.915202793], [139.939265798, 34.915203757], [139.939125875, 34.915166919], [139.939125603, 34.915202793]]]}}, {"id": "33753", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814571141, 35.036221847], [139.814503606, 35.036321721], [139.814624942, 35.036284595], [139.814571141, 35.036221847]]]}}, {"id": "33754", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9680138, 34.957674721], [139.967885746, 34.957721108], [139.96799297, 34.957704162], [139.9680138, 34.957674721]]]}}, {"id": "33755", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.891431595, 34.903383288], [139.891604021, 34.903340198], [139.891433398, 34.90329845], [139.891431595, 34.903383288]]]}}, {"id": "33756", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956561725, 34.932423027], [139.95661978, 34.932509973], [139.956688392, 34.932453586], [139.956561725, 34.932423027]]]}}, {"id": "33757", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958835058, 34.934811919], [139.958730052, 34.934759135], [139.958721167, 34.934858586], [139.958835058, 34.934811919]]]}}, {"id": "33758", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962330233, 34.937660766], [139.962344565, 34.937792459], [139.962392827, 34.937784658], [139.962330233, 34.937660766]]]}}, {"id": "33759", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.933446939, 34.914100586], [139.933473061, 34.914002532], [139.93336917, 34.914011694], [139.933446939, 34.914100586]]]}}, {"id": "33760", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970392244, 34.977537495], [139.970335032, 34.977632225], [139.970428366, 34.977614441], [139.970392244, 34.977537495]]]}}, {"id": "33761", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964589131, 34.942648955], [139.964403904, 34.942589387], [139.964398573, 34.942610306], [139.964589131, 34.942648955]]]}}, {"id": "33762", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889176628, 34.90009418], [139.889095824, 34.900033189], [139.889069844, 34.900113072], [139.889176628, 34.90009418]]]}}, {"id": "33763", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966402918, 34.948691081], [139.966414306, 34.948809694], [139.966454578, 34.948719694], [139.966402918, 34.948691081]]]}}, {"id": "33764", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899843139, 34.900002613], [139.899993969, 34.899979559], [139.899827302, 34.899963162], [139.899843139, 34.900002613]]]}}, {"id": "33765", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959064643, 34.936179631], [139.959072088, 34.936178991], [139.958992412, 34.936120838], [139.959064643, 34.936179631]]]}}, {"id": "33766", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810338262, 35.038268712], [139.810376316, 35.038184703], [139.810331816, 35.038199297], [139.810338262, 35.038268712]]]}}, {"id": "33767", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972358392, 34.983917225], [139.972319222, 34.984032775], [139.972397834, 34.984009441], [139.972358392, 34.983917225]]]}}, {"id": "33768", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.935420272, 34.914429153], [139.935281427, 34.914365892], [139.935303515, 34.914445027], [139.935420272, 34.914429153]]]}}, {"id": "33769", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835556835, 34.901636027], [139.835553502, 34.901750468], [139.835629611, 34.901685198], [139.835556835, 34.901636027]]]}}, {"id": "33770", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827617886, 35.052088532], [139.827733748, 35.052104586], [139.827640143, 35.052029757], [139.827617886, 35.052088532]]]}}, {"id": "33771", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870074306, 34.902528252], [139.870105694, 34.902641306], [139.870155422, 34.902584919], [139.870074306, 34.902528252]]]}}, {"id": "33772", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948134228, 34.926415216], [139.947975058, 34.926407613], [139.948158392, 34.926474063], [139.948134228, 34.926415216]]]}}, {"id": "33773", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932641777, 34.913952946], [139.932468444, 34.913884216], [139.932434202, 34.913891631], [139.93249463, 34.913991468], [139.932641777, 34.913952946]]]}}, {"id": "33774", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932986083, 34.914054261], [139.93304332, 34.913957937], [139.932960791, 34.913950162], [139.932986083, 34.914054261]]]}}, {"id": "33775", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.880203281, 34.902932973], [139.880181556, 34.902832829], [139.880106874, 34.90293391], [139.880203281, 34.902932973]]]}}, {"id": "33776", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916703606, 34.906456441], [139.916802101, 34.90635045], [139.916671958, 34.906429153], [139.916703606, 34.906456441]]]}}, {"id": "33777", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964071388, 34.942497613], [139.964169792, 34.942422685], [139.964052542, 34.942424072], [139.964071388, 34.942497613]]]}}, {"id": "33778", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.902122309, 34.902396225], [139.902030636, 34.902308441], [139.902078145, 34.902411225], [139.902122309, 34.902396225]]]}}, {"id": "33779", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.911951167, 34.906283694], [139.911969494, 34.906185081], [139.911883113, 34.906238414], [139.911951167, 34.906283694]]]}}, {"id": "33780", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965106654, 34.950739991], [139.964891764, 34.950623306], [139.964881206, 34.950662351], [139.965106654, 34.950739991]]]}}, {"id": "33781", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912700389, 34.907183108], [139.912512672, 34.907141766], [139.912716174, 34.907216991], [139.912700389, 34.907183108]]]}}, {"id": "33782", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.900821414, 34.904450396], [139.900667315, 34.904549279], [139.900869689, 34.904469387], [139.900821414, 34.904450396]]]}}, {"id": "33783", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920707704, 34.907034369], [139.920596226, 34.907166604], [139.920760571, 34.90704082], [139.920707704, 34.907034369]]]}}, {"id": "33784", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903762399, 34.90486918], [139.903582335, 34.904931577], [139.903802918, 34.904898], [139.903762399, 34.90486918]]]}}, {"id": "33785", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919113126, 34.907279991], [139.918920441, 34.907307081], [139.919146628, 34.907303586], [139.919113126, 34.907279991]]]}}, {"id": "33786", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966476005, 34.954138333], [139.966371284, 34.954186667], [139.966450999, 34.954221108], [139.966476005, 34.954138333]]]}}, {"id": "33787", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914189313, 34.906308766], [139.914278236, 34.906266604], [139.914189689, 34.906246739], [139.914189313, 34.906308766]]]}}, {"id": "33788", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912690052, 34.905822586], [139.91265144, 34.905906468], [139.912788949, 34.905867865], [139.912690052, 34.905822586]]]}}, {"id": "33789", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.93795537, 34.915830162], [139.937800441, 34.915855351], [139.937970636, 34.915866568], [139.93795537, 34.915830162]]]}}, {"id": "33790", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942640934, 34.91897691], [139.942685032, 34.918888973], [139.942645629, 34.918888198], [139.942640934, 34.91897691]]]}}, {"id": "33791", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960449572, 34.937405919], [139.960447017, 34.937316766], [139.960389313, 34.937310243], [139.960449572, 34.937405919]]]}}, {"id": "33792", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966460415, 34.949155252], [139.966350973, 34.949193306], [139.966443191, 34.94922164], [139.966460415, 34.949155252]]]}}, {"id": "33793", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955004021, 34.933972793], [139.955099572, 34.933890748], [139.954975564, 34.933908721], [139.955004021, 34.933972793]]]}}, {"id": "33794", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966534617, 34.953911081], [139.966438223, 34.953966387], [139.966538781, 34.954003892], [139.966534617, 34.953911081]]]}}, {"id": "33795", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965618729, 34.947809441], [139.965394137, 34.947853234], [139.965678664, 34.947836423], [139.965618729, 34.947809441]]]}}, {"id": "33796", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9688438, 34.958172225], [139.968710467, 34.958142775], [139.968807977, 34.958218613], [139.9688438, 34.958172225]]]}}, {"id": "33797", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.922169196, 34.907775333], [139.922105305, 34.907850613], [139.92219642, 34.907822559], [139.922169196, 34.907775333]]]}}, {"id": "33798", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.97117978, 34.983861694], [139.97114061, 34.98396336], [139.971230052, 34.983949468], [139.97117978, 34.983861694]]]}}, {"id": "33799", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916561738, 34.906080892], [139.916520428, 34.906135369], [139.916728379, 34.906170477], [139.916561738, 34.906080892]]]}}, {"id": "33800", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966089196, 34.952567667], [139.965990661, 34.952502414], [139.966132335, 34.952699595], [139.966089196, 34.952567667]]]}}, {"id": "33801", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964741012, 34.94500409], [139.96467476, 34.944927532], [139.964672866, 34.945040856], [139.964741012, 34.94500409]]]}}, {"id": "33802", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834596278, 34.900833532], [139.834599611, 34.900941306], [139.834673774, 34.900906306], [139.834596278, 34.900833532]]]}}, {"id": "33803", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.894252983, 34.903313658], [139.89424284, 34.903227937], [139.894140013, 34.903260712], [139.894252983, 34.903313658]]]}}, {"id": "33804", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964312698, 34.959918054], [139.964416589, 34.959863054], [139.964334916, 34.959802225], [139.964312698, 34.959918054]]]}}, {"id": "33805", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964453528, 34.960149721], [139.964327691, 34.960174162], [139.964468249, 34.960204441], [139.964453528, 34.960149721]]]}}, {"id": "33806", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956278106, 34.933764414], [139.956315888, 34.933861919], [139.956337562, 34.933799973], [139.956278106, 34.933764414]]]}}, {"id": "33807", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018948444, 35.036901667], [140.018990817, 35.036782874], [140.01891284, 35.036856829], [140.018948444, 35.036901667]]]}}, {"id": "33808", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95447166, 34.932693036], [139.954301855, 34.932602514], [139.954473489, 34.93274036], [139.95447166, 34.932693036]]]}}, {"id": "33809", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96168642, 34.937583649], [139.961623074, 34.937673505], [139.961696304, 34.937668288], [139.96168642, 34.937583649]]]}}, {"id": "33810", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.884737328, 34.902973333], [139.884677095, 34.902894658], [139.884624929, 34.902934072], [139.884737328, 34.902973333]]]}}, {"id": "33811", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952896926, 34.929081811], [139.952798327, 34.928875829], [139.952759715, 34.928893901], [139.952896926, 34.929081811]]]}}, {"id": "33812", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.938134293, 34.915906631], [139.938028885, 34.915805126], [139.937994099, 34.915818586], [139.938134293, 34.915906631]]]}}, {"id": "33813", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966044617, 34.951322198], [139.96616489, 34.951392468], [139.966174617, 34.951350802], [139.966044617, 34.951322198]]]}}, {"id": "33814", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946599728, 34.922836946], [139.946716939, 34.922906108], [139.946627497, 34.922818613], [139.946599728, 34.922836946]]]}}, {"id": "33815", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.896606589, 34.904421108], [139.896681388, 34.904355802], [139.896581388, 34.904385423], [139.896606589, 34.904421108]]]}}, {"id": "33816", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958202892, 34.936248766], [139.958149261, 34.936106207], [139.958113748, 34.936223162], [139.958202892, 34.936248766]]]}}, {"id": "33817", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964475785, 34.94325027], [139.964380545, 34.943323126], [139.964506848, 34.943296757], [139.964475785, 34.94325027]]]}}, {"id": "33818", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962652438, 34.941376784], [139.962697328, 34.941310387], [139.962563346, 34.941316207], [139.962652438, 34.941376784]]]}}, {"id": "33819", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948231881, 34.925799865], [139.948130506, 34.925790766], [139.948208067, 34.925920054], [139.948231881, 34.925799865]]]}}, {"id": "33820", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969386589, 34.957603027], [139.969504643, 34.957607198], [139.969407134, 34.957569414], [139.969386589, 34.957603027]]]}}, {"id": "33821", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945364228, 34.923850919], [139.945177899, 34.923812775], [139.945160324, 34.923854532], [139.945364228, 34.923850919]]]}}, {"id": "33822", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949373281, 34.927120982], [139.949342387, 34.927261288], [139.949387484, 34.927261243], [139.949373281, 34.927120982]]]}}, {"id": "33823", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968644825, 34.976881225], [139.968662646, 34.976994883], [139.968751855, 34.976965387], [139.968644825, 34.976881225]]]}}, {"id": "33824", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.839530726, 34.901694108], [139.839451284, 34.901786892], [139.83953489, 34.901762721], [139.839530726, 34.901694108]]]}}, {"id": "33825", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959336615, 34.936787847], [139.959490973, 34.936787423], [139.959318042, 34.936738649], [139.959336615, 34.936787847]]]}}, {"id": "33826", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965263372, 34.948303667], [139.965108275, 34.948192676], [139.965106433, 34.948204757], [139.965263372, 34.948303667]]]}}, {"id": "33827", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966616537, 34.952996099], [139.966525305, 34.952913811], [139.966582529, 34.953019937], [139.966616537, 34.952996099]]]}}, {"id": "33828", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965764293, 34.948254351], [139.965764189, 34.948188], [139.965732905, 34.948201559], [139.965764293, 34.948254351]]]}}, {"id": "33829", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.885606122, 34.903060676], [139.885564241, 34.902950622], [139.885527367, 34.903115604], [139.885606122, 34.903060676]]]}}, {"id": "33830", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.839632944, 34.904188559], [139.839564617, 34.904270225], [139.839658223, 34.904257162], [139.839632944, 34.904188559]]]}}, {"id": "33831", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969314241, 34.978343117], [139.969237536, 34.978258108], [139.969210649, 34.978288514], [139.969314241, 34.978343117]]]}}, {"id": "33832", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809973294, 35.037468685], [139.809913035, 35.037392946], [139.809845499, 35.037431604], [139.809973294, 35.037468685]]]}}, {"id": "33833", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966766005, 34.953243865], [139.966682672, 34.953343586], [139.966783217, 34.953320802], [139.966766005, 34.953243865]]]}}, {"id": "33834", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87528642, 34.903448441], [139.875120195, 34.903447775], [139.875112127, 34.903504477], [139.87528642, 34.903448441]]]}}, {"id": "33835", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966734332, 34.955893333], [139.966619339, 34.955921946], [139.966717108, 34.955969162], [139.966734332, 34.955893333]]]}}, {"id": "33836", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.855973774, 34.904257162], [139.855956005, 34.904352721], [139.856045447, 34.904323279], [139.855973774, 34.904257162]]]}}, {"id": "33837", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964841829, 34.950623541], [139.964764981, 34.95069682], [139.964864773, 34.95072664], [139.964841829, 34.950623541]]]}}, {"id": "33838", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920520298, 34.90790173], [139.920343294, 34.907962171], [139.920558962, 34.907938396], [139.920520298, 34.90790173]]]}}, {"id": "33839", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919527756, 34.907069829], [139.919680636, 34.906974703], [139.919479144, 34.907042369], [139.919527756, 34.907069829]]]}}, {"id": "33840", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918839805, 34.907006577], [139.918765006, 34.907151865], [139.91889869, 34.907010414], [139.918839805, 34.907006577]]]}}, {"id": "33841", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912178392, 34.906067586], [139.91224978, 34.906137306], [139.912266161, 34.906067586], [139.912178392, 34.906067586]]]}}, {"id": "33842", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009285253, 35.034689351], [140.009162918, 35.034682135], [140.009262023, 35.034744099], [140.009285253, 35.034689351]]]}}, {"id": "33843", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872914734, 34.903025261], [139.87294882, 34.903145514], [139.872994436, 34.903093027], [139.872914734, 34.903025261]]]}}, {"id": "33844", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963104929, 34.941808387], [139.963216291, 34.941960973], [139.963124617, 34.941800162], [139.963104929, 34.941808387]]]}}, {"id": "33845", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952197198, 34.929042829], [139.952111077, 34.92905545], [139.952245175, 34.929144568], [139.952197198, 34.929042829]]]}}, {"id": "33846", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.839447108, 34.900747694], [139.839351284, 34.900785748], [139.839430441, 34.900823532], [139.839447108, 34.900747694]]]}}, {"id": "33847", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898915084, 34.898078162], [139.898905914, 34.897974279], [139.898847588, 34.898059559], [139.898915084, 34.898078162]]]}}, {"id": "33848", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898783878, 34.900455577], [139.898825707, 34.900352964], [139.898781284, 34.900356685], [139.898783878, 34.900455577]]]}}, {"id": "33849", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958375357, 34.936351982], [139.958386472, 34.936462946], [139.958439676, 34.936463973], [139.958375357, 34.936351982]]]}}, {"id": "33850", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0163138, 35.03449055], [140.016359092, 35.034599829], [140.016395824, 35.034558486], [140.0163138, 35.03449055]]]}}, {"id": "33851", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963512309, 34.943272045], [139.963410039, 34.943334802], [139.963559326, 34.943311387], [139.963512309, 34.943272045]]]}}, {"id": "33852", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825106485, 34.910056541], [139.825080532, 34.91015318], [139.8251938, 34.910156072], [139.825106485, 34.910056541]]]}}, {"id": "33853", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.910379494, 34.90694536], [139.910380337, 34.906832586], [139.91033144, 34.906953441], [139.910379494, 34.90694536]]]}}, {"id": "33854", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899089572, 34.900541045], [139.898928288, 34.90054627], [139.898954916, 34.900595387], [139.899089572, 34.900541045]]]}}, {"id": "33855", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972932283, 34.984190559], [139.973050052, 34.984204441], [139.972993943, 34.984130559], [139.972932283, 34.984190559]]]}}, {"id": "33856", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824979922, 34.910618252], [139.824902101, 34.910634649], [139.825039001, 34.910682982], [139.824979922, 34.910618252]]]}}, {"id": "33857", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942734189, 34.919475793], [139.942589702, 34.919459423], [139.942677147, 34.919545982], [139.942734189, 34.919475793]]]}}, {"id": "33858", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.922734345, 34.909904108], [139.922694981, 34.909819901], [139.922640506, 34.909833622], [139.922734345, 34.909904108]]]}}, {"id": "33859", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842633502, 34.902409946], [139.842569883, 34.902510775], [139.842629053, 34.902517721], [139.842633502, 34.902409946]]]}}, {"id": "33860", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942545642, 34.921481586], [139.942660869, 34.921468505], [139.942483865, 34.921364541], [139.942545642, 34.921481586]]]}}, {"id": "33861", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828809948, 35.051724838], [139.828738911, 35.051751523], [139.828841297, 35.051810757], [139.828809948, 35.051724838]]]}}, {"id": "33862", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.950877471, 34.928682171], [139.950781855, 34.928558577], [139.950731816, 34.928554748], [139.950877471, 34.928682171]]]}}, {"id": "33863", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930783917, 34.910739081], [139.930826861, 34.910821036], [139.930847108, 34.910727667], [139.930783917, 34.910739081]]]}}, {"id": "33864", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.874621699, 34.903528081], [139.874487782, 34.903585559], [139.874672049, 34.903573775], [139.874621699, 34.903528081]]]}}, {"id": "33865", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91917856, 34.907588883], [139.919219896, 34.907458405], [139.919132698, 34.907584405], [139.91917856, 34.907588883]]]}}, {"id": "33866", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964935188, 34.949980054], [139.964706031, 34.949911333], [139.964678119, 34.949920829], [139.964935188, 34.949980054]]]}}, {"id": "33867", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887584553, 34.898492081], [139.887511777, 34.898421532], [139.887511777, 34.898492081], [139.887584553, 34.898492081]]]}}, {"id": "33868", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972456744, 34.986575171], [139.972477198, 34.986486622], [139.972394047, 34.986549279], [139.972456744, 34.986575171]]]}}, {"id": "33869", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956076446, 34.93220164], [139.95607144, 34.932093306], [139.956008106, 34.932162748], [139.956076446, 34.93220164]]]}}, {"id": "33870", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887469105, 34.898758586], [139.887373385, 34.898787838], [139.887463774, 34.898801595], [139.887469105, 34.898758586]]]}}, {"id": "33871", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960260687, 34.936672667], [139.960198703, 34.936578532], [139.960141816, 34.936603018], [139.960260687, 34.936672667]]]}}, {"id": "33872", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903488975, 34.903652054], [139.903484254, 34.903747333], [139.90354869, 34.903712613], [139.903488975, 34.903652054]]]}}, {"id": "33873", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966592412, 34.948368559], [139.966720804, 34.948350477], [139.966589079, 34.948341072], [139.966592412, 34.948368559]]]}}, {"id": "33874", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969661997, 34.982980865], [139.969736161, 34.982893081], [139.969661997, 34.98290836], [139.969661997, 34.982980865]]]}}, {"id": "33875", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962658353, 34.937958631], [139.962678301, 34.938049297], [139.962735447, 34.938047072], [139.962658353, 34.937958631]]]}}, {"id": "33876", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890464955, 34.902634964], [139.890427795, 34.902526171], [139.890422399, 34.902652207], [139.890464955, 34.902634964]]]}}, {"id": "33877", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837080999, 34.901876054], [139.836981556, 34.901916892], [139.83708406, 34.901954946], [139.837080999, 34.901876054]]]}}, {"id": "33878", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968127704, 34.950429901], [139.9681531, 34.950363622], [139.96800332, 34.95042436], [139.968127704, 34.950429901]]]}}, {"id": "33879", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.845572477, 34.902561234], [139.845533722, 34.902447649], [139.845443891, 34.902522036], [139.845572477, 34.902561234]]]}}, {"id": "33880", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958008833, 34.935326748], [139.957906265, 34.935253739], [139.957992127, 34.935351099], [139.958008833, 34.935326748]]]}}, {"id": "33881", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966580973, 34.949726081], [139.966506524, 34.949778027], [139.966580973, 34.94980136], [139.966580973, 34.949726081]]]}}, {"id": "33882", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827265746, 35.055588775], [139.827312698, 35.055484613], [139.827229079, 35.055501306], [139.827265746, 35.055588775]]]}}, {"id": "33883", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956265201, 34.934650423], [139.956326394, 34.934577793], [139.956239403, 34.934602405], [139.956265201, 34.934650423]]]}}, {"id": "33884", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963489183, 34.959258829], [139.963722659, 34.959687405], [139.963739066, 34.959682252], [139.963627938, 34.959412649], [139.963529157, 34.959261937], [139.963489183, 34.959258829]]]}}, {"id": "33885", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966308223, 34.955343054], [139.966389053, 34.955428333], [139.966394617, 34.955357225], [139.966308223, 34.955343054]]]}}, {"id": "33886", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942392827, 34.919233063], [139.942253398, 34.919152505], [139.942384099, 34.919247766], [139.942392827, 34.919233063]]]}}, {"id": "33887", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949863139, 34.92838818], [139.94975904, 34.928387468], [139.949884332, 34.928509234], [139.949863139, 34.92838818]]]}}, {"id": "33888", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825232231, 35.030145775], [139.825204047, 35.030232856], [139.825261051, 35.030167324], [139.825232231, 35.030145775]]]}}, {"id": "33889", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.019186926, 35.036890757], [140.019290571, 35.036921604], [140.019301829, 35.03686191], [140.019186926, 35.036890757]]]}}, {"id": "33890", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844807964, 34.902800387], [139.844742205, 34.902851775], [139.844904708, 34.902880793], [139.844807964, 34.902800387]]]}}, {"id": "33891", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931262218, 34.910176486], [139.931261206, 34.910242423], [139.931323878, 34.91019027], [139.931262218, 34.910176486]]]}}, {"id": "33892", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967082633, 34.94794136], [139.9670193, 34.948012468], [139.967140143, 34.947974414], [139.967082633, 34.94794136]]]}}, {"id": "33893", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9655169, 34.948823541], [139.965464319, 34.948940162], [139.965501349, 34.948956613], [139.9655169, 34.948823541]]]}}, {"id": "33894", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016530973, 35.034762189], [140.01637987, 35.034776036], [140.016532892, 35.034787523], [140.016530973, 35.034762189]]]}}, {"id": "33895", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951022049, 34.927672369], [139.9509538, 34.927781514], [139.951072166, 34.927735964], [139.951022049, 34.927672369]]]}}, {"id": "33896", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954283917, 34.932910297], [139.954231089, 34.932784505], [139.954205616, 34.932806892], [139.954283917, 34.932910297]]]}}, {"id": "33897", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931956874, 34.913106288], [139.932005499, 34.913040622], [139.931962062, 34.913051829], [139.931956874, 34.913106288]]]}}, {"id": "33898", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82552869, 35.077222495], [139.825457095, 35.077108459], [139.825446667, 35.077241423], [139.82552869, 35.077222495]]]}}, {"id": "33899", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.904557419, 34.904013928], [139.904386252, 34.903986802], [139.904375447, 34.90400664], [139.904557419, 34.904013928]]]}}, {"id": "33900", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912676174, 34.907047541], [139.912780246, 34.907162775], [139.912804423, 34.907154189], [139.912676174, 34.907047541]]]}}, {"id": "33901", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965141167, 34.94753564], [139.965252763, 34.947558423], [139.965126602, 34.947471297], [139.965141167, 34.94753564]]]}}, {"id": "33902", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842468495, 34.902263559], [139.842426278, 34.902354108], [139.842489611, 34.902298279], [139.842468495, 34.902263559]]]}}, {"id": "33903", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810577224, 35.039008595], [139.810506316, 35.038974414], [139.810489844, 35.03906582], [139.810577224, 35.039008595]]]}}, {"id": "33904", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966655422, 34.950055802], [139.966546809, 34.950008586], [139.966592361, 34.950088586], [139.966655422, 34.950055802]]]}}, {"id": "33905", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017771492, 35.035175081], [140.017854034, 35.035131865], [140.017765214, 35.035117126], [140.017771492, 35.035175081]]]}}, {"id": "33906", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94995847, 34.928301009], [139.949886589, 34.928332901], [139.950077432, 34.928373009], [139.94995847, 34.928301009]]]}}, {"id": "33907", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914166563, 34.906317072], [139.914099079, 34.906243559], [139.91403131, 34.906318604], [139.914166563, 34.906317072]]]}}, {"id": "33908", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966797665, 34.955636667], [139.966906835, 34.955598892], [139.966860999, 34.955570279], [139.966797665, 34.955636667]]]}}, {"id": "33909", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964806524, 34.946351081], [139.96486153, 34.946441081], [139.964891803, 34.946351081], [139.964806524, 34.946351081]]]}}, {"id": "33910", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965051595, 34.950540919], [139.964892983, 34.950569216], [139.96508952, 34.950571432], [139.965051595, 34.950540919]]]}}, {"id": "33911", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875268327, 34.903379207], [139.875108029, 34.903395766], [139.875109131, 34.903415234], [139.875268327, 34.903379207]]]}}, {"id": "33912", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969234565, 34.982889351], [139.969302296, 34.982981495], [139.969325149, 34.982955414], [139.969234565, 34.982889351]]]}}, {"id": "33913", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942802438, 34.92084545], [139.94290917, 34.920773685], [139.942750493, 34.92079555], [139.942802438, 34.92084545]]]}}, {"id": "33914", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965503502, 34.947915225], [139.965577367, 34.947956973], [139.965705331, 34.947939883], [139.965503502, 34.947915225]]]}}, {"id": "33915", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870159274, 34.903215081], [139.870142257, 34.903321369], [139.87020035, 34.90330927], [139.870159274, 34.903215081]]]}}, {"id": "33916", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965288249, 34.947840541], [139.965050597, 34.947862532], [139.965297912, 34.947855766], [139.965288249, 34.947840541]]]}}, {"id": "33917", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96613096, 34.951917919], [139.966250117, 34.951940423], [139.966137912, 34.951880865], [139.96613096, 34.951917919]]]}}, {"id": "33918", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886956732, 34.902359811], [139.886893333, 34.902296189], [139.886872918, 34.902359306], [139.886956732, 34.902359811]]]}}, {"id": "33919", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970214189, 34.978583333], [139.970224747, 34.978486387], [139.970171414, 34.978565559], [139.970214189, 34.978583333]]]}}, {"id": "33920", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.92399834, 34.909667514], [139.923901232, 34.909627234], [139.923850869, 34.909660523], [139.92399834, 34.909667514]]]}}, {"id": "33921", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957474488, 34.935378495], [139.957373359, 34.935391495], [139.957449624, 34.935443432], [139.957474488, 34.935378495]]]}}, {"id": "33922", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903719222, 34.904409351], [139.90382118, 34.904376477], [139.903807588, 34.904349171], [139.903719222, 34.904409351]]]}}, {"id": "33923", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912221608, 34.907165027], [139.912173528, 34.907246009], [139.91220594, 34.907258613], [139.912221608, 34.907165027]]]}}, {"id": "33924", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.937796381, 34.91594109], [139.937943852, 34.915980541], [139.937971518, 34.915961766], [139.937796381, 34.91594109]]]}}, {"id": "33925", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90478131, 34.904392595], [139.904892023, 34.904482054], [139.904926926, 34.90447536], [139.90478131, 34.904392595]]]}}, {"id": "33926", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91987275, 34.908283973], [139.919944747, 34.908168622], [139.919842879, 34.908287784], [139.91987275, 34.908283973]]]}}, {"id": "33927", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912827134, 34.906764919], [139.912982205, 34.906764541], [139.91300144, 34.906739649], [139.912827134, 34.906764919]]]}}, {"id": "33928", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.915780143, 34.906362865], [139.915807432, 34.906502847], [139.915848781, 34.906490198], [139.915780143, 34.906362865]]]}}, {"id": "33929", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945157315, 34.923888883], [139.945018807, 34.923856108], [139.945150661, 34.923913946], [139.945157315, 34.923888883]]]}}, {"id": "33930", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824795655, 34.910340306], [139.824844125, 34.910422703], [139.824894578, 34.91038809], [139.824795655, 34.910340306]]]}}, {"id": "33931", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949974851, 34.928433243], [139.950127652, 34.928506117], [139.950147445, 34.92849582], [139.949974851, 34.928433243]]]}}, {"id": "33932", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843757639, 34.902329631], [139.843693748, 34.902418703], [139.843782387, 34.902435739], [139.843757639, 34.902329631]]]}}, {"id": "33933", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898564319, 34.901760865], [139.898611414, 34.90167664], [139.898531543, 34.901685703], [139.898564319, 34.901760865]]]}}, {"id": "33934", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82124537, 35.064628252], [139.821340428, 35.064583189], [139.821236381, 35.064585162], [139.82124537, 35.064628252]]]}}, {"id": "33935", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825519715, 35.077073937], [139.825722802, 35.077020306], [139.825719961, 35.076993532], [139.825519715, 35.077073937]]]}}, {"id": "33936", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955162581, 34.931420441], [139.955238547, 34.931347613], [139.955172763, 34.931343811], [139.955162581, 34.931420441]]]}}, {"id": "33937", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.962057004, 34.93780818], [139.961981245, 34.937732], [139.962028327, 34.937809928], [139.962057004, 34.93780818]]]}}, {"id": "33938", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965058353, 34.948331378], [139.964933048, 34.948370369], [139.965112516, 34.948378559], [139.965058353, 34.948331378]]]}}, {"id": "33939", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898986861, 34.904033198], [139.898937782, 34.903959577], [139.898934553, 34.904021324], [139.898986861, 34.904033198]]]}}, {"id": "33940", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.891389442, 34.903663757], [139.891404708, 34.903577117], [139.891347523, 34.903646108], [139.891389442, 34.903663757]]]}}, {"id": "33941", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965240934, 34.944343568], [139.965181297, 34.944426937], [139.965255422, 34.944363568], [139.965240934, 34.944343568]]]}}, {"id": "33942", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965879857, 34.951262198], [139.965867082, 34.951178865], [139.965798755, 34.951222468], [139.965879857, 34.951262198]]]}}, {"id": "33943", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964745746, 34.950166324], [139.964893567, 34.950244586], [139.964915655, 34.950226721], [139.964745746, 34.950166324]]]}}, {"id": "33944", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890150947, 34.901001252], [139.890205383, 34.900922919], [139.890120389, 34.900925694], [139.890150947, 34.901001252]]]}}, {"id": "33945", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972428534, 34.986343342], [139.97236332, 34.986252279], [139.972288677, 34.986286351], [139.972428534, 34.986343342]]]}}, {"id": "33946", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968101115, 34.982476477], [139.967968495, 34.982418748], [139.967963515, 34.982455351], [139.968101115, 34.982476477]]]}}, {"id": "33947", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947583035, 34.92565173], [139.947581167, 34.925567712], [139.947491089, 34.925563108], [139.947583035, 34.92565173]]]}}, {"id": "33948", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.877035966, 34.903082414], [139.8771207, 34.903147414], [139.877136524, 34.903114919], [139.877035966, 34.903082414]]]}}, {"id": "33949", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965100584, 34.945168216], [139.965138872, 34.945079649], [139.965063606, 34.945117414], [139.965100584, 34.945168216]]]}}, {"id": "33950", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966656667, 34.953434631], [139.966745331, 34.953416234], [139.96665524, 34.95336855], [139.966656667, 34.953434631]]]}}, {"id": "33951", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951231971, 34.927188586], [139.951303917, 34.927108027], [139.951225305, 34.927102468], [139.951231971, 34.927188586]]]}}, {"id": "33952", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809882464, 35.03925655], [139.809807185, 35.039190901], [139.80980716, 35.039266991], [139.809882464, 35.03925655]]]}}, {"id": "33953", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942126316, 34.918229946], [139.942171323, 34.918328441], [139.942220986, 34.918313342], [139.942126316, 34.918229946]]]}}, {"id": "33954", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837443113, 34.902735315], [139.837546628, 34.902824649], [139.837586239, 34.902797243], [139.837443113, 34.902735315]]]}}, {"id": "33955", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947040156, 34.923598387], [139.946963139, 34.923549153], [139.947007977, 34.923680631], [139.947040156, 34.923598387]]]}}, {"id": "33956", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841351284, 34.900713252], [139.841288495, 34.900796027], [139.841359611, 34.900796027], [139.841351284, 34.900713252]]]}}, {"id": "33957", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955594332, 34.931222135], [139.955539053, 34.931291063], [139.955608171, 34.931250694], [139.955594332, 34.931222135]]]}}, {"id": "33958", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966718781, 34.954698054], [139.966639053, 34.954635829], [139.966643502, 34.954673892], [139.966718781, 34.954698054]]]}}, {"id": "33959", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94997476, 34.926901351], [139.949894021, 34.926928739], [139.950007834, 34.926989117], [139.94997476, 34.926901351]]]}}, {"id": "33960", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.008995875, 35.034624865], [140.008936887, 35.034561486], [140.008933541, 35.034635414], [140.008995875, 35.034624865]]]}}, {"id": "33961", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886509274, 34.900056829], [139.886559494, 34.899956162], [139.886440389, 34.900054054], [139.886509274, 34.900056829]]]}}, {"id": "33962", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899066641, 34.90390082], [139.899037367, 34.903835748], [139.8989062, 34.903867369], [139.899066641, 34.90390082]]]}}, {"id": "33963", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.877872477, 34.90325018], [139.877845071, 34.903160045], [139.877785798, 34.903217667], [139.877872477, 34.90325018]]]}}, {"id": "33964", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957471167, 34.933828126], [139.957403346, 34.933717315], [139.957377237, 34.933751153], [139.957471167, 34.933828126]]]}}, {"id": "33965", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966059792, 34.954637045], [139.966121206, 34.954562063], [139.966043087, 34.954528432], [139.966059792, 34.954637045]]]}}, {"id": "33966", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929603372, 34.911018802], [139.929634527, 34.911089541], [139.929751518, 34.911092784], [139.929603372, 34.911018802]]]}}, {"id": "33967", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965073852, 34.950770495], [139.964893813, 34.950741306], [139.965085279, 34.950788874], [139.965073852, 34.950770495]]]}}, {"id": "33968", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966949339, 34.953613865], [139.96684489, 34.953627468], [139.966945162, 34.95364136], [139.966949339, 34.953613865]]]}}, {"id": "33969", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875371232, 34.903697036], [139.875458249, 34.903741631], [139.875469715, 34.903694117], [139.875371232, 34.903697036]]]}}, {"id": "33970", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964944643, 34.948430577], [139.965108846, 34.948482054], [139.965139351, 34.948459486], [139.964944643, 34.948430577]]]}}, {"id": "33971", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96165428, 34.937816991], [139.96163048, 34.937720468], [139.961544293, 34.937767883], [139.96165428, 34.937816991]]]}}, {"id": "33972", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834384617, 34.900516865], [139.834447951, 34.900598252], [139.834472672, 34.900505198], [139.834384617, 34.900516865]]]}}, {"id": "33973", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.963476537, 34.943640964], [139.963635435, 34.943663784], [139.963649053, 34.943628162], [139.963476537, 34.943640964]]]}}, {"id": "33974", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.933078093, 34.914123333], [139.933147458, 34.914197198], [139.933171388, 34.914166072], [139.933078093, 34.914123333]]]}}, {"id": "33975", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972564345, 34.986203459], [139.972394617, 34.986170297], [139.972568444, 34.986229414], [139.972564345, 34.986203459]]]}}, {"id": "33976", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872123243, 34.902744523], [139.872096589, 34.902841351], [139.872165097, 34.902860532], [139.872123243, 34.902744523]]]}}, {"id": "33977", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.960615175, 34.93704173], [139.960631946, 34.936907027], [139.960573074, 34.936922865], [139.960615175, 34.93704173]]]}}, {"id": "33978", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945221388, 34.923142225], [139.945323061, 34.923165], [139.94524917, 34.923119441], [139.945221388, 34.923142225]]]}}, {"id": "33979", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966692399, 34.955144964], [139.966731803, 34.955142847], [139.966657899, 34.955074234], [139.966692399, 34.955144964]]]}}, {"id": "33980", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971247899, 34.984088568], [139.97137214, 34.984038937], [139.971321803, 34.984004559], [139.971247899, 34.984088568]]]}}, {"id": "33981", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954336278, 34.932932514], [139.954445538, 34.932942414], [139.954325266, 34.932892045], [139.954336278, 34.932932514]]]}}, {"id": "33982", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964755032, 34.951326604], [139.964655863, 34.951340144], [139.96475454, 34.95135491], [139.964755032, 34.951326604]]]}}, {"id": "33983", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942762996, 34.920975297], [139.942899559, 34.921035577], [139.942748599, 34.920934568], [139.942762996, 34.920975297]]]}}, {"id": "33984", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815694293, 35.035451532], [139.815732776, 35.035378252], [139.815658457, 35.035412856], [139.815694293, 35.035451532]]]}}, {"id": "33985", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842561556, 34.902138279], [139.842658781, 34.902183559], [139.842662944, 34.902145225], [139.842561556, 34.902138279]]]}}, {"id": "33986", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965131466, 34.947292703], [139.964993126, 34.947324856], [139.965219818, 34.947289811], [139.965131466, 34.947292703]]]}}, {"id": "33987", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.848570999, 34.902087441], [139.848577951, 34.902169108], [139.848632672, 34.902121054], [139.848570999, 34.902087441]]]}}, {"id": "33988", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875003891, 34.903047009], [139.874853865, 34.903025784], [139.874827717, 34.903047613], [139.875003891, 34.903047009]]]}}, {"id": "33989", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018757276, 35.035922153], [140.018804163, 35.035958775], [140.018875045, 35.035851477], [140.018757276, 35.035922153]]]}}, {"id": "33990", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.850587497, 34.904011297], [139.850495577, 34.904051613], [139.850614423, 34.904068541], [139.850587497, 34.904011297]]]}}, {"id": "33991", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837677173, 34.902757577], [139.837717886, 34.902856829], [139.837747977, 34.902786514], [139.837677173, 34.902757577]]]}}, {"id": "33992", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965108482, 34.94504218], [139.964983865, 34.945021405], [139.965047588, 34.945092279], [139.965108482, 34.94504218]]]}}, {"id": "33993", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871735409, 34.903150045], [139.871668625, 34.903081829], [139.871609235, 34.903124667], [139.871735409, 34.903150045]]]}}, {"id": "33994", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912646394, 34.906803432], [139.912723204, 34.906899126], [139.912742296, 34.906842766], [139.912646394, 34.906803432]]]}}, {"id": "33995", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920371764, 34.907666189], [139.920492866, 34.907623378], [139.920367925, 34.907651955], [139.920371764, 34.907666189]]]}}, {"id": "33996", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919730363, 34.90847727], [139.919598716, 34.908472135], [139.919726226, 34.908491514], [139.919730363, 34.90847727]]]}}, {"id": "33997", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.92118725, 34.907559766], [139.92130834, 34.907516955], [139.921187549, 34.907535432], [139.92118725, 34.907559766]]]}}, {"id": "33998", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889582062, 34.900294306], [139.889567004, 34.900210387], [139.889512646, 34.900241333], [139.889582062, 34.900294306]]]}}, {"id": "33999", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.9645207, 34.946005532], [139.964611803, 34.946030532], [139.964581245, 34.945965252], [139.9645207, 34.946005532]]]}}, {"id": "34000", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889122685, 34.899948883], [139.889176472, 34.899861955], [139.889111479, 34.899871811], [139.889122685, 34.899948883]]]}}, {"id": "34001", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.007356783, 35.033269883], [140.007484747, 35.03324482], [140.007295966, 35.03322445], [140.007356783, 35.033269883]]]}}, {"id": "34002", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898577185, 34.903776676], [139.898466874, 34.903769973], [139.898480039, 34.903804766], [139.898577185, 34.903776676]]]}}, {"id": "34003", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971411803, 34.984181414], [139.971510026, 34.984098459], [139.97138821, 34.984149712], [139.971411803, 34.984181414]]]}}, {"id": "34004", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873067899, 34.903398523], [139.872954436, 34.903445342], [139.87309987, 34.903448], [139.873067899, 34.903398523]]]}}, {"id": "34005", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841556005, 34.900871586], [139.841522387, 34.900943802], [139.841593502, 34.900943802], [139.841556005, 34.900871586]]]}}, {"id": "34006", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.891126368, 34.903641523], [139.89115489, 34.903575883], [139.89109856, 34.903615486], [139.891126368, 34.903641523]]]}}, {"id": "34007", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.88776642, 34.899799856], [139.88765965, 34.899825234], [139.887792607, 34.899846], [139.88776642, 34.899799856]]]}}, {"id": "34008", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955140272, 34.931283441], [139.955077834, 34.931327225], [139.955163515, 34.931313252], [139.955140272, 34.931283441]]]}}, {"id": "34009", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887966732, 34.899729631], [139.887946226, 34.899674378], [139.887838158, 34.899732748], [139.887966732, 34.899729631]]]}}, {"id": "34010", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.833369222, 34.906927577], [139.833438275, 34.907041973], [139.833495292, 34.907044135], [139.833369222, 34.906927577]]]}}, {"id": "34011", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96294275, 34.938164676], [139.963009715, 34.938139991], [139.962885616, 34.938099378], [139.96294275, 34.938164676]]]}}, {"id": "34012", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825131933, 34.910510622], [139.825177665, 34.910617631], [139.825224617, 34.910620162], [139.825131933, 34.910510622]]]}}, {"id": "34013", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.894210623, 34.901961811], [139.894143372, 34.902026928], [139.894211102, 34.902019955], [139.894210623, 34.901961811]]]}}, {"id": "34014", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966478223, 34.95320664], [139.966568223, 34.95322664], [139.966550999, 34.953175252], [139.966478223, 34.95320664]]]}}, {"id": "34015", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957452698, 34.934866658], [139.957408807, 34.934938099], [139.957477588, 34.934892505], [139.957452698, 34.934866658]]]}}, {"id": "34016", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898270882, 34.904719162], [139.898190934, 34.904641676], [139.898149909, 34.904653604], [139.898270882, 34.904719162]]]}}, {"id": "34017", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955422529, 34.933911342], [139.955529585, 34.933911054], [139.95552786, 34.933859847], [139.955422529, 34.933911342]]]}}, {"id": "34018", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968581971, 34.977092685], [139.968476732, 34.977028261], [139.968556732, 34.977126432], [139.968581971, 34.977092685]]]}}, {"id": "34019", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969068158, 34.977562631], [139.968958508, 34.977552108], [139.969061946, 34.977579135], [139.969068158, 34.977562631]]]}}, {"id": "34020", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842354332, 34.901922162], [139.842443217, 34.901957162], [139.842430441, 34.901918829], [139.842354332, 34.901922162]]]}}, {"id": "34021", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958830739, 34.936062685], [139.958855045, 34.93599045], [139.958773826, 34.935997649], [139.958830739, 34.936062685]]]}}, {"id": "34022", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.850634747, 34.903930162], [139.850661907, 34.904008315], [139.850746589, 34.903975937], [139.850634747, 34.903930162]]]}}, {"id": "34023", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893475214, 34.905463198], [139.893478508, 34.905627892], [139.893507717, 34.905467234], [139.893475214, 34.905463198]]]}}, {"id": "34024", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94246668, 34.919292495], [139.942407328, 34.919350964], [139.942508859, 34.919327613], [139.94246668, 34.919292495]]]}}, {"id": "34025", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920317523, 34.907591225], [139.92033524, 34.907682261], [139.920371894, 34.907579468], [139.920317523, 34.907591225]]]}}, {"id": "34026", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920807756, 34.907376144], [139.920695966, 34.907415613], [139.920847185, 34.907403874], [139.920807756, 34.907376144]]]}}, {"id": "34027", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901049261, 34.904214982], [139.900992218, 34.904301009], [139.901100597, 34.904220721], [139.901049261, 34.904214982]]]}}, {"id": "34028", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918127756, 34.907016991], [139.918118885, 34.907114721], [139.918183671, 34.90701245], [139.918127756, 34.907016991]]]}}, {"id": "34029", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914186732, 34.906576955], [139.914278275, 34.906639459], [139.914203333, 34.906536468], [139.914186732, 34.906576955]]]}}, {"id": "34030", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901949689, 34.903889757], [139.901952049, 34.903966649], [139.902001336, 34.903886036], [139.901949689, 34.903889757]]]}}, {"id": "34031", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929599157, 34.911343523], [139.929443956, 34.911240874], [139.929430921, 34.911325622], [139.929599157, 34.911343523]]]}}, {"id": "34032", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.886118379, 34.902795955], [139.886031751, 34.902835117], [139.886142153, 34.902830649], [139.886118379, 34.902795955]]]}}, {"id": "34033", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811125577, 35.039819207], [139.811104565, 35.039698766], [139.811074086, 35.039722919], [139.811125577, 35.039819207]]]}}, {"id": "34034", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942351064, 34.918688423], [139.942227886, 34.918731802], [139.942360856, 34.918724288], [139.942351064, 34.918688423]]]}}, {"id": "34035", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954075188, 34.932620414], [139.953973865, 34.932652243], [139.954004553, 34.93267691], [139.954075188, 34.932620414]]]}}, {"id": "34036", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954904656, 34.933845153], [139.954856239, 34.933747477], [139.954829559, 34.933845766], [139.954904656, 34.933845153]]]}}, {"id": "34037", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.950006511, 34.927373333], [139.949901738, 34.927279505], [139.950004578, 34.927398847], [139.950006511, 34.927373333]]]}}, {"id": "34038", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888136018, 34.898770369], [139.888033826, 34.898768973], [139.888124773, 34.89880355], [139.888136018, 34.898770369]]]}}, {"id": "34039", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.88603978, 34.90341955], [139.885991271, 34.903360703], [139.885983982, 34.903430928], [139.88603978, 34.90341955]]]}}, {"id": "34040", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965540791, 34.948160658], [139.965632399, 34.948209775], [139.96554061, 34.94810945], [139.965540791, 34.948160658]]]}}, {"id": "34041", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948322049, 34.926254396], [139.948338482, 34.926192721], [139.948271479, 34.926174126], [139.948322049, 34.926254396]]]}}, {"id": "34042", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90189511, 34.903784495], [139.901981686, 34.903820414], [139.901993593, 34.903789937], [139.90189511, 34.903784495]]]}}, {"id": "34043", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903885162, 34.904976387], [139.903816394, 34.905050432], [139.903892335, 34.905038676], [139.903885162, 34.904976387]]]}}, {"id": "34044", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913699896, 34.906591883], [139.91374428, 34.906662802], [139.913775668, 34.906644036], [139.913699896, 34.906591883]]]}}, {"id": "34045", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90180668, 34.90404336], [139.901893268, 34.904079189], [139.901905279, 34.904048802], [139.90180668, 34.90404336]]]}}, {"id": "34046", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.93217345, 34.913473829], [139.932260065, 34.91350964], [139.932271958, 34.913479243], [139.93217345, 34.913473829]]]}}, {"id": "34047", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901143632, 34.904136946], [139.901178275, 34.904211387], [139.901211971, 34.904195595], [139.901143632, 34.904136946]]]}}, {"id": "34048", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971043178, 34.98362445], [139.971070428, 34.983551757], [139.970981375, 34.98361136], [139.971043178, 34.98362445]]]}}, {"id": "34049", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898692192, 34.90418327], [139.898657224, 34.904108829], [139.898602023, 34.904193874], [139.898692192, 34.90418327]]]}}, {"id": "34050", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.959368923, 34.936867685], [139.959477211, 34.936881279], [139.959327367, 34.936821577], [139.959368923, 34.936867685]]]}}, {"id": "34051", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83658489, 34.901706865], [139.836551829, 34.90179964], [139.836608223, 34.90176964], [139.83658489, 34.901706865]]]}}, {"id": "34052", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971457497, 34.984842955], [139.971439079, 34.98476464], [139.971383139, 34.984784532], [139.971457497, 34.984842955]]]}}, {"id": "34053", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964738781, 34.946768108], [139.964622996, 34.946729108], [139.964722516, 34.946794811], [139.964738781, 34.946768108]]]}}, {"id": "34054", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966531777, 34.953390505], [139.966623256, 34.953421595], [139.966538093, 34.953372919], [139.966531777, 34.953390505]]]}}, {"id": "34055", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.944517458, 34.924058495], [139.944457899, 34.924130847], [139.944594293, 34.924055631], [139.944517458, 34.924058495]]]}}, {"id": "34056", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.891573709, 34.90318264], [139.891575953, 34.903099153], [139.891528275, 34.903159306], [139.891573709, 34.90318264]]]}}, {"id": "34057", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965154254, 34.94812709], [139.96500987, 34.948073072], [139.965007147, 34.94808073], [139.965154254, 34.94812709]]]}}, {"id": "34058", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961401829, 34.937817622], [139.961302776, 34.937755973], [139.961304604, 34.937804468], [139.961401829, 34.937817622]]]}}, {"id": "34059", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.933188495, 34.913919144], [139.933141297, 34.91398355], [139.933212827, 34.913946622], [139.933188495, 34.913919144]]]}}, {"id": "34060", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965247121, 34.948138081], [139.965356446, 34.948105054], [139.96522847, 34.948112405], [139.965247121, 34.948138081]]]}}, {"id": "34061", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.0061, 35.032063441], [140.006051621, 35.031986802], [140.005999715, 35.032059532], [140.0061, 35.032063441]]]}}, {"id": "34062", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819606148, 35.06517491], [139.819696615, 35.065089279], [139.819579624, 35.065150838], [139.819606148, 35.06517491]]]}}, {"id": "34063", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.956294008, 34.934733964], [139.956395084, 34.93476145], [139.956309935, 34.934693018], [139.956294008, 34.934733964]]]}}, {"id": "34064", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965218029, 34.946855757], [139.965323995, 34.94691955], [139.965348249, 34.946888153], [139.965218029, 34.946855757]]]}}, {"id": "34065", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94760489, 34.925783595], [139.947602685, 34.925844991], [139.947652361, 34.925838541], [139.94760489, 34.925783595]]]}}, {"id": "34066", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831287185, 34.90778091], [139.831286304, 34.907853387], [139.831340908, 34.907834279], [139.831287185, 34.90778091]]]}}, {"id": "34067", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.957975707, 34.933909018], [139.957992594, 34.93399536], [139.958006796, 34.933904387], [139.957975707, 34.933909018]]]}}, {"id": "34068", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819425499, 35.064952856], [139.819411556, 35.065039126], [139.819470117, 35.064972423], [139.819425499, 35.064952856]]]}}, {"id": "34069", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889269248, 34.900338171], [139.889207925, 34.90026545], [139.889210156, 34.900333514], [139.889269248, 34.900338171]]]}}, {"id": "34070", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966283061, 34.954574324], [139.966365551, 34.954599117], [139.966324747, 34.954555081], [139.966283061, 34.954574324]]]}}, {"id": "34071", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955003696, 34.931454405], [139.955047575, 34.931373234], [139.954955888, 34.931404784], [139.955003696, 34.931454405]]]}}, {"id": "34072", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831363126, 34.907637027], [139.831292335, 34.907628198], [139.831351971, 34.907674171], [139.831363126, 34.907637027]]]}}, {"id": "34073", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828661933, 35.052107234], [139.828722127, 35.052053964], [139.82866939, 35.052056937], [139.828661933, 35.052107234]]]}}, {"id": "34074", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917180415, 34.906260315], [139.91710572, 34.906310486], [139.917175447, 34.906320441], [139.917180415, 34.906260315]]]}}, {"id": "34075", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914431012, 34.906385595], [139.91434821, 34.906423874], [139.914417173, 34.906451135], [139.914431012, 34.906385595]]]}}, {"id": "34076", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945684773, 34.923894252], [139.945630999, 34.923953351], [139.945739222, 34.923929901], [139.945684773, 34.923894252]]]}}, {"id": "34077", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964943995, 34.947130009], [139.965014721, 34.947201333], [139.964960934, 34.947117099], [139.964943995, 34.947130009]]]}}, {"id": "34078", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929636848, 34.911017153], [139.929759507, 34.910994694], [139.929633761, 34.910993081], [139.929636848, 34.911017153]]]}}, {"id": "34079", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94600013, 34.923749991], [139.945990363, 34.923811036], [139.946079429, 34.923792108], [139.94600013, 34.923749991]]]}}, {"id": "34080", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.929254449, 34.912490937], [139.929236524, 34.91241982], [139.929170973, 34.912413649], [139.929254449, 34.912490937]]]}}, {"id": "34081", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.952180052, 34.928997054], [139.952180272, 34.928918171], [139.95213201, 34.928930477], [139.952180052, 34.928997054]]]}}, {"id": "34082", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009658171, 35.034868378], [140.009559377, 35.034796676], [140.009518158, 35.034843973], [140.009658171, 35.034868378]]]}}, {"id": "34083", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96494642, 34.950227225], [139.965081505, 34.950278099], [139.96510262, 34.950268883], [139.96494642, 34.950227225]]]}}, {"id": "34084", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918783619, 34.907172315], [139.91888655, 34.907120225], [139.918890895, 34.907092901], [139.918783619, 34.907172315]]]}}, {"id": "34085", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.93096738, 34.912595676], [139.931086719, 34.912637315], [139.931118119, 34.912627739], [139.93096738, 34.912595676]]]}}, {"id": "34086", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.914711245, 34.906475099], [139.91476725, 34.906563225], [139.914800078, 34.906568613], [139.914711245, 34.906475099]]]}}, {"id": "34087", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018842464, 35.035838459], [140.018741375, 35.03577136], [140.01881655, 35.035861036], [140.018842464, 35.035838459]]]}}, {"id": "34088", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95925677, 34.936763054], [139.959288003, 34.936709288], [139.959179702, 34.936687946], [139.95925677, 34.936763054]]]}}, {"id": "34089", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.888869546, 34.899214018], [139.888913152, 34.899135658], [139.888854825, 34.899123694], [139.888869546, 34.899214018]]]}}, {"id": "34090", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016579792, 35.034586063], [140.016502049, 35.034664423], [140.016558093, 35.034681739], [140.016579792, 35.034586063]]]}}, {"id": "34091", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968690272, 34.977141432], [139.96862262, 34.977163495], [139.968704514, 34.97721236], [139.968690272, 34.977141432]]]}}, {"id": "34092", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.890871297, 34.903171252], [139.890795435, 34.903118009], [139.890793826, 34.903165342], [139.890871297, 34.903171252]]]}}, {"id": "34093", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837816693, 34.902828973], [139.837859702, 34.90289027], [139.83787677, 34.902855018], [139.837816693, 34.902828973]]]}}, {"id": "34094", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836344008, 34.901688721], [139.836361414, 34.901756964], [139.836378703, 34.901696568], [139.836344008, 34.901688721]]]}}, {"id": "34095", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.945889676, 34.923662018], [139.945973126, 34.923699811], [139.945997289, 34.923672829], [139.945889676, 34.923662018]]]}}, {"id": "34096", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018601012, 35.036369703], [140.018535551, 35.036357541], [140.018597575, 35.036449667], [140.018601012, 35.036369703]]]}}, {"id": "34097", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930213139, 34.911290477], [139.930278418, 34.911245081], [139.930187224, 34.911217658], [139.930213139, 34.911290477]]]}}, {"id": "34098", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824804929, 34.91064636], [139.824903852, 34.910697486], [139.824971154, 34.910695865], [139.824804929, 34.91064636]]]}}, {"id": "34099", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827583619, 35.076459252], [139.827670895, 35.076487108], [139.827562348, 35.076417964], [139.827583619, 35.076459252]]]}}, {"id": "34100", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.02035917, 35.038447586], [140.020481297, 35.038460559], [140.020503165, 35.03843682], [140.02035917, 35.038447586]]]}}, {"id": "34101", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947511038, 34.925507198], [139.94746965, 34.925422586], [139.947436667, 34.925473279], [139.947511038, 34.925507198]]]}}, {"id": "34102", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898461336, 34.904092081], [139.898397056, 34.904027748], [139.898394254, 34.904088414], [139.898461336, 34.904092081]]]}}, {"id": "34103", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899851193, 34.900159559], [139.899779533, 34.900110387], [139.899783696, 34.900162892], [139.899851193, 34.900159559]]]}}, {"id": "34104", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.021583943, 35.03951745], [140.021519494, 35.039469315], [140.021480065, 35.039483982], [140.021583943, 35.03951745]]]}}, {"id": "34105", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873726965, 34.903394514], [139.873598482, 34.903370937], [139.873555927, 34.903396739], [139.873726965, 34.903394514]]]}}, {"id": "34106", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.01883096, 35.036759234], [140.018732607, 35.036837], [140.018877121, 35.036764757], [140.01883096, 35.036759234]]]}}, {"id": "34107", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837697549, 34.903093559], [139.837699624, 34.903168748], [139.837765279, 34.90312718], [139.837697549, 34.903093559]]]}}, {"id": "34108", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.869656537, 34.904870631], [139.869565733, 34.904914928], [139.869724176, 34.904906225], [139.869656537, 34.904870631]]]}}, {"id": "34109", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.912382166, 34.907190793], [139.912279546, 34.907211955], [139.912399481, 34.907220712], [139.912382166, 34.907190793]]]}}, {"id": "34110", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91870441, 34.907184], [139.918690052, 34.907263514], [139.918744462, 34.907186946], [139.91870441, 34.907184]]]}}, {"id": "34111", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.913816861, 34.906689261], [139.913744695, 34.906752955], [139.913851128, 34.90670664], [139.913816861, 34.906689261]]]}}, {"id": "34112", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966643087, 34.954381468], [139.966551258, 34.954400586], [139.966555979, 34.954405901], [139.966643087, 34.954381468]]]}}, {"id": "34113", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917591842, 34.906233973], [139.917527665, 34.906294505], [139.917623709, 34.906254234], [139.917591842, 34.906233973]]]}}, {"id": "34114", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91634882, 34.906329757], [139.91643642, 34.906280928], [139.91632013, 34.906306604], [139.91634882, 34.906329757]]]}}, {"id": "34115", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917452827, 34.905872126], [139.917388651, 34.905932658], [139.917484695, 34.905892387], [139.917452827, 34.905872126]]]}}, {"id": "34116", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.907358495, 34.90435527], [139.907458275, 34.90432618], [139.907337795, 34.904326883], [139.907358495, 34.90435527]]]}}, {"id": "34117", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.900130986, 34.904381], [139.900066693, 34.904441523], [139.900162737, 34.904401261], [139.900130986, 34.904381]]]}}, {"id": "34118", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.906645837, 34.90426627], [139.906717224, 34.904321126], [139.906671414, 34.904240748], [139.906645837, 34.90426627]]]}}, {"id": "34119", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920044306, 34.907527324], [139.919980026, 34.907587865], [139.92007607, 34.907547586], [139.920044306, 34.907527324]]]}}, {"id": "34120", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903400765, 34.904112225], [139.903503489, 34.904091613], [139.903383658, 34.904082306], [139.903400765, 34.904112225]]]}}, {"id": "34121", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.900936278, 34.904415532], [139.900955499, 34.904494405], [139.900975227, 34.904407126], [139.900936278, 34.904415532]]]}}, {"id": "34122", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947049209, 34.925243495], [139.947152542, 34.925247459], [139.947126096, 34.925199072], [139.947049209, 34.925243495]]]}}, {"id": "34123", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018666109, 35.036222126], [140.018713372, 35.036181757], [140.01868821, 35.03615682], [140.018666109, 35.036222126]]]}}, {"id": "34124", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818992283, 35.065690297], [139.818847445, 35.065709387], [139.818965525, 35.06574591], [139.818992283, 35.065690297]]]}}, {"id": "34125", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018910078, 35.035928775], [140.018917185, 35.036014757], [140.018953567, 35.036016234], [140.018910078, 35.035928775]]]}}, {"id": "34126", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826661323, 35.053257054], [139.826723372, 35.053193505], [139.826635668, 35.053212883], [139.826661323, 35.053257054]]]}}, {"id": "34127", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842879857, 34.90342618], [139.842887743, 34.90352273], [139.842892218, 34.90342609], [139.842879857, 34.90342618]]]}}, {"id": "34128", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965717652, 34.947226532], [139.965631128, 34.947276387], [139.965750298, 34.947245423], [139.965717652, 34.947226532]]]}}, {"id": "34129", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901608457, 34.903971441], [139.90168594, 34.903979423], [139.90169869, 34.903919198], [139.901608457, 34.903971441]]]}}, {"id": "34130", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917891725, 34.906168045], [139.917961427, 34.906161955], [139.917925019, 34.906097622], [139.917891725, 34.906168045]]]}}, {"id": "34131", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.936837341, 34.915943351], [139.936906939, 34.915937252], [139.936870532, 34.915872919], [139.936837341, 34.915943351]]]}}, {"id": "34132", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.901274125, 34.904194748], [139.901264877, 34.904258667], [139.901338093, 34.90426882], [139.901274125, 34.904194748]]]}}, {"id": "34133", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90546262, 34.904669766], [139.905445499, 34.904725757], [139.905531388, 34.904719757], [139.90546262, 34.904669766]]]}}, {"id": "34134", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919526018, 34.906767018], [139.919596407, 34.906794919], [139.91963192, 34.906741252], [139.919526018, 34.906767018]]]}}, {"id": "34135", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91260083, 34.906979342], [139.912621232, 34.906921099], [139.912537393, 34.906904928], [139.91260083, 34.906979342]]]}}, {"id": "34136", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.902984267, 34.904618108], [139.903041868, 34.904661622], [139.903094578, 34.904618676], [139.902984267, 34.904618108]]]}}, {"id": "34137", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918623178, 34.907152324], [139.91870131, 34.907152], [139.918704643, 34.907090874], [139.918623178, 34.907152324]]]}}, {"id": "34138", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.905942827, 34.904589514], [139.905911038, 34.904648315], [139.90597716, 34.904675946], [139.905942827, 34.904589514]]]}}, {"id": "34139", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.94234083, 34.917895757], [139.942323865, 34.917812559], [139.942297224, 34.917863613], [139.94234083, 34.917895757]]]}}, {"id": "34140", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.930161894, 34.912670333], [139.93008415, 34.912633973], [139.930079157, 34.912660027], [139.930161894, 34.912670333]]]}}, {"id": "34141", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824532776, 34.910477045], [139.824557289, 34.910534378], [139.824676355, 34.910566126], [139.824532776, 34.910477045]]]}}, {"id": "34142", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965593787, 34.945568658], [139.965486329, 34.945607], [139.965605422, 34.945585685], [139.965593787, 34.945568658]]]}}, {"id": "34143", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831152257, 34.907848333], [139.831115811, 34.907904766], [139.831201933, 34.907924063], [139.831152257, 34.907848333]]]}}, {"id": "34144", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837911115, 34.902694829], [139.837824021, 34.90270718], [139.837907185, 34.90275991], [139.837911115, 34.902694829]]]}}, {"id": "34145", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887601842, 34.899271568], [139.887509546, 34.899197595], [139.887583696, 34.899296901], [139.887601842, 34.899271568]]]}}, {"id": "34146", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967225227, 34.948495604], [139.967077756, 34.948435459], [139.967052179, 34.948465414], [139.967225227, 34.948495604]]]}}, {"id": "34147", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955264241, 34.932062288], [139.955154994, 34.932061856], [139.955263619, 34.932084829], [139.955264241, 34.932062288]]]}}, {"id": "34148", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947686135, 34.925876189], [139.947811154, 34.925897261], [139.947696278, 34.925851126], [139.947686135, 34.925876189]]]}}, {"id": "34149", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.850539741, 34.903828036], [139.850455486, 34.903843459], [139.850577951, 34.903887532], [139.850539741, 34.903828036]]]}}, {"id": "34150", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.893401518, 34.903586514], [139.893306991, 34.903611261], [139.893329131, 34.903652991], [139.893401518, 34.903586514]]]}}, {"id": "34151", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.007663852, 35.033152072], [140.007723891, 35.033090595], [140.007645837, 35.033137135], [140.007663852, 35.033152072]]]}}, {"id": "34152", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821346913, 35.064450225], [139.821374656, 35.064410387], [139.821257341, 35.064405685], [139.821346913, 35.064450225]]]}}, {"id": "34153", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.903286848, 34.905023333], [139.903293709, 34.905113297], [139.903343346, 34.905050892], [139.903286848, 34.905023333]]]}}, {"id": "34154", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.906501466, 34.90422309], [139.906543009, 34.904306541], [139.906565811, 34.904234225], [139.906501466, 34.90422309]]]}}, {"id": "34155", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.944785149, 34.924032198], [139.944868223, 34.924035279], [139.944794202, 34.924012], [139.944785149, 34.924032198]]]}}, {"id": "34156", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843183502, 34.903331955], [139.843173217, 34.903366937], [139.843270389, 34.903370982], [139.843183502, 34.903331955]]]}}, {"id": "34157", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.946878872, 34.92418973], [139.946881595, 34.924260856], [139.946925071, 34.924195099], [139.946878872, 34.92418973]]]}}, {"id": "34158", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965506316, 34.949393198], [139.965593126, 34.949385171], [139.965499831, 34.94937418], [139.965506316, 34.949393198]]]}}, {"id": "34159", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958130791, 34.935332568], [139.958044916, 34.935297414], [139.958075746, 34.935349126], [139.958130791, 34.935332568]]]}}, {"id": "34160", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.889756913, 34.900778505], [139.889711466, 34.900725243], [139.889717639, 34.900782847], [139.889756913, 34.900778505]]]}}, {"id": "34161", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018848197, 35.03575218], [140.018771154, 35.035706955], [140.018844981, 35.035787523], [140.018848197, 35.03575218]]]}}, {"id": "34162", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.845474436, 34.902616595], [139.845479027, 34.902567649], [139.845460428, 34.902573414], [139.845474436, 34.902616595]]]}}, {"id": "34163", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821704553, 35.06453545], [139.82161904, 35.064513802], [139.821654215, 35.064572766], [139.821704553, 35.06453545]]]}}, {"id": "34164", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.972234825, 34.986831802], [139.97217965, 34.986782919], [139.972169209, 34.986826649], [139.972234825, 34.986831802]]]}}, {"id": "34165", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.943063294, 34.923670018], [139.943156641, 34.92373736], [139.943174228, 34.923709676], [139.943063294, 34.923670018]]]}}, {"id": "34166", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871047082, 34.902111865], [139.8711093, 34.902173532], [139.871128197, 34.902122135], [139.871047082, 34.902111865]]]}}, {"id": "34167", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837383684, 34.902417189], [139.837316706, 34.902397441], [139.837331375, 34.902435126], [139.837383684, 34.902417189]]]}}, {"id": "34168", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96472297, 34.946669685], [139.964798405, 34.946666], [139.964728301, 34.946647865], [139.96472297, 34.946669685]]]}}, {"id": "34169", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969475629, 34.983015739], [139.969379481, 34.982957793], [139.969345499, 34.983006955], [139.969475629, 34.983015739]]]}}, {"id": "34170", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.019419805, 35.03707673], [140.01934537, 35.037113892], [140.019433476, 35.037158198], [140.019419805, 35.03707673]]]}}, {"id": "34171", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836736018, 34.902896982], [139.836795331, 34.902987396], [139.836817108, 34.902983793], [139.836736018, 34.902896982]]]}}, {"id": "34172", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.948526083, 34.926185063], [139.948529066, 34.926124387], [139.948462607, 34.926109486], [139.948526083, 34.926185063]]]}}, {"id": "34173", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.904633333, 34.904729387], [139.904574125, 34.904719243], [139.904558521, 34.904782622], [139.904633333, 34.904729387]]]}}, {"id": "34174", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965355824, 34.947242523], [139.965287367, 34.94729118], [139.965389922, 34.947271874], [139.965355824, 34.947242523]]]}}, {"id": "34175", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887614488, 34.899376856], [139.887582257, 34.89944745], [139.887624163, 34.899446171], [139.887614488, 34.899376856]]]}}, {"id": "34176", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918576576, 34.907168757], [139.918551206, 34.907083766], [139.918543541, 34.907173649], [139.918576576, 34.907168757]]]}}, {"id": "34177", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87574987, 34.903508766], [139.875688392, 34.903561162], [139.875764436, 34.903541577], [139.87574987, 34.903508766]]]}}, {"id": "34178", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017016342, 35.034784901], [140.017027471, 35.034711955], [140.0169462, 35.034738306], [140.017016342, 35.034784901]]]}}, {"id": "34179", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965142607, 34.950282811], [139.965260376, 34.950259243], [139.965129961, 34.950255604], [139.965142607, 34.950282811]]]}}, {"id": "34180", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.88774585, 34.898624865], [139.88770572, 34.898680865], [139.887759014, 34.898680928], [139.88774585, 34.898624865]]]}}, {"id": "34181", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942107185, 34.918415306], [139.942193294, 34.918396658], [139.942106719, 34.918395658], [139.942107185, 34.918415306]]]}}, {"id": "34182", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919397834, 34.907143838], [139.91946725, 34.907077532], [139.919373839, 34.907124568], [139.919397834, 34.907143838]]]}}, {"id": "34183", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919396252, 34.906890883], [139.919400973, 34.906803441], [139.919362983, 34.906887937], [139.919396252, 34.906890883]]]}}, {"id": "34184", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91968454, 34.908289883], [139.919753956, 34.908223568], [139.919660661, 34.908270604], [139.91968454, 34.908289883]]]}}, {"id": "34185", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918597938, 34.906981144], [139.918607549, 34.907068315], [139.918633294, 34.90698473], [139.918597938, 34.906981144]]]}}, {"id": "34186", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.970953346, 34.984008396], [139.970942322, 34.983904468], [139.970926394, 34.984004369], [139.970953346, 34.984008396]]]}}, {"id": "34187", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918678145, 34.907078811], [139.918706291, 34.906994414], [139.918649792, 34.907071982], [139.918678145, 34.907078811]]]}}, {"id": "34188", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830702374, 35.048232622], [139.83080904, 35.048243892], [139.830832387, 35.048226856], [139.830702374, 35.048232622]]]}}, {"id": "34189", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.958565357, 34.936034829], [139.958538781, 34.935979234], [139.958510233, 34.936001441], [139.958565357, 34.936034829]]]}}, {"id": "34190", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87259808, 34.903300766], [139.872449494, 34.903330207], [139.872612101, 34.903314198], [139.87259808, 34.903300766]]]}}, {"id": "34191", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873384565, 34.903160874], [139.87340179, 34.903255613], [139.873428988, 34.903164468], [139.873384565, 34.903160874]]]}}, {"id": "34192", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.887318716, 34.898591279], [139.88739594, 34.898584054], [139.887361777, 34.898548775], [139.887318716, 34.898591279]]]}}, {"id": "34193", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843095875, 34.903519288], [139.843156381, 34.903484216], [139.843077056, 34.903503423], [139.843095875, 34.903519288]]]}}, {"id": "34194", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96672559, 34.953738622], [139.96676096, 34.953672595], [139.966744086, 34.953666937], [139.96672559, 34.953738622]]]}}, {"id": "34195", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.947073139, 34.925375631], [139.946976809, 34.925361838], [139.947074254, 34.925389964], [139.947073139, 34.925375631]]]}}, {"id": "34196", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825682659, 35.077104234], [139.825666109, 35.077042667], [139.825642529, 35.077103964], [139.825682659, 35.077104234]]]}}, {"id": "34197", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875541115, 34.903352793], [139.875492114, 34.903410324], [139.875568262, 34.903391009], [139.875541115, 34.903352793]]]}}, {"id": "34198", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016414617, 35.034632468], [140.016484864, 35.034575477], [140.01639201, 35.034615279], [140.016414617, 35.034632468]]]}}, {"id": "34199", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.879974319, 34.903232892], [139.87990262, 34.903193532], [139.879903722, 34.903223099], [139.879974319, 34.903232892]]]}}, {"id": "34200", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875490519, 34.903499658], [139.875489896, 34.903554829], [139.875540636, 34.90350027], [139.875490519, 34.903499658]]]}}, {"id": "34201", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873313943, 34.903078865], [139.873292412, 34.903131423], [139.873364734, 34.903101919], [139.873313943, 34.903078865]]]}}, {"id": "34202", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837202153, 34.902596225], [139.837266822, 34.902669604], [139.83729144, 34.902633099], [139.837202153, 34.902596225]]]}}, {"id": "34203", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966346472, 34.95295673], [139.966369676, 34.952881703], [139.96631786, 34.952871757], [139.966346472, 34.95295673]]]}}, {"id": "34204", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.010578872, 35.034794829], [140.010629507, 35.034741658], [140.01059978, 35.034730072], [140.010578872, 35.034794829]]]}}, {"id": "34205", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.010538392, 35.034777856], [140.010523852, 35.034691243], [140.01049834, 35.034701288], [140.010538392, 35.034777856]]]}}, {"id": "34206", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.951248132, 34.928780252], [139.951306083, 34.928736928], [139.951217406, 34.928722586], [139.951248132, 34.928780252]]]}}, {"id": "34207", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.007943424, 35.032990396], [140.007970337, 35.032917342], [140.007924073, 35.032910739], [140.007943424, 35.032990396]]]}}, {"id": "34208", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873666511, 34.903299342], [139.873604384, 34.903344072], [139.873686005, 34.903331153], [139.873666511, 34.903299342]]]}}, {"id": "34209", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818520661, 35.033824036], [139.818581064, 35.033753009], [139.818533606, 35.033737225], [139.818520661, 35.033824036]]]}}, {"id": "34210", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966475798, 34.947413658], [139.966627562, 34.947425577], [139.966671012, 34.947414261], [139.966475798, 34.947413658]]]}}, {"id": "34211", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969482555, 34.982964162], [139.969437406, 34.982882631], [139.969402853, 34.982916928], [139.969482555, 34.982964162]]]}}, {"id": "34212", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814785149, 35.036400099], [139.814727601, 35.036445432], [139.814813528, 35.036428144], [139.814785149, 35.036400099]]]}}, {"id": "34213", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.95527035, 34.931383009], [139.955355979, 34.931405649], [139.955340156, 34.931367171], [139.95527035, 34.931383009]]]}}, {"id": "34214", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873676965, 34.902975973], [139.873719001, 34.903015622], [139.873698418, 34.902965775], [139.873676965, 34.902975973]]]}}, {"id": "34215", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.842490843, 34.90340818], [139.842557043, 34.903344712], [139.842458677, 34.903398631], [139.842490843, 34.90340818]]]}}, {"id": "34216", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.019205979, 35.036595135], [140.019143333, 35.03656873], [140.019140052, 35.036618676], [140.019205979, 35.036595135]]]}}, {"id": "34217", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82571786, 35.029861486], [139.825798521, 35.02989836], [139.825798521, 35.029846523], [139.82571786, 35.029861486]]]}}, {"id": "34218", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.005587912, 35.031982595], [140.005597601, 35.032057396], [140.005628729, 35.032061234], [140.005587912, 35.031982595]]]}}, {"id": "34219", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.885515668, 34.902959748], [139.885424955, 34.902956991], [139.885418301, 34.902985477], [139.885515668, 34.902959748]]]}}, {"id": "34220", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.010238495, 35.034865459], [140.010312114, 35.034847505], [140.010223865, 35.034839523], [140.010238495, 35.034865459]]]}}, {"id": "34221", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818791751, 35.065719658], [139.818878132, 35.065771414], [139.818899741, 35.06574518], [139.818791751, 35.065719658]]]}}, {"id": "34222", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964577302, 34.949932117], [139.964619974, 34.94998445], [139.964637471, 34.949966577], [139.964577302, 34.949932117]]]}}, {"id": "34223", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.942850195, 34.923504243], [139.942931064, 34.923497234], [139.942845564, 34.923483243], [139.942850195, 34.923504243]]]}}, {"id": "34224", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843233658, 34.902772486], [139.843322957, 34.902783568], [139.843301284, 34.902756342], [139.843233658, 34.902772486]]]}}, {"id": "34225", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.967459831, 34.981678928], [139.967516719, 34.981638748], [139.967437458, 34.981660748], [139.967459831, 34.981678928]]]}}, {"id": "34226", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.895818638, 34.901869856], [139.895734488, 34.901858811], [139.89573987, 34.901885036], [139.895818638, 34.901869856]]]}}, {"id": "34227", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016757756, 35.034719297], [140.016723256, 35.034780477], [140.016750558, 35.034785568], [140.016757756, 35.034719297]]]}}, {"id": "34228", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818940091, 35.066319784], [139.818951051, 35.066387658], [139.818981427, 35.066344486], [139.818940091, 35.066319784]]]}}, {"id": "34229", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.899012399, 34.905318613], [139.89897153, 34.905252919], [139.898942659, 34.905271595], [139.899012399, 34.905318613]]]}}, {"id": "34230", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.968393359, 34.982098081], [139.968359468, 34.982033081], [139.968359468, 34.982079468], [139.968393359, 34.982098081]]]}}, {"id": "34231", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.021145499, 35.038986532], [140.021094228, 35.038950099], [140.021078171, 35.038973027], [140.021145499, 35.038986532]]]}}, {"id": "34232", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.954656822, 34.930798748], [139.95463262, 34.930863405], [139.954707665, 34.930835748], [139.954656822, 34.930798748]]]}}, {"id": "34233", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.953310999, 34.929455432], [139.95339013, 34.929446153], [139.95331559, 34.929447856], [139.953310999, 34.929455432]]]}}, {"id": "34234", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.932366148, 34.910450973], [139.932395383, 34.910511378], [139.932404786, 34.910443892], [139.932366148, 34.910450973]]]}}, {"id": "34235", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.015939974, 35.03445109], [140.015951634, 35.034516423], [140.015973632, 35.03445455], [140.015939974, 35.03445109]]]}}, {"id": "34236", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016247717, 35.034639117], [140.016262866, 35.034698955], [140.016341232, 35.034701901], [140.016247717, 35.034639117]]]}}, {"id": "34237", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840651881, 34.903896649], [139.840690843, 34.903965153], [139.840729689, 34.903948477], [139.840651881, 34.903896649]]]}}, {"id": "34238", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.884686615, 34.903066928], [139.884725642, 34.902994252], [139.884659144, 34.903044396], [139.884686615, 34.903066928]]]}}, {"id": "34239", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844445759, 34.902764901], [139.844489209, 34.902848829], [139.844498171, 34.902777063], [139.844445759, 34.902764901]]]}}, {"id": "34240", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018178054, 35.035346459], [140.018181803, 35.035403243], [140.018244475, 35.035397919], [140.018178054, 35.035346459]]]}}, {"id": "34241", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.875233281, 34.903550144], [139.87512166, 34.903532694], [139.875109857, 34.903546937], [139.875233281, 34.903550144]]]}}, {"id": "34242", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816161051, 35.042970468], [139.816216952, 35.042926937], [139.816153048, 35.042932243], [139.816161051, 35.042970468]]]}}, {"id": "34243", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870859494, 34.903227847], [139.870885668, 34.903285351], [139.870903619, 34.903280748], [139.870859494, 34.903227847]]]}}, {"id": "34244", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827635357, 35.076764396], [139.827604436, 35.076717342], [139.827604436, 35.076759622], [139.827635357, 35.076764396]]]}}, {"id": "34245", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016847873, 35.034778297], [140.016777678, 35.034808514], [140.016800013, 35.034846613], [140.016847873, 35.034778297]]]}}, {"id": "34246", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.873283606, 34.903468225], [139.873279209, 34.903415667], [139.873266732, 34.903424865], [139.873283606, 34.903468225]]]}}, {"id": "34247", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965820636, 34.947208477], [139.965829351, 34.947248856], [139.965887691, 34.947236261], [139.965820636, 34.947208477]]]}}, {"id": "34248", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.936274112, 34.91599936], [139.936346757, 34.915976045], [139.936294864, 34.915967252], [139.936274112, 34.91599936]]]}}, {"id": "34249", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918640259, 34.907370559], [139.918713009, 34.907347252], [139.918661128, 34.90733845], [139.918640259, 34.907370559]]]}}, {"id": "34250", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919911167, 34.907036378], [139.919987886, 34.907047865], [139.919949222, 34.907018054], [139.919911167, 34.907036378]]]}}, {"id": "34251", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.920576226, 34.907804604], [139.920648859, 34.907781288], [139.920596978, 34.907772495], [139.920576226, 34.907804604]]]}}, {"id": "34252", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916774721, 34.906658234], [139.916844021, 34.906687757], [139.916831077, 34.906658468], [139.916774721, 34.906658234]]]}}, {"id": "34253", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916984617, 34.906668369], [139.917057263, 34.906644973], [139.917005383, 34.906636261], [139.916984617, 34.906668369]]]}}, {"id": "34254", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919607626, 34.908307964], [139.919601336, 34.908371973], [139.919651868, 34.908341559], [139.919607626, 34.908307964]]]}}, {"id": "34255", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919263165, 34.907498135], [139.919322646, 34.907456532], [139.919270233, 34.907462153], [139.919263165, 34.907498135]]]}}, {"id": "34256", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.919242892, 34.907157928], [139.919268885, 34.907217946], [139.919290623, 34.907178171], [139.919242892, 34.907157928]]]}}, {"id": "34257", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.900466342, 34.904738973], [139.900384371, 34.904726486], [139.900467782, 34.904764577], [139.900466342, 34.904738973]]]}}, {"id": "34258", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018524488, 35.035583018], [140.018475655, 35.035651964], [140.018520259, 35.035650721], [140.018524488, 35.035583018]]]}}, {"id": "34259", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009106018, 35.034673748], [140.009047147, 35.03471809], [140.009093217, 35.034734973], [140.009106018, 35.034673748]]]}}, {"id": "34260", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017060636, 35.034697748], [140.01703585, 35.034637748], [140.017024864, 35.034629468], [140.016986291, 35.034678297], [140.017060636, 35.034697748]]]}}, {"id": "34261", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.01557952, 35.034506351], [140.015669403, 35.034514955], [140.015578042, 35.03448336], [140.01557952, 35.034506351]]]}}, {"id": "34262", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844573826, 34.902280703], [139.844612023, 34.902349477], [139.844610376, 34.902275649], [139.844573826, 34.902280703]]]}}, {"id": "34263", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840547458, 34.903600694], [139.840507419, 34.903649288], [139.840541012, 34.903659198], [139.840547458, 34.903600694]]]}}, {"id": "34264", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.847903139, 34.903961532], [139.847698275, 34.903841117], [139.847689624, 34.903852568], [139.847903139, 34.903961532]]]}}, {"id": "34265", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840849053, 34.903744009], [139.840903982, 34.903747523], [139.84086153, 34.903716694], [139.840849053, 34.903744009]]]}}, {"id": "34266", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820255383, 35.028452117], [139.820310493, 35.028512333], [139.820315875, 35.02845582], [139.820255383, 35.028452117]]]}}, {"id": "34267", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818761933, 35.066277297], [139.818697471, 35.066232216], [139.818688145, 35.066258901], [139.818761933, 35.066277297]]]}}, {"id": "34268", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.874701738, 34.903413658], [139.874676044, 34.903454595], [139.874716835, 34.903421946], [139.874701738, 34.903413658]]]}}, {"id": "34269", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820011012, 35.032986207], [139.819989196, 35.033057243], [139.820041699, 35.033022631], [139.820011012, 35.032986207]]]}}, {"id": "34270", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.88712297, 34.900881027], [139.887081154, 34.900849225], [139.887083917, 34.900889153], [139.88712297, 34.900881027]]]}}, {"id": "34271", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813070636, 35.036855162], [139.813071608, 35.03691691], [139.813131012, 35.036892667], [139.813070636, 35.036855162]]]}}, {"id": "34272", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016760661, 35.034695405], [140.016707497, 35.034644829], [140.016690752, 35.034651432], [140.016760661, 35.034695405]]]}}, {"id": "34273", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.971769637, 34.987360595], [139.971710856, 34.987323252], [139.971698106, 34.987357883], [139.971769637, 34.987360595]]]}}, {"id": "34274", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810226706, 35.037826973], [139.810210363, 35.037864829], [139.810253761, 35.037853036], [139.810226706, 35.037826973]]]}}, {"id": "34275", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818656641, 35.06590264], [139.818584929, 35.065899297], [139.81864939, 35.065941766], [139.818656641, 35.06590264]]]}}, {"id": "34276", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.005708106, 35.031916703], [140.00572118, 35.031983486], [140.005750428, 35.031926198], [140.005708106, 35.031916703]]]}}, {"id": "34277", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844039961, 34.902426514], [139.844104864, 34.902478892], [139.844048833, 34.902399829], [139.844039961, 34.902426514]]]}}, {"id": "34278", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017518184, 35.03506927], [140.017602724, 35.035041559], [140.017597639, 35.035022], [140.017518184, 35.03506927]]]}}, {"id": "34279", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.955069014, 34.931732901], [139.955025032, 34.931744306], [139.955091777, 34.931805721], [139.955069014, 34.931732901]]]}}, {"id": "34280", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810826005, 35.039489036], [139.810864462, 35.03954682], [139.810870065, 35.039510586], [139.810826005, 35.039489036]]]}}, {"id": "34281", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827099235, 35.052325865], [139.827044968, 35.052356514], [139.827098353, 35.052352189], [139.827099235, 35.052325865]]]}}, {"id": "34282", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840583333, 34.903396324], [139.84060227, 34.90345564], [139.84062262, 34.903442477], [139.840583333, 34.903396324]]]}}, {"id": "34283", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.969298405, 34.98281473], [139.969246978, 34.982846964], [139.969319429, 34.982871315], [139.969298405, 34.98281473]]]}}, {"id": "34284", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965362451, 34.94563436], [139.965371764, 34.945569712], [139.965326433, 34.945566063], [139.965362451, 34.94563436]]]}}, {"id": "34285", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820173658, 35.032996505], [139.820276472, 35.032959279], [139.820166641, 35.032985595], [139.820173658, 35.032996505]]]}}, {"id": "34286", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843455032, 34.902777694], [139.843496174, 34.902847108], [139.843519157, 34.902844135], [139.843455032, 34.902777694]]]}}, {"id": "34287", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016057237, 35.034148198], [140.016064176, 35.034069216], [140.016045655, 35.034068342], [140.016057237, 35.034148198]]]}}, {"id": "34288", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.871585603, 34.903148108], [139.871533113, 34.903201856], [139.871606848, 34.903164333], [139.871585603, 34.903148108]]]}}, {"id": "34289", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966496226, 34.952603189], [139.966444488, 34.952635703], [139.966481323, 34.952663153], [139.966496226, 34.952603189]]]}}, {"id": "34290", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826263411, 35.07713627], [139.826255512, 35.077078847], [139.82619345, 35.077127973], [139.826263411, 35.07713627]]]}}, {"id": "34291", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964516252, 34.945767072], [139.964460908, 34.945795622], [139.964534254, 34.945797432], [139.964516252, 34.945767072]]]}}, {"id": "34292", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.019527613, 35.036719405], [140.019517613, 35.03680055], [140.019549533, 35.036715135], [140.019527613, 35.036719405]]]}}, {"id": "34293", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.030050285, 35.047289432], [140.030013658, 35.047236216], [140.03000642, 35.04728355], [140.030050285, 35.047289432]]]}}, {"id": "34294", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.949393281, 34.927333712], [139.949462918, 34.927352216], [139.949424864, 34.92729618], [139.949393281, 34.927333712]]]}}, {"id": "34295", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96049454, 34.936685946], [139.960486226, 34.936757802], [139.960532244, 34.936711153], [139.96049454, 34.936685946]]]}}, {"id": "34296", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821950947, 35.064305414], [139.822067601, 35.064290559], [139.821944034, 35.064294874], [139.821950947, 35.064305414]]]}}, {"id": "34297", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965224591, 34.946783991], [139.965220558, 34.946730351], [139.965193165, 34.946783568], [139.965224591, 34.946783991]]]}}, {"id": "34298", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.015657575, 35.034419144], [140.015578911, 35.034428099], [140.015635512, 35.034451901], [140.015657575, 35.034419144]]]}}, {"id": "34299", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812055058, 35.03684182], [139.812133204, 35.036825523], [139.812121375, 35.036798207], [139.812055058, 35.03684182]]]}}, {"id": "34300", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966455123, 34.953728189], [139.966494319, 34.95365891], [139.966483243, 34.953641441], [139.966455123, 34.953728189]]]}}, {"id": "34301", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826322503, 35.077197577], [139.826338405, 35.077259144], [139.826357704, 35.07721227], [139.826322503, 35.077197577]]]}}, {"id": "34302", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.870054125, 34.903477802], [139.870034332, 34.903514775], [139.87010131, 34.903529721], [139.870054125, 34.903477802]]]}}, {"id": "34303", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87011546, 34.903124405], [139.870122931, 34.903172901], [139.870175992, 34.903157108], [139.87011546, 34.903124405]]]}}, {"id": "34304", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.020316939, 35.038432414], [140.020293398, 35.038493036], [140.020316511, 35.038489117], [140.020316939, 35.038432414]]]}}, {"id": "34305", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017243009, 35.034841802], [140.017310713, 35.034825829], [140.017286213, 35.034804414], [140.017243009, 35.034841802]]]}}, {"id": "34306", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.898927056, 34.905338495], [139.898960843, 34.905294036], [139.898911051, 34.905298027], [139.898927056, 34.905338495]]]}}, {"id": "34307", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.021749481, 35.039438946], [140.021760778, 35.039488144], [140.021783826, 35.039452324], [140.021749481, 35.039438946]]]}}, {"id": "34308", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965026796, 34.946811243], [139.964986213, 34.946767477], [139.964999792, 34.94683291], [139.965026796, 34.946811243]]]}}, {"id": "34309", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.008728716, 35.034436847], [140.008671245, 35.034474883], [140.008731102, 35.034480198], [140.008728716, 35.034436847]]]}}, {"id": "34310", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017203878, 35.034841766], [140.017246524, 35.03479636], [140.017210739, 35.034769099], [140.017203878, 35.034841766]]]}}, {"id": "34311", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965839364, 34.945577766], [139.965818016, 34.945643514], [139.965873243, 34.945605225], [139.965839364, 34.945577766]]]}}, {"id": "34312", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81898799, 35.065833811], [139.81899655, 35.065773766], [139.818965292, 35.065807207], [139.81898799, 35.065833811]]]}}, {"id": "34313", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844363774, 34.902549991], [139.844363567, 34.902624279], [139.844396602, 34.902606784], [139.844363774, 34.902549991]]]}}, {"id": "34314", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.009077678, 35.034537306], [140.009070973, 35.034481243], [140.009046615, 35.034520036], [140.009077678, 35.034537306]]]}}, {"id": "34315", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.021355901, 35.038917874], [140.021291089, 35.038904541], [140.021287536, 35.038929613], [140.021355901, 35.038917874]]]}}, {"id": "34316", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.965733281, 34.951366919], [139.965710947, 34.951300955], [139.965718379, 34.951364054], [139.965733281, 34.951366919]]]}}, {"id": "34317", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809770078, 35.037500108], [139.809735019, 35.037449883], [139.809721855, 35.037470432], [139.809770078, 35.037500108]]]}}, {"id": "34318", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966061453, 34.952203495], [139.966079222, 34.95215318], [139.966035746, 34.952149802], [139.966061453, 34.952203495]]]}}, {"id": "34319", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017357289, 35.034877955], [140.017352776, 35.034814586], [140.017327899, 35.034868441], [140.017357289, 35.034877955]]]}}, {"id": "34320", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.008868054, 35.034509658], [140.008878158, 35.034566802], [140.008908638, 35.034522586], [140.008868054, 35.034509658]]]}}, {"id": "34321", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827050376, 35.076163369], [139.827111453, 35.076212495], [139.827120895, 35.076161297], [139.827050376, 35.076163369]]]}}, {"id": "34322", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.018888975, 35.036142631], [140.018879741, 35.036080982], [140.018860999, 35.036081739], [140.018888975, 35.036142631]]]}}, {"id": "34323", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818667536, 35.06624727], [139.818608444, 35.066219946], [139.818595837, 35.066244468], [139.818667536, 35.06624727]]]}}, {"id": "34324", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810308716, 35.038095], [139.81034786, 35.038053171], [139.810269053, 35.03807209], [139.810308716, 35.038095]]]}}, {"id": "34325", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831527367, 35.048226324], [139.831473437, 35.048252919], [139.831539533, 35.048244802], [139.831527367, 35.048226324]]]}}, {"id": "34326", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966538911, 34.953333613], [139.966603995, 34.953365541], [139.96663201, 34.953356766], [139.966538911, 34.953333613]]]}}, {"id": "34327", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821607263, 35.064787126], [139.821545097, 35.064772333], [139.82153227, 35.064788108], [139.821607263, 35.064787126]]]}}, {"id": "34328", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.931338833, 34.912892685], [139.931379144, 34.912920685], [139.931380402, 34.912870928], [139.931338833, 34.912892685]]]}}, {"id": "34329", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966358418, 34.954387189], [139.966293709, 34.954455144], [139.96632022, 34.95446764], [139.966358418, 34.954387189]]]}}, {"id": "34330", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.96495703, 34.946728748], [139.96496, 34.946669243], [139.964932646, 34.946677838], [139.96495703, 34.946728748]]]}}, {"id": "34331", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.01857655, 35.035241099], [140.018569818, 35.035176477], [140.018547289, 35.035196973], [140.01857655, 35.035241099]]]}}, {"id": "34332", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810409987, 35.038530604], [139.810467964, 35.038544766], [139.810426433, 35.038513928], [139.810409987, 35.038530604]]]}}, {"id": "34333", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827188431, 35.076188973], [139.827171764, 35.076219081], [139.827268145, 35.076237928], [139.827188431, 35.076188973]]]}}, {"id": "34334", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.84762799, 34.903689045], [139.847607432, 34.903742595], [139.847649792, 34.903821739], [139.84762799, 34.903689045]]]}}, {"id": "34335", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844518846, 34.902706838], [139.844495875, 34.902757324], [139.844507471, 34.902754982], [139.844518846, 34.902706838]]]}}, {"id": "34336", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.872884099, 34.90347818], [139.872914423, 34.903515856], [139.872924916, 34.90348736], [139.872884099, 34.90347818]]]}}, {"id": "34337", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.015878379, 35.034448387], [140.015814358, 35.034444423], [140.015865292, 35.034477613], [140.015878379, 35.034448387]]]}}, {"id": "34338", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.966432322, 34.953233486], [139.966438223, 34.953161901], [139.966413826, 34.953169856], [139.966432322, 34.953233486]]]}}, {"id": "34339", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819205901, 35.066138613], [139.819180999, 35.066201811], [139.819222451, 35.066159441], [139.819205901, 35.066138613]]]}}, {"id": "34340", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81878952, 35.065899766], [139.818741933, 35.065925009], [139.81881572, 35.065923027], [139.81878952, 35.065899766]]]}}, {"id": "34341", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824023463, 35.031502315], [139.823985214, 35.031490405], [139.823963839, 35.031538369], [139.824023463, 35.031502315]]]}}, {"id": "34342", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844419598, 34.902708198], [139.844396848, 34.902746964], [139.844418846, 34.902765532], [139.844419598, 34.902708198]]]}}, {"id": "34343", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016204332, 35.033960468], [140.016165551, 35.033914108], [140.016182853, 35.033961856], [140.016204332, 35.033960468]]]}}, {"id": "34344", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813243865, 35.042468811], [139.813279598, 35.042431315], [139.813249792, 35.042421477], [139.813243865, 35.042468811]]]}}, {"id": "34345", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815342581, 35.043442], [139.815354215, 35.043392063], [139.81531441, 35.043434784], [139.815342581, 35.043442]]]}}, {"id": "34346", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.008851466, 35.034642649], [140.008811699, 35.034600432], [140.008821894, 35.034652252], [140.008851466, 35.034642649]]]}}, {"id": "34347", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827701816, 35.076524252], [139.827664643, 35.076561568], [139.827717613, 35.076571306], [139.827701816, 35.076524252]]]}}, {"id": "34348", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.016226083, 35.034571991], [140.016268145, 35.034608261], [140.01628345, 35.034590838], [140.016226083, 35.034571991]]]}}, {"id": "34349", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811761829, 35.036968973], [139.811761077, 35.036931739], [139.811710104, 35.036942099], [139.811761829, 35.036968973]]]}}, {"id": "34350", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.964937575, 34.946747252], [139.964891829, 34.946756856], [139.964936628, 34.946767802], [139.964937575, 34.946747252]]]}}, {"id": "34351", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817158301, 35.035139108], [139.817180337, 35.035105036], [139.817126848, 35.035135135], [139.817158301, 35.035139108]]]}}, {"id": "34352", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810344345, 35.038468838], [139.810276939, 35.038478658], [139.810314968, 35.038498405], [139.810344345, 35.038468838]]]}}, {"id": "34353", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818611089, 35.066181459], [139.818601777, 35.066135748], [139.818581154, 35.066151342], [139.818611089, 35.066181459]]]}}, {"id": "34354", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.005276446, 35.032198126], [140.005286109, 35.032155739], [140.00525393, 35.032178054], [140.005276446, 35.032198126]]]}}, {"id": "34355", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828332075, 35.052161045], [139.828327588, 35.052126243], [139.828275512, 35.052131468], [139.828332075, 35.052161045]]]}}, {"id": "34356", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.843376135, 34.902783658], [139.843403826, 34.902825027], [139.843402179, 34.902779414], [139.843376135, 34.902783658]]]}}, {"id": "34357", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831021816, 35.048141126], [139.830950233, 35.04813373], [139.831021699, 35.048157081], [139.831021816, 35.048141126]]]}}, {"id": "34358", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811224358, 35.039719072], [139.811271167, 35.039698072], [139.811241582, 35.039678685], [139.811224358, 35.039719072]]]}}, {"id": "34359", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814108859, 35.036607423], [139.814089235, 35.036642757], [139.814145123, 35.036638261], [139.814108859, 35.036607423]]]}}, {"id": "34360", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.860630493, 34.902832748], [139.860639261, 34.902872955], [139.860663865, 34.902848153], [139.860630493, 34.902832748]]]}}, {"id": "34361", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81074463, 35.03887764], [139.810712944, 35.038905495], [139.810731245, 35.038925234], [139.81074463, 35.03887764]]]}}, {"id": "34362", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827699001, 35.052212216], [139.82774284, 35.052247649], [139.827744708, 35.052223577], [139.827699001, 35.052212216]]]}}, {"id": "34363", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825134994, 35.030322009], [139.82510585, 35.030259171], [139.825091271, 35.03028], [139.825134994, 35.030322009]]]}}, {"id": "34364", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81371, 35.043052766], [139.813698612, 35.043008775], [139.813679974, 35.043052757], [139.81371, 35.043052766]]]}}, {"id": "34365", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82158856, 35.064484144], [139.82160096, 35.064420054], [139.821569818, 35.064475306], [139.82158856, 35.064484144]]]}}, {"id": "34366", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81865917, 35.033922405], [139.818617847, 35.033947189], [139.818654462, 35.033959541], [139.81865917, 35.033922405]]]}}, {"id": "34367", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817384721, 35.03525191], [139.817344163, 35.035277775], [139.817432387, 35.035244162], [139.817384721, 35.03525191]]]}}, {"id": "34368", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812893982, 35.03676318], [139.812853087, 35.036803108], [139.812885305, 35.036809694], [139.812893982, 35.03676318]]]}}, {"id": "34369", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818927795, 35.065809009], [139.818889196, 35.065829829], [139.81892297, 35.065825054], [139.818927795, 35.065809009]]]}}, {"id": "34370", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821175344, 35.032535955], [139.821193865, 35.032568946], [139.821214137, 35.032535955], [139.821175344, 35.032535955]]]}}, {"id": "34371", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813029546, 35.036805838], [139.813035668, 35.036843613], [139.813053333, 35.036817117], [139.813029546, 35.036805838]]]}}, {"id": "34372", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.833339455, 34.907013667], [139.83338345, 34.907025568], [139.83334821, 34.906995459], [139.833339455, 34.907013667]]]}}, {"id": "34373", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819744371, 35.032965622], [139.819760584, 35.033001324], [139.819776913, 35.032982757], [139.819744371, 35.032965622]]]}}, {"id": "34374", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.902484436, 34.904914261], [139.902483878, 34.904637144], [139.902478962, 34.90491418], [139.902484436, 34.904914261]]]}}, {"id": "34375", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830550649, 35.032729081], [139.830546148, 35.032685811], [139.830507354, 35.032700955], [139.830550649, 35.032729081]]]}}, {"id": "34376", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827895227, 35.052139117], [139.827853567, 35.052111982], [139.82786738, 35.052151739], [139.827895227, 35.052139117]]]}}, {"id": "34377", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812630065, 35.036726982], [139.81258511, 35.036762405], [139.812635759, 35.036737261], [139.812630065, 35.036726982]]]}}, {"id": "34378", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961849157, 34.939308108], [139.961906654, 34.939318324], [139.961885811, 34.939289856], [139.961849157, 34.939308108]]]}}, {"id": "34379", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819808457, 35.028471171], [139.819816667, 35.028496955], [139.819849339, 35.028473252], [139.819808457, 35.028471171]]]}}, {"id": "34380", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814045499, 35.036628685], [139.814000454, 35.036611279], [139.813997938, 35.036629135], [139.814045499, 35.036628685]]]}}, {"id": "34381", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814037315, 35.036458847], [139.814060895, 35.036435324], [139.814037873, 35.036428649], [139.814037315, 35.036458847]]]}}, {"id": "34382", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.961946446, 34.939701685], [139.962001193, 34.939709919], [139.96198013, 34.939683432], [139.961946446, 34.939701685]]]}}, {"id": "34383", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822667562, 35.032235541], [139.82265856, 35.032269171], [139.822687613, 35.032248802], [139.822667562, 35.032235541]]]}}, {"id": "34384", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812623891, 35.036844081], [139.812630687, 35.036878162], [139.81264856, 35.036844721], [139.812623891, 35.036844081]]]}}, {"id": "34385", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.019275071, 35.037195495], [140.019250311, 35.03724755], [140.019292516, 35.037203856], [140.019275071, 35.037195495]]]}}, {"id": "34386", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823372296, 35.032028], [139.823412296, 35.032003748], [139.823382815, 35.031985721], [139.823372296, 35.032028]]]}}, {"id": "34387", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823446278, 35.031948225], [139.823433243, 35.031903505], [139.823424137, 35.031943802], [139.823446278, 35.031948225]]]}}, {"id": "34388", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831235188, 35.032654459], [139.831196615, 35.03265464], [139.831209767, 35.032675189], [139.831235188, 35.032654459]]]}}, {"id": "34389", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818657717, 35.033472937], [139.818691582, 35.033477171], [139.818692789, 35.033466811], [139.818657717, 35.033472937]]]}}, {"id": "34390", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813029818, 35.036598685], [139.813029585, 35.036638892], [139.813047134, 35.036614459], [139.813029818, 35.036598685]]]}}, {"id": "34391", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819343619, 35.033282081], [139.819355564, 35.033308405], [139.819374202, 35.033282991], [139.819343619, 35.033282081]]]}}, {"id": "34392", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811914617, 35.036992973], [139.811880208, 35.036970973], [139.811868366, 35.036990622], [139.811914617, 35.036992973]]]}}, {"id": "34393", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812716304, 35.036808135], [139.812734267, 35.036831937], [139.812754553, 35.036805252], [139.812716304, 35.036808135]]]}}, {"id": "34394", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818520687, 35.03364645], [139.818555538, 35.033651054], [139.818561141, 35.033630766], [139.818520687, 35.03364645]]]}}, {"id": "34395", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812482711, 35.036888054], [139.812509014, 35.036908613], [139.812516031, 35.036889054], [139.812482711, 35.036888054]]]}}, {"id": "34396", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81194594, 35.036661874], [139.811983645, 35.036665396], [139.811955253, 35.036650874], [139.81194594, 35.036661874]]]}}, {"id": "34397", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819700298, 35.033065955], [139.81968428, 35.033104171], [139.819709287, 35.033067036], [139.819700298, 35.033065955]]]}}, {"id": "34398", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.013580687, 35.035331198], [140.013602127, 35.035362], [140.013611946, 35.035341703], [140.013580687, 35.035331198]]]}}, {"id": "34399", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812903191, 35.036744342], [139.812937821, 35.036740378], [139.812918106, 35.036722351], [139.812903191, 35.036744342]]]}}, {"id": "34400", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819536109, 35.033130838], [139.819515837, 35.033088018], [139.819492711, 35.033112712], [139.819536109, 35.033130838]]]}}, {"id": "34401", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828377458, 35.052211252], [139.82838096, 35.052241279], [139.828388742, 35.052241279], [139.828377458, 35.052211252]]]}}, {"id": "34402", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811054968, 35.039523423], [139.811026576, 35.039518009], [139.811030298, 35.039543252], [139.811054968, 35.039523423]]]}}, {"id": "34403", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830363554, 35.032767667], [139.830352387, 35.032738099], [139.830342192, 35.032761081], [139.830363554, 35.032767667]]]}}, {"id": "34404", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813479715, 35.036672225], [139.813468988, 35.036641667], [139.813466783, 35.036658973], [139.813479715, 35.036672225]]]}}, {"id": "34405", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82354668, 35.031846], [139.823577367, 35.031844027], [139.823579339, 35.03182509], [139.82354668, 35.031846]]]}}, {"id": "34406", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831097873, 35.032680324], [139.831106861, 35.032639937], [139.831090195, 35.032677351], [139.831097873, 35.032680324]]]}}, {"id": "34407", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812580376, 35.036866342], [139.812581025, 35.036896811], [139.812590778, 35.036885189], [139.812580376, 35.036866342]]]}}, {"id": "34408", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825085032, 35.030243757], [139.825055992, 35.030232396], [139.8250538, 35.030256378], [139.825085032, 35.030243757]]]}}, {"id": "34409", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813638197, 35.036691099], [139.813641388, 35.036668829], [139.81361716, 35.036678919], [139.813638197, 35.036691099]]]}}, {"id": "34410", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.90131297, 34.904466072], [139.90135153, 34.904385189], [139.901307938, 34.904464279], [139.90131297, 34.904466072]]]}}, {"id": "34411", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811497419, 35.039641685], [139.811470882, 35.039646459], [139.811495551, 35.039652324], [139.811497419, 35.039641685]]]}}, {"id": "34412", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017610013, 35.035549432], [140.017639481, 35.035543351], [140.01762882, 35.03553345], [140.017610013, 35.035549432]]]}}, {"id": "34413", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813075798, 35.036812703], [139.813100013, 35.036811351], [139.813097497, 35.036793955], [139.813075798, 35.036812703]]]}}, {"id": "34414", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "南房総市", "N03_005": null, "N03_007": "12234"}, "geometry": {"type": "Polygon", "coordinates": [[[140.017649585, 35.035553613], [140.017660363, 35.035573604], [140.017667458, 35.035560162], [140.017649585, 35.035553613]]]}}, {"id": "34415", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "匝瑳市", "N03_005": null, "N03_007": "12235"}, "geometry": {"type": "Polygon", "coordinates": [[[140.540870337, 35.666666667], [140.512289754, 35.677062838], [140.486942918, 35.718992027], [140.504526498, 35.759454225], [140.550464812, 35.761007414], [140.573884254, 35.733616928], [140.60430856, 35.737509748], [140.599087445, 35.716841468], [140.578580078, 35.712800694], [140.604364617, 35.708703667], [140.624335616, 35.67016564], [140.559441894, 35.627904982], [140.529863839, 35.65716864], [140.540870337, 35.666666667]]]}}, {"id": "34416", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "匝瑳市", "N03_005": null, "N03_007": "12235"}, "geometry": {"type": "Polygon", "coordinates": [[[140.518601414, 35.67344364], [140.517410558, 35.672134225], [140.516853333, 35.672508108], [140.518601414, 35.67344364]]]}}, {"id": "34417", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "香取市", "N03_005": null, "N03_007": "12236"}, "geometry": {"type": "Polygon", "coordinates": [[[140.498819468, 35.798388081], [140.466027977, 35.791565973], [140.451650117, 35.807388225], [140.47246847, 35.851010027], [140.424885253, 35.872995252], [140.425095694, 35.887865252], [140.458438171, 35.926540225], [140.502802607, 35.905520279], [140.487176394, 35.928592], [140.511244643, 35.958735414], [140.607992918, 35.895811946], [140.651512633, 35.834187802], [140.626261673, 35.787175892], [140.565641245, 35.755155721], [140.498819468, 35.798388081]]]}}, {"id": "34418", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "山武市", "N03_005": null, "N03_007": "12237"}, "geometry": {"type": "Polygon", "coordinates": [[[140.371506835, 35.605354865], [140.330409883, 35.606597414], [140.341255863, 35.617179306], [140.337455863, 35.617295694], [140.33277061, 35.621219027], [140.319914747, 35.647042], [140.354416835, 35.656708559], [140.340247782, 35.668200721], [140.367755499, 35.688419054], [140.475739222, 35.658116865], [140.466126978, 35.643774171], [140.500051803, 35.632804054], [140.490224968, 35.615513586], [140.525624903, 35.602120279], [140.470090039, 35.547212802], [140.435011777, 35.56769764], [140.425343061, 35.595862081], [140.393750726, 35.585408775], [140.371506835, 35.605354865]], [[140.334936719, 35.622145108], [140.33595144, 35.621417919], [140.336100052, 35.622315946], [140.334936719, 35.622145108]], [[140.337017523, 35.619071252], [140.337453359, 35.618288468], [140.338451699, 35.618216802], [140.337017523, 35.619071252]]]}}, {"id": "34419", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "山武市", "N03_005": null, "N03_007": "12237"}, "geometry": {"type": "Polygon", "coordinates": [[[140.322509948, 35.613116586], [140.326993333, 35.615444892], [140.328576641, 35.614077387], [140.325136887, 35.61115436], [140.322509948, 35.613116586]], [[140.322944669, 35.612915198], [140.324727717, 35.612338802], [140.322944669, 35.613004081], [140.322944669, 35.612915198]], [[140.325004669, 35.612824], [140.325504695, 35.613048252], [140.323973022, 35.613491865], [140.325004669, 35.612824]]]}}, {"id": "34420", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "山武市", "N03_005": null, "N03_007": "12237"}, "geometry": {"type": "Polygon", "coordinates": [[[140.330343554, 35.610840468], [140.326118249, 35.609935198], [140.328983281, 35.611954081], [140.330343554, 35.610840468]]]}}, {"id": "34421", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "山武市", "N03_005": null, "N03_007": "12237"}, "geometry": {"type": "Polygon", "coordinates": [[[140.324013502, 35.607459387], [140.326648249, 35.608727414], [140.325403774, 35.607219387], [140.324013502, 35.607459387]]]}}, {"id": "34422", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "山武市", "N03_005": null, "N03_007": "12237"}, "geometry": {"type": "Polygon", "coordinates": [[[140.321794721, 35.616168252], [140.324003645, 35.618879054], [140.324865006, 35.618134613], [140.321794721, 35.616168252]]]}}, {"id": "34423", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.394126174, 35.20269273], [140.360610337, 35.202126775], [140.362939274, 35.218157865], [140.318341803, 35.214161973], [140.257233995, 35.273019865], [140.296080506, 35.335523694], [140.373456329, 35.343329135], [140.372331245, 35.329108081], [140.410474137, 35.319894261], [140.405849196, 35.239947333], [140.394126174, 35.20269273]]]}}, {"id": "34424", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.408333333, 35.256462441], [140.408706783, 35.256649378], [140.407476706, 35.255743973], [140.408333333, 35.256462441]]]}}, {"id": "34425", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392323813, 35.200490856], [140.391533411, 35.200101928], [140.391537458, 35.200211523], [140.39198677, 35.200505387], [140.392323813, 35.200490856]]]}}, {"id": "34426", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392629079, 35.199728054], [140.392177977, 35.199583892], [140.392583528, 35.199850838], [140.392629079, 35.199728054]]]}}, {"id": "34427", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.405808444, 35.254377027], [140.405863152, 35.254390387], [140.405795292, 35.253866532], [140.405808444, 35.254377027]]]}}, {"id": "34428", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392343878, 35.200758937], [140.392059935, 35.200765568], [140.392493502, 35.200828288], [140.392343878, 35.200758937]]]}}, {"id": "34429", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392045694, 35.200050441], [140.392179585, 35.199859441], [140.391906796, 35.199892153], [140.392045694, 35.200050441]]]}}, {"id": "34430", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.410173152, 35.31935864], [140.410142361, 35.319498505], [140.410274047, 35.319442081], [140.410173152, 35.31935864]]]}}, {"id": "34431", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.391691673, 35.200617541], [140.391504942, 35.200660045], [140.391857782, 35.200689153], [140.391691673, 35.200617541]]]}}, {"id": "34432", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.39411144, 35.202945838], [140.394195383, 35.203111036], [140.394225629, 35.203052126], [140.39411144, 35.202945838]]]}}, {"id": "34433", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.391344851, 35.199235982], [140.39125476, 35.19922955], [140.391122412, 35.199195901], [140.39123061, 35.199279865], [140.391344851, 35.199235982]]]}}, {"id": "34434", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.393124825, 35.201735811], [140.393011686, 35.201588414], [140.392924254, 35.201570694], [140.393124825, 35.201735811]]]}}, {"id": "34435", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.39199227, 35.199994703], [140.391934112, 35.200096748], [140.391999987, 35.20009455], [140.39199227, 35.199994703]]]}}, {"id": "34436", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392372737, 35.200417342], [140.392241543, 35.200327892], [140.392228275, 35.200330207], [140.392372737, 35.200417342]]]}}, {"id": "34437", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.388655681, 35.19727836], [140.388667782, 35.197234315], [140.388590285, 35.197239631], [140.388655681, 35.19727836]]]}}, {"id": "34438", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.388528885, 35.197286063], [140.388441621, 35.197258703], [140.388435084, 35.197266387], [140.388528885, 35.197286063]]]}}, {"id": "34439", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "いすみ市", "N03_005": null, "N03_007": "12238"}, "geometry": {"type": "Polygon", "coordinates": [[[140.393633696, 35.202417108], [140.393557173, 35.202420342], [140.393554981, 35.202435586], [140.393633696, 35.202417108]]]}}, {"id": "34440", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": null, "N03_004": "大網白里市", "N03_005": null, "N03_007": "12239"}, "geometry": {"type": "Polygon", "coordinates": [[[140.42582153, 35.499999135], [140.415920104, 35.471622685], [140.380605447, 35.475766946], [140.373177173, 35.494310054], [140.346592387, 35.484782333], [140.315971388, 35.502817919], [140.300331167, 35.497173414], [140.282207445, 35.499364973], [140.277179027, 35.494687775], [140.270608781, 35.496166973], [140.300873917, 35.520336802], [140.280582944, 35.543528], [140.294211971, 35.560625441], [140.32619, 35.556895919], [140.379816939, 35.500575027], [140.42582153, 35.499999135]], [[140.277502672, 35.496262505], [140.277315694, 35.49501], [140.278195447, 35.496674441], [140.277502672, 35.496262505]], [[140.302806978, 35.520618468], [140.302381971, 35.521217081], [140.302043645, 35.520894586], [140.302806978, 35.520618468]], [[140.324941051, 35.546011468], [140.327999079, 35.545326468], [140.329788249, 35.547417306], [140.324941051, 35.546011468]]]}}, {"id": "34441", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "印旛郡", "N03_004": "酒々井町", "N03_005": null, "N03_007": "12322"}, "geometry": {"type": "Polygon", "coordinates": [[[140.265281582, 35.700150027], [140.245075006, 35.724979], [140.249398521, 35.722271171], [140.257589222, 35.722726441], [140.26329869, 35.754765306], [140.292121634, 35.757437198], [140.309972918, 35.739623802], [140.290605305, 35.734303865], [140.303139922, 35.714574919], [140.284382529, 35.702501613], [140.265281582, 35.700150027]], [[140.276714773, 35.709033054], [140.275683645, 35.705303613], [140.277701167, 35.708375802], [140.276714773, 35.709033054]]]}}, {"id": "34442", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "印旛郡", "N03_004": "栄町", "N03_005": null, "N03_007": "12329"}, "geometry": {"type": "Polygon", "coordinates": [[[140.251580441, 35.804311892], [140.231882218, 35.841170973], [140.167779468, 35.845457027], [140.289363165, 35.871425946], [140.273224034, 35.849500414], [140.286121751, 35.828573532], [140.251580441, 35.804311892]]]}}, {"id": "34443", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "印旛郡", "N03_004": "栄町", "N03_005": null, "N03_007": "12329"}, "geometry": {"type": "Polygon", "coordinates": [[[140.24582192, 35.819767973], [140.247133307, 35.817945468], [140.245254112, 35.818816586], [140.24582192, 35.819767973]]]}}, {"id": "34444", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "香取郡", "N03_004": "神崎町", "N03_005": null, "N03_007": "12342"}, "geometry": {"type": "Polygon", "coordinates": [[[140.401027665, 35.872463108], [140.375885331, 35.902367892], [140.434802633, 35.911753748], [140.42485192, 35.873121919], [140.439401855, 35.864225171], [140.394356031, 35.852792838], [140.401027665, 35.872463108]]]}}, {"id": "34445", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "香取郡", "N03_004": "多古町", "N03_005": null, "N03_007": "12347"}, "geometry": {"type": "Polygon", "coordinates": [[[140.431370467, 35.718668532], [140.425076589, 35.769913], [140.402278392, 35.78349136], [140.436212827, 35.78079464], [140.451915383, 35.807117946], [140.475686031, 35.790293441], [140.496382581, 35.802096973], [140.504761777, 35.783738387], [140.547772944, 35.770304946], [140.545770311, 35.757376333], [140.504526498, 35.759454225], [140.503155383, 35.735257279], [140.467230078, 35.691748468], [140.431370467, 35.718668532]]]}}, {"id": "34446", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "香取郡", "N03_004": "東庄町", "N03_005": null, "N03_007": "12349"}, "geometry": {"type": "Polygon", "coordinates": [[[140.624754968, 35.793649333], [140.650645032, 35.827352279], [140.647833476, 35.855712505], [140.697177756, 35.842378775], [140.720702166, 35.813472613], [140.692775227, 35.804358838], [140.699587276, 35.774244946], [140.681442866, 35.781025], [140.670892023, 35.765061441], [140.654020415, 35.791365919], [140.624754968, 35.793649333]], [[140.645957691, 35.798810387], [140.646146589, 35.798378441], [140.646654643, 35.798828441], [140.645957691, 35.798810387]], [[140.646473217, 35.797783721], [140.656263606, 35.801024252], [140.655151997, 35.805844532], [140.646473217, 35.797783721]]]}}, {"id": "34447", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "山武郡", "N03_004": "九十九里町", "N03_005": null, "N03_007": "12403"}, "geometry": {"type": "Polygon", "coordinates": [[[140.425819637, 35.5], [140.388388392, 35.528896919], [140.415086861, 35.527108], [140.440085694, 35.56991736], [140.470090039, 35.547212802], [140.467776329, 35.532627523], [140.425819637, 35.5]]]}}, {"id": "34448", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "山武郡", "N03_004": "九十九里町", "N03_005": null, "N03_007": "12403"}, "geometry": {"type": "Polygon", "coordinates": [[[140.385390415, 35.535754414], [140.38782144, 35.529734135], [140.383398755, 35.534366081], [140.385390415, 35.535754414]]]}}, {"id": "34449", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "山武郡", "N03_004": "九十九里町", "N03_005": null, "N03_007": "12403"}, "geometry": {"type": "Polygon", "coordinates": [[[140.392242827, 35.530882468], [140.392600584, 35.529996081], [140.391875888, 35.530585252], [140.392242827, 35.530882468]]]}}, {"id": "34450", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "山武郡", "N03_004": "芝山町", "N03_005": null, "N03_007": "12409"}, "geometry": {"type": "Polygon", "coordinates": [[[140.371222776, 35.697347667], [140.386257951, 35.713216586], [140.368047302, 35.739409171], [140.387024695, 35.723269387], [140.381552088, 35.740847748], [140.403268755, 35.74207436], [140.3892407, 35.768548333], [140.421295811, 35.773221613], [140.429539105, 35.721253532], [140.45504939, 35.698981279], [140.409885357, 35.674713586], [140.404435227, 35.691901613], [140.371222776, 35.697347667]]]}}, {"id": "34451", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "山武郡", "N03_004": "横芝光町", "N03_005": null, "N03_007": "12410"}, "geometry": {"type": "Polygon", "coordinates": [[[140.491009416, 35.616261081], [140.500051803, 35.632804054], [140.466126978, 35.643774171], [140.475739222, 35.658116865], [140.441520752, 35.658954721], [140.416540389, 35.679475802], [140.446184384, 35.698334919], [140.467230078, 35.691748468], [140.480970363, 35.72177836], [140.514761946, 35.674740613], [140.540816809, 35.666760279], [140.529863839, 35.65716864], [140.559441894, 35.627904982], [140.525624903, 35.602120279], [140.491009416, 35.616261081]], [[140.517410558, 35.672134225], [140.518350026, 35.673381135], [140.516853333, 35.672508108], [140.517410558, 35.672134225]]]}}, {"id": "34452", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "一宮町", "N03_005": null, "N03_007": "12421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.39765118, 35.330505505], [140.341884968, 35.345198414], [140.341936861, 35.376694946], [140.388289222, 35.390395333], [140.39765118, 35.330505505]]]}}, {"id": "34453", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "睦沢町", "N03_005": null, "N03_007": "12422"}, "geometry": {"type": "Polygon", "coordinates": [[[140.251528755, 35.324861441], [140.273353217, 35.360252], [140.307132361, 35.362801279], [140.312214254, 35.391408027], [140.350976057, 35.380942946], [140.33784275, 35.342333171], [140.318071673, 35.345712135], [140.271097834, 35.313331721], [140.251528755, 35.324861441]]]}}, {"id": "34454", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "睦沢町", "N03_005": null, "N03_007": "12422"}, "geometry": {"type": "Polygon", "coordinates": [[[140.323459611, 35.402077946], [140.322207445, 35.407809027], [140.326036278, 35.402866252], [140.323459611, 35.402077946]]]}}, {"id": "34455", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "長生村", "N03_005": null, "N03_007": "12423"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313901051, 35.405301586], [140.352654358, 35.434460748], [140.398068301, 35.418058685], [140.392338638, 35.383062811], [140.350976057, 35.380942946], [140.313901051, 35.405301586]], [[140.368138444, 35.424542171], [140.366944254, 35.422960505], [140.367852309, 35.422870775], [140.368138444, 35.424542171]]]}}, {"id": "34456", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "白子町", "N03_005": null, "N03_007": "12424"}, "geometry": {"type": "Polygon", "coordinates": [[[140.360346355, 35.474446505], [140.415920104, 35.471622685], [140.397032737, 35.418768333], [140.339958612, 35.438313], [140.360346355, 35.474446505]]]}}, {"id": "34457", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "白子町", "N03_005": null, "N03_007": "12424"}, "geometry": {"type": "Polygon", "coordinates": [[[140.368138444, 35.424542171], [140.366944254, 35.422960505], [140.36744345, 35.424644387], [140.368138444, 35.424542171]]]}}, {"id": "34458", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "長柄町", "N03_005": null, "N03_007": "12426"}, "geometry": {"type": "Polygon", "coordinates": [[[140.214320272, 35.416475441], [140.196398612, 35.391154441], [140.173027082, 35.431277333], [140.186880558, 35.44346064], [140.173976355, 35.468862802], [140.211531608, 35.486742721], [140.248365499, 35.481826802], [140.260816719, 35.426275279], [140.214320272, 35.416475441]]]}}, {"id": "34459", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "長生郡", "N03_004": "長南町", "N03_005": null, "N03_007": "12427"}, "geometry": {"type": "Polygon", "coordinates": [[[140.225252049, 35.316730919], [140.19708978, 35.395905252], [140.215415837, 35.418806532], [140.258643113, 35.427313333], [140.247776744, 35.402806838], [140.277715577, 35.403396171], [140.279641997, 35.380213532], [140.309370272, 35.381053108], [140.307132361, 35.362801279], [140.273353217, 35.360252], [140.251264306, 35.324424225], [140.225252049, 35.316730919]]]}}, {"id": "34460", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "大多喜町", "N03_005": null, "N03_007": "12441"}, "geometry": {"type": "Polygon", "coordinates": [[[140.17371214, 35.165959694], [140.142900337, 35.236243468], [140.174558975, 35.251351306], [140.177980584, 35.27473636], [140.202928755, 35.287960054], [140.199086719, 35.308068387], [140.230961115, 35.303968775], [140.225252049, 35.316730919], [140.246136005, 35.327292], [140.269598145, 35.315124225], [140.276609689, 35.296178108], [140.253795668, 35.279480748], [140.286104838, 35.255794694], [140.282039248, 35.243021054], [140.251731336, 35.233065802], [140.260052166, 35.224396054], [140.237886719, 35.179746225], [140.200718755, 35.18351736], [140.17371214, 35.165959694]]]}}, {"id": "34461", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "大多喜町", "N03_005": null, "N03_007": "12441"}, "geometry": {"type": "Polygon", "coordinates": [[[140.261599728, 35.221129838], [140.26231358, 35.220448225], [140.261213061, 35.221037586], [140.261599728, 35.221129838]]]}}, {"id": "34462", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "大多喜町", "N03_005": null, "N03_007": "12441"}, "geometry": {"type": "Polygon", "coordinates": [[[140.257706835, 35.220587441], [140.256581167, 35.220842865], [140.256585473, 35.221069892], [140.257706835, 35.220587441]]]}}, {"id": "34463", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.384776913, 35.192338829], [140.317014773, 35.174190054], [140.304200052, 35.199967306], [140.331449948, 35.224112468], [140.362939274, 35.218157865], [140.360610337, 35.202126775], [140.384776913, 35.192338829]]]}}, {"id": "34464", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.348582698, 35.175761306], [140.349294358, 35.175777973], [140.348575188, 35.17562436], [140.348582698, 35.175761306]]]}}, {"id": "34465", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.349667173, 35.176696027], [140.349332438, 35.176752973], [140.349631051, 35.176904081], [140.349667173, 35.176696027]]]}}, {"id": "34466", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.350015227, 35.176251306], [140.349820778, 35.176394919], [140.350015227, 35.176446865], [140.350015227, 35.176251306]]]}}, {"id": "34467", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.377420558, 35.180904721], [140.377268444, 35.181014387], [140.377487173, 35.180984027], [140.377420558, 35.180904721]]]}}, {"id": "34468", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.348168275, 35.177355919], [140.347949027, 35.177320171], [140.3481807, 35.17739536], [140.348168275, 35.177355919]]]}}, {"id": "34469", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.376441167, 35.180326279], [140.376356304, 35.18036036], [140.376474527, 35.180387414], [140.376441167, 35.180326279]]]}}, {"id": "34470", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.349092724, 35.177183775], [140.349060246, 35.177240279], [140.349115253, 35.177221721], [140.349092724, 35.177183775]]]}}, {"id": "34471", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.381196226, 35.185313198], [140.381235914, 35.185370721], [140.381241946, 35.185320468], [140.381196226, 35.185313198]]]}}, {"id": "34472", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.376090169, 35.180278441], [140.376108392, 35.180327748], [140.376144501, 35.180307946], [140.376090169, 35.180278441]]]}}, {"id": "34473", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.375615473, 35.179969838], [140.37558428, 35.179921838], [140.375566589, 35.179965559], [140.375615473, 35.179969838]]]}}, {"id": "34474", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.349062088, 35.177112441], [140.349043969, 35.177149108], [140.349076589, 35.177131027], [140.349062088, 35.177112441]]]}}, {"id": "34475", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.373861115, 35.179312532], [140.373823113, 35.179327468], [140.373850195, 35.17933764], [140.373861115, 35.179312532]]]}}, {"id": "34476", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.375007912, 35.179844108], [140.374992918, 35.179820838], [140.374983839, 35.179838], [140.375007912, 35.179844108]]]}}, {"id": "34477", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.374931673, 35.179835694], [140.374912361, 35.179841387], [140.374929079, 35.179844559], [140.374931673, 35.179835694]]]}}, {"id": "34478", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "夷隅郡", "N03_004": "御宿町", "N03_005": null, "N03_007": "12443"}, "geometry": {"type": "Polygon", "coordinates": [[[140.374904137, 35.179809505], [140.374886355, 35.179811838], [140.37490345, 35.179819694], [140.374904137, 35.179809505]]]}}, {"id": "34479", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834964721, 35.099986234], [139.824049494, 35.113664775], [139.839299001, 35.13119145], [139.816647912, 35.154820414], [139.854355746, 35.164277505], [139.932389105, 35.138948081], [139.9185493, 35.113387613], [139.834964721, 35.099986234]]]}}, {"id": "34480", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816137004, 35.111032586], [139.813428638, 35.108794802], [139.813387523, 35.110767586], [139.816137004, 35.111032586]]]}}, {"id": "34481", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830933139, 35.124294748], [139.832057588, 35.12366364], [139.830809805, 35.123635586], [139.830933139, 35.124294748]]]}}, {"id": "34482", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815310584, 35.108346468], [139.815705032, 35.107661748], [139.815129196, 35.10787036], [139.815310584, 35.108346468]]]}}, {"id": "34483", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822835888, 35.114684775], [139.823206161, 35.113935054], [139.822623113, 35.114397279], [139.822835888, 35.114684775]]]}}, {"id": "34484", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823384773, 35.10782536], [139.823439494, 35.107213135], [139.823124228, 35.107487027], [139.823384773, 35.10782536]]]}}, {"id": "34485", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823803113, 35.106816468], [139.823422244, 35.106284532], [139.823360856, 35.106353694], [139.823803113, 35.106816468]]]}}, {"id": "34486", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83029965, 35.135405829], [139.829867601, 35.135659703], [139.830063995, 35.135736973], [139.83029965, 35.135405829]]]}}, {"id": "34487", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816548366, 35.10787036], [139.816685577, 35.108214252], [139.816815863, 35.108062027], [139.816548366, 35.10787036]]]}}, {"id": "34488", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827142244, 35.100030081], [139.826732529, 35.100156198], [139.827168638, 35.100124802], [139.827142244, 35.100030081]]]}}, {"id": "34489", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822479494, 35.114734225], [139.822335331, 35.114510054], [139.822288949, 35.114714775], [139.822479494, 35.114734225]]]}}, {"id": "34490", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829376472, 35.120676414], [139.829132866, 35.120514748], [139.829332309, 35.120731135], [139.829376472, 35.120676414]]]}}, {"id": "34491", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824280856, 35.100729532], [139.824445305, 35.100534252], [139.824252244, 35.100598414], [139.824280856, 35.100729532]]]}}, {"id": "34492", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830369235, 35.135665874], [139.830593878, 35.135471135], [139.830496031, 35.135431514], [139.830369235, 35.135665874]]]}}, {"id": "34493", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827186135, 35.101264802], [139.827334747, 35.101106198], [139.827139196, 35.101114532], [139.827186135, 35.101264802]]]}}, {"id": "34494", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822309222, 35.114443667], [139.822108664, 35.114356721], [139.822198392, 35.114530333], [139.822309222, 35.114443667]]]}}, {"id": "34495", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821680856, 35.100406748], [139.821651699, 35.100256198], [139.821599196, 35.100336468], [139.821680856, 35.100406748]]]}}, {"id": "34496", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822304747, 35.100340081], [139.822246693, 35.100192027], [139.822191699, 35.100341468], [139.822304747, 35.100340081]]]}}, {"id": "34497", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822661141, 35.100500081], [139.822473087, 35.100412306], [139.822431971, 35.100511468], [139.822661141, 35.100500081]]]}}, {"id": "34498", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823843476, 35.149809892], [139.823754306, 35.149669054], [139.8237407, 35.149860721], [139.823843476, 35.149809892]]]}}, {"id": "34499", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820888197, 35.149926279], [139.820668755, 35.150022946], [139.820916252, 35.150016279], [139.820888197, 35.149926279]]]}}, {"id": "34500", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.824590661, 35.145092414], [139.824439831, 35.145002135], [139.824405668, 35.145081027], [139.824590661, 35.145092414]]]}}, {"id": "34501", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820229585, 35.150249333], [139.82018153, 35.150136559], [139.820112918, 35.150215721], [139.820229585, 35.150249333]]]}}, {"id": "34502", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82661725, 35.099633973], [139.826542802, 35.099495919], [139.826505032, 35.09956064], [139.82661725, 35.099633973]]]}}, {"id": "34503", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836839831, 35.135895559], [139.836672892, 35.135916946], [139.836822335, 35.135960838], [139.836839831, 35.135895559]]]}}, {"id": "34504", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.825537367, 35.152220414], [139.82557153, 35.152334865], [139.825715422, 35.152255973], [139.825537367, 35.152220414]]]}}, {"id": "34505", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821435422, 35.150204054], [139.821305136, 35.150271559], [139.821407912, 35.150294054], [139.821435422, 35.150204054]]]}}, {"id": "34506", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.834542892, 35.135565838], [139.834435668, 35.135613892], [139.834560661, 35.135629441], [139.834542892, 35.135565838]]]}}, {"id": "34507", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.823259196, 35.101061468], [139.823259196, 35.10097036], [139.823196978, 35.100998973], [139.823259196, 35.101061468]]]}}, {"id": "34508", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830501193, 35.122925306], [139.83041869, 35.122981694], [139.830528418, 35.123021135], [139.830501193, 35.122925306]]]}}, {"id": "34509", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829023411, 35.120141414], [139.829008418, 35.120029748], [139.828960363, 35.120110586], [139.829023411, 35.120141414]]]}}, {"id": "34510", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830727302, 35.12423836], [139.830608145, 35.124331694], [139.830698975, 35.124320586], [139.830727302, 35.12423836]]]}}, {"id": "34511", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836527328, 35.135828333], [139.836426498, 35.135913892], [139.836533722, 35.135855], [139.836527328, 35.135828333]]]}}, {"id": "34512", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83047703, 35.123811135], [139.83038869, 35.123762532], [139.830383696, 35.123843081], [139.83047703, 35.123811135]]]}}, {"id": "34513", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835949831, 35.135947775], [139.83601594, 35.136018054], [139.836030661, 35.135981946], [139.835949831, 35.135947775]]]}}, {"id": "34514", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836146498, 35.136113333], [139.836097056, 35.136204441], [139.836173722, 35.136185279], [139.836146498, 35.136113333]]]}}, {"id": "34515", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.8237407, 35.149590171], [139.823610415, 35.149545171], [139.82365153, 35.149607108], [139.8237407, 35.149590171]]]}}, {"id": "34516", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830382581, 35.12352364], [139.830318145, 35.123463081], [139.83031703, 35.123529748], [139.830382581, 35.12352364]]]}}, {"id": "34517", "type": "Feature", "properties": {"N03_001": "千葉県", "N03_002": null, "N03_003": "安房郡", "N03_004": "鋸南町", "N03_005": null, "N03_007": "12463"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830634812, 35.123563919], [139.830666472, 35.123498081], [139.830605084, 35.123532802], [139.830634812, 35.123563919]]]}}, {"id": "34518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.28924917, 30.481351667], [140.298542776, 30.495343333], [140.314431115, 30.487036108], [140.308761388, 30.474593613], [140.28924917, 30.481351667]]]}}, {"id": "34519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827062309, 35.596938207], [139.813426161, 35.578728468], [139.805614189, 35.596159045], [139.827062309, 35.596938207]]]}}, {"id": "34520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.849441167, 35.642761505], [139.84295847, 35.656821099], [139.850381401, 35.656526081], [139.849441167, 35.642761505]]]}}, {"id": "34521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.05033275, 31.437848802], [140.050762192, 31.440221027], [140.051564423, 31.438049081], [140.05033275, 31.437848802]]]}}, {"id": "34522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.342156615, 29.793886081], [140.341736329, 29.794319135], [140.342313554, 29.794233586], [140.342156615, 29.793886081]]]}}, {"id": "34523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831160973, 35.583070351], [139.82927751, 35.581942045], [139.829219637, 35.582014117], [139.831160973, 35.583070351]]]}}, {"id": "34524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.286813891, 30.485141946], [140.286550272, 30.485457225], [140.286991115, 30.485193054], [140.286813891, 30.485141946]]]}}, {"id": "34525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.91709406, 31.886641378], [139.91726214, 31.886696568], [139.91745345, 31.886695559], [139.917394955, 31.886479955], [139.91709406, 31.886641378]]]}}, {"id": "34526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.053740532, 31.438343532], [140.053558301, 31.438165748], [140.053683022, 31.438405748], [140.053740532, 31.438343532]]]}}, {"id": "34527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.286607782, 30.482942495], [140.286550272, 30.482782775], [140.286355006, 30.482787225], [140.286607782, 30.482942495]]]}}, {"id": "34528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917382387, 31.887336135], [139.917450052, 31.887141495], [139.917277069, 31.887247838], [139.917382387, 31.887336135]]]}}, {"id": "34529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315170558, 30.487504721], [140.315042503, 30.487371387], [140.315022776, 30.487504721], [140.315170558, 30.487504721]]]}}, {"id": "34530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918423684, 31.887492468], [139.918077652, 31.887446054], [139.918029287, 31.88759145], [139.918423684, 31.887492468]]]}}, {"id": "34531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918029974, 31.888204324], [139.917793502, 31.888089973], [139.917729546, 31.88813636], [139.918029974, 31.888204324]]]}}, {"id": "34532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.309868885, 30.493238613], [140.309752503, 30.493143333], [140.309723606, 30.493202495], [140.309868885, 30.493238613]]]}}, {"id": "34533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.051953671, 31.438507468], [140.052007834, 31.438353586], [140.051938106, 31.438337198], [140.051953671, 31.438507468]]]}}, {"id": "34534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.050648054, 31.442179802], [140.050542218, 31.442269532], [140.050654163, 31.442286468], [140.050648054, 31.442179802]]]}}, {"id": "34535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917809326, 31.887839694], [139.917654527, 31.887726982], [139.917615486, 31.887768207], [139.917809326, 31.887839694]]]}}, {"id": "34536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.297340272, 30.472588333], [140.297324721, 30.472439441], [140.29727083, 30.472490559], [140.297340272, 30.472588333]]]}}, {"id": "34537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.286133061, 30.482463333], [140.285977224, 30.482486108], [140.286003891, 30.482535559], [140.286133061, 30.482463333]]]}}, {"id": "34538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313251388, 30.480428892], [140.313173891, 30.480523892], [140.313271946, 30.480506108], [140.313251388, 30.480428892]]]}}, {"id": "34539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917781699, 31.887491225], [139.917860065, 31.887449514], [139.917656446, 31.887474234], [139.917781699, 31.887491225]]]}}, {"id": "34540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.290293891, 30.478710559], [140.290165551, 30.478686946], [140.290171388, 30.478723054], [140.290293891, 30.478710559]]]}}, {"id": "34541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.297950558, 30.472656387], [140.297842776, 30.47267], [140.297932776, 30.472720279], [140.297950558, 30.472656387]]]}}, {"id": "34542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315464449, 30.486373333], [140.315351673, 30.486352225], [140.315376109, 30.486410559], [140.315464449, 30.486373333]]]}}, {"id": "34543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.052462724, 31.438050027], [140.052521336, 31.438160027], [140.052524112, 31.438083919], [140.052462724, 31.438050027]]]}}, {"id": "34544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314641673, 30.486808333], [140.314583061, 30.486715], [140.314581673, 30.486794441], [140.314641673, 30.486808333]]]}}, {"id": "34545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.287376394, 30.482267495], [140.287319728, 30.482361387], [140.287382776, 30.482337495], [140.287376394, 30.482267495]]]}}, {"id": "34546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313979442, 30.484944162], [140.314057224, 30.485001946], [140.314045006, 30.484919721], [140.313979442, 30.484944162]]]}}, {"id": "34547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310461673, 30.492345829], [140.310364721, 30.492398892], [140.310470558, 30.492397495], [140.310461673, 30.492345829]]]}}, {"id": "34548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311016667, 30.476262225], [140.310931946, 30.476153333], [140.310923333, 30.476157495], [140.311016667, 30.476262225]]]}}, {"id": "34549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315546667, 30.486516946], [140.315456939, 30.48645], [140.315474163, 30.486513613], [140.315546667, 30.486516946]]]}}, {"id": "34550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.297938054, 30.472954441], [140.297952218, 30.473033613], [140.298009442, 30.472991946], [140.297938054, 30.472954441]]]}}, {"id": "34551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.304962776, 30.473960559], [140.304860272, 30.473924721], [140.304883061, 30.473979721], [140.304962776, 30.473960559]]]}}, {"id": "34552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.287706109, 30.486094721], [140.287765551, 30.486167775], [140.287780558, 30.486095559], [140.287706109, 30.486094721]]]}}, {"id": "34553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.297643891, 30.472721108], [140.297552503, 30.472651946], [140.297541115, 30.472687775], [140.297643891, 30.472721108]]]}}, {"id": "34554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315452218, 30.486127225], [140.315501115, 30.486208892], [140.315507224, 30.486128054], [140.315452218, 30.486127225]]]}}, {"id": "34555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313933606, 30.481614721], [140.313886394, 30.481538613], [140.313865006, 30.481587225], [140.313933606, 30.481614721]]]}}, {"id": "34556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.292280558, 30.477221667], [140.292302218, 30.477309721], [140.292339728, 30.477236946], [140.292280558, 30.477221667]]]}}, {"id": "34557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918657302, 31.888676081], [139.918567017, 31.888602324], [139.918552633, 31.888685667], [139.918657302, 31.888676081]]]}}, {"id": "34558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.29884, 30.472899441], [140.298744163, 30.472865829], [140.298775551, 30.472912495], [140.29884, 30.472899441]]]}}, {"id": "34559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.298617782, 30.472854162], [140.298535837, 30.472914162], [140.298626939, 30.472893892], [140.298617782, 30.472854162]]]}}, {"id": "34560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.286749728, 30.483028613], [140.286645279, 30.483021108], [140.286639728, 30.483054441], [140.286749728, 30.483028613]]]}}, {"id": "34561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918812374, 31.88806045], [139.918923333, 31.888096847], [139.918880739, 31.887962081], [139.918812374, 31.88806045]]]}}, {"id": "34562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.288344163, 30.481939162], [140.288310558, 30.481869721], [140.288276109, 30.481896667], [140.288344163, 30.481939162]]]}}, {"id": "34563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917149948, 31.88850964], [139.917072166, 31.888621865], [139.917096057, 31.888632135], [139.917149948, 31.88850964]]]}}, {"id": "34564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314591673, 30.484885279], [140.314615837, 30.484968333], [140.314633061, 30.484917775], [140.314591673, 30.484885279]]]}}, {"id": "34565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311355837, 30.477091667], [140.311397782, 30.477168613], [140.311412776, 30.477100829], [140.311355837, 30.477091667]]]}}, {"id": "34566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314673061, 30.485935559], [140.314607497, 30.485875559], [140.314601388, 30.485934721], [140.314673061, 30.485935559]]]}}, {"id": "34567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311677224, 30.491237775], [140.311596939, 30.491270559], [140.31167834, 30.491268333], [140.311677224, 30.491237775]]]}}, {"id": "34568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.300569728, 30.472811387], [140.300486939, 30.472860829], [140.300565006, 30.472866387], [140.300569728, 30.472811387]]]}}, {"id": "34569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314827224, 30.487030279], [140.314803333, 30.487117495], [140.314855551, 30.487101667], [140.314827224, 30.487030279]]]}}, {"id": "34570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.289891673, 30.479276108], [140.289842218, 30.479344441], [140.289899442, 30.479337495], [140.289891673, 30.479276108]]]}}, {"id": "34571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314743606, 30.48653], [140.314660272, 30.486560829], [140.314755837, 30.486563054], [140.314743606, 30.48653]]]}}, {"id": "34572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.307423333, 30.474506387], [140.307331946, 30.474494721], [140.307315837, 30.474523333], [140.307423333, 30.474506387]]]}}, {"id": "34573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.31435834, 30.485391946], [140.314274721, 30.485403333], [140.31435, 30.485432775], [140.31435834, 30.485391946]]]}}, {"id": "34574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.293681388, 30.475813054], [140.293704721, 30.475891667], [140.293713891, 30.475823054], [140.293681388, 30.475813054]]]}}, {"id": "34575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.31130834, 30.491567495], [140.311226394, 30.491575829], [140.311242218, 30.491605], [140.31130834, 30.491567495]]]}}, {"id": "34576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917868638, 31.88757255], [139.917750311, 31.887598468], [139.91790297, 31.887598919], [139.917868638, 31.88757255]]]}}, {"id": "34577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.298973333, 30.47287], [140.298925279, 30.472925829], [140.29899083, 30.472918613], [140.298973333, 30.47287]]]}}, {"id": "34578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315283061, 30.487176108], [140.315219442, 30.487230279], [140.315277224, 30.487221108], [140.315283061, 30.487176108]]]}}, {"id": "34579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.293906939, 30.475616387], [140.293821673, 30.475650829], [140.293884449, 30.475666387], [140.293906939, 30.475616387]]]}}, {"id": "34580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.31285917, 30.479933333], [140.312817497, 30.479860279], [140.312803606, 30.479926387], [140.31285917, 30.479933333]]]}}, {"id": "34581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.288863061, 30.481638333], [140.288815279, 30.481573613], [140.288800558, 30.481608613], [140.288863061, 30.481638333]]]}}, {"id": "34582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.29044834, 30.478721387], [140.290376394, 30.478770279], [140.290467782, 30.478749162], [140.29044834, 30.478721387]]]}}, {"id": "34583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.298591946, 30.472674441], [140.298568612, 30.472739441], [140.298634163, 30.472716946], [140.298591946, 30.472674441]]]}}, {"id": "34584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.295669442, 30.47434], [140.29557917, 30.474326667], [140.295587782, 30.474355], [140.295669442, 30.47434]]]}}, {"id": "34585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.315228054, 30.487045559], [140.315215551, 30.487118892], [140.315254163, 30.487056667], [140.315228054, 30.487045559]]]}}, {"id": "34586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.293362776, 30.476049721], [140.293419728, 30.476100279], [140.293408054, 30.476041946], [140.293362776, 30.476049721]]]}}, {"id": "34587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313048885, 30.479255], [140.313053061, 30.479343054], [140.313094163, 30.479308613], [140.313048885, 30.479255]]]}}, {"id": "34588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.298450558, 30.472805559], [140.29840834, 30.472856387], [140.298478612, 30.472835], [140.298450558, 30.472805559]]]}}, {"id": "34589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310403333, 30.475951667], [140.310467497, 30.475967495], [140.310448054, 30.475914162], [140.310403333, 30.475951667]]]}}, {"id": "34590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917389792, 31.886935333], [139.917333813, 31.887027703], [139.917415136, 31.886944342], [139.917389792, 31.886935333]]]}}, {"id": "34591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311323606, 30.477396387], [140.311305551, 30.477468892], [140.311344163, 30.477451108], [140.311323606, 30.477396387]]]}}, {"id": "34592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.290030558, 30.479156667], [140.290005279, 30.47923], [140.290051115, 30.479202225], [140.290030558, 30.479156667]]]}}, {"id": "34593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311483606, 30.477279162], [140.311428885, 30.477332225], [140.311488885, 30.477323892], [140.311483606, 30.477279162]]]}}, {"id": "34594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.309348885, 30.475077495], [140.309282503, 30.475074162], [140.309323606, 30.475118333], [140.309348885, 30.475077495]]]}}, {"id": "34595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.307607497, 30.474458892], [140.307523061, 30.474462225], [140.307577782, 30.474491946], [140.307607497, 30.474458892]]]}}, {"id": "34596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.309772218, 30.475245829], [140.309691115, 30.475274162], [140.309766109, 30.475284721], [140.309772218, 30.475245829]]]}}, {"id": "34597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.30791083, 30.474453892], [140.307925837, 30.474536667], [140.307942776, 30.474530279], [140.30791083, 30.474453892]]]}}, {"id": "34598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.30591834, 30.474357225], [140.305845006, 30.474393333], [140.305858885, 30.47441], [140.30591834, 30.474357225]]]}}, {"id": "34599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314565837, 30.487112775], [140.314533891, 30.487181946], [140.314578885, 30.48715], [140.314565837, 30.487112775]]]}}, {"id": "34600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313917497, 30.481949721], [140.313942503, 30.482015559], [140.31398083, 30.481991946], [140.313917497, 30.481949721]]]}}, {"id": "34601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.311861388, 30.490918333], [140.3118, 30.490893333], [140.311812503, 30.490934441], [140.311861388, 30.490918333]]]}}, {"id": "34602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.31366917, 30.481555279], [140.313623333, 30.481503892], [140.313608885, 30.481540559], [140.31366917, 30.481555279]]]}}, {"id": "34603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.314725279, 30.485081946], [140.314657224, 30.485115559], [140.314722776, 30.485119721], [140.314725279, 30.485081946]]]}}, {"id": "34604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918425953, 31.888474982], [139.918397393, 31.88855136], [139.918488807, 31.888539982], [139.918425953, 31.888474982]]]}}, {"id": "34605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310306667, 30.475483613], [140.31022917, 30.475508892], [140.310275279, 30.475526667], [140.310306667, 30.475483613]]]}}, {"id": "34606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.308486394, 30.474593613], [140.30843083, 30.474547225], [140.308418885, 30.474565279], [140.308486394, 30.474593613]]]}}, {"id": "34607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.309528885, 30.493160279], [140.309539728, 30.493223613], [140.309554721, 30.493162225], [140.309528885, 30.493160279]]]}}, {"id": "34608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.30598834, 30.474230829], [140.305942776, 30.474286946], [140.305994721, 30.474275559], [140.30598834, 30.474230829]]]}}, {"id": "34609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.290215279, 30.478858892], [140.290218054, 30.478934721], [140.29024834, 30.478874162], [140.290215279, 30.478858892]]]}}, {"id": "34610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.309073061, 30.474658333], [140.309072218, 30.474584721], [140.309043333, 30.474598892], [140.309073061, 30.474658333]]]}}, {"id": "34611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.312592503, 30.479145279], [140.312564449, 30.479198054], [140.312612503, 30.479191946], [140.312592503, 30.479145279]]]}}, {"id": "34612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310038612, 30.492850279], [140.309985006, 30.492893054], [140.310025006, 30.492900559], [140.310038612, 30.492850279]]]}}, {"id": "34613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.300336939, 30.472768333], [140.300278612, 30.472804441], [140.30035, 30.472809721], [140.300336939, 30.472768333]]]}}, {"id": "34614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.306739728, 30.474439721], [140.306668612, 30.474462495], [140.306734163, 30.474477225], [140.306739728, 30.474439721]]]}}, {"id": "34615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313436109, 30.489047495], [140.313379442, 30.489101667], [140.31340083, 30.489108892], [140.313436109, 30.489047495]]]}}, {"id": "34616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917572918, 31.88793118], [139.917651206, 31.887867505], [139.917582205, 31.887840207], [139.917572918, 31.88793118]]]}}, {"id": "34617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310225551, 30.475760559], [140.310265551, 30.475800559], [140.31026083, 30.475750279], [140.310225551, 30.475760559]]]}}, {"id": "34618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.294136939, 30.475738054], [140.294153333, 30.475795559], [140.294164721, 30.475741667], [140.294136939, 30.475738054]]]}}, {"id": "34619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.295544721, 30.474468892], [140.295591673, 30.474496108], [140.295595551, 30.474461387], [140.295544721, 30.474468892]]]}}, {"id": "34620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313719728, 30.483116667], [140.313771115, 30.483099441], [140.313729442, 30.483078054], [140.313719728, 30.483116667]]]}}, {"id": "34621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.307073606, 30.474490559], [140.307099728, 30.474440559], [140.307066109, 30.474442225], [140.307073606, 30.474490559]]]}}, {"id": "34622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.295418054, 30.474394721], [140.295404721, 30.474450559], [140.295443891, 30.474416387], [140.295418054, 30.474394721]]]}}, {"id": "34623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.313832503, 30.482487775], [140.313775837, 30.482491667], [140.31378917, 30.482517225], [140.313832503, 30.482487775]]]}}, {"id": "34624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917960454, 31.888325351], [139.917963787, 31.88836373], [139.917972594, 31.888334486], [139.917960454, 31.888325351]]]}}, {"id": "34625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310243891, 30.475901946], [140.310193061, 30.475932495], [140.310252218, 30.475939721], [140.310243891, 30.475901946]]]}}, {"id": "34626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918597756, 31.888538919], [139.918612049, 31.888579541], [139.91862537, 31.888556793], [139.918597756, 31.888538919]]]}}, {"id": "34627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310277782, 30.475561108], [140.310296939, 30.475610279], [140.310300558, 30.475555829], [140.310277782, 30.475561108]]]}}, {"id": "34628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.29105834, 30.478295], [140.291015551, 30.478336667], [140.291065837, 30.478327775], [140.29105834, 30.478295]]]}}, {"id": "34629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.312383606, 30.478810279], [140.312404721, 30.478853054], [140.312413061, 30.478817495], [140.312383606, 30.478810279]]]}}, {"id": "34630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916337769, 31.88729391], [139.916369935, 31.887252396], [139.916280143, 31.887270387], [139.916337769, 31.88729391]]]}}, {"id": "34631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917709248, 31.887589], [139.917681245, 31.88755227], [139.917664073, 31.887598459], [139.917709248, 31.887589]]]}}, {"id": "34632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916226667, 31.887275387], [139.916221038, 31.887323721], [139.91626323, 31.887291153], [139.916226667, 31.887275387]]]}}, {"id": "34633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918644669, 31.888861955], [139.918652283, 31.888817541], [139.91858118, 31.888856], [139.918644669, 31.888861955]]]}}, {"id": "34634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[140.310283606, 30.475657495], [140.310318885, 30.475688892], [140.310310272, 30.475653333], [140.310283606, 30.475657495]]]}}, {"id": "34635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.918959144, 31.887923351], [139.918919351, 31.887951694], [139.918971764, 31.887940829], [139.918959144, 31.887923351]]]}}, {"id": "34636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917638703, 31.887657667], [139.917600143, 31.887695081], [139.917618859, 31.887700505], [139.917638703, 31.887657667]]]}}, {"id": "34637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.916500039, 31.887257775], [139.916507263, 31.887282595], [139.916532737, 31.887248703], [139.916500039, 31.887257775]]]}}, {"id": "34638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917940415, 31.887488027], [139.917933645, 31.887527973], [139.917952257, 31.887488027], [139.917940415, 31.887488027]]]}}, {"id": "34639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917684955, 31.887029477], [139.917690104, 31.887059216], [139.917700402, 31.887039955], [139.917684955, 31.887029477]]]}}, {"id": "34640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "所属未定地", "N03_005": null, "N03_007": "13000"}, "geometry": {"type": "Polygon", "coordinates": [[[139.917087639, 31.886788919], [139.917083061, 31.886814613], [139.917107432, 31.886805315], [139.917087639, 31.886788919]]]}}, {"id": "34641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "千代田区", "N03_005": null, "N03_007": "13101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.744478781, 35.702308279000135], [139.78258856000002, 35.69471769400013], [139.75855105595224, 35.66858817249846], [139.731201608, 35.68197610799996], [139.744478781, 35.702308279000135]]]}}, {"id": "34642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "中央区", "N03_005": null, "N03_007": "13102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78340581100008, 35.69644905400003], [139.78959242500002, 35.65625936000009], [139.77274369600013, 35.646042837999914], [139.75855105300013, 35.6685881730001], [139.78340581100008, 35.69644905400003]]]}}, {"id": "34643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.730540506, 35.68126666699999], [139.76322046100006, 35.66525706700014], [139.74677321699994, 35.62323836000013], [139.71782819700002, 35.63504536000005], [139.722792776, 35.656075306000105], [139.70856389100004, 35.66406699999999], [139.730540506, 35.68126666699999]]]}}, {"id": "34644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771349689, 35.623138306], [139.776533528, 35.636257054], [139.782376342, 35.629508604], [139.771349689, 35.623138306]]]}}, {"id": "34645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757549105, 35.624092775], [139.755244189, 35.633628414], [139.759226407, 35.63365427], [139.757549105, 35.624092775]]]}}, {"id": "34646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765571673, 35.633196748], [139.767405681, 35.634119991], [139.76723821, 35.633202189], [139.765571673, 35.633196748]]]}}, {"id": "34647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769757769, 35.632340676], [139.768517899, 35.629978757], [139.768103398, 35.630150523], [139.769757769, 35.632340676]]]}}, {"id": "34648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766065318, 35.627604982], [139.768158223, 35.629398622], [139.766100454, 35.62729709], [139.766065318, 35.627604982]]]}}, {"id": "34649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771288911, 35.628411694], [139.771178223, 35.628480333], [139.771296161, 35.628448027], [139.771288911, 35.628411694]]]}}, {"id": "34650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758521751, 35.633801838], [139.758405888, 35.633734171], [139.758408029, 35.633803586], [139.758521751, 35.633801838]]]}}, {"id": "34651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "港区", "N03_005": null, "N03_007": "13103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756229922, 35.636915468], [139.756189079, 35.636886613], [139.756187951, 35.63692536], [139.756229922, 35.636915468]]]}}, {"id": "34652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新宿区", "N03_005": null, "N03_007": "13104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.677015422, 35.729519946], [139.745870441, 35.702911054], [139.716558418, 35.673433081], [139.702102944, 35.689169468], [139.687188638, 35.681987027], [139.694331141, 35.71104], [139.673494475, 35.719548613], [139.677015422, 35.729519946]]]}}, {"id": "34653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "文京区", "N03_005": null, "N03_007": "13105"}, "geometry": {"type": "Polygon", "coordinates": [[[139.717477108, 35.714621613], [139.764966809, 35.727572667], [139.768284112, 35.699700748], [139.717477108, 35.714621613]]]}}, {"id": "34654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "台東区", "N03_005": null, "N03_007": "13106"}, "geometry": {"type": "Polygon", "coordinates": [[[139.788915253, 35.694703775], [139.76321406, 35.731192667], [139.809718612, 35.728134586], [139.788915253, 35.694703775]]]}}, {"id": "34655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "墨田区", "N03_005": null, "N03_007": "13107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.789646615, 35.690187108], [139.820362892, 35.743428721], [139.842154773, 35.719310919], [139.809466667, 35.68699264], [139.789646615, 35.690187108]]]}}, {"id": "34656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.847706304, 35.694967027], [139.840254163, 35.633892225], [139.820629468, 35.62974336], [139.834480363, 35.644067613], [139.806361141, 35.645206441], [139.798856057, 35.621764279], [139.778650947, 35.637269225], [139.797471167, 35.643979441], [139.79483061, 35.650429333], [139.776086109, 35.642032441], [139.792418638, 35.652934198], [139.790401336, 35.689292946], [139.819694527, 35.693033748], [139.818689611, 35.70800764], [139.847706304, 35.694967027]]]}}, {"id": "34657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.786729831, 35.60184045], [139.782376342, 35.629508604], [139.792628119, 35.60957891], [139.786729831, 35.60184045]]]}}, {"id": "34658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82706230899998, 35.596938206999994], [139.8055961870001, 35.59940543200008], [139.82027175100006, 35.60749025200005], [139.82706230899998, 35.596938206999994]]]}}, {"id": "34659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.791595772, 35.593958198], [139.79854978, 35.607071459], [139.818944228, 35.608875802], [139.791595772, 35.593958198]]]}}, {"id": "34660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.838600259, 35.614160351], [139.82585131, 35.630699081], [139.840110843, 35.632067459], [139.838600259, 35.614160351]]]}}, {"id": "34661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.794378029, 35.613942108], [139.792560078, 35.624341189], [139.794879144, 35.613789946], [139.794378029, 35.613942108]]]}}, {"id": "34662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.822864112, 35.642322586], [139.8329538, 35.640359387], [139.821158366, 35.634060946], [139.822864112, 35.642322586]]]}}, {"id": "34663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.793429974, 35.592803018], [139.80377773, 35.598419928], [139.804425837, 35.597639613], [139.793429974, 35.592803018]]]}}, {"id": "34664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.790144501, 35.643128306], [139.782267445, 35.639381108], [139.790212361, 35.643395586], [139.790144501, 35.643128306]]]}}, {"id": "34665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.796689248, 35.646681532], [139.790926472, 35.644093946], [139.796868223, 35.647031505], [139.796689248, 35.646681532]]]}}, {"id": "34666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819340661, 35.609053964], [139.82444192, 35.609978], [139.819164086, 35.608989027], [139.819340661, 35.609053964]]]}}, {"id": "34667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.807254358, 35.627130387], [139.81099834, 35.628527027], [139.821961803, 35.628531946], [139.807254358, 35.627130387]]]}}, {"id": "34668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.821921855, 35.619306099], [139.817691077, 35.617540892], [139.817652646, 35.617604441], [139.821921855, 35.619306099]]]}}, {"id": "34669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818896783, 35.639269919], [139.809675616, 35.637527586], [139.809528949, 35.638378721], [139.809877367, 35.638740775], [139.818451946, 35.639556694], [139.818896783, 35.639269919]]]}}, {"id": "34670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810914617, 35.628702586], [139.810667147, 35.630974315], [139.810970895, 35.628708], [139.810914617, 35.628702586]]]}}, {"id": "34671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809979948, 35.635214414], [139.810344786, 35.633211297], [139.810376316, 35.632979829], [139.810270661, 35.633178279], [139.809979948, 35.635214414]]]}}, {"id": "34672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.772179922, 35.615573486], [139.772854008, 35.614746955], [139.772808431, 35.614720153], [139.772179922, 35.615573486]]]}}, {"id": "34673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831321388, 35.637327054], [139.832817756, 35.637335973], [139.832752827, 35.63657], [139.831321388, 35.637327054]]]}}, {"id": "34674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810899468, 35.634295919], [139.813093917, 35.634503171], [139.813096693, 35.634483171], [139.810899468, 35.634295919]]]}}, {"id": "34675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817487173, 35.634903333], [139.815513476, 35.634713108], [139.815510143, 35.634735468], [139.817487173, 35.634903333]]]}}, {"id": "34676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816670169, 35.630287468], [139.816147717, 35.630259694], [139.818131167, 35.630428586], [139.816670169, 35.630287468]]]}}, {"id": "34677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815928145, 35.630238387], [139.815931219, 35.630216838], [139.813956083, 35.630050865], [139.815928145, 35.630238387]]]}}, {"id": "34678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813739144, 35.630028838], [139.81154703, 35.629799865], [139.81154428, 35.629819054], [139.813739144, 35.630028838]]]}}, {"id": "34679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809923087, 35.635609387], [139.809698366, 35.637171973], [139.809758781, 35.637151279], [139.809923087, 35.635609387]]]}}, {"id": "34680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817956667, 35.634951613], [139.817699948, 35.634946973], [139.819896498, 35.635138748], [139.817956667, 35.634951613]]]}}, {"id": "34681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826182944, 35.640652667], [139.826207886, 35.640655559], [139.82720358, 35.640584946], [139.826182944, 35.640652667]]]}}, {"id": "34682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832710661, 35.636344198], [139.832506835, 35.635411532], [139.831640052, 35.635328414], [139.832710661, 35.636344198]]]}}, {"id": "34683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815287782, 35.634713559], [139.813320143, 35.634504279], [139.813317276, 35.634523586], [139.815287782, 35.634713559]]]}}, {"id": "34684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827420726, 35.634923667], [139.826358003, 35.634954694], [139.826247717, 35.635721946], [139.827420726, 35.634923667]]]}}, {"id": "34685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832081699, 35.642939468], [139.833278586, 35.642906748], [139.833217393, 35.642214748], [139.832081699, 35.642939468]]]}}, {"id": "34686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810053943, 35.633158586], [139.809818275, 35.634950279], [139.810072607, 35.633160027], [139.810053943, 35.633158586]]]}}, {"id": "34687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827154695, 35.636946694], [139.826235551, 35.635946667], [139.826105422, 35.636711108], [139.826246744, 35.636859865], [139.827154695, 35.636946694]]]}}, {"id": "34688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810099689, 35.632979108], [139.810396057, 35.630920414], [139.810083022, 35.632977505], [139.810099689, 35.632979108]]]}}, {"id": "34689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.826960532, 35.642351171], [139.827905188, 35.642518171], [139.826636355, 35.641638694], [139.826960532, 35.642351171]]]}}, {"id": "34690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820215058, 35.632915279], [139.820220143, 35.632900306], [139.818015162, 35.632701333], [139.820215058, 35.632915279]]]}}, {"id": "34691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.832351556, 35.641075613], [139.833202244, 35.642011586], [139.833138781, 35.641296694], [139.833014306, 35.641139135], [139.832351556, 35.641075613]]]}}, {"id": "34692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81780572, 35.632684802], [139.815826861, 35.632477468], [139.815824669, 35.632492613], [139.81780572, 35.632684802]]]}}, {"id": "34693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809501167, 35.637147613], [139.80972786, 35.635583225], [139.809709754, 35.635581414], [139.809501167, 35.637147613]]]}}, {"id": "34694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813425473, 35.632249973], [139.811254864, 35.632043441], [139.811254864, 35.632056135], [139.813425473, 35.632249973]]]}}, {"id": "34695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815607691, 35.632470414], [139.815609585, 35.632456721], [139.813633139, 35.632282892], [139.815607691, 35.632470414]]]}}, {"id": "34696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819441894, 35.630576027], [139.818345551, 35.630449721], [139.81834214, 35.63047036], [139.819441894, 35.630576027]]]}}, {"id": "34697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819568521, 35.637393973], [139.818477951, 35.637271721], [139.818474423, 35.637290838], [139.819568521, 35.637393973]]]}}, {"id": "34698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810420726, 35.630741775], [139.810574578, 35.629714414], [139.810401725, 35.630739802], [139.810420726, 35.630741775]]]}}, {"id": "34699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811253645, 35.636600721], [139.811676978, 35.636618919], [139.81058275, 35.636536586], [139.811253645, 35.636600721]]]}}, {"id": "34700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817156615, 35.637164468], [139.81628655, 35.637060054], [139.816283554, 35.637080252], [139.817156615, 35.637164468]]]}}, {"id": "34701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.814967419, 35.636952973], [139.814970311, 35.636932946], [139.814090752, 35.636868198], [139.814967419, 35.636952973]]]}}, {"id": "34702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816060415, 35.637060838], [139.815188249, 35.636956694], [139.815185499, 35.636976], [139.816060415, 35.637060838]]]}}, {"id": "34703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.80933153, 35.638364081], [139.809432607, 35.637507252], [139.809311777, 35.638362171], [139.80933153, 35.638364081]]]}}, {"id": "34704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813865837, 35.636848333], [139.813868586, 35.636829505], [139.812991556, 35.63676336], [139.813865837, 35.636848333]]]}}, {"id": "34705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81825214, 35.63726764], [139.817381193, 35.637167108], [139.817377665, 35.637185946], [139.81825214, 35.63726764]]]}}, {"id": "34706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.812770272, 35.636742865], [139.811897134, 35.636639694], [139.811894475, 35.636658081], [139.812770272, 35.636742865]]]}}, {"id": "34707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819346005, 35.638953333], [139.819353606, 35.638976414], [139.819597302, 35.639002838], [139.819605499, 35.638955414], [139.819346005, 35.638953333]]]}}, {"id": "34708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831101336, 35.637324892], [139.831104086, 35.637306225], [139.830334163, 35.637251505], [139.831101336, 35.637324892]]]}}, {"id": "34709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830117198, 35.637211721], [139.829347808, 35.637157], [139.8301162, 35.637230586], [139.830117198, 35.637211721]]]}}, {"id": "34710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.82737297, 35.636967613], [139.828145888, 35.637023], [139.827374423, 35.636948973], [139.82737297, 35.636967613]]]}}, {"id": "34711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829128716, 35.637135892], [139.829132244, 35.637117414], [139.828361414, 35.637062414], [139.829128716, 35.637135892]]]}}, {"id": "34712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827719948, 35.634952414], [139.827689248, 35.634968387], [139.828434527, 35.635020865], [139.827719948, 35.634952414]]]}}, {"id": "34713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831366355, 35.635321027], [139.83062703, 35.635231225], [139.830623696, 35.635249892], [139.831366355, 35.635321027]]]}}, {"id": "34714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829390389, 35.635131505], [139.8286538, 35.635041973], [139.828649494, 35.635060559], [139.829390389, 35.635131505]]]}}, {"id": "34715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828412477, 35.640698667], [139.829179144, 35.640790441], [139.829181803, 35.640772586], [139.828412477, 35.640698667]]]}}, {"id": "34716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.83009917, 35.640877802], [139.830166744, 35.640866198], [139.829395577, 35.640810198], [139.83009917, 35.640877802]]]}}, {"id": "34717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830099468, 35.635199505], [139.830406978, 35.635210135], [139.829664643, 35.635157919], [139.830099468, 35.635199505]]]}}, {"id": "34718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.827423748, 35.640603252], [139.8281893, 35.640697108], [139.828191946, 35.640679279], [139.827423748, 35.640603252]]]}}, {"id": "34719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830383307, 35.640885946], [139.830380752, 35.640903865], [139.831149948, 35.640960135], [139.830383307, 35.640885946]]]}}, {"id": "34720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831371673, 35.640979775], [139.832133139, 35.641072838], [139.832135811, 35.641054892], [139.831371673, 35.640979775]]]}}, {"id": "34721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.829136861, 35.642636919], [139.829134228, 35.642654865], [139.829880026, 35.642708694], [139.829136861, 35.642636919]]]}}, {"id": "34722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.828175966, 35.642544838], [139.828173411, 35.642562775], [139.828918444, 35.642616532], [139.828175966, 35.642544838]]]}}, {"id": "34723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.831848664, 35.642915333], [139.831109922, 35.642826081], [139.831107393, 35.642844027], [139.831848664, 35.642915333]]]}}, {"id": "34724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.830889857, 35.642822919], [139.830892387, 35.642804973], [139.830148029, 35.642752865], [139.830889857, 35.642822919]]]}}, {"id": "34725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.820769248, 35.629035252], [139.820793969, 35.629008108], [139.820732244, 35.62900036], [139.820769248, 35.629035252]]]}}, {"id": "34726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810989287, 35.628735432], [139.811024669, 35.628509018], [139.810967756, 35.62873327], [139.810989287, 35.628735432]]]}}, {"id": "34727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818827082, 35.639247198], [139.819042218, 35.639095081], [139.818815058, 35.639235838], [139.818827082, 35.639247198]]]}}, {"id": "34728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.790317717, 35.606437901], [139.790413865, 35.606423946], [139.790355383, 35.606392027], [139.790317717, 35.606437901]]]}}, {"id": "34729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.819814838, 35.639022532], [139.819883645, 35.638979613], [139.819822023, 35.638973586], [139.819814838, 35.639022532]]]}}, {"id": "34730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江東区", "N03_005": null, "N03_007": "13108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809978171, 35.635245532], [139.810035357, 35.635227252], [139.809981388, 35.635222171], [139.809978171, 35.635245532]]]}}, {"id": "34731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.695437717, 35.607729613], [139.717640999, 35.641661171], [139.751877445, 35.624716252], [139.745215525, 35.589745333], [139.695437717, 35.607729613]]]}}, {"id": "34732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.749549896, 35.588858126], [139.753018612, 35.617647811], [139.757995396, 35.617673396], [139.773148885, 35.595756847], [139.749549896, 35.588858126]]]}}, {"id": "34733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753212529, 35.618995072], [139.75941297, 35.628000063], [139.759402218, 35.619037694], [139.753212529, 35.618995072]]]}}, {"id": "34734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768732464, 35.626435676], [139.770626148, 35.618735865], [139.767598612, 35.625816748], [139.768732464, 35.626435676]]]}}, {"id": "34735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.749467471, 35.591467775], [139.749606394, 35.591485], [139.749645279, 35.591345387], [139.749467471, 35.591467775]]]}}, {"id": "34736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "品川区", "N03_005": null, "N03_007": "13109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756890415, 35.617640523], [139.757329079, 35.617678928], [139.757330104, 35.617644135], [139.756890415, 35.617640523]]]}}, {"id": "34737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "目黒区", "N03_005": null, "N03_007": "13110"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680530441, 35.604454081], [139.662843476, 35.609344667], [139.66148297, 35.631706306], [139.679597198, 35.625067667], [139.68637061, 35.638974586], [139.675002918, 35.663879586], [139.717640999, 35.641661171], [139.680530441, 35.604454081]]]}}, {"id": "34738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.809171193, 35.538786027], [139.70074153, 35.537773279], [139.703735525, 35.552607694], [139.652974773, 35.595936919], [139.67565345, 35.591786892], [139.690958833, 35.611077946], [139.747411141, 35.589519225], [139.754952581, 35.561546225], [139.786466524, 35.569987694], [139.809171193, 35.538786027]]]}}, {"id": "34739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.749981089, 35.587796694], [139.773148885, 35.595756847], [139.769058962, 35.584010676], [139.784024254, 35.586050171], [139.78183192, 35.584432775], [139.787040337, 35.580458694], [139.787408431, 35.580057532], [139.787270259, 35.57902273], [139.749981089, 35.587796694]]]}}, {"id": "34740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.765610558, 35.564896333], [139.757608444, 35.574460387], [139.773792361, 35.574575505], [139.765610558, 35.564896333]]]}}, {"id": "34741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.794476874, 35.592182252], [139.811714864, 35.588638541], [139.805832477, 35.585447748], [139.794476874, 35.592182252]]]}}, {"id": "34742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.810964423, 35.528198081], [139.81980192, 35.542383252], [139.826027782, 35.541570171], [139.810964423, 35.528198081]]]}}, {"id": "34743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大田区", "N03_005": null, "N03_007": "13111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753496304, 35.562603667], [139.75312939, 35.562710135], [139.753308223, 35.562815838], [139.753496304, 35.562603667]]]}}, {"id": "34744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "世田谷区", "N03_005": null, "N03_007": "13112"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655138638, 35.59014636], [139.590235551, 35.618430775], [139.585593385, 35.682680667], [139.637403554, 35.665878559], [139.672704332, 35.672295667], [139.68637061, 35.638974586], [139.679597198, 35.625067667], [139.66148297, 35.631706306], [139.662843476, 35.609344667], [139.680669585, 35.59490436], [139.655138638, 35.59014636]]]}}, {"id": "34745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "渋谷区", "N03_005": null, "N03_007": "13113"}, "geometry": {"type": "Polygon", "coordinates": [[[139.702102944, 35.689169468], [139.71888406, 35.641686441], [139.661595136, 35.674750694], [139.702102944, 35.689169468]]]}}, {"id": "34746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "中野区", "N03_005": null, "N03_007": "13114"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673007665, 35.733552441], [139.69430808, 35.710913613], [139.664120726, 35.676347919], [139.658221777, 35.709220892], [139.624342633, 35.729842225], [139.673007665, 35.733552441]]]}}, {"id": "34747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "杉並区", "N03_005": null, "N03_007": "13115"}, "geometry": {"type": "Polygon", "coordinates": [[[139.640764384, 35.666644667], [139.593089494, 35.682902892], [139.585794475, 35.718916414], [139.624545422, 35.730145559], [139.658221777, 35.709220892], [139.664908781, 35.677709865], [139.640764384, 35.666644667]]]}}, {"id": "34748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "豊島区", "N03_005": null, "N03_007": "13116"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682258444, 35.724715802], [139.692577588, 35.743634333], [139.752760441, 35.735057387], [139.722749728, 35.725148802], [139.722509611, 35.712265775], [139.682258444, 35.724715802]]]}}, {"id": "34749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "北区", "N03_005": null, "N03_007": "13117"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771124669, 35.737898775], [139.720011803, 35.741785171], [139.689469079, 35.786796748], [139.696859689, 35.798904], [139.759279339, 35.769305414], [139.749778612, 35.750120441], [139.771124669, 35.737898775]]]}}, {"id": "34750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "荒川区", "N03_005": null, "N03_007": "13118"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776742672, 35.724935721], [139.750886978, 35.753705721], [139.783979248, 35.754036532], [139.814653696, 35.737596532], [139.776742672, 35.724935721]]]}}, {"id": "34751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "板橋区", "N03_005": null, "N03_007": "13119"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673252827, 35.747791838], [139.668218392, 35.767566748], [139.625189468, 35.777934027], [139.640856667, 35.797942865], [139.696166355, 35.799287333], [139.689469079, 35.786796748], [139.722702477, 35.753227946], [139.703813943, 35.735872135], [139.673252827, 35.747791838]]]}}, {"id": "34752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "練馬区", "N03_005": null, "N03_007": "13120"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565688366, 35.722638892], [139.562785837, 35.761595225], [139.588760999, 35.778528505], [139.668218392, 35.767566748], [139.68084061, 35.743817387], [139.677969053, 35.730678559], [139.6276938, 35.735233054], [139.586651362, 35.711912252], [139.565688366, 35.722638892]]]}}, {"id": "34753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "足立区", "N03_005": null, "N03_007": "13121"}, "geometry": {"type": "Polygon", "coordinates": [[[139.813540195, 35.759666225], [139.801435863, 35.738599865], [139.749063943, 35.757039054], [139.759279339, 35.769305414], [139.735704864, 35.77220764], [139.75996978, 35.79433764], [139.750773191, 35.810170694], [139.821055616, 35.815077], [139.822476005, 35.795650081], [139.844343333, 35.799063081], [139.858301751, 35.766192838], [139.813540195, 35.759666225]]]}}, {"id": "34754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "葛飾区", "N03_005": null, "N03_007": "13122"}, "geometry": {"type": "Polygon", "coordinates": [[[139.851355577, 35.710853135], [139.813540195, 35.759666225], [139.858301751, 35.766192838], [139.846747756, 35.796506414], [139.894331362, 35.781643613], [139.867398975, 35.712119225], [139.851355577, 35.710853135]]]}}, {"id": "34755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江戸川区", "N03_005": null, "N03_007": "13123"}, "geometry": {"type": "Polygon", "coordinates": [[[139.87146061, 35.638641721], [139.849457951, 35.642717054], [139.833159442, 35.715757892], [139.867398975, 35.712119225], [139.889982283, 35.750765027], [139.918908366, 35.698274171], [139.88694, 35.679260027], [139.87146061, 35.638641721]]]}}, {"id": "34756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江戸川区", "N03_005": null, "N03_007": "13123"}, "geometry": {"type": "Polygon", "coordinates": [[[139.859062607, 35.637112613], [139.849800752, 35.639299441], [139.851305551, 35.640394225], [139.859062607, 35.637112613]]]}}, {"id": "34757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江戸川区", "N03_005": null, "N03_007": "13123"}, "geometry": {"type": "Polygon", "coordinates": [[[139.867555447, 35.634816027], [139.860157004, 35.636643027], [139.86248594, 35.637354586], [139.865592335, 35.636566667], [139.867555447, 35.634816027]]]}}, {"id": "34758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "江戸川区", "N03_005": null, "N03_007": "13123"}, "geometry": {"type": "Polygon", "coordinates": [[[139.862675084, 35.635006721], [139.862890934, 35.635626369], [139.863662607, 35.635134892], [139.862675084, 35.635006721]]]}}, {"id": "34759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八王子市", "N03_005": null, "N03_007": "13201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.379812114, 35.602484279], [139.342711855, 35.610035559], [139.338279144, 35.623504441], [139.287033969, 35.622026721], [139.252223671, 35.601667333], [139.21366594, 35.647782505], [139.17908642, 35.645572468], [139.161603671, 35.667906586], [139.17141489, 35.688742694], [139.19939022, 35.688245505], [139.217245357, 35.718867721], [139.319600947, 35.719113054], [139.33621083, 35.695785865], [139.380344137, 35.687417838], [139.357349274, 35.659998054], [139.366214475, 35.645788613], [139.429328781, 35.635110414], [139.379812114, 35.602484279]]]}}, {"id": "34760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "立川市", "N03_005": null, "N03_007": "13202"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398531219, 35.711561441], [139.35292572, 35.736093333], [139.391205499, 35.733419748], [139.384824669, 35.737875586], [139.383341089, 35.742661108], [139.383274137, 35.744949171], [139.383689974, 35.745134721], [139.446121971, 35.722875333], [139.443981336, 35.711703973], [139.433098301, 35.719297838], [139.428264669, 35.717359505], [139.437312698, 35.706982027], [139.417568366, 35.682760667], [139.385088612, 35.691282559], [139.398531219, 35.711561441]]]}}, {"id": "34761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "武蔵野市", "N03_005": null, "N03_007": "13203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.532279922, 35.705481667], [139.526913307, 35.718513613], [139.55993808, 35.721996946], [139.595473256, 35.705435054], [139.586716524, 35.693962865], [139.532279922, 35.705481667]]]}}, {"id": "34762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三鷹市", "N03_005": null, "N03_007": "13204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566588054, 35.663971198], [139.560870661, 35.682842532], [139.531370337, 35.66769864], [139.524875136, 35.690104441], [139.550660195, 35.695009441], [139.550167717, 35.706780838], [139.584569053, 35.697424775], [139.588889416, 35.669409586], [139.566588054, 35.663971198]]]}}, {"id": "34763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青梅市", "N03_005": null, "N03_007": "13205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.297095863, 35.757509414], [139.210530337, 35.773177694], [139.19221511, 35.789190414], [139.137638495, 35.772432], [139.175689883, 35.807077613], [139.162722023, 35.849823721], [139.301616057, 35.834697108], [139.330365837, 35.793616865], [139.320685694, 35.776808], [139.292132633, 35.775341892], [139.297095863, 35.757509414]]]}}, {"id": "34764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "府中市", "N03_005": null, "N03_007": "13206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.521000441, 35.649782306], [139.472550272, 35.649281027], [139.429827782, 35.670818468], [139.453510337, 35.671554892], [139.460314112, 35.699865108], [139.466542412, 35.688443441], [139.518077613, 35.691382532], [139.521000441, 35.649782306]]]}}, {"id": "34765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "府中市", "N03_005": null, "N03_007": "13206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.496792218, 35.687784532], [139.497617782, 35.687316468], [139.496703333, 35.687358414], [139.496792218, 35.687784532]]]}}, {"id": "34766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "昭島市", "N03_005": null, "N03_007": "13207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.375002918, 35.725171387], [139.398531219, 35.711561441], [139.388256109, 35.692785054], [139.336064163, 35.695962532], [139.339301362, 35.719784559], [139.375002918, 35.725171387]]]}}, {"id": "34767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "調布市", "N03_005": null, "N03_007": "13208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.587807367, 35.646099054], [139.565753217, 35.647169559], [139.561970636, 35.632590694], [139.523922633, 35.643431775], [139.522268716, 35.687361667], [139.539081167, 35.664549198], [139.545438755, 35.682062775], [139.575501608, 35.660040667], [139.575071971, 35.673137306], [139.588838029, 35.669460973], [139.587807367, 35.646099054]]]}}, {"id": "34768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "町田市", "N03_005": null, "N03_007": "13209"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39989786, 35.581792865], [139.33995463, 35.60553718], [139.268803969, 35.612122306], [139.338279144, 35.623504441], [139.386884189, 35.59794136], [139.407934358, 35.612044252], [139.466048949, 35.609500505], [139.507591362, 35.575140775], [139.489512088, 35.561679946], [139.485166913, 35.584686333], [139.469667082, 35.569498252], [139.484938392, 35.503968892], [139.467745032, 35.502311919], [139.39989786, 35.581792865]], [[139.380930752, 35.590292081], [139.380817173, 35.590502784], [139.380852789, 35.590321171], [139.380930752, 35.590292081]]]}}, {"id": "34769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小金井市", "N03_005": null, "N03_007": "13210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.489404086, 35.708266946], [139.523147198, 35.719065559], [139.532161829, 35.688779171], [139.500244721, 35.684339802], [139.487811946, 35.691977586], [139.489404086, 35.708266946]], [[139.497463359, 35.687742027], [139.496792218, 35.687258973], [139.497617782, 35.687316468], [139.497463359, 35.687742027]]]}}, {"id": "34770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小平市", "N03_005": null, "N03_007": "13211"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427802218, 35.730020333], [139.498105032, 35.745858333], [139.504440804, 35.732200838], [139.521107834, 35.738951919], [139.524671089, 35.719405279], [139.478147523, 35.708707865], [139.427802218, 35.730020333]]]}}, {"id": "34771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "日野市", "N03_005": null, "N03_007": "13212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.377885279, 35.641051667], [139.357323696, 35.655525], [139.376266394, 35.691631414], [139.419001414, 35.682167054], [139.442015253, 35.657961027], [139.377885279, 35.641051667]]]}}, {"id": "34772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "東村山市", "N03_005": null, "N03_007": "13213"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450988444, 35.736994748], [139.440771946, 35.767002198], [139.482519637, 35.781089946], [139.504790415, 35.761102198], [139.486222698, 35.734506135], [139.450988444, 35.736994748]]]}}, {"id": "34773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "国分寺市", "N03_005": null, "N03_007": "13214"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467905746, 35.688328441], [139.428264669, 35.717359505], [139.443981336, 35.711703973], [139.446121971, 35.722875333], [139.491393645, 35.698787865], [139.467905746, 35.688328441]]]}}, {"id": "34774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "国立市", "N03_005": null, "N03_007": "13215"}, "geometry": {"type": "Polygon", "coordinates": [[[139.453960143, 35.688674865], [139.452771997, 35.671271], [139.417568366, 35.682616225], [139.429522387, 35.704415081], [139.453960143, 35.688674865]]]}}, {"id": "34775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "福生市", "N03_005": null, "N03_007": "13218"}, "geometry": {"type": "Polygon", "coordinates": [[[139.314757198, 35.747637775], [139.356045772, 35.745086387], [139.355332892, 35.725394135], [139.332486161, 35.712611802], [139.314757198, 35.747637775]]]}}, {"id": "34776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "狛江市", "N03_005": null, "N03_007": "13219"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561970636, 35.632590694], [139.574499883, 35.650744586], [139.59410808, 35.626738838], [139.590235551, 35.618430775], [139.561970636, 35.632590694]]]}}, {"id": "34777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "東大和市", "N03_005": null, "N03_007": "13220"}, "geometry": {"type": "Polygon", "coordinates": [[[139.416224721, 35.73208364], [139.391684553, 35.763354135], [139.43896083, 35.769529694], [139.451539857, 35.739075027], [139.416224721, 35.73208364]]]}}, {"id": "34778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "清瀬市", "N03_005": null, "N03_007": "13221"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497226783, 35.762816081], [139.498031336, 35.781207694], [139.544291894, 35.806636252], [139.542978949, 35.779807414], [139.497226783, 35.762816081]]]}}, {"id": "34779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "東久留米市", "N03_005": null, "N03_007": "13222"}, "geometry": {"type": "Polygon", "coordinates": [[[139.531317588, 35.740266081], [139.484527756, 35.744375559], [139.494763139, 35.75828636], [139.547662529, 35.774228252], [139.531317588, 35.740266081]]]}}, {"id": "34780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "武蔵村山市", "N03_005": null, "N03_007": "13223"}, "geometry": {"type": "Polygon", "coordinates": [[[139.368557588, 35.774407198], [139.414416109, 35.733028081], [139.354910467, 35.742768892], [139.368557588, 35.774407198]], [[139.356832724, 35.745888613], [139.357755746, 35.744447775], [139.358230778, 35.745371667], [139.356832724, 35.745888613]]]}}, {"id": "34781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "多摩市", "N03_005": null, "N03_007": "13224"}, "geometry": {"type": "Polygon", "coordinates": [[[139.393901141, 35.608188721], [139.429974527, 35.632147414], [139.416809831, 35.649051252], [139.473806978, 35.649333532], [139.445934721, 35.608705225], [139.393901141, 35.608188721]]]}}, {"id": "34782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "稲城市", "N03_005": null, "N03_007": "13225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500023476, 35.607280468], [139.464158197, 35.624514414], [139.47386642, 35.650670198], [139.525388755, 35.642647613], [139.494677951, 35.617286027], [139.500023476, 35.607280468]]]}}, {"id": "34783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "稲城市", "N03_005": null, "N03_007": "13225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.517081971, 35.629407946], [139.518175032, 35.629746802], [139.518305577, 35.629254613], [139.517081971, 35.629407946]]]}}, {"id": "34784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "羽村市", "N03_005": null, "N03_007": "13227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.343067756, 35.753699171], [139.296541971, 35.754545252], [139.298119053, 35.781165775], [139.331517056, 35.772920252], [139.343067756, 35.753699171]]]}}, {"id": "34785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "あきる野市", "N03_005": null, "N03_007": "13228"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163044163, 35.778244559], [139.283647691, 35.731356387], [139.277614449, 35.752291081], [139.255707834, 35.759841054], [139.287727004, 35.760919414], [139.311383333, 35.750267468], [139.331230078, 35.71346064], [139.217245357, 35.718867721], [139.19939022, 35.688245505], [139.17109572, 35.688812694], [139.164101777, 35.741327081], [139.136095447, 35.770255892], [139.163044163, 35.778244559]]]}}, {"id": "34786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "西東京市", "N03_005": null, "N03_007": "13229"}, "geometry": {"type": "Polygon", "coordinates": [[[139.521090947, 35.725], [139.528420117, 35.744723586], [139.563778885, 35.761396613], [139.565639754, 35.721656946], [139.53691192, 35.711315], [139.521090947, 35.725]]]}}, {"id": "34787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": "西多摩郡", "N03_004": "瑞穂町", "N03_005": null, "N03_007": "13303"}, "geometry": {"type": "Polygon", "coordinates": [[[139.381514034, 35.774361919], [139.342329442, 35.746146279], [139.318008275, 35.78952436], [139.369920558, 35.791727414], [139.381514034, 35.774361919]]]}}, {"id": "34788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": "西多摩郡", "N03_004": "瑞穂町", "N03_005": null, "N03_007": "13303"}, "geometry": {"type": "Polygon", "coordinates": [[[139.356356887, 35.744975559], [139.358230778, 35.745371667], [139.357755746, 35.744447775], [139.356356887, 35.744975559]]]}}, {"id": "34789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": "西多摩郡", "N03_004": "日の出町", "N03_005": null, "N03_007": "13305"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284654112, 35.740589171], [139.215671608, 35.744412694], [139.163044163, 35.778244559], [139.19221511, 35.789190414], [139.284654112, 35.740589171]]]}}, {"id": "34790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": "西多摩郡", "N03_004": "檜原村", "N03_005": null, "N03_007": "13307"}, "geometry": {"type": "Polygon", "coordinates": [[[139.157247834, 35.666593802], [139.065305525, 35.697836414], [139.012395084, 35.738891], [139.075028612, 35.771995441], [139.136095447, 35.770255892], [139.16586869, 35.736090973], [139.171766809, 35.68406464], [139.157247834, 35.666593802]]]}}, {"id": "34791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": "西多摩郡", "N03_004": "奥多摩町", "N03_005": null, "N03_007": "13308"}, "geometry": {"type": "Polygon", "coordinates": [[[139.105337886, 35.779103306], [139.012290921, 35.738669054], [138.992431556, 35.75551764], [138.945439001, 35.868268252], [139.018795966, 35.898384], [139.061631803, 35.873629333], [139.147647056, 35.862682306], [139.177394773, 35.835094306], [139.175600999, 35.806902613], [139.149820052, 35.796378414], [139.132656524, 35.766230613], [139.105337886, 35.779103306]]]}}, {"id": "34792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.374879559, 34.696888694], [139.352456641, 34.719043946], [139.360497782, 34.799083613], [139.423316744, 34.781056054], [139.449268145, 34.740290748], [139.438702776, 34.678669108], [139.374879559, 34.696888694]]]}}, {"id": "34793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444915966, 34.683515423], [139.445303619, 34.682179892], [139.444643891, 34.683421333], [139.444915966, 34.683515423]]]}}, {"id": "34794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351817613, 34.750154333], [139.352076278, 34.74782164], [139.351764578, 34.747446387], [139.351817613, 34.750154333]]]}}, {"id": "34795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447828521, 34.694536], [139.448190661, 34.694235865], [139.448092607, 34.694152081], [139.447828521, 34.694536]]]}}, {"id": "34796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441124942, 34.756838135], [139.441386744, 34.756841946], [139.441255642, 34.756660252], [139.441124942, 34.756838135]]]}}, {"id": "34797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441732023, 34.756495], [139.441808638, 34.756784892], [139.441980052, 34.756663306], [139.441732023, 34.756495]]]}}, {"id": "34798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.400008586, 34.789364559], [139.399768911, 34.788998865], [139.399762529, 34.789359973], [139.400008586, 34.789364559]]]}}, {"id": "34799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.361838171, 34.701243775], [139.361893256, 34.701537279], [139.362051414, 34.701346225], [139.361838171, 34.701243775]]]}}, {"id": "34800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430149728, 34.678312892], [139.43020869, 34.678369532], [139.430693774, 34.678208748], [139.430149728, 34.678312892]]]}}, {"id": "34801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445245162, 34.702817198], [139.445343917, 34.702569775], [139.445228859, 34.702524532], [139.445245162, 34.702817198]]]}}, {"id": "34802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445544137, 34.724829748], [139.445884773, 34.724793613], [139.445508638, 34.724742108], [139.445544137, 34.724829748]]]}}, {"id": "34803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430894617, 34.678336081], [139.431113385, 34.678229532], [139.430659637, 34.678250306], [139.430894617, 34.678336081]]]}}, {"id": "34804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449140311, 34.694863441], [139.448978418, 34.694771613], [139.448780752, 34.694890973], [139.449140311, 34.694863441]]]}}, {"id": "34805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429074306, 34.776183865], [139.42893594, 34.775878973], [139.428846693, 34.775941613], [139.429074306, 34.776183865]]]}}, {"id": "34806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.403582335, 34.682113414], [139.403795227, 34.681973532], [139.403570117, 34.681905829], [139.403582335, 34.682113414]]]}}, {"id": "34807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430499248, 34.678537162], [139.430541025, 34.678406946], [139.430370506, 34.678533054], [139.430499248, 34.678537162]]]}}, {"id": "34808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359335966, 34.79528136], [139.359441051, 34.79543936], [139.359523087, 34.795313279], [139.359335966, 34.79528136]]]}}, {"id": "34809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396715447, 34.683411892], [139.396659831, 34.683446306], [139.396913217, 34.683635892], [139.396715447, 34.683411892]]]}}, {"id": "34810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395682114, 34.789347802], [139.396110584, 34.789095225], [139.396185357, 34.788986225], [139.395682114, 34.789347802]]]}}, {"id": "34811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352791751, 34.744603946], [139.352584112, 34.74468364], [139.352693891, 34.744737333], [139.352791751, 34.744603946]]]}}, {"id": "34812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.367083281, 34.700001333], [139.367140441, 34.700258027], [139.367170558, 34.700026081], [139.367083281, 34.700001333]]]}}, {"id": "34813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.358240921, 34.702149532], [139.358387198, 34.702363306], [139.358442023, 34.702295], [139.358240921, 34.702149532]]]}}, {"id": "34814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44602428, 34.724288306], [139.445818171, 34.724349775], [139.445979831, 34.724426279], [139.44602428, 34.724288306]]]}}, {"id": "34815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427324773, 34.776763225], [139.4275193, 34.776972919], [139.427621997, 34.776931892], [139.427324773, 34.776763225]]]}}, {"id": "34816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351282192, 34.784361667], [139.351239364, 34.784137225], [139.351189001, 34.784190468], [139.351282192, 34.784361667]]]}}, {"id": "34817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442801829, 34.749323279], [139.442604384, 34.749249162], [139.44264978, 34.74933136], [139.442801829, 34.749323279]]]}}, {"id": "34818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395539144, 34.683795667], [139.395790895, 34.683678387], [139.395772166, 34.683603865], [139.395539144, 34.683795667]]]}}, {"id": "34819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440647367, 34.757811468], [139.440430052, 34.757819973], [139.440433528, 34.75787264], [139.440647367, 34.757811468]]]}}, {"id": "34820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359669922, 34.795896135], [139.359407588, 34.795944414], [139.359487224, 34.796024613], [139.359669922, 34.795896135]]]}}, {"id": "34821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.424024501, 34.68176636], [139.423888833, 34.68181864], [139.423965811, 34.681921414], [139.424024501, 34.68176636]]]}}, {"id": "34822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.424837173, 34.779586946], [139.424959001, 34.779450054], [139.424828106, 34.779403468], [139.424837173, 34.779586946]]]}}, {"id": "34823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413184553, 34.78603564], [139.413334669, 34.786169667], [139.413384916, 34.786067054], [139.413184553, 34.78603564]]]}}, {"id": "34824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.368243917, 34.699611892], [139.368103995, 34.699431586], [139.368064423, 34.699464532], [139.368243917, 34.699611892]]]}}, {"id": "34825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441465188, 34.757021054], [139.441484384, 34.757166], [139.441589222, 34.757008946], [139.441465188, 34.757021054]]]}}, {"id": "34826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351815357, 34.725234306], [139.351946835, 34.725401135], [139.352042918, 34.725325802], [139.351815357, 34.725234306]]]}}, {"id": "34827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.42392061, 34.681589775], [139.423796913, 34.681800225], [139.423876005, 34.681848721], [139.42392061, 34.681589775]]]}}, {"id": "34828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352496109, 34.731007973], [139.352730752, 34.730993108], [139.352517328, 34.730929802], [139.352496109, 34.731007973]]]}}, {"id": "34829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430126835, 34.774982135], [139.430099222, 34.774836559], [139.430038444, 34.774956802], [139.430126835, 34.774982135]]]}}, {"id": "34830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3555562, 34.792314919], [139.355726783, 34.792243198], [139.355617613, 34.792201306], [139.3555562, 34.792314919]]]}}, {"id": "34831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.362600532, 34.701029559], [139.36272131, 34.701172829], [139.362748755, 34.701071973], [139.362600532, 34.701029559]]]}}, {"id": "34832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441011051, 34.757107414], [139.441001673, 34.75698936], [139.440928885, 34.757019333], [139.441011051, 34.757107414]]]}}, {"id": "34833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.412525058, 34.787040252], [139.412502244, 34.787203054], [139.412596135, 34.787154333], [139.412525058, 34.787040252]]]}}, {"id": "34834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.409545551, 34.680316108], [139.409272387, 34.680362865], [139.409241193, 34.680445775], [139.409545551, 34.680316108]]]}}, {"id": "34835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.428880195, 34.775773054], [139.428930804, 34.775631865], [139.42878428, 34.775656162], [139.428880195, 34.775773054]]]}}, {"id": "34836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445508612, 34.701942865], [139.445376005, 34.701988135], [139.445550467, 34.702001946], [139.445508612, 34.701942865]]]}}, {"id": "34837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.434270752, 34.677848108], [139.434315253, 34.677651802], [139.434230921, 34.677667135], [139.434270752, 34.677848108]]]}}, {"id": "34838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445138885, 34.70645664], [139.445097691, 34.706301081], [139.445033281, 34.706395333], [139.445138885, 34.70645664]]]}}, {"id": "34839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444651725, 34.688609829], [139.44452856, 34.688530559], [139.444444721, 34.688625586], [139.444651725, 34.688609829]]]}}, {"id": "34840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.389689222, 34.687654252], [139.389738054, 34.687546802], [139.389661479, 34.687600532], [139.389689222, 34.687654252]]]}}, {"id": "34841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445695357, 34.724577], [139.445583995, 34.724688973], [139.445717497, 34.724649829], [139.445695357, 34.724577]]]}}, {"id": "34842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44670144, 34.723493081], [139.446637302, 34.723619441], [139.446754669, 34.723552667], [139.44670144, 34.723493081]]]}}, {"id": "34843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39683834, 34.683867306], [139.396903061, 34.68370436], [139.396794643, 34.68366864], [139.39683834, 34.683867306]]]}}, {"id": "34844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.362298418, 34.70119536], [139.362439883, 34.701158586], [139.362282192, 34.701110198], [139.362298418, 34.70119536]]]}}, {"id": "34845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351826394, 34.725195586], [139.351898444, 34.72508264], [139.351777613, 34.725133441], [139.351826394, 34.725195586]]]}}, {"id": "34846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399732529, 34.682477414], [139.399562698, 34.682440946], [139.399572776, 34.682559054], [139.399732529, 34.682477414]]]}}, {"id": "34847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.37050642, 34.699761306], [139.370341777, 34.699689829], [139.370446641, 34.69981364], [139.37050642, 34.699761306]]]}}, {"id": "34848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429982827, 34.67811464], [139.430371414, 34.678052081], [139.430408859, 34.678001829], [139.429982827, 34.67811464]]]}}, {"id": "34849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441048911, 34.756308], [139.441090363, 34.756457225], [139.441136329, 34.756411946], [139.441048911, 34.756308]]]}}, {"id": "34850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445120272, 34.702144919], [139.444969922, 34.702154892], [139.445152477, 34.702212892], [139.445120272, 34.702144919]]]}}, {"id": "34851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440950467, 34.757511162], [139.440990804, 34.757618775], [139.441093307, 34.757567441], [139.440950467, 34.757511162]]]}}, {"id": "34852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384119857, 34.692696559], [139.384132335, 34.692550468], [139.383980441, 34.69264664], [139.384119857, 34.692696559]]]}}, {"id": "34853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445651414, 34.728143225], [139.445810584, 34.728099108], [139.445579974, 34.728076108], [139.445651414, 34.728143225]]]}}, {"id": "34854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446321167, 34.700567225], [139.446425162, 34.700621], [139.44642725, 34.700521667], [139.446321167, 34.700567225]]]}}, {"id": "34855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.389120895, 34.688479946], [139.38914808, 34.688352495], [139.389076913, 34.688436694], [139.389120895, 34.688479946]]]}}, {"id": "34856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359096783, 34.794989892], [139.359243722, 34.794997387], [139.359215888, 34.794955], [139.359096783, 34.794989892]]]}}, {"id": "34857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.367969468, 34.699599387], [139.367834423, 34.699642414], [139.367985525, 34.699635495], [139.367969468, 34.699599387]]]}}, {"id": "34858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4476638, 34.721565559], [139.447856161, 34.721500532], [139.447666057, 34.721482892], [139.4476638, 34.721565559]]]}}, {"id": "34859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.390035616, 34.687457279], [139.390129637, 34.687382162], [139.390019857, 34.687379495], [139.390035616, 34.687457279]]]}}, {"id": "34860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359657691, 34.795681162], [139.359553022, 34.79579264], [139.359670804, 34.795779225], [139.359657691, 34.795681162]]]}}, {"id": "34861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.360847562, 34.709132919], [139.360811193, 34.709019198], [139.360767004, 34.709094198], [139.360847562, 34.709132919]]]}}, {"id": "34862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444855447, 34.702284973], [139.444759222, 34.702343892], [139.444885279, 34.702350252], [139.444855447, 34.702284973]]]}}, {"id": "34863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3972307, 34.683471414], [139.397221582, 34.683373829], [139.397118975, 34.683462279], [139.3972307, 34.683471414]]]}}, {"id": "34864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35268131, 34.731160775], [139.352751505, 34.731090919], [139.352631855, 34.731099279], [139.35268131, 34.731160775]]]}}, {"id": "34865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.362419689, 34.701407495], [139.362452283, 34.701302333], [139.362370052, 34.701306973], [139.362419689, 34.701407495]]]}}, {"id": "34866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397874695, 34.683661054], [139.397866135, 34.683773279], [139.397905616, 34.683756441], [139.397874695, 34.683661054]]]}}, {"id": "34867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.428013969, 34.776071081], [139.428184721, 34.776071279], [139.427946667, 34.775982973], [139.428013969, 34.776071081]]]}}, {"id": "34868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352640415, 34.787255802], [139.352552802, 34.787273667], [139.352574189, 34.787390135], [139.352640415, 34.787255802]]]}}, {"id": "34869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.419298145, 34.781998306], [139.419163217, 34.781953225], [139.41919978, 34.782027], [139.419298145, 34.781998306]]]}}, {"id": "34870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430381115, 34.677808892], [139.430499442, 34.677801279], [139.430592633, 34.677844667], [139.430517224, 34.677780135], [139.430381115, 34.677808892]]]}}, {"id": "34871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352943281, 34.729913586], [139.353026109, 34.729843865], [139.353092503, 34.729788613], [139.352994163, 34.72980064], [139.352943281, 34.729913586]]]}}, {"id": "34872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399091829, 34.683729135], [139.399219468, 34.683697135], [139.399069001, 34.683672721], [139.399091829, 34.683729135]]]}}, {"id": "34873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430337134, 34.774848054], [139.430211025, 34.774829802], [139.430318638, 34.774879279], [139.430337134, 34.774848054]]]}}, {"id": "34874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397150973, 34.683292721], [139.397091699, 34.683419441], [139.397208197, 34.683330162], [139.397150973, 34.683292721]]]}}, {"id": "34875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405772607, 34.681547748], [139.405683645, 34.681508306], [139.405615551, 34.681569279], [139.405772607, 34.681547748]]]}}, {"id": "34876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35938978, 34.795216946], [139.359389274, 34.79513364], [139.359322166, 34.795189081], [139.35938978, 34.795216946]]]}}, {"id": "34877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405164578, 34.681896586], [139.40506917, 34.681923559], [139.405172555, 34.681981892], [139.405164578, 34.681896586]]]}}, {"id": "34878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.437781375, 34.685722369], [139.437797639, 34.68569664], [139.437521868, 34.685606721], [139.437781375, 34.685722369]]]}}, {"id": "34879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.423710337, 34.681677135], [139.423669027, 34.681795], [139.423707302, 34.681825333], [139.423710337, 34.681677135]]]}}, {"id": "34880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429322944, 34.775402108], [139.429253606, 34.775486613], [139.429347613, 34.775429135], [139.429322944, 34.775402108]]]}}, {"id": "34881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35890572, 34.702931225], [139.358817367, 34.702956559], [139.358890661, 34.703006162], [139.35890572, 34.702931225]]]}}, {"id": "34882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385843061, 34.689956387], [139.385913891, 34.690037495], [139.38592, 34.689950829], [139.385843061, 34.689956387]]]}}, {"id": "34883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442669754, 34.749610333], [139.442614695, 34.749517586], [139.442580921, 34.749525054], [139.442669754, 34.749610333]]]}}, {"id": "34884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429880311, 34.678980748], [139.42985345, 34.678873829], [139.429817977, 34.679007387], [139.429880311, 34.678980748]]]}}, {"id": "34885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359606109, 34.711396108], [139.359728612, 34.711395279], [139.359648612, 34.711330829], [139.359606109, 34.711396108]]]}}, {"id": "34886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.360531414, 34.71078064], [139.360475914, 34.710713613], [139.360461388, 34.710789829], [139.360531414, 34.71078064]]]}}, {"id": "34887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39593834, 34.683634108], [139.395972633, 34.683544081], [139.395892438, 34.683580306], [139.39593834, 34.683634108]]]}}, {"id": "34888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.357976498, 34.713018333], [139.357929079, 34.712928441], [139.357919559, 34.713007559], [139.357976498, 34.713018333]]]}}, {"id": "34889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.436294721, 34.768696387], [139.436186939, 34.768766946], [139.436232503, 34.768773333], [139.436294721, 34.768696387]]]}}, {"id": "34890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.432303748, 34.67829836], [139.43237511, 34.678255414], [139.432333061, 34.678242108], [139.432303748, 34.67829836]]]}}, {"id": "34891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.401751582, 34.681870829], [139.401880311, 34.681927198], [139.401896641, 34.681892613], [139.401751582, 34.681870829]]]}}, {"id": "34892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.409660441, 34.680389892], [139.409512776, 34.68039236], [139.409498054, 34.680410775], [139.409660441, 34.680389892]]]}}, {"id": "34893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414261427, 34.784273505], [139.414316018, 34.784381342], [139.414358898, 34.78433536], [139.414261427, 34.784273505]]]}}, {"id": "34894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.389124086, 34.688289946], [139.389008366, 34.688317], [139.388993917, 34.688365721], [139.389124086, 34.688289946]]]}}, {"id": "34895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430873722, 34.678033279], [139.430929559, 34.678020135], [139.430752477, 34.678012973], [139.430873722, 34.678033279]]]}}, {"id": "34896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352815577, 34.745446586], [139.352775422, 34.745403054], [139.352766252, 34.745438919], [139.352815577, 34.745446586]]]}}, {"id": "34897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449194721, 34.718405279], [139.449291673, 34.718439721], [139.44928083, 34.718369162], [139.449194721, 34.718405279]]]}}, {"id": "34898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44463808, 34.705722279], [139.444651803, 34.705800306], [139.444714034, 34.705777694], [139.44463808, 34.705722279]]]}}, {"id": "34899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4425138, 34.749815387], [139.442462438, 34.749728306], [139.442448833, 34.749789135], [139.4425138, 34.749815387]]]}}, {"id": "34900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397956355, 34.683609414], [139.397923307, 34.683522027], [139.397873087, 34.683551162], [139.397956355, 34.683609414]]]}}, {"id": "34901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.364520026, 34.700492], [139.364566978, 34.700431775], [139.364478949, 34.700460829], [139.364520026, 34.700492]]]}}, {"id": "34902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.388392438, 34.688917333], [139.38835703, 34.688986532], [139.388423165, 34.688969], [139.388392438, 34.688917333]]]}}, {"id": "34903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354553307, 34.790701559], [139.354569364, 34.790793027], [139.354633061, 34.790781], [139.354553307, 34.790701559]]]}}, {"id": "34904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442765966, 34.748823721], [139.44283939, 34.748888252], [139.442868054, 34.748831892], [139.442765966, 34.748823721]]]}}, {"id": "34905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429371167, 34.679485532], [139.42921808, 34.679593829], [139.4293862, 34.679496468], [139.429371167, 34.679485532]]]}}, {"id": "34906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351555227, 34.784181027], [139.351387445, 34.784172252], [139.35156834, 34.78419964], [139.351555227, 34.784181027]]]}}, {"id": "34907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349792633, 34.779892829], [139.349671855, 34.780031802], [139.349649974, 34.780091775], [139.349792633, 34.779892829]]]}}, {"id": "34908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349585279, 34.781162387], [139.349601025, 34.780993054], [139.349553476, 34.781181279], [139.349585279, 34.781162387]]]}}, {"id": "34909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.369709105, 34.699768108], [139.369626083, 34.699760135], [139.369593917, 34.699796252], [139.369709105, 34.699768108]]]}}, {"id": "34910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447178911, 34.723517748], [139.44711022, 34.723471198], [139.447085357, 34.723533775], [139.447178911, 34.723517748]]]}}, {"id": "34911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396761388, 34.683723414], [139.39672022, 34.683810441], [139.396795084, 34.683795387], [139.396761388, 34.683723414]]]}}, {"id": "34912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354137691, 34.790423135], [139.354081673, 34.790339802], [139.354077393, 34.790440946], [139.354137691, 34.790423135]]]}}, {"id": "34913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359425279, 34.711538613], [139.359482503, 34.711587775], [139.359490558, 34.711536946], [139.359425279, 34.711538613]]]}}, {"id": "34914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448047691, 34.721213198], [139.448020752, 34.721306946], [139.448099027, 34.721258532], [139.448047691, 34.721213198]]]}}, {"id": "34915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398498366, 34.683729], [139.398506304, 34.683649054], [139.39846358, 34.68365964], [139.398498366, 34.683729]]]}}, {"id": "34916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3971393, 34.683560252], [139.397230078, 34.683526586], [139.397133359, 34.683511279], [139.3971393, 34.683560252]]]}}, {"id": "34917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.403611803, 34.682198613], [139.403629105, 34.682291162], [139.403684163, 34.68226], [139.403611803, 34.682198613]]]}}, {"id": "34918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396567977, 34.683400532], [139.39662406, 34.683485667], [139.396688249, 34.683521775], [139.396642218, 34.683392054], [139.396567977, 34.683400532]]]}}, {"id": "34919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353004475, 34.729718667], [139.352889027, 34.729760108], [139.35289786, 34.729854081], [139.353004475, 34.729718667]]]}}, {"id": "34920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39422725, 34.686189414], [139.394207173, 34.686109468], [139.394167471, 34.686144946], [139.39422725, 34.686189414]]]}}, {"id": "34921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405417912, 34.681551279], [139.405303528, 34.681575306], [139.405294228, 34.681600414], [139.405417912, 34.681551279]]]}}, {"id": "34922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.428380272, 34.776225279], [139.428423061, 34.776283054], [139.428449728, 34.776238613], [139.428380272, 34.776225279]]]}}, {"id": "34923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.401378301, 34.681821198], [139.401341855, 34.681899495], [139.401389053, 34.68189136], [139.401378301, 34.681821198]]]}}, {"id": "34924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349428495, 34.777267306], [139.349419442, 34.777208306], [139.349331997, 34.777382586], [139.349428495, 34.777267306]]]}}, {"id": "34925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.401526329, 34.681976135], [139.401565279, 34.681898306], [139.401496835, 34.681903198], [139.401526329, 34.681976135]]]}}, {"id": "34926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442086939, 34.750992225], [139.442173333, 34.751036667], [139.442161115, 34.750985279], [139.442086939, 34.750992225]]]}}, {"id": "34927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.393543385, 34.789903802], [139.393666083, 34.789888027], [139.393521997, 34.789880306], [139.393543385, 34.789903802]]]}}, {"id": "34928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431451946, 34.678493613], [139.431437108, 34.678423054], [139.431400026, 34.678461441], [139.431451946, 34.678493613]]]}}, {"id": "34929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442944773, 34.748538], [139.442894721, 34.748549], [139.442860117, 34.748614532], [139.442944773, 34.748538]]]}}, {"id": "34930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354785863, 34.790865892], [139.354863217, 34.790809946], [139.354779728, 34.790812333], [139.354785863, 34.790865892]]]}}, {"id": "34931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448934721, 34.738304721], [139.449004163, 34.738320279], [139.448950272, 34.738272225], [139.448934721, 34.738304721]]]}}, {"id": "34932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3588262, 34.703037441], [139.358882866, 34.703094027], [139.358904332, 34.703038027], [139.3588262, 34.703037441]]]}}, {"id": "34933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.428186744, 34.776418027], [139.428093087, 34.776428333], [139.428186498, 34.776469865], [139.428186744, 34.776418027]]]}}, {"id": "34934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449143165, 34.713465225], [139.449074228, 34.713409198], [139.449061894, 34.713431865], [139.449143165, 34.713465225]]]}}, {"id": "34935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413789663, 34.785503495], [139.413742698, 34.785411279], [139.413698197, 34.785483081], [139.413789663, 34.785503495]]]}}, {"id": "34936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399914137, 34.683773973], [139.399835772, 34.683797054], [139.39991572, 34.683807441], [139.399914137, 34.683773973]]]}}, {"id": "34937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446418807, 34.690470414], [139.446368716, 34.690420946], [139.446348249, 34.690455946], [139.446418807, 34.690470414]]]}}, {"id": "34938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.434038521, 34.677623865], [139.434041479, 34.677534252], [139.43395428, 34.677530108], [139.434038521, 34.677623865]]]}}, {"id": "34939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353151582, 34.787842802], [139.35316808, 34.787802559], [139.353111025, 34.787808108], [139.353151582, 34.787842802]]]}}, {"id": "34940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354177639, 34.790638586], [139.354082335, 34.790583748], [139.354160506, 34.790673306], [139.354177639, 34.790638586]]]}}, {"id": "34941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.386110973, 34.690006829], [139.386052218, 34.690053414], [139.386119663, 34.690076198], [139.386110973, 34.690006829]]]}}, {"id": "34942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44541808, 34.702513865], [139.44549297, 34.70257964], [139.445510778, 34.70255464], [139.44541808, 34.702513865]]]}}, {"id": "34943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35450808, 34.790582559], [139.354531505, 34.790520532], [139.354472438, 34.790546441], [139.35450808, 34.790582559]]]}}, {"id": "34944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354643722, 34.790426054], [139.35453869, 34.79037136], [139.35463192, 34.790447081], [139.354643722, 34.790426054]]]}}, {"id": "34945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.355042866, 34.791097054], [139.355129468, 34.791064586], [139.355024773, 34.791048027], [139.355042866, 34.791097054]]]}}, {"id": "34946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442665499, 34.749771892], [139.442724773, 34.749730252], [139.442661362, 34.749720387], [139.442665499, 34.749771892]]]}}, {"id": "34947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39968406, 34.683614586], [139.399761388, 34.683599441], [139.399694137, 34.683586306], [139.39968406, 34.683614586]]]}}, {"id": "34948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.350996913, 34.770258081], [139.350949922, 34.770321108], [139.351008949, 34.770316198], [139.350996913, 34.770258081]]]}}, {"id": "34949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.356581219, 34.714375054], [139.356496161, 34.714374892], [139.356534916, 34.714413892], [139.356581219, 34.714375054]]]}}, {"id": "34950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399932918, 34.683671468], [139.399877328, 34.683717865], [139.39995358, 34.68372436], [139.399932918, 34.683671468]]]}}, {"id": "34951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.350180895, 34.773379892], [139.350260999, 34.773413748], [139.350220584, 34.77335536], [139.350180895, 34.773379892]]]}}, {"id": "34952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353457808, 34.788664279], [139.353499364, 34.788585468], [139.353473917, 34.788580414], [139.353457808, 34.788664279]]]}}, {"id": "34953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.406297912, 34.787530252], [139.406346524, 34.787465054], [139.406290947, 34.787479468], [139.406297912, 34.787530252]]]}}, {"id": "34954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.401036252, 34.682204559], [139.400994578, 34.682134721], [139.400963606, 34.682215586], [139.401036252, 34.682204559]]]}}, {"id": "34955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394144163, 34.686981468], [139.394161894, 34.686909135], [139.394117328, 34.686935748], [139.394144163, 34.686981468]]]}}, {"id": "34956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.364223671, 34.700551802], [139.364290506, 34.700584252], [139.364303476, 34.700548225], [139.364223671, 34.700551802]]]}}, {"id": "34957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397371193, 34.683481468], [139.397315058, 34.683534027], [139.39735192, 34.683536225], [139.397371193, 34.683481468]]]}}, {"id": "34958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.355162802, 34.791669802], [139.355220584, 34.791619441], [139.355125032, 34.791628279], [139.355162802, 34.791669802]]]}}, {"id": "34959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39880297, 34.683786973], [139.398804501, 34.683703495], [139.398753748, 34.683746414], [139.39880297, 34.683786973]]]}}, {"id": "34960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399777198, 34.683793054], [139.399713191, 34.683842225], [139.399763891, 34.683853495], [139.399777198, 34.683793054]]]}}, {"id": "34961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396704747, 34.683308532], [139.396670506, 34.683282973], [139.396645447, 34.683339973], [139.396704747, 34.683308532]]]}}, {"id": "34962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.376394163, 34.695706387], [139.376448885, 34.695770279], [139.376420558, 34.695700279], [139.376394163, 34.695706387]]]}}, {"id": "34963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.391061946, 34.687485], [139.391035551, 34.687394721], [139.391024163, 34.687464162], [139.391061946, 34.687485]]]}}, {"id": "34964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352997004, 34.787931892], [139.353115499, 34.787939829], [139.352984137, 34.787907495], [139.352997004, 34.787931892]]]}}, {"id": "34965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35298572, 34.729618333], [139.352936304, 34.729686829], [139.353029468, 34.729641306], [139.35298572, 34.729618333]]]}}, {"id": "34966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449414942, 34.718299775], [139.449494306, 34.718278667], [139.449408197, 34.718270559], [139.449414942, 34.718299775]]]}}, {"id": "34967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349446161, 34.774280559], [139.349455422, 34.774340613], [139.349485305, 34.774310919], [139.349446161, 34.774280559]]]}}, {"id": "34968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427211051, 34.777002441], [139.427163969, 34.777045198], [139.427208859, 34.777075468], [139.427211051, 34.777002441]]]}}, {"id": "34969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405457471, 34.68164336], [139.405401025, 34.681606829], [139.405383554, 34.681651135], [139.405457471, 34.68164336]]]}}, {"id": "34970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359940752, 34.707171414], [139.359828833, 34.707116892], [139.359858366, 34.707183532], [139.359940752, 34.707171414]]]}}, {"id": "34971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.388511673, 34.688882225], [139.388502776, 34.688943892], [139.38854083, 34.688913613], [139.388511673, 34.688882225]]]}}, {"id": "34972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.400913476, 34.682268135], [139.400884112, 34.682204748], [139.40084594, 34.682243468], [139.400913476, 34.682268135]]]}}, {"id": "34973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.351490636, 34.768959721], [139.351487198, 34.768932586], [139.351464812, 34.768950333], [139.351490636, 34.768959721]]]}}, {"id": "34974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441668612, 34.755744162], [139.441616394, 34.755695], [139.441629442, 34.755751387], [139.441668612, 34.755744162]]]}}, {"id": "34975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414087562, 34.784891414], [139.414162633, 34.784866973], [139.414064916, 34.784850865], [139.414087562, 34.784891414]]]}}, {"id": "34976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440774812, 34.752481865], [139.440792283, 34.752532108], [139.440857562, 34.752491946], [139.440774812, 34.752481865]]]}}, {"id": "34977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.388255006, 34.689006387], [139.388214721, 34.689059162], [139.388262776, 34.689046667], [139.388255006, 34.689006387]]]}}, {"id": "34978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446185305, 34.700933054], [139.446234864, 34.700886081], [139.446178859, 34.700888613], [139.446185305, 34.700933054]]]}}, {"id": "34979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402178301, 34.681932919], [139.402145305, 34.681877081], [139.402129637, 34.681890468], [139.402178301, 34.681932919]]]}}, {"id": "34980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394766978, 34.685747919], [139.394811245, 34.685674333], [139.394714449, 34.685756198], [139.394766978, 34.685747919]]]}}, {"id": "34981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398321414, 34.683651027], [139.398279248, 34.683598495], [139.398273359, 34.683637775], [139.398321414, 34.683651027]]]}}, {"id": "34982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.388082503, 34.688963892], [139.388072503, 34.689026667], [139.388117224, 34.688993054], [139.388082503, 34.688963892]]]}}, {"id": "34983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431358638, 34.678402694], [139.431346809, 34.678344333], [139.431306083, 34.678367919], [139.431358638, 34.678402694]]]}}, {"id": "34984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431329754, 34.678260252], [139.431307367, 34.678199162], [139.431277419, 34.678230892], [139.431329754, 34.678260252]]]}}, {"id": "34985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.358771673, 34.703772252], [139.358820389, 34.703728162], [139.358766304, 34.703735252], [139.358771673, 34.703772252]]]}}, {"id": "34986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353112438, 34.729625135], [139.353079442, 34.729686946], [139.353220363, 34.729583108], [139.353112438, 34.729625135]]]}}, {"id": "34987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.40011939, 34.682545694], [139.400102918, 34.682542027], [139.400136835, 34.682593441], [139.40011939, 34.682545694]]]}}, {"id": "34988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.369440778, 34.699833721], [139.369483191, 34.699882387], [139.369475914, 34.699833667], [139.369440778, 34.699833721]]]}}, {"id": "34989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.430622049, 34.678011], [139.430702438, 34.677977468], [139.430577134, 34.677982721], [139.430622049, 34.678011]]]}}, {"id": "34990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445577393, 34.702387973], [139.445550856, 34.702339919], [139.445525279, 34.702372586], [139.445577393, 34.702387973]]]}}, {"id": "34991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429943139, 34.678177162], [139.429896744, 34.67813464], [139.429875694, 34.678175586], [139.429943139, 34.678177162]]]}}, {"id": "34992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447945642, 34.744922667], [139.448016913, 34.744926225], [139.448003528, 34.744895441], [139.447945642, 34.744922667]]]}}, {"id": "34993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394554747, 34.685595973], [139.394537588, 34.685661613], [139.394584332, 34.685613559], [139.394554747, 34.685595973]]]}}, {"id": "34994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396660363, 34.683656892], [139.396652412, 34.683588441], [139.396620895, 34.683608333], [139.396660363, 34.683656892]]]}}, {"id": "34995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3604938, 34.799203495], [139.360544163, 34.799245252], [139.360559248, 34.79920664], [139.3604938, 34.799203495]]]}}, {"id": "34996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44786786, 34.744922135], [139.447862335, 34.744985775], [139.447903385, 34.744940279], [139.44786786, 34.744922135]]]}}, {"id": "34997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359665668, 34.705943306], [139.359742672, 34.705955586], [139.359698054, 34.70590936], [139.359665668, 34.705943306]]]}}, {"id": "34998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448324189, 34.720265225], [139.448308223, 34.720317559], [139.448361894, 34.720283919], [139.448324189, 34.720265225]]]}}, {"id": "34999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.401319559, 34.681993162], [139.401381997, 34.681948865], [139.401342802, 34.681930414], [139.401319559, 34.681993162]]]}}, {"id": "35000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442636719, 34.749363225], [139.442690999, 34.749386027], [139.442683502, 34.749355802], [139.442636719, 34.749363225]]]}}, {"id": "35001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445266083, 34.747807802], [139.44524917, 34.747754559], [139.445229689, 34.747788919], [139.445266083, 34.747807802]]]}}, {"id": "35002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413424501, 34.785629613], [139.413471946, 34.785600946], [139.413412581, 34.785586748], [139.413424501, 34.785629613]]]}}, {"id": "35003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.357849883, 34.712991135], [139.357873256, 34.713049468], [139.357886446, 34.712995333], [139.357849883, 34.712991135]]]}}, {"id": "35004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396078911, 34.683691865], [139.396021725, 34.683651721], [139.396008975, 34.683672054], [139.396078911, 34.683691865]]]}}, {"id": "35005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.357684112, 34.713113919], [139.357754086, 34.713117802], [139.357711699, 34.713085], [139.357684112, 34.713113919]]]}}, {"id": "35006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446873359, 34.746022892], [139.446925551, 34.746049721], [139.446922049, 34.746003468], [139.446873359, 34.746022892]]]}}, {"id": "35007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.355682944, 34.791558333], [139.35571406, 34.79160436], [139.355734423, 34.79157936], [139.355682944, 34.791558333]]]}}, {"id": "35008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.375921479, 34.795027775], [139.375855032, 34.795027892], [139.375903748, 34.795073586], [139.375921479, 34.795027775]]]}}, {"id": "35009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427973139, 34.776645306], [139.428048106, 34.776642108], [139.428000973, 34.776605441], [139.427973139, 34.776645306]]]}}, {"id": "35010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.360140389, 34.708112829], [139.360176641, 34.708150108], [139.360205694, 34.708092973], [139.360140389, 34.708112829]]]}}, {"id": "35011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.40498345, 34.682019081], [139.405053917, 34.682023468], [139.405024864, 34.681987135], [139.40498345, 34.682019081]]]}}, {"id": "35012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427157756, 34.77706836], [139.427127276, 34.777088532], [139.427187004, 34.777120279], [139.427157756, 34.77706836]]]}}, {"id": "35013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352973165, 34.787443532], [139.352919248, 34.787489027], [139.352986161, 34.787480108], [139.352973165, 34.787443532]]]}}, {"id": "35014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442637808, 34.749690108], [139.442711025, 34.74965664], [139.442629339, 34.749659973], [139.442637808, 34.749690108]]]}}, {"id": "35015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.357662166, 34.713171441], [139.357652114, 34.713230081], [139.357688418, 34.713204892], [139.357662166, 34.713171441]]]}}, {"id": "35016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.381460467, 34.793810279], [139.381476744, 34.793854054], [139.381502088, 34.793815919], [139.381460467, 34.793810279]]]}}, {"id": "35017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349656278, 34.779536108], [139.349634812, 34.779582162], [139.349699027, 34.779569], [139.349656278, 34.779536108]]]}}, {"id": "35018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441101479, 34.757273586], [139.441122023, 34.75731636], [139.441140246, 34.757273162], [139.441101479, 34.757273586]]]}}, {"id": "35019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.357733865, 34.713198495], [139.357735305, 34.713268919], [139.357763645, 34.713260532], [139.357733865, 34.713198495]]]}}, {"id": "35020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429370389, 34.679265721], [139.429403139, 34.679221135], [139.429346524, 34.679238414], [139.429370389, 34.679265721]]]}}, {"id": "35021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431103502, 34.678109135], [139.431136226, 34.67806464], [139.431079611, 34.678081829], [139.431103502, 34.678109135]]]}}, {"id": "35022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349046031, 34.778063973], [139.349044527, 34.778002865], [139.349000532, 34.778019], [139.349046031, 34.778063973]]]}}, {"id": "35023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35879358, 34.703300225], [139.358876887, 34.703296468], [139.358812192, 34.703272613], [139.35879358, 34.703300225]]]}}, {"id": "35024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402371699, 34.681806414], [139.402349079, 34.681849775], [139.402394384, 34.681851387], [139.402371699, 34.681806414]]]}}, {"id": "35025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402160337, 34.681821532], [139.402198301, 34.681779279], [139.402143696, 34.681788279], [139.402160337, 34.681821532]]]}}, {"id": "35026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.429556083, 34.679183586], [139.429479533, 34.679219027], [139.429586329, 34.679202721], [139.429556083, 34.679183586]]]}}, {"id": "35027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399611829, 34.683651108], [139.399614475, 34.683706919], [139.39963869, 34.683666532], [139.399611829, 34.683651108]]]}}, {"id": "35028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44020572, 34.68032636], [139.440251505, 34.680290279], [139.440258054, 34.680246559], [139.440188171, 34.680277532], [139.44020572, 34.68032636]]]}}, {"id": "35029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445532633, 34.735665829], [139.445488444, 34.735630694], [139.445472555, 34.735666279], [139.445532633, 34.735665829]]]}}, {"id": "35030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.427924747, 34.776555441], [139.427943191, 34.776603721], [139.427971894, 34.776586613], [139.427924747, 34.776555441]]]}}, {"id": "35031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.439385279, 34.761192775], [139.439417497, 34.761145559], [139.43938, 34.761168054], [139.439385279, 34.761192775]]]}}, {"id": "35032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353137224, 34.744486586], [139.353202503, 34.744471892], [139.353183061, 34.744454495], [139.353137224, 34.744486586]]]}}, {"id": "35033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.400185032, 34.682932468], [139.400126278, 34.682922721], [139.400170441, 34.682949387], [139.400185032, 34.682932468]]]}}, {"id": "35034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359989974, 34.707881441], [139.360066641, 34.707874279], [139.359988301, 34.707869279], [139.359989974, 34.707881441]]]}}, {"id": "35035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359702192, 34.706200027], [139.359755746, 34.706187694], [139.35972153, 34.706177198], [139.359702192, 34.706200027]]]}}, {"id": "35036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440214449, 34.68037364], [139.440281388, 34.680389441], [139.440264773, 34.680344135], [139.440214449, 34.68037364]]]}}, {"id": "35037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395443995, 34.683874306], [139.395489468, 34.683819108], [139.395435006, 34.683841198], [139.395443995, 34.683874306]]]}}, {"id": "35038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444528833, 34.688706162], [139.444530246, 34.68874964], [139.444567912, 34.688726946], [139.444528833, 34.688706162]]]}}, {"id": "35039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.387971946, 34.688792559], [139.387911362, 34.688812694], [139.387924449, 34.688835027], [139.387971946, 34.688792559]]]}}, {"id": "35040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394896809, 34.684536027], [139.39499834, 34.684547468], [139.395008003, 34.684540387], [139.394896809, 34.684536027]]]}}, {"id": "35041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395612361, 34.684339], [139.395629533, 34.684290387], [139.395590999, 34.684289532], [139.395612361, 34.684339]]]}}, {"id": "35042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405262892, 34.681902586], [139.405207393, 34.681912946], [139.405244578, 34.681936775], [139.405262892, 34.681902586]]]}}, {"id": "35043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.387716809, 34.688801532], [139.387696939, 34.688844108], [139.387754838, 34.688816468], [139.387716809, 34.688801532]]]}}, {"id": "35044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405246887, 34.681830054], [139.40522655, 34.681791775], [139.405209974, 34.681835054], [139.405246887, 34.681830054]]]}}, {"id": "35045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394790441, 34.684487135], [139.394833165, 34.684517135], [139.394870636, 34.684510054], [139.394790441, 34.684487135]]]}}, {"id": "35046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445594189, 34.74763864], [139.445604137, 34.747685559], [139.445618029, 34.747656027], [139.445594189, 34.74763864]]]}}, {"id": "35047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396537004, 34.683600919], [139.396600532, 34.683558946], [139.396525668, 34.683597], [139.396537004, 34.683600919]]]}}, {"id": "35048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395784501, 34.683481559], [139.395760973, 34.683428559], [139.395741673, 34.683448946], [139.395784501, 34.683481559]]]}}, {"id": "35049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349498521, 34.774257865], [139.349563891, 34.774253252], [139.349520052, 34.774236667], [139.349498521, 34.774257865]]]}}, {"id": "35050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359569585, 34.705986306], [139.359606252, 34.705947946], [139.359553722, 34.705971892], [139.359569585, 34.705986306]]]}}, {"id": "35051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.386009883, 34.690374198], [139.385961971, 34.690355721], [139.385997665, 34.690416775], [139.386009883, 34.690374198]]]}}, {"id": "35052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359410363, 34.711909198], [139.359353217, 34.711895441], [139.359378975, 34.711920613], [139.359410363, 34.711909198]]]}}, {"id": "35053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.400097004, 34.682422081], [139.400134838, 34.682367495], [139.400054695, 34.682435829], [139.400097004, 34.682422081]]]}}, {"id": "35054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448731556, 34.742068198], [139.448781829, 34.742104865], [139.448774695, 34.742066973], [139.448731556, 34.742068198]]]}}, {"id": "35055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349561362, 34.780712802], [139.349615525, 34.780696721], [139.349578106, 34.78068664], [139.349561362, 34.780712802]]]}}, {"id": "35056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349430389, 34.780929829], [139.349461971, 34.780964306], [139.349483281, 34.780929865], [139.349430389, 34.780929829]]]}}, {"id": "35057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349670895, 34.780872441], [139.349725058, 34.78085636], [139.349687639, 34.780846279], [139.349670895, 34.780872441]]]}}, {"id": "35058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349599222, 34.780549802], [139.34963083, 34.780584162], [139.349652218, 34.780549721], [139.349599222, 34.780549802]]]}}, {"id": "35059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44913725, 34.718664198], [139.449086109, 34.718648973], [139.449114669, 34.718681973], [139.44913725, 34.718664198]]]}}, {"id": "35060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.38463214, 34.692001027], [139.384612477, 34.691961387], [139.384599883, 34.691989387], [139.38463214, 34.692001027]]]}}, {"id": "35061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385181608, 34.691307919], [139.385152114, 34.691333865], [139.385192892, 34.691337333], [139.385181608, 34.691307919]]]}}, {"id": "35062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402378833, 34.682052], [139.402357108, 34.682028586], [139.402334643, 34.682046892], [139.402378833, 34.682052]]]}}, {"id": "35063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359101284, 34.712235495], [139.359045227, 34.712228], [139.359062166, 34.712262054], [139.359101284, 34.712235495]]]}}, {"id": "35064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417247082, 34.783119559], [139.417251115, 34.783167054], [139.41727856, 34.783162468], [139.417247082, 34.783119559]]]}}, {"id": "35065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.386426783, 34.689999333], [139.38642083, 34.69004936], [139.386444189, 34.690009054], [139.386426783, 34.689999333]]]}}, {"id": "35066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446206524, 34.690442973], [139.446245084, 34.690413892], [139.446207665, 34.690410775], [139.446206524, 34.690442973]]]}}, {"id": "35067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.369553217, 34.699832333], [139.369596083, 34.699817721], [139.369567912, 34.699799225], [139.369553217, 34.699832333]]]}}, {"id": "35068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.38626869, 34.690128027], [139.386238275, 34.690122892], [139.386239585, 34.690160468], [139.38626869, 34.690128027]]]}}, {"id": "35069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.393101336, 34.687025829], [139.39312489, 34.686987054], [139.393083645, 34.687006586], [139.393101336, 34.687025829]]]}}, {"id": "35070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440068664, 34.679540694], [139.440029027, 34.679497108], [139.440053359, 34.679542279], [139.440068664, 34.679540694]]]}}, {"id": "35071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402621414, 34.681989027], [139.40257345, 34.68198264], [139.402596589, 34.682001306], [139.402621414, 34.681989027]]]}}, {"id": "35072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39635847, 34.683575495], [139.39640655, 34.683584306], [139.396403359, 34.683570135], [139.39635847, 34.683575495]]]}}, {"id": "35073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448349144, 34.720179586], [139.448361777, 34.720141748], [139.448334643, 34.720175468], [139.448349144, 34.720179586]]]}}, {"id": "35074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.3962093, 34.683740279], [139.396170337, 34.683761054], [139.396206109, 34.683767694], [139.3962093, 34.683740279]]]}}, {"id": "35075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.437891414, 34.678485198], [139.437896913, 34.678517865], [139.437929339, 34.678494532], [139.437891414, 34.678485198]]]}}, {"id": "35076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449259105, 34.713512721], [139.449288638, 34.713503441], [139.449216005, 34.713510054], [139.449259105, 34.713512721]]]}}, {"id": "35077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402469883, 34.682044108], [139.402443839, 34.682017252], [139.402441634, 34.682040586], [139.402469883, 34.682044108]]]}}, {"id": "35078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440173217, 34.679603054], [139.44012061, 34.679583252], [139.440113969, 34.679601973], [139.440173217, 34.679603054]]]}}, {"id": "35079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385906057, 34.690263027], [139.385887782, 34.690293495], [139.38590642, 34.690293946], [139.385906057, 34.690263027]]]}}, {"id": "35080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.426539805, 34.777620892], [139.426535616, 34.777654946], [139.426566031, 34.777645667], [139.426539805, 34.777620892]]]}}, {"id": "35081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.395480921, 34.683580721], [139.395516744, 34.683529919], [139.39550655, 34.683520586], [139.395480921, 34.683580721]]]}}, {"id": "35082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402562633, 34.682064108], [139.402541855, 34.682034441], [139.402534137, 34.682046414], [139.402562633, 34.682064108]]]}}, {"id": "35083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349539663, 34.779334973], [139.349592776, 34.77935564], [139.349607977, 34.779334802], [139.349539663, 34.779334973]]]}}, {"id": "35084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448003865, 34.720475532], [139.447967471, 34.720503162], [139.448011284, 34.720497279], [139.448003865, 34.720475532]]]}}, {"id": "35085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.405362607, 34.681757441], [139.405313385, 34.681756468], [139.405337328, 34.681770162], [139.405362607, 34.681757441]]]}}, {"id": "35086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446092581, 34.690094694], [139.446095136, 34.690132387], [139.446116252, 34.690118775], [139.446092581, 34.690094694]]]}}, {"id": "35087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445356615, 34.747904721], [139.445386913, 34.747868946], [139.445342023, 34.747889613], [139.445356615, 34.747904721]]]}}, {"id": "35088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.359703943, 34.706867495], [139.359743307, 34.706878559], [139.359729468, 34.706851919], [139.359703943, 34.706867495]]]}}, {"id": "35089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.349511855, 34.780974135], [139.349532309, 34.781010108], [139.349548418, 34.780983027], [139.349511855, 34.780974135]]]}}, {"id": "35090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385013165, 34.692063198], [139.384991505, 34.692031027], [139.384958223, 34.692047667], [139.385013165, 34.692063198]]]}}, {"id": "35091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445361089, 34.747738495], [139.445377328, 34.747720162], [139.445344112, 34.747729333], [139.445361089, 34.747738495]]]}}, {"id": "35092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.394734475, 34.685577054], [139.394688949, 34.685583108], [139.394701829, 34.685601081], [139.394734475, 34.685577054]]]}}, {"id": "35093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.431511115, 34.678219586], [139.431467951, 34.678229081], [139.431486498, 34.678250414], [139.431511115, 34.678219586]]]}}, {"id": "35094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.358542672, 34.712713667], [139.358534228, 34.712681441], [139.35851358, 34.712700108], [139.358542672, 34.712713667]]]}}, {"id": "35095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440127691, 34.680350081], [139.440176589, 34.680351694], [139.440161479, 34.680316586], [139.440127691, 34.680350081]]]}}, {"id": "35096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.402296641, 34.681947135], [139.402268975, 34.681917198], [139.402256446, 34.681932306], [139.402296641, 34.681947135]]]}}, {"id": "35097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445311025, 34.747699586], [139.445270506, 34.747703694], [139.445298949, 34.747715306], [139.445311025, 34.747699586]]]}}, {"id": "35098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.35548978, 34.791479333], [139.355532672, 34.791490775], [139.355504423, 34.79146], [139.35548978, 34.791479333]]]}}, {"id": "35099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.352935305, 34.744931306], [139.352939883, 34.74489636], [139.352914137, 34.744909495], [139.352935305, 34.744931306]]]}}, {"id": "35100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.386283943, 34.690053162], [139.38627869, 34.690013306], [139.386254034, 34.690052892], [139.386283943, 34.690053162]]]}}, {"id": "35101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446946278, 34.745771694], [139.44698642, 34.745761802], [139.446956667, 34.745746027], [139.446946278, 34.745771694]]]}}, {"id": "35102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.358786744, 34.712410162], [139.358764916, 34.712445694], [139.358798275, 34.712416081], [139.358786744, 34.712410162]]]}}, {"id": "35103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.437320078, 34.765871748], [139.437339248, 34.765840892], [139.437301479, 34.765859973], [139.437320078, 34.765871748]]]}}, {"id": "35104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.40082061, 34.682285559], [139.400805811, 34.682259802], [139.400791193, 34.682275], [139.40082061, 34.682285559]]]}}, {"id": "35105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.437805422, 34.678392775], [139.437810311, 34.678419225], [139.437830804, 34.678404495], [139.437805422, 34.678392775]]]}}, {"id": "35106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446092387, 34.690414748], [139.446076446, 34.690441829], [139.446108638, 34.690420468], [139.446092387, 34.690414748]]]}}, {"id": "35107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413924332, 34.784691162], [139.413899585, 34.784663495], [139.413895616, 34.784689], [139.413924332, 34.784691162]]]}}, {"id": "35108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448707276, 34.742263468], [139.448722166, 34.742231414], [139.44868594, 34.742247081], [139.448707276, 34.742263468]]]}}, {"id": "35109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44605808, 34.700918414], [139.446083748, 34.700895054], [139.446049001, 34.700902775], [139.44605808, 34.700918414]]]}}, {"id": "35110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.386008418, 34.690324054], [139.385992944, 34.690280279], [139.385981556, 34.690286198], [139.386008418, 34.690324054]]]}}, {"id": "35111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413962918, 34.784754054], [139.413947328, 34.784723802], [139.413932361, 34.784746198], [139.413962918, 34.784754054]]]}}, {"id": "35112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.438020311, 34.678437387], [139.438050778, 34.678451721], [139.438059494, 34.678430919], [139.438020311, 34.678437387]]]}}, {"id": "35113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414060752, 34.784746081], [139.414054449, 34.784717586], [139.414043502, 34.784745667], [139.414060752, 34.784746081]]]}}, {"id": "35114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445667302, 34.747582441], [139.445681167, 34.747608441], [139.445691699, 34.747596946], [139.445667302, 34.747582441]]]}}, {"id": "35115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.353032607, 34.744879667], [139.353055811, 34.744890414], [139.353050389, 34.744862613], [139.353032607, 34.744879667]]]}}, {"id": "35116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445406083, 34.710858829], [139.445433528, 34.710872162], [139.445427613, 34.710855559], [139.445406083, 34.710858829]]]}}, {"id": "35117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440130661, 34.67962536], [139.440110467, 34.679651892], [139.440139689, 34.679635306], [139.440130661, 34.67962536]]]}}, {"id": "35118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445485383, 34.747714108], [139.44550786, 34.747696865], [139.44548275, 34.747696775], [139.445485383, 34.747714108]]]}}, {"id": "35119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39979808, 34.683743198], [139.399775966, 34.68375664], [139.399796809, 34.683756802], [139.39979808, 34.683743198]]]}}, {"id": "35120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44009083, 34.679649135], [139.440092944, 34.679668162], [139.440107367, 34.679666054], [139.44009083, 34.679649135]]]}}, {"id": "35121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "大島町", "N03_005": null, "N03_007": "13361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441014553, 34.752416559], [139.441036109, 34.752409495], [139.441031336, 34.752403694], [139.441014553, 34.752416559]]]}}, {"id": "35122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.274856381, 34.511423901], [139.267866965, 34.525057396], [139.280920104, 34.535085586], [139.292857575, 34.523893883], [139.274856381, 34.511423901]]]}}, {"id": "35123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292496018, 34.525803432], [139.292542581, 34.525644973], [139.292457808, 34.525766297], [139.292496018, 34.525803432]]]}}, {"id": "35124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284809948, 34.532103297], [139.284608768, 34.532032883], [139.284809974, 34.532133135], [139.284809948, 34.532103297]]]}}, {"id": "35125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.29264096, 34.52560727], [139.292567289, 34.525529595], [139.292607393, 34.52561145], [139.29264096, 34.52560727]]]}}, {"id": "35126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.267657743, 34.518494559], [139.267549442, 34.518467739], [139.267564436, 34.518506568], [139.267657743, 34.518494559]]]}}, {"id": "35127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292968444, 34.523796919], [139.292857121, 34.523762883], [139.292969507, 34.523834604], [139.292968444, 34.523796919]]]}}, {"id": "35128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.269640661, 34.528283423], [139.269610156, 34.528204667], [139.269595188, 34.52824255], [139.269640661, 34.528283423]]]}}, {"id": "35129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.290469637, 34.528708369], [139.290538703, 34.528656027], [139.290520584, 34.528629622], [139.290469637, 34.528708369]]]}}, {"id": "35130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289139741, 34.52968845], [139.289087626, 34.529645577], [139.289079715, 34.529688811], [139.289139741, 34.52968845]]]}}, {"id": "35131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285102348, 34.51534473], [139.285061349, 34.515368072], [139.285111245, 34.51538218], [139.285102348, 34.51534473]]]}}, {"id": "35132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289890545, 34.519703387], [139.289836459, 34.519662486], [139.289854293, 34.519700973], [139.289890545, 34.519703387]]]}}, {"id": "35133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.269736978, 34.514890568], [139.269701336, 34.514942153], [139.269737717, 34.514943045], [139.269736978, 34.514890568]]]}}, {"id": "35134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28937144, 34.519283937], [139.289421621, 34.519306523], [139.289385383, 34.519251279], [139.28937144, 34.519283937]]]}}, {"id": "35135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.277585344, 34.510878838], [139.277534553, 34.510835694], [139.277549313, 34.510892378], [139.277585344, 34.510878838]]]}}, {"id": "35136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "利島村", "N03_005": null, "N03_007": "13362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292712166, 34.523186171], [139.292740065, 34.523150144], [139.292705019, 34.523145568], [139.292712166, 34.523186171]]]}}, {"id": "35137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.271883671, 34.330921054], [139.239892438, 34.37064864], [139.281567004, 34.431179387], [139.291486744, 34.407530694], [139.271883671, 34.330921054]]]}}, {"id": "35138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20608786, 34.334680892], [139.217611193, 34.317118306], [139.196072114, 34.316346306], [139.20608786, 34.334680892]]]}}, {"id": "35139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291926667, 34.469991667], [139.286312776, 34.478305559], [139.299440272, 34.470470829], [139.291926667, 34.469991667]]]}}, {"id": "35140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225905837, 34.367810829], [139.229445162, 34.372631532], [139.228995811, 34.367149333], [139.226919663, 34.367103], [139.225905837, 34.367810829]]]}}, {"id": "35141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280764112, 34.325130252], [139.276885966, 34.32437064], [139.27516917, 34.326649892], [139.280764112, 34.325130252]]]}}, {"id": "35142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2124893, 34.336919613], [139.209587717, 34.337843198], [139.21193, 34.338028027], [139.2124893, 34.336919613]]]}}, {"id": "35143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223683696, 34.322229135], [139.222878197, 34.32100836], [139.222074086, 34.322841198], [139.223683696, 34.322229135]]]}}, {"id": "35144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.281694449, 34.476787495], [139.281863061, 34.477755829], [139.28345917, 34.477239721], [139.281694449, 34.476787495]]]}}, {"id": "35145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200251414, 34.315640613], [139.2010393, 34.31507236], [139.200121025, 34.31546736], [139.200251414, 34.315640613]]]}}, {"id": "35146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22558345, 34.324957667], [139.226267328, 34.324002252], [139.225778612, 34.323873333], [139.22558345, 34.324957667]]]}}, {"id": "35147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291974163, 34.468938054], [139.29200834, 34.469816946], [139.29226, 34.469552225], [139.291974163, 34.468938054]]]}}, {"id": "35148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222744034, 34.373707532], [139.22305856, 34.373727333], [139.223761725, 34.373681054], [139.222744034, 34.373707532]]]}}, {"id": "35149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228877173, 34.366153], [139.229392361, 34.365659865], [139.228263774, 34.365760306], [139.228877173, 34.366153]]]}}, {"id": "35150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.300534721, 34.474043333], [139.300992218, 34.473437225], [139.300421946, 34.473681946], [139.300534721, 34.474043333]]]}}, {"id": "35151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208188392, 34.336424775], [139.207768911, 34.335716973], [139.207412477, 34.335978865], [139.208188392, 34.336424775]]]}}, {"id": "35152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22603856, 34.330266919], [139.226970117, 34.330460306], [139.22715572, 34.330190586], [139.22603856, 34.330266919]]]}}, {"id": "35153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285239559, 34.430784333], [139.285730195, 34.430260306], [139.285094773, 34.430545414], [139.285239559, 34.430784333]]]}}, {"id": "35154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202064942, 34.329244495], [139.202418664, 34.328621441], [139.202720726, 34.328147802], [139.202350661, 34.328369748], [139.202064942, 34.329244495]]]}}, {"id": "35155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.301071946, 34.473164162], [139.30075917, 34.472690829], [139.300793333, 34.473248613], [139.301071946, 34.473164162]]]}}, {"id": "35156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216064112, 34.316928586], [139.21597428, 34.316242667], [139.215624578, 34.316277054], [139.216064112, 34.316928586]]]}}, {"id": "35157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291812438, 34.418275667], [139.292959053, 34.418803108], [139.29307489, 34.418722279], [139.291812438, 34.418275667]]]}}, {"id": "35158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208601362, 34.316679135], [139.208231219, 34.316846027], [139.208001803, 34.316999108], [139.208601362, 34.316679135]]]}}, {"id": "35159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.296023333, 34.474925559], [139.295516667, 34.474561387], [139.295503061, 34.474815], [139.296023333, 34.474925559]]]}}, {"id": "35160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220852192, 34.321486802], [139.220382724, 34.321942721], [139.221104527, 34.321874829], [139.220852192, 34.321486802]]]}}, {"id": "35161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.211033528, 34.316132027], [139.210764423, 34.315599559], [139.210718029, 34.315906468], [139.211033528, 34.316132027]]]}}, {"id": "35162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206907134, 34.331177865], [139.206569948, 34.330882387], [139.206401751, 34.331229802], [139.206907134, 34.331177865]]]}}, {"id": "35163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.286376057, 34.398212279], [139.286980921, 34.397970306], [139.286945305, 34.397708694], [139.286376057, 34.398212279]]]}}, {"id": "35164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22923786, 34.364903054], [139.229112996, 34.364425162], [139.228944034, 34.364805775], [139.22923786, 34.364903054]]]}}, {"id": "35165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226574163, 34.330047054], [139.227110337, 34.329959387], [139.226863917, 34.329741892], [139.226574163, 34.330047054]]]}}, {"id": "35166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223938521, 34.318934865], [139.224001219, 34.318363306], [139.223825331, 34.318282721], [139.223938521, 34.318934865]]]}}, {"id": "35167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207548911, 34.335779495], [139.208112996, 34.335497865], [139.207215227, 34.335436829], [139.207548911, 34.335779495]]]}}, {"id": "35168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221806887, 34.374083495], [139.221953087, 34.374552135], [139.221973943, 34.374074865], [139.221806887, 34.374083495]]]}}, {"id": "35169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291770856, 34.416813081], [139.292254254, 34.416959198], [139.29232275, 34.416829135], [139.291770856, 34.416813081]]]}}, {"id": "35170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21804428, 34.317089721], [139.217703943, 34.316841162], [139.217746693, 34.317236441], [139.21804428, 34.317089721]]]}}, {"id": "35171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225001362, 34.321082495], [139.224506304, 34.321156946], [139.225262114, 34.321585054], [139.225001362, 34.321082495]]]}}, {"id": "35172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225069053, 34.320480495], [139.22515, 34.320886694], [139.225520337, 34.321276748], [139.225069053, 34.320480495]]]}}, {"id": "35173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228853671, 34.365368973], [139.229540389, 34.365287802], [139.228775914, 34.365131306], [139.228853671, 34.365368973]]]}}, {"id": "35174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.281801946, 34.478854721], [139.281482218, 34.478663054], [139.28144834, 34.478905279], [139.281801946, 34.478854721]]]}}, {"id": "35175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.195507639, 34.316736441], [139.195178638, 34.317180198], [139.195793969, 34.316748198], [139.195507639, 34.316736441]]]}}, {"id": "35176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209252581, 34.316922198], [139.209559883, 34.31733], [139.209340752, 34.316844468], [139.209252581, 34.316922198]]]}}, {"id": "35177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265872918, 34.41136836], [139.265485746, 34.411340162], [139.265534838, 34.411449306], [139.265872918, 34.41136836]]]}}, {"id": "35178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219412698, 34.318719414], [139.219705577, 34.318396748], [139.219464553, 34.318400054], [139.219412698, 34.318719414]]]}}, {"id": "35179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.301847224, 34.472764162], [139.301357497, 34.472679441], [139.301411946, 34.472786667], [139.301847224, 34.472764162]]]}}, {"id": "35180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209104254, 34.315913054], [139.209260636, 34.316641748], [139.20936275, 34.316276252], [139.209104254, 34.315913054]]]}}, {"id": "35181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285142088, 34.398038775], [139.285465914, 34.398045829], [139.285148106, 34.397864559], [139.285142088, 34.398038775]]]}}, {"id": "35182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218120726, 34.317692279], [139.218093113, 34.317429252], [139.217893606, 34.317592946], [139.218120726, 34.317692279]]]}}, {"id": "35183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.302404449, 34.472938892], [139.302030558, 34.472848613], [139.302125837, 34.473130279], [139.302404449, 34.472938892]]]}}, {"id": "35184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224343217, 34.320733027], [139.224619053, 34.321011081], [139.224621997, 34.320724306], [139.224343217, 34.320733027]]]}}, {"id": "35185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226810026, 34.325102495], [139.226515837, 34.325166946], [139.22668703, 34.325237027], [139.226810026, 34.325102495]]]}}, {"id": "35186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226699805, 34.328246919], [139.2269193, 34.328445441], [139.226936809, 34.328142], [139.226699805, 34.328246919]]]}}, {"id": "35187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.286147782, 34.478656946], [139.285806939, 34.478555829], [139.28584083, 34.478713613], [139.286147782, 34.478656946]]]}}, {"id": "35188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266091167, 34.411783], [139.265820726, 34.411802135], [139.265964086, 34.412029802], [139.266091167, 34.411783]]]}}, {"id": "35189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217277445, 34.316412973], [139.216900532, 34.316515279], [139.216974864, 34.316646306], [139.217277445, 34.316412973]]]}}, {"id": "35190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291536589, 34.416924919], [139.291548521, 34.417214468], [139.291703671, 34.416975081], [139.291536589, 34.416924919]]]}}, {"id": "35191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.212892866, 34.315630802], [139.212742672, 34.315440198], [139.212520467, 34.315425441], [139.212688444, 34.315812694], [139.212892866, 34.315630802]]]}}, {"id": "35192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225012892, 34.321578054], [139.224746329, 34.321714027], [139.225060337, 34.321855613], [139.225012892, 34.321578054]]]}}, {"id": "35193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227727134, 34.328512559], [139.227614306, 34.328244135], [139.227476809, 34.328399613], [139.227727134, 34.328512559]]]}}, {"id": "35194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222199831, 34.373513414], [139.222634968, 34.373633613], [139.222657198, 34.373479559], [139.222199831, 34.373513414]]]}}, {"id": "35195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228499001, 34.366418054], [139.228923995, 34.366218748], [139.228489533, 34.366147279], [139.228499001, 34.366418054]]]}}, {"id": "35196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.262480558, 34.415288198], [139.26266808, 34.415049613], [139.26241061, 34.415111054], [139.262480558, 34.415288198]]]}}, {"id": "35197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228347056, 34.366817973], [139.228097134, 34.367010387], [139.228229468, 34.36703736], [139.228347056, 34.366817973]]]}}, {"id": "35198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21041834, 34.315532775], [139.210364163, 34.315267225], [139.210272776, 34.315307225], [139.21041834, 34.315532775]]]}}, {"id": "35199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257476083, 34.402142748], [139.25780131, 34.402331973], [139.257856744, 34.402224225], [139.257476083, 34.402142748]]]}}, {"id": "35200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204862503, 34.329679], [139.205041556, 34.329788279], [139.205077562, 34.329552081], [139.204862503, 34.329679]]]}}, {"id": "35201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226955888, 34.37040536], [139.227364034, 34.370198252], [139.22736725, 34.370125225], [139.226955888, 34.37040536]]]}}, {"id": "35202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222101855, 34.373918198], [139.222412802, 34.373894135], [139.222238106, 34.373781279], [139.222101855, 34.373918198]]]}}, {"id": "35203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205659922, 34.331218081], [139.205461803, 34.331448027], [139.20561725, 34.331546387], [139.205659922, 34.331218081]]]}}, {"id": "35204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206685499, 34.321214468], [139.206616109, 34.321430667], [139.206817613, 34.32130636], [139.206685499, 34.321214468]]]}}, {"id": "35205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223940467, 34.323416306], [139.224088949, 34.323168225], [139.223729948, 34.323391829], [139.223940467, 34.323416306]]]}}, {"id": "35206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225745551, 34.330464252], [139.225983191, 34.330274027], [139.225768444, 34.330212306], [139.225745551, 34.330464252]]]}}, {"id": "35207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218744617, 34.318784586], [139.218730026, 34.318534054], [139.218432607, 34.318671748], [139.218744617, 34.318784586]]]}}, {"id": "35208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223363411, 34.372951081], [139.223733411, 34.373025865], [139.223766329, 34.372940721], [139.223363411, 34.372951081]]]}}, {"id": "35209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291269079, 34.421441027], [139.291489857, 34.42133236], [139.291346329, 34.421153225], [139.291269079, 34.421441027]]]}}, {"id": "35210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225066329, 34.372526721], [139.225350311, 34.372440495], [139.22511131, 34.372308946], [139.225066329, 34.372526721]]]}}, {"id": "35211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218595551, 34.317161667], [139.218444163, 34.316984441], [139.218378612, 34.317137775], [139.218595551, 34.317161667]]]}}, {"id": "35212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228975383, 34.365540973], [139.229028392, 34.365366865], [139.228874034, 34.365485198], [139.228975383, 34.365540973]]]}}, {"id": "35213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223430636, 34.321458027], [139.223645888, 34.321626892], [139.223661673, 34.32157936], [139.223430636, 34.321458027]]]}}, {"id": "35214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21970834, 34.320736306], [139.219881829, 34.320458694], [139.219743943, 34.320309135], [139.21970834, 34.320736306]]]}}, {"id": "35215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.300431115, 34.473472225], [139.300235551, 34.473665829], [139.300390272, 34.473662775], [139.300431115, 34.473472225]]]}}, {"id": "35216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229118171, 34.367811225], [139.229017445, 34.368044775], [139.229181025, 34.367989667], [139.229118171, 34.367811225]]]}}, {"id": "35217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226585473, 34.366541946], [139.226286252, 34.366575802], [139.226606809, 34.366629586], [139.226585473, 34.366541946]]]}}, {"id": "35218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223584384, 34.373950721], [139.223907523, 34.373922775], [139.223911699, 34.373813162], [139.223584384, 34.373950721]]]}}, {"id": "35219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217702633, 34.318270946], [139.217537004, 34.318096468], [139.217499637, 34.318288495], [139.217702633, 34.318270946]]]}}, {"id": "35220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224964527, 34.37217236], [139.225273139, 34.372225441], [139.225121193, 34.372051694], [139.224964527, 34.37217236]]]}}, {"id": "35221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2267407, 34.36942864], [139.227029468, 34.369428721], [139.22708917, 34.369305973], [139.2267407, 34.36942864]]]}}, {"id": "35222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200079533, 34.328908775], [139.199994643, 34.32919836], [139.200159728, 34.328937135], [139.200079533, 34.328908775]]]}}, {"id": "35223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291246667, 34.468983054], [139.29102917, 34.469123892], [139.291239728, 34.469107225], [139.291246667, 34.468983054]]]}}, {"id": "35224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.29195511, 34.416667667], [139.29183297, 34.416492495], [139.291777782, 34.416667252], [139.29195511, 34.416667667]]]}}, {"id": "35225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224029728, 34.373246775], [139.223783722, 34.373134198], [139.223821556, 34.373286829], [139.224029728, 34.373246775]]]}}, {"id": "35226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280775006, 34.479035], [139.280632218, 34.479203892], [139.280856667, 34.479113892], [139.280775006, 34.479035]]]}}, {"id": "35227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224816355, 34.320803721], [139.224874747, 34.320482162], [139.22482345, 34.320471721], [139.224816355, 34.320803721]]]}}, {"id": "35228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266236135, 34.411092027], [139.266104332, 34.410977198], [139.266104254, 34.411166333], [139.266236135, 34.411092027]]]}}, {"id": "35229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.276534254, 34.327492468], [139.276653333, 34.327725532], [139.276781193, 34.327699333], [139.276534254, 34.327492468]]]}}, {"id": "35230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22085, 34.320411387], [139.22066083, 34.32056], [139.220857782, 34.320507225], [139.22085, 34.320411387]]]}}, {"id": "35231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255643139, 34.399279], [139.25569192, 34.39949236], [139.255737471, 34.399351387], [139.255643139, 34.399279]]]}}, {"id": "35232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228428392, 34.365501387], [139.228554669, 34.365386694], [139.22832144, 34.365267973], [139.228428392, 34.365501387]]]}}, {"id": "35233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28702192, 34.398640495], [139.286839585, 34.398514468], [139.286790337, 34.398594829], [139.28702192, 34.398640495]]]}}, {"id": "35234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206197134, 34.328990027], [139.206067588, 34.329053468], [139.20600406, 34.329251306], [139.206197134, 34.328990027]]]}}, {"id": "35235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206879857, 34.319844108], [139.207068975, 34.319943775], [139.207007134, 34.319769108], [139.206879857, 34.319844108]]]}}, {"id": "35236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25503834, 34.400002333], [139.25509847, 34.399810135], [139.254848249, 34.399980973], [139.25503834, 34.400002333]]]}}, {"id": "35237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215112335, 34.31687536], [139.214918106, 34.316781802], [139.215060895, 34.316958414], [139.215112335, 34.31687536]]]}}, {"id": "35238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224647367, 34.372744613], [139.224813139, 34.37261436], [139.224719416, 34.372583694], [139.224647367, 34.372744613]]]}}, {"id": "35239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.286407912, 34.398413279], [139.286211505, 34.398477946], [139.28630153, 34.398566775], [139.286407912, 34.398413279]]]}}, {"id": "35240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226613281, 34.374902225], [139.226468029, 34.375020865], [139.226536809, 34.375116495], [139.226613281, 34.374902225]]]}}, {"id": "35241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206818781, 34.320886333], [139.206982866, 34.320972387], [139.207010947, 34.320791306], [139.206818781, 34.320886333]]]}}, {"id": "35242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224255032, 34.323241081], [139.224582996, 34.323024162], [139.224223917, 34.323243081], [139.224255032, 34.323241081]]]}}, {"id": "35243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208892892, 34.317046586], [139.208927108, 34.317456252], [139.209041803, 34.317243162], [139.208892892, 34.317046586]]]}}, {"id": "35244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206195473, 34.331243721], [139.206088106, 34.331477946], [139.206025422, 34.331549829], [139.206198716, 34.331466865], [139.206195473, 34.331243721]]]}}, {"id": "35245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226840856, 34.329363919], [139.226863645, 34.329114865], [139.226757717, 34.329274162], [139.226840856, 34.329363919]]]}}, {"id": "35246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255518781, 34.399522829], [139.255552387, 34.399645414], [139.255632944, 34.399541748], [139.255518781, 34.399522829]]]}}, {"id": "35247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2248, 34.324169135], [139.224921505, 34.324047414], [139.224684086, 34.324225802], [139.2248, 34.324169135]]]}}, {"id": "35248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280347782, 34.324429162], [139.280163891, 34.324345279], [139.280165837, 34.324460559], [139.280347782, 34.324429162]]]}}, {"id": "35249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265957173, 34.410651027], [139.265922438, 34.410508252], [139.265836083, 34.410572586], [139.265957173, 34.410651027]]]}}, {"id": "35250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226618586, 34.327633387], [139.226619053, 34.327463162], [139.22650275, 34.327482252], [139.226618586, 34.327633387]]]}}, {"id": "35251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207293554, 34.331474198], [139.207131141, 34.331452973], [139.207081634, 34.331650694], [139.207293554, 34.331474198]]]}}, {"id": "35252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218398885, 34.319381108], [139.218216394, 34.319252775], [139.21814917, 34.319344441], [139.218398885, 34.319381108]]]}}, {"id": "35253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224552607, 34.372961865], [139.224608054, 34.37270864], [139.224402581, 34.372883306], [139.224552607, 34.372961865]]]}}, {"id": "35254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225211479, 34.323921441], [139.225098521, 34.324044667], [139.225371089, 34.323924054], [139.225211479, 34.323921441]]]}}, {"id": "35255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.210330117, 34.315145468], [139.21062856, 34.31531064], [139.210692412, 34.315286081], [139.210490467, 34.315146108], [139.210330117, 34.315145468]]]}}, {"id": "35256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225921803, 34.369412613], [139.225807912, 34.369329279], [139.225715668, 34.369486946], [139.225921803, 34.369412613]]]}}, {"id": "35257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.194595914, 34.316546495], [139.194520856, 34.316399333], [139.194461115, 34.316471892], [139.194595914, 34.316546495]]]}}, {"id": "35258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227055136, 34.366968613], [139.226960947, 34.366792441], [139.226961829, 34.36699864], [139.227055136, 34.366968613]]]}}, {"id": "35259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214495084, 34.335524495], [139.214483671, 34.335775252], [139.214536135, 34.335497829], [139.214495084, 34.335524495]]]}}, {"id": "35260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.239936615, 34.365061414], [139.23977939, 34.364986198], [139.239775357, 34.365095892], [139.239936615, 34.365061414]]]}}, {"id": "35261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.195117665, 34.316620279], [139.195213217, 34.316745279], [139.195285305, 34.316709775], [139.195117665, 34.316620279]]]}}, {"id": "35262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228211089, 34.365921865], [139.228053281, 34.365836613], [139.228153671, 34.366013559], [139.228211089, 34.365921865]]]}}, {"id": "35263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.282651388, 34.477586387], [139.28282083, 34.477561108], [139.282631388, 34.477468333], [139.282651388, 34.477586387]]]}}, {"id": "35264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221232412, 34.322341667], [139.22116489, 34.322153279], [139.221083087, 34.32230036], [139.221232412, 34.322341667]]]}}, {"id": "35265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257142503, 34.401616667], [139.257237497, 34.401718054], [139.257343061, 34.401633613], [139.257142503, 34.401616667]]]}}, {"id": "35266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200576498, 34.329442162], [139.200722776, 34.329528775], [139.200861894, 34.329496667], [139.200576498, 34.329442162]]]}}, {"id": "35267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208796667, 34.315933054], [139.208676109, 34.316068333], [139.208751946, 34.316109441], [139.208796667, 34.315933054]]]}}, {"id": "35268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226638392, 34.329637802], [139.226601673, 34.329456586], [139.226528223, 34.329619333], [139.226638392, 34.329637802]]]}}, {"id": "35269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255069416, 34.396494559], [139.254870506, 34.396558], [139.255065305, 34.396570919], [139.255069416, 34.396494559]]]}}, {"id": "35270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289417497, 34.474132775], [139.289553333, 34.474211667], [139.289560272, 34.474037225], [139.289417497, 34.474132775]]]}}, {"id": "35271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224879754, 34.372305], [139.224843411, 34.372157054], [139.224755551, 34.372245613], [139.224879754, 34.372305]]]}}, {"id": "35272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280538067, 34.32437482], [139.280535045, 34.324531432], [139.280628755, 34.324471703], [139.280538067, 34.32437482]]]}}, {"id": "35273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227665914, 34.366908], [139.22780703, 34.366848387], [139.227646304, 34.366808919], [139.227665914, 34.366908]]]}}, {"id": "35274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216631634, 34.333590919], [139.216396005, 34.333582586], [139.216637302, 34.333636108], [139.216631634, 34.333590919]]]}}, {"id": "35275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229590441, 34.372977441], [139.229754643, 34.372978973], [139.229616809, 34.372913027], [139.229590441, 34.372977441]]]}}, {"id": "35276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225253554, 34.367805532], [139.225313191, 34.36763], [139.225246744, 34.367646892], [139.225253554, 34.367805532]]]}}, {"id": "35277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.277037082, 34.323785829], [139.277006135, 34.323947532], [139.277097588, 34.323890613], [139.277037082, 34.323785829]]]}}, {"id": "35278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22415083, 34.322195829], [139.224143891, 34.322344721], [139.224211673, 34.322225829], [139.22415083, 34.322195829]]]}}, {"id": "35279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22955131, 34.373235919], [139.229727056, 34.37323036], [139.229666329, 34.373132162], [139.22955131, 34.373235919]]]}}, {"id": "35280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225573333, 34.320584441], [139.22554083, 34.320740559], [139.225616939, 34.320692225], [139.225573333, 34.320584441]]]}}, {"id": "35281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223277445, 34.372421252], [139.223393671, 34.372510829], [139.223416719, 34.372377414], [139.223277445, 34.372421252]]]}}, {"id": "35282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207054669, 34.335322495], [139.20701192, 34.335487721], [139.207126835, 34.335351802], [139.207054669, 34.335322495]]]}}, {"id": "35283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.195822996, 34.317650441], [139.195670947, 34.317600441], [139.195665162, 34.317643946], [139.195822996, 34.317650441]]]}}, {"id": "35284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285773139, 34.397802892], [139.285828638, 34.397661495], [139.285684358, 34.397737306], [139.285773139, 34.397802892]]]}}, {"id": "35285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.210903671, 34.316328892], [139.211062672, 34.316322586], [139.21103917, 34.316239775], [139.210903671, 34.316328892]]]}}, {"id": "35286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229524812, 34.373474586], [139.229477834, 34.373306414], [139.229461479, 34.373467162], [139.229524812, 34.373474586]]]}}, {"id": "35287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.294571388, 34.474961667], [139.294768612, 34.474876946], [139.294578054, 34.474888333], [139.294571388, 34.474961667]]]}}, {"id": "35288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213641855, 34.336332748], [139.213772698, 34.336363892], [139.213875032, 34.336250441], [139.213641855, 34.336332748]]]}}, {"id": "35289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224971025, 34.322877532], [139.224887497, 34.323006387], [139.22498214, 34.323023081], [139.224971025, 34.322877532]]]}}, {"id": "35290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208251777, 34.330959162], [139.208098145, 34.331040135], [139.207978807, 34.331219027], [139.208247108, 34.331017], [139.208251777, 34.330959162]]]}}, {"id": "35291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255947523, 34.399188919], [139.256039144, 34.399024559], [139.255913411, 34.399166775], [139.255947523, 34.399188919]]]}}, {"id": "35292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2566107, 34.335907802], [139.256470117, 34.335997829], [139.256622023, 34.335968252], [139.2566107, 34.335907802]]]}}, {"id": "35293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221221829, 34.321221721], [139.221368054, 34.321124892], [139.221171025, 34.321156], [139.221221829, 34.321221721]]]}}, {"id": "35294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289356109, 34.473885279], [139.289226939, 34.473952775], [139.289390272, 34.473992225], [139.289356109, 34.473885279]]]}}, {"id": "35295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207461946, 34.334191252], [139.207302387, 34.334161027], [139.207419416, 34.334253135], [139.207461946, 34.334191252]]]}}, {"id": "35296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218966109, 34.317782495], [139.218793606, 34.317772495], [139.218905279, 34.317834441], [139.218966109, 34.317782495]]]}}, {"id": "35297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240642776, 34.365002495], [139.240725837, 34.365149721], [139.240702218, 34.364995], [139.240642776, 34.365002495]]]}}, {"id": "35298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206042218, 34.333383892], [139.206040272, 34.333480829], [139.206186394, 34.333431387], [139.206042218, 34.333383892]]]}}, {"id": "35299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226443281, 34.36722236], [139.22639022, 34.367083054], [139.226343307, 34.367137559], [139.226443281, 34.36722236]]]}}, {"id": "35300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225095227, 34.320815559], [139.225043191, 34.320963532], [139.225082996, 34.320970829], [139.225095227, 34.320815559]]]}}, {"id": "35301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200774553, 34.329345198], [139.200560921, 34.329403694], [139.200820726, 34.329392946], [139.200774553, 34.329345198]]]}}, {"id": "35302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226223528, 34.325151252], [139.226081751, 34.325236721], [139.226252724, 34.32522964], [139.226223528, 34.325151252]]]}}, {"id": "35303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214394358, 34.334928333], [139.214435279, 34.335084694], [139.214490947, 34.335035306], [139.214394358, 34.334928333]]]}}, {"id": "35304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222103061, 34.320322225], [139.222253606, 34.320362225], [139.222225837, 34.320291946], [139.222103061, 34.320322225]]]}}, {"id": "35305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224857198, 34.323157441], [139.22463275, 34.323240613], [139.224620726, 34.323279694], [139.224857198, 34.323157441]]]}}, {"id": "35306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.276885772, 34.327662108], [139.277011634, 34.327610306], [139.276867665, 34.327539252], [139.276885772, 34.327662108]]]}}, {"id": "35307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207114643, 34.330486252], [139.206971725, 34.330561532], [139.207081414, 34.330658198], [139.207114643, 34.330486252]]]}}, {"id": "35308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204666304, 34.328591613], [139.204588029, 34.328771162], [139.204712503, 34.328663613], [139.204666304, 34.328591613]]]}}, {"id": "35309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.282355006, 34.477815], [139.282373061, 34.477699441], [139.282257497, 34.477795279], [139.282355006, 34.477815]]]}}, {"id": "35310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200400467, 34.315875694], [139.200472283, 34.315980919], [139.200498716, 34.315888162], [139.200400467, 34.315875694]]]}}, {"id": "35311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206128885, 34.334005829], [139.206039442, 34.334113613], [139.206167782, 34.334080559], [139.206128885, 34.334005829]]]}}, {"id": "35312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208162827, 34.331682919], [139.208318833, 34.331632495], [139.208337756, 34.331585721], [139.208162827, 34.331682919]]]}}, {"id": "35313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.268261582, 34.414817468], [139.268204942, 34.414727775], [139.268145914, 34.414837946], [139.268261582, 34.414817468]]]}}, {"id": "35314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214774578, 34.335141586], [139.214624228, 34.335297694], [139.214604578, 34.335367279], [139.214774578, 34.335141586]]]}}, {"id": "35315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229903943, 34.365469721], [139.229858807, 34.365364919], [139.229786135, 34.365492946], [139.229903943, 34.365469721]]]}}, {"id": "35316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208058418, 34.331312468], [139.208261089, 34.331300613], [139.208282361, 34.331261054], [139.208058418, 34.331312468]]]}}, {"id": "35317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291504968, 34.418133387], [139.291589663, 34.418223667], [139.291687834, 34.418168919], [139.291504968, 34.418133387]]]}}, {"id": "35318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228500143, 34.366622], [139.22844489, 34.366472613], [139.228436783, 34.366618532], [139.228500143, 34.366622]]]}}, {"id": "35319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292016472, 34.407835586], [139.29195022, 34.407936721], [139.292079559, 34.407903586], [139.292016472, 34.407835586]]]}}, {"id": "35320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208294306, 34.33531936], [139.20818847, 34.335402667], [139.208311505, 34.335448559], [139.208294306, 34.33531936]]]}}, {"id": "35321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224580661, 34.372345081], [139.224479728, 34.37226036], [139.224460947, 34.372346108], [139.224580661, 34.372345081]]]}}, {"id": "35322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240465279, 34.366257225], [139.240386667, 34.366392775], [139.240512218, 34.366382495], [139.240465279, 34.366257225]]]}}, {"id": "35323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207837613, 34.31698664], [139.207916057, 34.317106135], [139.207952802, 34.316940802], [139.207837613, 34.31698664]]]}}, {"id": "35324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243001284, 34.366986613], [139.242891219, 34.366960667], [139.242908275, 34.367115162], [139.243001284, 34.366986613]]]}}, {"id": "35325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20624511, 34.331351802], [139.206334916, 34.331404279], [139.206327977, 34.331328613], [139.20624511, 34.331351802]]]}}, {"id": "35326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219392555, 34.318276279], [139.219263748, 34.318253802], [139.219323411, 34.31835564], [139.219392555, 34.318276279]]]}}, {"id": "35327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227022776, 34.329415559], [139.226998885, 34.329556108], [139.227077782, 34.329421667], [139.227022776, 34.329415559]]]}}, {"id": "35328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22591489, 34.32497364], [139.225986719, 34.325076865], [139.226058444, 34.325046468], [139.22591489, 34.32497364]]]}}, {"id": "35329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205583333, 34.334098892], [139.205574721, 34.334207225], [139.205713061, 34.334123892], [139.205583333, 34.334098892]]]}}, {"id": "35330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260271725, 34.404182721], [139.260281634, 34.404306279], [139.260336083, 34.404285162], [139.260271725, 34.404182721]]]}}, {"id": "35331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218332944, 34.319108946], [139.218287198, 34.319241162], [139.218416304, 34.319192775], [139.218332944, 34.319108946]]]}}, {"id": "35332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224116472, 34.373383694], [139.224095253, 34.37322436], [139.224031362, 34.37330636], [139.224116472, 34.373383694]]]}}, {"id": "35333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214235136, 34.334973495], [139.214302827, 34.335094667], [139.214275447, 34.334961441], [139.214235136, 34.334973495]]]}}, {"id": "35334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215237419, 34.316905225], [139.21528703, 34.31676336], [139.215201608, 34.316747252], [139.215237419, 34.316905225]]]}}, {"id": "35335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226772866, 34.366970829], [139.226689754, 34.367053721], [139.226783087, 34.367033802], [139.226772866, 34.366970829]]]}}, {"id": "35336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225866498, 34.371302414], [139.225829222, 34.371195495], [139.225782672, 34.371272802], [139.225866498, 34.371302414]]]}}, {"id": "35337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206638885, 34.318541468], [139.206618145, 34.318643613], [139.206685279, 34.318613108], [139.206638885, 34.318541468]]]}}, {"id": "35338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216401362, 34.316439667], [139.216315499, 34.316577162], [139.216387912, 34.316584829], [139.216401362, 34.316439667]]]}}, {"id": "35339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229374812, 34.370954829], [139.22951808, 34.370821667], [139.229342387, 34.370926559], [139.229374812, 34.370954829]]]}}, {"id": "35340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205938171, 34.320480721], [139.205964189, 34.320356279], [139.205912477, 34.320369252], [139.205938171, 34.320480721]]]}}, {"id": "35341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.293090026, 34.418617973], [139.293231505, 34.418664108], [139.293083191, 34.418583027], [139.293090026, 34.418617973]]]}}, {"id": "35342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207998521, 34.331930919], [139.208063165, 34.332049613], [139.208060337, 34.331932306], [139.207998521, 34.331930919]]]}}, {"id": "35343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249752218, 34.342864973], [139.249837367, 34.342766468], [139.249693256, 34.342810135], [139.249752218, 34.342864973]]]}}, {"id": "35344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220980078, 34.32024764], [139.220861414, 34.320368919], [139.220885383, 34.320418081], [139.220980078, 34.32024764]]]}}, {"id": "35345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289162529, 34.425153054], [139.289245499, 34.425059748], [139.289127198, 34.425100162], [139.289162529, 34.425153054]]]}}, {"id": "35346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241369027, 34.363187081], [139.241508171, 34.363264667], [139.241520441, 34.363236495], [139.241369027, 34.363187081]]]}}, {"id": "35347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.254710311, 34.399982387], [139.25468808, 34.400082802], [139.254753943, 34.399995865], [139.254710311, 34.399982387]]]}}, {"id": "35348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287666498, 34.400577027], [139.2877207, 34.400472865], [139.287653839, 34.400484279], [139.287666498, 34.400577027]]]}}, {"id": "35349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223974669, 34.373688694], [139.224016329, 34.373567198], [139.223888586, 34.373626532], [139.223974669, 34.373688694]]]}}, {"id": "35350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257577665, 34.333771054], [139.257711673, 34.333725892], [139.257570778, 34.333732081], [139.257577665, 34.333771054]]]}}, {"id": "35351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227670532, 34.366403775], [139.22757345, 34.366463162], [139.227661946, 34.366492919], [139.227670532, 34.366403775]]]}}, {"id": "35352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.296135279, 34.474713613], [139.296291673, 34.474736108], [139.296237497, 34.474662775], [139.296135279, 34.474713613]]]}}, {"id": "35353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229151699, 34.367666414], [139.229033774, 34.367600027], [139.229022944, 34.367623694], [139.229151699, 34.367666414]]]}}, {"id": "35354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229508807, 34.371689441], [139.229460337, 34.371627198], [139.229418664, 34.371689], [139.229508807, 34.371689441]]]}}, {"id": "35355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219092283, 34.316525027], [139.219000895, 34.316600387], [139.219065227, 34.31664364], [139.219092283, 34.316525027]]]}}, {"id": "35356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25777939, 34.334821162], [139.257847639, 34.334724559], [139.257750558, 34.334744468], [139.25777939, 34.334821162]]]}}, {"id": "35357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216642218, 34.316712775], [139.216577562, 34.316594613], [139.216578638, 34.316760613], [139.216642218, 34.316712775]]]}}, {"id": "35358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240087497, 34.365405559], [139.239976109, 34.365501946], [139.240026939, 34.365519441], [139.240087497, 34.365405559]]]}}, {"id": "35359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224223671, 34.372818054], [139.2241607, 34.372908333], [139.224254228, 34.372846775], [139.224223671, 34.372818054]]]}}, {"id": "35360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207775642, 34.331635586], [139.207838249, 34.331750586], [139.207859922, 34.331657919], [139.207775642, 34.331635586]]]}}, {"id": "35361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227229728, 34.328134721], [139.227285006, 34.328016108], [139.22720917, 34.328058613], [139.227229728, 34.328134721]]]}}, {"id": "35362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266725772, 34.408171387], [139.266655837, 34.408089306], [139.26664345, 34.408167865], [139.266725772, 34.408171387]]]}}, {"id": "35363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2233062, 34.374348468], [139.223201946, 34.374271946], [139.223225642, 34.374362667], [139.2233062, 34.374348468]]]}}, {"id": "35364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.19520978, 34.317529162], [139.195086135, 34.31759864], [139.195196719, 34.317591387], [139.19520978, 34.317529162]]]}}, {"id": "35365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216996446, 34.316652802], [139.21701022, 34.316773775], [139.217096394, 34.316714613], [139.216996446, 34.316652802]]]}}, {"id": "35366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.239980117, 34.365090667], [139.240066226, 34.365167694], [139.240091608, 34.365112748], [139.239980117, 34.365090667]]]}}, {"id": "35367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220868612, 34.320570279], [139.220943333, 34.320646387], [139.220948054, 34.320581946], [139.220868612, 34.320570279]]]}}, {"id": "35368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.210999001, 34.337337919], [139.210879883, 34.337441441], [139.21101847, 34.337350919], [139.210999001, 34.337337919]]]}}, {"id": "35369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216809274, 34.316409694], [139.216726304, 34.316582027], [139.216861699, 34.316431162], [139.216809274, 34.316409694]]]}}, {"id": "35370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219219027, 34.317588775], [139.219152944, 34.317653279], [139.219251855, 34.317631694], [139.219219027, 34.317588775]]]}}, {"id": "35371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241353554, 34.368291946], [139.24128786, 34.368389], [139.241345357, 34.368403333], [139.241353554, 34.368291946]]]}}, {"id": "35372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242181051, 34.364436135], [139.242240246, 34.364536054], [139.242287108, 34.364504892], [139.242181051, 34.364436135]]]}}, {"id": "35373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242736887, 34.367260667], [139.24267131, 34.367357721], [139.242728716, 34.367372054], [139.242736887, 34.367260667]]]}}, {"id": "35374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226634163, 34.325439775], [139.226579689, 34.325367225], [139.226539585, 34.325415162], [139.226634163, 34.325439775]]]}}, {"id": "35375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202014553, 34.32889136], [139.202031115, 34.328987919], [139.20210192, 34.328862973], [139.202014553, 34.32889136]]]}}, {"id": "35376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219123333, 34.317847775], [139.219181388, 34.317917775], [139.21916, 34.317827225], [139.219123333, 34.317847775]]]}}, {"id": "35377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.211458885, 34.31545936], [139.211331505, 34.315465946], [139.21136022, 34.315517919], [139.211458885, 34.31545936]]]}}, {"id": "35378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256127419, 34.401071748], [139.256048638, 34.401188306], [139.256137367, 34.401130135], [139.256127419, 34.401071748]]]}}, {"id": "35379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.197894721, 34.324231027], [139.197881556, 34.324349414], [139.197941997, 34.324260559], [139.197894721, 34.324231027]]]}}, {"id": "35380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242783191, 34.36684636], [139.242813839, 34.366924775], [139.242908366, 34.366903495], [139.242783191, 34.36684636]]]}}, {"id": "35381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.281203671, 34.431563613], [139.281187834, 34.431457414], [139.281132412, 34.431479721], [139.281203671, 34.431563613]]]}}, {"id": "35382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227547497, 34.328179892], [139.227638249, 34.328087865], [139.22748834, 34.328125973], [139.227547497, 34.328179892]]]}}, {"id": "35383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292315772, 34.421185829], [139.29227978, 34.421271946], [139.292339585, 34.421206586], [139.292315772, 34.421185829]]]}}, {"id": "35384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222490921, 34.320233], [139.222395914, 34.320190613], [139.22240153, 34.320253829], [139.222490921, 34.320233]]]}}, {"id": "35385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25578083, 34.335731414], [139.255757834, 34.335661], [139.25567572, 34.335715613], [139.25578083, 34.335731414]]]}}, {"id": "35386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.281999274, 34.395568225], [139.282065888, 34.395627829], [139.282060052, 34.395556333], [139.281999274, 34.395568225]]]}}, {"id": "35387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202400856, 34.319225279], [139.202523774, 34.319121495], [139.202403087, 34.319129279], [139.202400856, 34.319225279]]]}}, {"id": "35388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291280143, 34.420370748], [139.2911607, 34.420385721], [139.291367717, 34.420420279], [139.291280143, 34.420370748]]]}}, {"id": "35389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289431115, 34.474392225], [139.289315279, 34.474341387], [139.289356109, 34.474425829], [139.289431115, 34.474392225]]]}}, {"id": "35390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.276153891, 34.327447559], [139.276075473, 34.327471279], [139.276204137, 34.327553721], [139.276153891, 34.327447559]]]}}, {"id": "35391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25524, 34.396550721], [139.255155888, 34.396601721], [139.255253969, 34.396590468], [139.25524, 34.396550721]]]}}, {"id": "35392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23008358, 34.373200225], [139.230013969, 34.373125865], [139.229962672, 34.373184559], [139.23008358, 34.373200225]]]}}, {"id": "35393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228353333, 34.365899306], [139.228247691, 34.365926108], [139.228341582, 34.365944532], [139.228353333, 34.365899306]]]}}, {"id": "35394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.197806394, 34.324582495], [139.197896109, 34.324533892], [139.19785, 34.324495559], [139.197806394, 34.324582495]]]}}, {"id": "35395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226956641, 34.368763306], [139.22695808, 34.36866764], [139.226867134, 34.368705892], [139.226956641, 34.368763306]]]}}, {"id": "35396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206314527, 34.328841694], [139.206339364, 34.328949559], [139.206382218, 34.328857279], [139.206314527, 34.328841694]]]}}, {"id": "35397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227329494, 34.367051586], [139.227261725, 34.366981802], [139.227247328, 34.367074694], [139.227329494, 34.367051586]]]}}, {"id": "35398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228953554, 34.373198162], [139.229048949, 34.373119198], [139.228985888, 34.373086333], [139.228953554, 34.373198162]]]}}, {"id": "35399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228497834, 34.367169054], [139.228440311, 34.367108919], [139.22841917, 34.367178027], [139.228497834, 34.367169054]]]}}, {"id": "35400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.195473385, 34.317426865], [139.195473865, 34.317538108], [139.195537328, 34.317450613], [139.195473385, 34.317426865]]]}}, {"id": "35401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255637108, 34.395534865], [139.25575594, 34.395585162], [139.255800026, 34.395533919], [139.255637108, 34.395534865]]]}}, {"id": "35402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227213969, 34.369186667], [139.227180143, 34.369099973], [139.227136744, 34.369205775], [139.227213969, 34.369186667]]]}}, {"id": "35403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.210055811, 34.336961775], [139.20994808, 34.336994414], [139.210030947, 34.337020252], [139.210055811, 34.336961775]]]}}, {"id": "35404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207853528, 34.331551333], [139.207991479, 34.331590802], [139.20791511, 34.331512802], [139.207853528, 34.331551333]]]}}, {"id": "35405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229242049, 34.366558865], [139.22918917, 34.366447721], [139.229119857, 34.366515162], [139.229242049, 34.366558865]]]}}, {"id": "35406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288463061, 34.425929694], [139.288542776, 34.425847559], [139.288504358, 34.425832414], [139.288463061, 34.425929694]]]}}, {"id": "35407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228460532, 34.366127586], [139.228500726, 34.366024468], [139.228434695, 34.366045667], [139.228460532, 34.366127586]]]}}, {"id": "35408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208788859, 34.315732667], [139.208737613, 34.31575664], [139.208813022, 34.315840414], [139.208788859, 34.315732667]]]}}, {"id": "35409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265127613, 34.40726], [139.265116394, 34.407360829], [139.265184254, 34.40727964], [139.265127613, 34.40726]]]}}, {"id": "35410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218834449, 34.316700559], [139.218915837, 34.316730829], [139.218907497, 34.316641387], [139.218834449, 34.316700559]]]}}, {"id": "35411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.290575772, 34.406432973], [139.290564747, 34.406340441], [139.290520078, 34.406384414], [139.290575772, 34.406432973]]]}}, {"id": "35412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260421193, 34.404403054], [139.260514501, 34.404390946], [139.260443917, 34.404325802], [139.260421193, 34.404403054]]]}}, {"id": "35413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223021479, 34.322999279], [139.223062283, 34.323093613], [139.22310725, 34.323006829], [139.223021479, 34.322999279]]]}}, {"id": "35414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21872406, 34.316863441], [139.218909364, 34.316933054], [139.218846278, 34.316836441], [139.21872406, 34.316863441]]]}}, {"id": "35415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28730703, 34.40059336], [139.287265914, 34.400507721], [139.287206615, 34.400531054], [139.28730703, 34.40059336]]]}}, {"id": "35416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227780804, 34.373955054], [139.227820895, 34.373839946], [139.227722633, 34.373910252], [139.227780804, 34.373955054]]]}}, {"id": "35417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.295897497, 34.474302225], [139.295958612, 34.474211946], [139.295876939, 34.474251387], [139.295897497, 34.474302225]]]}}, {"id": "35418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22854153, 34.373417162], [139.228701219, 34.373333667], [139.228524306, 34.373409162], [139.22854153, 34.373417162]]]}}, {"id": "35419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.26542297, 34.407688775], [139.265423502, 34.407610532], [139.265343671, 34.407657586], [139.26542297, 34.407688775]]]}}, {"id": "35420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292545499, 34.419810108], [139.292597834, 34.419739279], [139.292532218, 34.419792468], [139.292545499, 34.419810108]]]}}, {"id": "35421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255642607, 34.399969586], [139.255599442, 34.400063667], [139.255684553, 34.39997736], [139.255642607, 34.399969586]]]}}, {"id": "35422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226275616, 34.368352613], [139.226395058, 34.36834364], [139.226283165, 34.368299721], [139.226275616, 34.368352613]]]}}, {"id": "35423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258642827, 34.334997306], [139.258633385, 34.335092748], [139.258680856, 34.335065667], [139.258642827, 34.334997306]]]}}, {"id": "35424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260026329, 34.40411936], [139.260101751, 34.404097559], [139.260041245, 34.404053081], [139.260026329, 34.40411936]]]}}, {"id": "35425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242939494, 34.362075306], [139.243047497, 34.362007946], [139.242927782, 34.362043775], [139.242939494, 34.362075306]]]}}, {"id": "35426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222579754, 34.373990802], [139.222692996, 34.373966387], [139.222595331, 34.373924892], [139.222579754, 34.373990802]]]}}, {"id": "35427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228701336, 34.366597306], [139.228722555, 34.366505532], [139.228659222, 34.366603225], [139.228701336, 34.366597306]]]}}, {"id": "35428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219379728, 34.317606892], [139.2194462, 34.317639775], [139.219414578, 34.317580027], [139.219379728, 34.317606892]]]}}, {"id": "35429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20394297, 34.327271559], [139.203974669, 34.327190667], [139.203905694, 34.327255495], [139.20394297, 34.327271559]]]}}, {"id": "35430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28934594, 34.401449162], [139.289305863, 34.401374532], [139.289292283, 34.401456252], [139.28934594, 34.401449162]]]}}, {"id": "35431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289149805, 34.40125564], [139.289226835, 34.401185225], [139.289139105, 34.401192946], [139.289149805, 34.40125564]]]}}, {"id": "35432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204552724, 34.320935225], [139.204653671, 34.320935198], [139.204622724, 34.320887252], [139.204552724, 34.320935225]]]}}, {"id": "35433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217462607, 34.33315936], [139.217496226, 34.333242468], [139.217540973, 34.333201775], [139.217462607, 34.33315936]]]}}, {"id": "35434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291388197, 34.417480162], [139.291396394, 34.417409775], [139.291367756, 34.41741336], [139.291388197, 34.417480162]]]}}, {"id": "35435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227122996, 34.328998387], [139.227033839, 34.32899264], [139.22702786, 34.329051198], [139.227122996, 34.328998387]]]}}, {"id": "35436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226397198, 34.371785865], [139.226305279, 34.371748333], [139.226334475, 34.371830532], [139.226397198, 34.371785865]]]}}, {"id": "35437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207451479, 34.334400081], [139.20733655, 34.334406802], [139.20733406, 34.334450414], [139.207451479, 34.334400081]]]}}, {"id": "35438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285058885, 34.399670306], [139.285093217, 34.399757829], [139.285119922, 34.399687252], [139.285058885, 34.399670306]]]}}, {"id": "35439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.286337562, 34.398795865], [139.286425966, 34.398748721], [139.286325668, 34.398749108], [139.286337562, 34.398795865]]]}}, {"id": "35440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219118885, 34.317515279], [139.219218054, 34.317471108], [139.219187497, 34.317448613], [139.219118885, 34.317515279]]]}}, {"id": "35441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.281492776, 34.395159775], [139.281569663, 34.395093613], [139.281488949, 34.395093865], [139.281492776, 34.395159775]]]}}, {"id": "35442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225017224, 34.322634613], [139.225091089, 34.322655162], [139.225119533, 34.322583279], [139.225017224, 34.322634613]]]}}, {"id": "35443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227607691, 34.366556468], [139.227495227, 34.366562946], [139.227505006, 34.366593279], [139.227607691, 34.366556468]]]}}, {"id": "35444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215151997, 34.316726892], [139.215189754, 34.316839162], [139.215194112, 34.316690333], [139.215151997, 34.316726892]]]}}, {"id": "35445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224480895, 34.373059333], [139.224506498, 34.372964081], [139.224451479, 34.373023387], [139.224480895, 34.373059333]]]}}, {"id": "35446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.283056083, 34.430699441], [139.283080467, 34.430629135], [139.283022892, 34.430667387], [139.283056083, 34.430699441]]]}}, {"id": "35447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223473995, 34.320302081], [139.22357153, 34.320281027], [139.223473645, 34.320263054], [139.223473995, 34.320302081]]]}}, {"id": "35448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2572662, 34.335376721], [139.257351894, 34.335338721], [139.257295006, 34.335315198], [139.2572662, 34.335376721]]]}}, {"id": "35449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225451089, 34.37220236], [139.225401608, 34.372291919], [139.225466693, 34.372284387], [139.225451089, 34.37220236]]]}}, {"id": "35450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214535473, 34.335396135], [139.214521556, 34.335484613], [139.214602724, 34.335415495], [139.214535473, 34.335396135]]]}}, {"id": "35451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213344527, 34.336656162], [139.213326667, 34.336556468], [139.213331115, 34.336661333], [139.213344527, 34.336656162]]]}}, {"id": "35452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241091829, 34.366549252], [139.241156498, 34.36661564], [139.241156005, 34.366591919], [139.241091829, 34.366549252]]]}}, {"id": "35453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222163891, 34.323012748], [139.222261219, 34.322973468], [139.222146939, 34.322981027], [139.222163891, 34.323012748]]]}}, {"id": "35454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224212088, 34.373440252], [139.224125811, 34.373447306], [139.224175551, 34.373486306], [139.224212088, 34.373440252]]]}}, {"id": "35455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205233645, 34.327724721], [139.205196744, 34.327833532], [139.205280363, 34.327767865], [139.205233645, 34.327724721]]]}}, {"id": "35456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228603722, 34.367140919], [139.228501894, 34.367195495], [139.228533113, 34.367222495], [139.228603722, 34.367140919]]]}}, {"id": "35457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.201867471, 34.329027279], [139.201912218, 34.329102613], [139.201954669, 34.329065946], [139.201867471, 34.329027279]]]}}, {"id": "35458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200982698, 34.325925054], [139.201046109, 34.325975532], [139.201007886, 34.325867495], [139.200982698, 34.325925054]]]}}, {"id": "35459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244454747, 34.349161108], [139.244383865, 34.349088829], [139.244397886, 34.349148586], [139.244454747, 34.349161108]]]}}, {"id": "35460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205285914, 34.32931236], [139.205174578, 34.329452252], [139.20532144, 34.329342279], [139.205285914, 34.32931236]]]}}, {"id": "35461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207473943, 34.332324468], [139.20732214, 34.332396532], [139.207410778, 34.332401865], [139.207473943, 34.332324468]]]}}, {"id": "35462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214560078, 34.31715], [139.21461214, 34.317208586], [139.214614254, 34.317143775], [139.214560078, 34.31715]]]}}, {"id": "35463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.296183061, 34.474544441], [139.296115006, 34.474482495], [139.296101388, 34.474566946], [139.296183061, 34.474544441]]]}}, {"id": "35464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224525136, 34.372639892], [139.224438249, 34.372583802], [139.224448275, 34.372653027], [139.224525136, 34.372639892]]]}}, {"id": "35465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205877691, 34.331378414], [139.205994034, 34.331354919], [139.205860661, 34.331344054], [139.205877691, 34.331378414]]]}}, {"id": "35466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206708054, 34.334962721], [139.206784423, 34.335054], [139.206805577, 34.335030667], [139.206708054, 34.334962721]]]}}, {"id": "35467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257493476, 34.401618495], [139.257445966, 34.401550829], [139.257428781, 34.401647468], [139.257493476, 34.401618495]]]}}, {"id": "35468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214079974, 34.31736764], [139.214158197, 34.317322775], [139.214119922, 34.317253613], [139.214079974, 34.31736764]]]}}, {"id": "35469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21978511, 34.318236946], [139.219759974, 34.318153162], [139.219714578, 34.318207468], [139.21978511, 34.318236946]]]}}, {"id": "35470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243042503, 34.365813892], [139.243108885, 34.365877225], [139.243111946, 34.365811946], [139.243042503, 34.365813892]]]}}, {"id": "35471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223244916, 34.323084333], [139.223285966, 34.323145387], [139.22332786, 34.323094748], [139.223244916, 34.323084333]]]}}, {"id": "35472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244356667, 34.350208162], [139.244377328, 34.350097081], [139.244324747, 34.350140108], [139.244356667, 34.350208162]]]}}, {"id": "35473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20499406, 34.328636865], [139.204903502, 34.328774135], [139.204955227, 34.328744559], [139.20499406, 34.328636865]]]}}, {"id": "35474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292660026, 34.419694667], [139.292710026, 34.419617532], [139.292679974, 34.419606054], [139.292660026, 34.419694667]]]}}, {"id": "35475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208136031, 34.335338667], [139.208059339, 34.335393081], [139.208146939, 34.335448081], [139.208136031, 34.335338667]]]}}, {"id": "35476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2284138, 34.373445225], [139.228439274, 34.373363468], [139.228377717, 34.373381468], [139.2284138, 34.373445225]]]}}, {"id": "35477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224273865, 34.37333236], [139.224203022, 34.373279721], [139.224245863, 34.373385495], [139.224273865, 34.37333236]]]}}, {"id": "35478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.277179027, 34.323666225], [139.277063307, 34.32358364], [139.277181336, 34.323678946], [139.277179027, 34.323666225]]]}}, {"id": "35479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257822996, 34.334957495], [139.257899533, 34.33490736], [139.257816524, 34.334905802], [139.257822996, 34.334957495]]]}}, {"id": "35480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.26246144, 34.40558064], [139.262477562, 34.405656775], [139.262529001, 34.405611495], [139.26246144, 34.40558064]]]}}, {"id": "35481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202518171, 34.320510135], [139.202494112, 34.320428892], [139.202425162, 34.32047964], [139.202518171, 34.320510135]]]}}, {"id": "35482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205370636, 34.327334414], [139.205411362, 34.327369252], [139.205445136, 34.327297829], [139.205370636, 34.327334414]]]}}, {"id": "35483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206112802, 34.320593414], [139.206086109, 34.320501694], [139.20607083, 34.320584198], [139.206112802, 34.320593414]]]}}, {"id": "35484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255221971, 34.399582802], [139.255218755, 34.399655027], [139.255295305, 34.399627162], [139.255221971, 34.399582802]]]}}, {"id": "35485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227216005, 34.329378054], [139.227134527, 34.329391081], [139.227167886, 34.329436495], [139.227216005, 34.329378054]]]}}, {"id": "35486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287982996, 34.410802054], [139.288032529, 34.410761721], [139.287949364, 34.410754135], [139.287982996, 34.410802054]]]}}, {"id": "35487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229735616, 34.364943748], [139.229675694, 34.364898802], [139.229663943, 34.364974586], [139.229735616, 34.364943748]]]}}, {"id": "35488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228955357, 34.366574586], [139.22893594, 34.366644081], [139.229004838, 34.366620441], [139.228955357, 34.366574586]]]}}, {"id": "35489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.278385746, 34.417203333], [139.278289001, 34.417189802], [139.278299728, 34.417232135], [139.278385746, 34.417203333]]]}}, {"id": "35490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225640895, 34.374991973], [139.225671777, 34.375068468], [139.225695006, 34.375026414], [139.225640895, 34.374991973]]]}}, {"id": "35491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229645422, 34.36504164], [139.229570117, 34.364993667], [139.229563748, 34.365031135], [139.229645422, 34.36504164]]]}}, {"id": "35492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224244254, 34.373759919], [139.224177224, 34.373735973], [139.224197173, 34.37378764], [139.224244254, 34.373759919]]]}}, {"id": "35493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229543087, 34.372032027], [139.229538755, 34.371954108], [139.229478833, 34.372033333], [139.229543087, 34.372032027]]]}}, {"id": "35494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21079703, 34.337255027], [139.21070939, 34.337307694], [139.21083939, 34.337273279], [139.21079703, 34.337255027]]]}}, {"id": "35495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227438859, 34.32841664], [139.22742022, 34.328513919], [139.227480467, 34.328462108], [139.227438859, 34.32841664]]]}}, {"id": "35496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.199510052, 34.325124162], [139.199534916, 34.32521636], [139.199535058, 34.325122865], [139.199510052, 34.325124162]]]}}, {"id": "35497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206159442, 34.333716667], [139.206226109, 34.333675279], [139.206168054, 34.333655829], [139.206159442, 34.333716667]]]}}, {"id": "35498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.286510856, 34.398538973], [139.286422192, 34.398510441], [139.286426278, 34.398549414], [139.286510856, 34.398538973]]]}}, {"id": "35499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242613606, 34.366800279], [139.242578054, 34.366861667], [139.242649728, 34.366838613], [139.242613606, 34.366800279]]]}}, {"id": "35500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258751051, 34.334649387], [139.258826498, 34.33461664], [139.258750804, 34.334609162], [139.258751051, 34.334649387]]]}}, {"id": "35501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20527, 34.32723564], [139.205351362, 34.327265802], [139.205350506, 34.32720736], [139.20527, 34.32723564]]]}}, {"id": "35502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285854501, 34.400121946], [139.285896693, 34.400187027], [139.285895499, 34.400123468], [139.285854501, 34.400121946]]]}}, {"id": "35503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209107004, 34.315865108], [139.209022944, 34.315858], [139.2090962, 34.315912919], [139.209107004, 34.315865108]]]}}, {"id": "35504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.277166472, 34.323808414], [139.277119611, 34.323746559], [139.277103165, 34.323800198], [139.277166472, 34.323808414]]]}}, {"id": "35505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206349053, 34.329034973], [139.206348029, 34.329115225], [139.206399831, 34.329075], [139.206349053, 34.329034973]]]}}, {"id": "35506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202067198, 34.318871946], [139.202093839, 34.318942495], [139.202135305, 34.318918279], [139.202067198, 34.318871946]]]}}, {"id": "35507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205805499, 34.331310054], [139.205814086, 34.331236532], [139.205775811, 34.331297108], [139.205805499, 34.331310054]]]}}, {"id": "35508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.279750272, 34.393537162], [139.279800921, 34.393474721], [139.279746978, 34.393476919], [139.279750272, 34.393537162]]]}}, {"id": "35509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291654721, 34.407555559], [139.29171834, 34.407500559], [139.29167917, 34.407488613], [139.291654721, 34.407555559]]]}}, {"id": "35510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288108716, 34.410687865], [139.288186472, 34.410728135], [139.28813847, 34.410661946], [139.288108716, 34.410687865]]]}}, {"id": "35511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256020389, 34.398650333], [139.255946394, 34.398655306], [139.2559507, 34.398695081], [139.256020389, 34.398650333]]]}}, {"id": "35512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207483281, 34.334081198], [139.20748642, 34.334172892], [139.207515084, 34.334161748], [139.207483281, 34.334081198]]]}}, {"id": "35513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228171946, 34.366602721], [139.228095746, 34.366581865], [139.228090661, 34.366608973], [139.228171946, 34.366602721]]]}}, {"id": "35514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22632594, 34.329487333], [139.226270246, 34.329542306], [139.226309079, 34.329552613], [139.22632594, 34.329487333]]]}}, {"id": "35515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265327082, 34.407310775], [139.265372049, 34.407367694], [139.265394423, 34.407309559], [139.265327082, 34.407310775]]]}}, {"id": "35516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285189442, 34.399883468], [139.285258885, 34.399942306], [139.285234384, 34.399876027], [139.285189442, 34.399883468]]]}}, {"id": "35517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227825577, 34.370192946], [139.227762438, 34.370175135], [139.227773528, 34.370234802], [139.227825577, 34.370192946]]]}}, {"id": "35518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2242162, 34.372930892], [139.224261362, 34.372909667], [139.224143217, 34.37295036], [139.2242162, 34.372930892]]]}}, {"id": "35519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289979416, 34.402930162], [139.290023113, 34.402982559], [139.290051997, 34.40295836], [139.289979416, 34.402930162]]]}}, {"id": "35520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249768975, 34.342626586], [139.249820661, 34.342570748], [139.249759974, 34.342591387], [139.249768975, 34.342626586]]]}}, {"id": "35521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241590363, 34.364237468], [139.241642361, 34.364203721], [139.241586939, 34.364198694], [139.241590363, 34.364237468]]]}}, {"id": "35522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240603943, 34.36584836], [139.24063083, 34.365796027], [139.240575422, 34.365790892], [139.240603943, 34.36584836]]]}}, {"id": "35523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24139594, 34.364782865], [139.241422827, 34.364730532], [139.241367445, 34.364725468], [139.24139594, 34.364782865]]]}}, {"id": "35524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228253087, 34.373387973], [139.228179144, 34.373402775], [139.228250856, 34.373424586], [139.228253087, 34.373387973]]]}}, {"id": "35525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228102607, 34.367067748], [139.22804489, 34.367125694], [139.228074695, 34.367136946], [139.228102607, 34.367067748]]]}}, {"id": "35526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288284838, 34.410723721], [139.288345058, 34.410680162], [139.28828786, 34.410676387], [139.288284838, 34.410723721]]]}}, {"id": "35527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205101803, 34.327552387], [139.20517594, 34.327621559], [139.205113748, 34.327523054], [139.205101803, 34.327552387]]]}}, {"id": "35528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241682244, 34.364545892], [139.241746329, 34.364493198], [139.24168061, 34.364485387], [139.241682244, 34.364545892]]]}}, {"id": "35529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241233645, 34.368691387], [139.241309274, 34.368666495], [139.241243554, 34.368658613], [139.241233645, 34.368691387]]]}}, {"id": "35530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240128249, 34.365930162], [139.240203891, 34.365905198], [139.240138171, 34.365897414], [139.240128249, 34.365930162]]]}}, {"id": "35531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260484617, 34.404544613], [139.260539222, 34.404482306], [139.260477004, 34.404514387], [139.260484617, 34.404544613]]]}}, {"id": "35532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288506835, 34.400925892], [139.288602607, 34.400917748], [139.2885162, 34.400892829], [139.288506835, 34.400925892]]]}}, {"id": "35533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219028716, 34.318878414], [139.218973061, 34.318841081], [139.218945032, 34.318912973], [139.219028716, 34.318878414]]]}}, {"id": "35534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225596783, 34.330839829], [139.225544254, 34.330860946], [139.225577665, 34.330899946], [139.225596783, 34.330839829]]]}}, {"id": "35535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22121939, 34.332109495], [139.221140726, 34.332122721], [139.221192335, 34.332140027], [139.22121939, 34.332109495]]]}}, {"id": "35536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287611803, 34.414726919], [139.2876493, 34.414681559], [139.287584112, 34.414688667], [139.287611803, 34.414726919]]]}}, {"id": "35537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21862808, 34.316854559], [139.218677782, 34.316865441], [139.218645188, 34.316846279], [139.21862808, 34.316854559]]]}}, {"id": "35538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207041505, 34.320525054], [139.207079663, 34.320550495], [139.207132218, 34.320452135], [139.207041505, 34.320525054]]]}}, {"id": "35539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.198628612, 34.324828865], [139.198664578, 34.324884865], [139.198694942, 34.324820829], [139.198628612, 34.324828865]]]}}, {"id": "35540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206985863, 34.331085225], [139.207006304, 34.331143027], [139.207011894, 34.331091748], [139.206985863, 34.331085225]]]}}, {"id": "35541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241409105, 34.364440973], [139.241465694, 34.36448164], [139.241469585, 34.364424414], [139.241409105, 34.364440973]]]}}, {"id": "35542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240225616, 34.365936333], [139.240282192, 34.365976892], [139.240286083, 34.365919748], [139.240225616, 34.365936333]]]}}, {"id": "35543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241562776, 34.364713054], [139.241590558, 34.36476], [139.241643061, 34.364725279], [139.241562776, 34.364713054]]]}}, {"id": "35544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204721608, 34.329307468], [139.204780947, 34.329351225], [139.204783217, 34.329280919], [139.204721608, 34.329307468]]]}}, {"id": "35545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228741051, 34.368606865], [139.228710661, 34.368567495], [139.228699728, 34.368621441], [139.228741051, 34.368606865]]]}}, {"id": "35546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229393943, 34.365817559], [139.229422529, 34.365893054], [139.229435253, 34.365818829], [139.229393943, 34.365817559]]]}}, {"id": "35547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229547056, 34.372449], [139.22947131, 34.372446306], [139.229543839, 34.372503081], [139.229547056, 34.372449]]]}}, {"id": "35548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280345136, 34.394202108], [139.280410752, 34.394180135], [139.280368366, 34.394161559], [139.280345136, 34.394202108]]]}}, {"id": "35549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241606083, 34.364089613], [139.241666615, 34.364094748], [139.241628249, 34.364029387], [139.241606083, 34.364089613]]]}}, {"id": "35550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219397588, 34.317302973], [139.219283748, 34.317296721], [139.219391336, 34.317341441], [139.219397588, 34.317302973]]]}}, {"id": "35551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229547808, 34.372194973], [139.229467276, 34.372188252], [139.229475863, 34.372204162], [139.229547808, 34.372194973]]]}}, {"id": "35552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241891582, 34.365682748], [139.241951997, 34.365688], [139.241913645, 34.365622559], [139.241891582, 34.365682748]]]}}, {"id": "35553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207513995, 34.330371441], [139.207568275, 34.330391919], [139.207556031, 34.330345162], [139.207513995, 34.330371441]]]}}, {"id": "35554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.211191997, 34.337254441], [139.211232192, 34.337285748], [139.211249883, 34.337215414], [139.211191997, 34.337254441]]]}}, {"id": "35555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226338392, 34.367443162], [139.226303191, 34.367377802], [139.226284773, 34.367429], [139.226338392, 34.367443162]]]}}, {"id": "35556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240880467, 34.366272], [139.240807756, 34.366254054], [139.240786057, 34.366293441], [139.240880467, 34.366272]]]}}, {"id": "35557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241641699, 34.367884027], [139.241605577, 34.367949495], [139.241639663, 34.367959225], [139.241641699, 34.367884027]]]}}, {"id": "35558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228830636, 34.369785919], [139.228764254, 34.369765387], [139.228781634, 34.36981036], [139.228830636, 34.369785919]]]}}, {"id": "35559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206123256, 34.331094054], [139.206047951, 34.331149468], [139.206141505, 34.331121829], [139.206123256, 34.331094054]]]}}, {"id": "35560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.203740026, 34.327351198], [139.203780558, 34.327397387], [139.203818275, 34.327308586], [139.203740026, 34.327351198]]]}}, {"id": "35561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209708949, 34.338014279], [139.209758807, 34.337959919], [139.209688054, 34.337972802], [139.209708949, 34.338014279]]]}}, {"id": "35562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225673217, 34.320780198], [139.225745006, 34.320801027], [139.225772802, 34.320758694], [139.225673217, 34.320780198]]]}}, {"id": "35563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.239948975, 34.365589973], [139.240015863, 34.365600748], [139.240001362, 34.365532775], [139.239948975, 34.365589973]]]}}, {"id": "35564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217680752, 34.31875236], [139.21775511, 34.318823252], [139.217693411, 34.318742973], [139.217680752, 34.31875236]]]}}, {"id": "35565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228029105, 34.367233162], [139.228097639, 34.367229829], [139.228007497, 34.367169054], [139.228029105, 34.367233162]]]}}, {"id": "35566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.290018106, 34.403081973], [139.289937613, 34.403033748], [139.289926329, 34.40306264], [139.290018106, 34.403081973]]]}}, {"id": "35567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205952802, 34.321243892], [139.20595428, 34.321177721], [139.205900272, 34.321189252], [139.205952802, 34.321243892]]]}}, {"id": "35568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258029416, 34.402263919], [139.257960026, 34.402294333], [139.258006005, 34.402316252], [139.258029416, 34.402263919]]]}}, {"id": "35569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284055447, 34.42890464], [139.284091582, 34.428951225], [139.284100895, 34.428892748], [139.284055447, 34.42890464]]]}}, {"id": "35570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209059494, 34.317493252], [139.208990636, 34.317490279], [139.209022335, 34.317524252], [139.209059494, 34.317493252]]]}}, {"id": "35571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257644332, 34.334720279], [139.257680661, 34.334666802], [139.25763655, 34.334681919], [139.257644332, 34.334720279]]]}}, {"id": "35572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.268388366, 34.415359441], [139.268465422, 34.415353829], [139.268474332, 34.415336468], [139.268388366, 34.415359441]]]}}, {"id": "35573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224744838, 34.320280559], [139.224748495, 34.320209802], [139.224718197, 34.320207586], [139.224744838, 34.320280559]]]}}, {"id": "35574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28987428, 34.403209802], [139.289956861, 34.403186559], [139.289869754, 34.403185], [139.28987428, 34.403209802]]]}}, {"id": "35575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284124137, 34.429112225], [139.2840562, 34.429152559], [139.284099468, 34.429159414], [139.284124137, 34.429112225]]]}}, {"id": "35576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.230324501, 34.370182919], [139.230284864, 34.370238892], [139.230329611, 34.37022964], [139.230324501, 34.370182919]]]}}, {"id": "35577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288098223, 34.400789919], [139.288039105, 34.400764135], [139.288068418, 34.400822414], [139.288098223, 34.400789919]]]}}, {"id": "35578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.201682996, 34.315257162], [139.201578275, 34.315254721], [139.201692944, 34.315264054], [139.201682996, 34.315257162]]]}}, {"id": "35579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207096524, 34.330832441], [139.207133502, 34.330797198], [139.207072581, 34.33076336], [139.207096524, 34.330832441]]]}}, {"id": "35580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.250478054, 34.341763667], [139.250440169, 34.341711919], [139.250424358, 34.341765559], [139.250478054, 34.341763667]]]}}, {"id": "35581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226826835, 34.368174586], [139.226746783, 34.368164441], [139.226722387, 34.368199306], [139.226826835, 34.368174586]]]}}, {"id": "35582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228610363, 34.366685829], [139.228586524, 34.366748279], [139.2286362, 34.366690387], [139.228610363, 34.366685829]]]}}, {"id": "35583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208185966, 34.330817919], [139.208275188, 34.330790135], [139.208278833, 34.330766441], [139.208185966, 34.330817919]]]}}, {"id": "35584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205944449, 34.333663613], [139.205999728, 34.333609441], [139.205964721, 34.333602775], [139.205944449, 34.333663613]]]}}, {"id": "35585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243202412, 34.361495973], [139.24314214, 34.36150136], [139.243181997, 34.361540414], [139.243202412, 34.361495973]]]}}, {"id": "35586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202581608, 34.319420387], [139.202655383, 34.319420054], [139.202632555, 34.31938136], [139.202581608, 34.319420387]]]}}, {"id": "35587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284940778, 34.399435919], [139.284980026, 34.399487468], [139.284990246, 34.399438108], [139.284940778, 34.399435919]]]}}, {"id": "35588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226330558, 34.325123108], [139.226380661, 34.325179532], [139.226392555, 34.325144333], [139.226330558, 34.325123108]]]}}, {"id": "35589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226158612, 34.367584892], [139.226085279, 34.367595081], [139.226092049, 34.367605225], [139.226158612, 34.367584892]]]}}, {"id": "35590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229649468, 34.365645532], [139.229635668, 34.365703775], [139.229676589, 34.365669198], [139.229649468, 34.365645532]]]}}, {"id": "35591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228329468, 34.373968775], [139.22830869, 34.373907468], [139.228279663, 34.373954198], [139.228329468, 34.373968775]]]}}, {"id": "35592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244246031, 34.349334829], [139.244207951, 34.349390198], [139.244262049, 34.349362054], [139.244246031, 34.349334829]]]}}, {"id": "35593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287486861, 34.411105748], [139.287463891, 34.411058414], [139.287458612, 34.411098865], [139.287486861, 34.411105748]]]}}, {"id": "35594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206086394, 34.330796387], [139.20604, 34.330840559], [139.20608834, 34.330832775], [139.206086394, 34.330796387]]]}}, {"id": "35595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244420078, 34.349379946], [139.244346719, 34.349378775], [139.24437083, 34.349412865], [139.244420078, 34.349379946]]]}}, {"id": "35596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266501699, 34.407928919], [139.266499611, 34.407867252], [139.26646428, 34.407897], [139.266501699, 34.407928919]]]}}, {"id": "35597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244356887, 34.350520198], [139.244420999, 34.350474414], [139.244396641, 34.350462054], [139.244356887, 34.350520198]]]}}, {"id": "35598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2081193, 34.331484162], [139.208181284, 34.331407414], [139.20809847, 34.331464694], [139.2081193, 34.331484162]]]}}, {"id": "35599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285909144, 34.400181946], [139.285983671, 34.400163721], [139.285923256, 34.400151198], [139.285909144, 34.400181946]]]}}, {"id": "35600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284044864, 34.398177748], [139.284108106, 34.398152162], [139.28407192, 34.398130919], [139.284044864, 34.398177748]]]}}, {"id": "35601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224246109, 34.37303436], [139.224231193, 34.372977027], [139.224231751, 34.373035919], [139.224246109, 34.37303436]]]}}, {"id": "35602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205381336, 34.327517108], [139.20543834, 34.327465586], [139.205359222, 34.327481865], [139.205381336, 34.327517108]]]}}, {"id": "35603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227564916, 34.366819586], [139.227486252, 34.366795414], [139.227490246, 34.366813441], [139.227564916, 34.366819586]]]}}, {"id": "35604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255664332, 34.40094136], [139.255702309, 34.400985], [139.255699416, 34.400931973], [139.255664332, 34.40094136]]]}}, {"id": "35605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229516498, 34.365690748], [139.229513359, 34.365764054], [139.229539144, 34.365747946], [139.229516498, 34.365690748]]]}}, {"id": "35606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224126135, 34.373055225], [139.22407655, 34.373010532], [139.224062023, 34.373036694], [139.224126135, 34.373055225]]]}}, {"id": "35607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229290169, 34.365898802], [139.229311855, 34.365952829], [139.229340921, 34.365890495], [139.229290169, 34.365898802]]]}}, {"id": "35608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222120506, 34.374046027], [139.222069948, 34.373973559], [139.22205358, 34.373993387], [139.222120506, 34.374046027]]]}}, {"id": "35609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284964086, 34.39794936], [139.284915811, 34.397979721], [139.284958807, 34.397989027], [139.284964086, 34.39794936]]]}}, {"id": "35610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28324345, 34.397703721], [139.283177613, 34.397640865], [139.283158833, 34.397650333], [139.28324345, 34.397703721]]]}}, {"id": "35611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22647489, 34.371716559], [139.226469001, 34.371781694], [139.22650022, 34.371777333], [139.22647489, 34.371716559]]]}}, {"id": "35612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224269494, 34.373558198], [139.224199416, 34.373568387], [139.224230078, 34.373597027], [139.224269494, 34.373558198]]]}}, {"id": "35613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225676278, 34.320704135], [139.225736057, 34.320671252], [139.225669027, 34.320684532], [139.225676278, 34.320704135]]]}}, {"id": "35614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204995422, 34.326852225], [139.205062387, 34.326891694], [139.205012283, 34.326834108], [139.204995422, 34.326852225]]]}}, {"id": "35615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.279924527, 34.426977279], [139.279874747, 34.426938559], [139.279865577, 34.426957252], [139.279924527, 34.426977279]]]}}, {"id": "35616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226452892, 34.367954721], [139.22649489, 34.367871441], [139.226430441, 34.367959225], [139.226452892, 34.367954721]]]}}, {"id": "35617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280463774, 34.426821306], [139.280525032, 34.426808252], [139.280475006, 34.426785748], [139.280463774, 34.426821306]]]}}, {"id": "35618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280125136, 34.427062748], [139.280067782, 34.427049775], [139.280068392, 34.427072225], [139.280125136, 34.427062748]]]}}, {"id": "35619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.254964721, 34.397611081], [139.254917588, 34.397647198], [139.254980363, 34.397646586], [139.254964721, 34.397611081]]]}}, {"id": "35620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213349974, 34.336815495], [139.213301388, 34.336858721], [139.213363606, 34.336836865], [139.213349974, 34.336815495]]]}}, {"id": "35621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224224189, 34.373149468], [139.224170584, 34.373150829], [139.224198197, 34.373166829], [139.224224189, 34.373149468]]]}}, {"id": "35622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226393022, 34.368097135], [139.226366667, 34.368027865], [139.226352412, 34.368089829], [139.226393022, 34.368097135]]]}}, {"id": "35623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205103554, 34.328831613], [139.205094747, 34.328906667], [139.205116589, 34.328835108], [139.205103554, 34.328831613]]]}}, {"id": "35624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206693671, 34.335026027], [139.206713165, 34.335077252], [139.206746835, 34.335036946], [139.206693671, 34.335026027]]]}}, {"id": "35625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.289029948, 34.401117892], [139.289014838, 34.401067892], [139.288981855, 34.401102279], [139.289029948, 34.401117892]]]}}, {"id": "35626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.29073847, 34.417150387], [139.29072489, 34.417083252], [139.290701751, 34.417092973], [139.29073847, 34.417150387]]]}}, {"id": "35627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.239974864, 34.364896613], [139.239917173, 34.364876495], [139.239950661, 34.364932387], [139.239974864, 34.364896613]]]}}, {"id": "35628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.210620973, 34.337092495], [139.210561725, 34.337081919], [139.21060786, 34.337116495], [139.210620973, 34.337092495]]]}}, {"id": "35629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229691777, 34.365461279], [139.229750947, 34.365427414], [139.22967703, 34.365426306], [139.229691777, 34.365461279]]]}}, {"id": "35630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208012892, 34.330770054], [139.208092996, 34.330767027], [139.208095577, 34.330756775], [139.208012892, 34.330770054]]]}}, {"id": "35631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244981141, 34.353802495], [139.244968664, 34.353737333], [139.244951803, 34.353786027], [139.244981141, 34.353802495]]]}}, {"id": "35632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249887367, 34.342639135], [139.249916329, 34.342582946], [139.249891997, 34.342581279], [139.249887367, 34.342639135]]]}}, {"id": "35633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288293774, 34.410352135], [139.288254163, 34.410300468], [139.288251829, 34.410344027], [139.288293774, 34.410352135]]]}}, {"id": "35634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205173307, 34.320945721], [139.205231997, 34.320987027], [139.205245357, 34.320973667], [139.205173307, 34.320945721]]]}}, {"id": "35635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243150389, 34.361922054], [139.243132283, 34.361962721], [139.243180726, 34.361952414], [139.243150389, 34.361922054]]]}}, {"id": "35636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215194695, 34.316519586], [139.21518214, 34.316589667], [139.215219857, 34.316540162], [139.215194695, 34.316519586]]]}}, {"id": "35637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287115525, 34.411146919], [139.287079663, 34.411224559], [139.287133087, 34.411143748], [139.287115525, 34.411146919]]]}}, {"id": "35638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287264501, 34.414620135], [139.287280506, 34.414571441], [139.287245499, 34.414597721], [139.287264501, 34.414620135]]]}}, {"id": "35639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.290527665, 34.417166667], [139.290495746, 34.417119559], [139.2904738, 34.417151108], [139.290527665, 34.417166667]]]}}, {"id": "35640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229587782, 34.373533775], [139.229586446, 34.373595892], [139.2296193, 34.373562613], [139.229587782, 34.373533775]]]}}, {"id": "35641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221106887, 34.320516667], [139.221122581, 34.320467135], [139.22108834, 34.320484198], [139.221106887, 34.320516667]]]}}, {"id": "35642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229800895, 34.365632225], [139.229757198, 34.36567636], [139.229810752, 34.365655162], [139.229800895, 34.365632225]]]}}, {"id": "35643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287729728, 34.414845], [139.287773502, 34.414822027], [139.287724254, 34.414817306], [139.287729728, 34.414845]]]}}, {"id": "35644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241837328, 34.364430414], [139.2418007, 34.364383081], [139.241778859, 34.364397414], [139.241837328, 34.364430414]]]}}, {"id": "35645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243888859, 34.349984306], [139.243932503, 34.350023919], [139.243950856, 34.349982], [139.243888859, 34.349984306]]]}}, {"id": "35646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220989274, 34.320298892], [139.221047198, 34.320313775], [139.2210293, 34.320262027], [139.220989274, 34.320298892]]]}}, {"id": "35647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220640143, 34.320373414], [139.220655577, 34.320312198], [139.220629144, 34.320319441], [139.220640143, 34.320373414]]]}}, {"id": "35648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256240726, 34.398416613], [139.256215668, 34.398376198], [139.256186783, 34.398401387], [139.256240726, 34.398416613]]]}}, {"id": "35649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.280775058, 34.426340919], [139.280807808, 34.426291865], [139.280791051, 34.426277081], [139.280775058, 34.426340919]]]}}, {"id": "35650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225113385, 34.373029748], [139.225063411, 34.373068613], [139.225122944, 34.373046468], [139.225113385, 34.373029748]]]}}, {"id": "35651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287907302, 34.415191532], [139.287911414, 34.415144225], [139.287873917, 34.415187495], [139.287907302, 34.415191532]]]}}, {"id": "35652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214976446, 34.31669364], [139.215016278, 34.316639586], [139.214960636, 34.316687162], [139.214976446, 34.31669364]]]}}, {"id": "35653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241235006, 34.364676108], [139.241282503, 34.364708613], [139.241272503, 34.364671946], [139.241235006, 34.364676108]]]}}, {"id": "35654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2068038, 34.335153441], [139.20680939, 34.335102162], [139.206775772, 34.335122559], [139.2068038, 34.335153441]]]}}, {"id": "35655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244929663, 34.353036108], [139.24498847, 34.353033775], [139.244988781, 34.35300664], [139.244929663, 34.353036108]]]}}, {"id": "35656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228976226, 34.369908054], [139.228938444, 34.369883081], [139.228903217, 34.369881829], [139.228976226, 34.369908054]]]}}, {"id": "35657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20511511, 34.326918667], [139.205092724, 34.326961], [139.205157951, 34.326958559], [139.20511511, 34.326918667]]]}}, {"id": "35658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.203793645, 34.327405468], [139.203853917, 34.327380162], [139.203809559, 34.327367775], [139.203793645, 34.327405468]]]}}, {"id": "35659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224024747, 34.373454279], [139.223967302, 34.373412775], [139.224005551, 34.373461306], [139.224024747, 34.373454279]]]}}, {"id": "35660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244425227, 34.350368613], [139.244366498, 34.350373721], [139.244395551, 34.350398306], [139.244425227, 34.350368613]]]}}, {"id": "35661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215296083, 34.316206441], [139.21534345, 34.316149162], [139.215336783, 34.316140919], [139.215296083, 34.316206441]]]}}, {"id": "35662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2255462, 34.323793387], [139.225561284, 34.323739802], [139.225526083, 34.323767694], [139.2255462, 34.323793387]]]}}, {"id": "35663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209409883, 34.316810667], [139.20938655, 34.316760495], [139.20938406, 34.316821333], [139.209409883, 34.316810667]]]}}, {"id": "35664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285084306, 34.398009946], [139.285021608, 34.397997414], [139.285043502, 34.398029054], [139.285084306, 34.398009946]]]}}, {"id": "35665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224248833, 34.32220264], [139.224286939, 34.322279559], [139.224261219, 34.322200892], [139.224248833, 34.32220264]]]}}, {"id": "35666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22654083, 34.368406108], [139.226477082, 34.36838136], [139.226454643, 34.368404973], [139.22654083, 34.368406108]]]}}, {"id": "35667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214199559, 34.335587198], [139.2142007, 34.335548081], [139.214167302, 34.335583252], [139.214199559, 34.335587198]]]}}, {"id": "35668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244955863, 34.352690468], [139.244903606, 34.352687532], [139.244932776, 34.352714802], [139.244955863, 34.352690468]]]}}, {"id": "35669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21781939, 34.319202748], [139.217875084, 34.319221694], [139.217870973, 34.319203721], [139.21781939, 34.319202748]]]}}, {"id": "35670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204187912, 34.321884225], [139.204190558, 34.321823027], [139.20415834, 34.321886865], [139.204187912, 34.321884225]]]}}, {"id": "35671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206275253, 34.321092441], [139.206220052, 34.321121198], [139.206279754, 34.321115027], [139.206275253, 34.321092441]]]}}, {"id": "35672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285109611, 34.399897919], [139.285136109, 34.399854387], [139.285096472, 34.399880441], [139.285109611, 34.399897919]]]}}, {"id": "35673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222530973, 34.374002], [139.222484968, 34.373954892], [139.222483165, 34.373978865], [139.222530973, 34.374002]]]}}, {"id": "35674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.28465428, 34.398637468], [139.28459856, 34.398626946], [139.28463406, 34.398653441], [139.28465428, 34.398637468]]]}}, {"id": "35675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20488594, 34.32779], [139.204936135, 34.327804613], [139.204936252, 34.327776829], [139.20488594, 34.32779]]]}}, {"id": "35676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227334617, 34.369707108], [139.227266861, 34.369711], [139.227270895, 34.369722306], [139.227334617, 34.369707108]]]}}, {"id": "35677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2918338, 34.420026387], [139.291886083, 34.42003464], [139.291876057, 34.42002], [139.2918338, 34.420026387]]]}}, {"id": "35678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241995188, 34.365590748], [139.241947393, 34.365616748], [139.241980052, 34.365623865], [139.241995188, 34.365590748]]]}}, {"id": "35679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229291582, 34.366324252], [139.229241089, 34.366363667], [139.229279442, 34.366364135], [139.229291582, 34.366324252]]]}}, {"id": "35680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225469079, 34.323911198], [139.225421634, 34.323947919], [139.225460195, 34.323952802], [139.225469079, 34.323911198]]]}}, {"id": "35681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229240078, 34.367381414], [139.229262503, 34.367424162], [139.229278301, 34.367370694], [139.229240078, 34.367381414]]]}}, {"id": "35682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288852827, 34.416166441], [139.288906744, 34.416173162], [139.288881414, 34.416140135], [139.288852827, 34.416166441]]]}}, {"id": "35683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228718223, 34.370056279], [139.228654527, 34.370054865], [139.228674812, 34.370078586], [139.228718223, 34.370056279]]]}}, {"id": "35684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206716861, 34.319891946], [139.206682166, 34.319910441], [139.206729754, 34.319941054], [139.206716861, 34.319891946]]]}}, {"id": "35685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229440272, 34.371328586], [139.229390195, 34.371369721], [139.229406446, 34.371377721], [139.229440272, 34.371328586]]]}}, {"id": "35686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.285857198, 34.400043613], [139.285909196, 34.40002464], [139.285860467, 34.400007027], [139.285857198, 34.400043613]]]}}, {"id": "35687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22232144, 34.320209333], [139.222346278, 34.320218586], [139.222363359, 34.320167721], [139.22232144, 34.320209333]]]}}, {"id": "35688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240730195, 34.366029108], [139.240689754, 34.365997532], [139.240686744, 34.366036829], [139.240730195, 34.366029108]]]}}, {"id": "35689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229515577, 34.371834802], [139.229460752, 34.371871946], [139.229464034, 34.371899198], [139.229515577, 34.371834802]]]}}, {"id": "35690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22944, 34.365913613], [139.229492529, 34.365882135], [139.229465473, 34.365863973], [139.22944, 34.365913613]]]}}, {"id": "35691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224507173, 34.373139694], [139.224450636, 34.373141027], [139.224469559, 34.373170532], [139.224507173, 34.373139694]]]}}, {"id": "35692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288716524, 34.401128135], [139.288752892, 34.401091135], [139.288703502, 34.401109054], [139.288716524, 34.401128135]]]}}, {"id": "35693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224162581, 34.373188108], [139.224191089, 34.373230441], [139.224201997, 34.373182802], [139.224162581, 34.373188108]]]}}, {"id": "35694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22391428, 34.373349865], [139.223883502, 34.373396694], [139.22390939, 34.373395108], [139.22391428, 34.373349865]]]}}, {"id": "35695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228748664, 34.369467252], [139.228745616, 34.369514468], [139.228778275, 34.369493279], [139.228748664, 34.369467252]]]}}, {"id": "35696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226628612, 34.367135468], [139.226655058, 34.367178225], [139.226663165, 34.367152946], [139.226628612, 34.367135468]]]}}, {"id": "35697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.200219416, 34.329062946], [139.20020192, 34.329122162], [139.200247224, 34.329079225], [139.200219416, 34.329062946]]]}}, {"id": "35698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241004423, 34.366410802], [139.240963307, 34.366366333], [139.240954695, 34.366400802], [139.241004423, 34.366410802]]]}}, {"id": "35699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255125668, 34.399621135], [139.255102866, 34.399583694], [139.255092503, 34.399603946], [139.255125668, 34.399621135]]]}}, {"id": "35700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.291147198, 34.41987964], [139.291122503, 34.419829865], [139.291107756, 34.419855667], [139.291147198, 34.41987964]]]}}, {"id": "35701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.205877108, 34.331282829], [139.205929053, 34.331253441], [139.205872477, 34.331260919], [139.205877108, 34.331282829]]]}}, {"id": "35702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202332361, 34.318968775], [139.202343943, 34.319032135], [139.202359144, 34.319021027], [139.202332361, 34.318968775]]]}}, {"id": "35703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22944869, 34.37121864], [139.229403333, 34.371266919], [139.229412802, 34.371280468], [139.22944869, 34.37121864]]]}}, {"id": "35704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222503645, 34.374126829], [139.222475668, 34.374174468], [139.22252275, 34.374145135], [139.222503645, 34.374126829]]]}}, {"id": "35705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244318807, 34.349607721], [139.244275577, 34.349650333], [139.244296083, 34.349670892], [139.244318807, 34.349607721]]]}}, {"id": "35706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213479948, 34.336433279], [139.213521336, 34.336436441], [139.213520078, 34.336426532], [139.213479948, 34.336433279]]]}}, {"id": "35707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223965331, 34.373429468], [139.223912503, 34.373459586], [139.223923022, 34.373479468], [139.223965331, 34.373429468]]]}}, {"id": "35708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255717834, 34.398316586], [139.255727613, 34.398350721], [139.255768781, 34.398323054], [139.255717834, 34.398316586]]]}}, {"id": "35709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.292177445, 34.419744559], [139.292139754, 34.419717694], [139.292133022, 34.419764], [139.292177445, 34.419744559]]]}}, {"id": "35710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206267497, 34.329099667], [139.206304384, 34.329136532], [139.206324501, 34.329108495], [139.206267497, 34.329099667]]]}}, {"id": "35711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214927562, 34.316646694], [139.214985279, 34.316630865], [139.214968275, 34.316607613], [139.214927562, 34.316646694]]]}}, {"id": "35712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244340752, 34.349826081], [139.24430786, 34.349771829], [139.244308145, 34.349841081], [139.244340752, 34.349826081]]]}}, {"id": "35713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.208855772, 34.317668829], [139.208830973, 34.317702865], [139.208863671, 34.317690667], [139.208855772, 34.317668829]]]}}, {"id": "35714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244930363, 34.352965613], [139.244950389, 34.352916919], [139.24492428, 34.352916802], [139.244930363, 34.352965613]]]}}, {"id": "35715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229312244, 34.372731027], [139.229318638, 34.372778748], [139.229343722, 34.372754279], [139.229312244, 34.372731027]]]}}, {"id": "35716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.284236278, 34.428885892], [139.28427153, 34.428851252], [139.284232581, 34.428852694], [139.284236278, 34.428885892]]]}}, {"id": "35717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.283350169, 34.397514081], [139.283369274, 34.397470892], [139.283344112, 34.397476162], [139.283350169, 34.397514081]]]}}, {"id": "35718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22925489, 34.367042892], [139.229289754, 34.36708], [139.229291388, 34.367048108], [139.22925489, 34.367042892]]]}}, {"id": "35719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244330584, 34.350614279], [139.244386109, 34.350614532], [139.244376446, 34.350598162], [139.244330584, 34.350614279]]]}}, {"id": "35720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204704747, 34.328858865], [139.204740661, 34.328880865], [139.204744747, 34.328872946], [139.204704747, 34.328858865]]]}}, {"id": "35721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266675279, 34.407947586], [139.266637717, 34.40791836], [139.266636446, 34.407949108], [139.266675279, 34.407947586]]]}}, {"id": "35722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22863428, 34.373265802], [139.228621336, 34.37331264], [139.228647276, 34.373302387], [139.22863428, 34.373265802]]]}}, {"id": "35723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228379974, 34.367095892], [139.228341946, 34.367134748], [139.228365694, 34.367144865], [139.228379974, 34.367095892]]]}}, {"id": "35724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216431803, 34.316618054], [139.21641786, 34.316576775], [139.216393333, 34.316617946], [139.216431803, 34.316618054]]]}}, {"id": "35725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.209253139, 34.316731054], [139.209232361, 34.316760973], [139.209259079, 34.316791586], [139.209253139, 34.316731054]]]}}, {"id": "35726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20510131, 34.327895495], [139.205151699, 34.327883495], [139.205137756, 34.327874054], [139.20510131, 34.327895495]]]}}, {"id": "35727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218572581, 34.31924936], [139.21853978, 34.319202586], [139.21852642, 34.319217468], [139.218572581, 34.31924936]]]}}, {"id": "35728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226371141, 34.329688865], [139.226370026, 34.329720414], [139.226413307, 34.329701333], [139.226371141, 34.329688865]]]}}, {"id": "35729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218644747, 34.332839468], [139.21863511, 34.332878108], [139.218670363, 34.332874225], [139.218644747, 34.332839468]]]}}, {"id": "35730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21117153, 34.337331414], [139.211226589, 34.337338559], [139.211225863, 34.337332667], [139.21117153, 34.337331414]]]}}, {"id": "35731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216394812, 34.317441694], [139.216430117, 34.317458279], [139.216430052, 34.317434027], [139.216394812, 34.317441694]]]}}, {"id": "35732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223299053, 34.321907775], [139.223343891, 34.321930468], [139.223351699, 34.321918414], [139.223299053, 34.321907775]]]}}, {"id": "35733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219365551, 34.318820135], [139.219420246, 34.318813919], [139.219412088, 34.318803252], [139.219365551, 34.318820135]]]}}, {"id": "35734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225741751, 34.320937135], [139.225735811, 34.320888333], [139.225715837, 34.320915559], [139.225741751, 34.320937135]]]}}, {"id": "35735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240609805, 34.365956495], [139.2405993, 34.365918027], [139.240584968, 34.365949162], [139.240609805, 34.365956495]]]}}, {"id": "35736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204949559, 34.326736135], [139.204901608, 34.326750946], [139.204958638, 34.326757108], [139.204949559, 34.326736135]]]}}, {"id": "35737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202262309, 34.328442306], [139.202299663, 34.32841636], [139.202252244, 34.328423054], [139.202262309, 34.328442306]]]}}, {"id": "35738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244403139, 34.350295279], [139.244376693, 34.350330414], [139.244414358, 34.350322468], [139.244403139, 34.350295279]]]}}, {"id": "35739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218816005, 34.318321892], [139.218849079, 34.318286279], [139.218800195, 34.318315306], [139.218816005, 34.318321892]]]}}, {"id": "35740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245053774, 34.353382532], [139.245008029, 34.353379613], [139.245037173, 34.353409586], [139.245053774, 34.353382532]]]}}, {"id": "35741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217603839, 34.318841775], [139.217554643, 34.318866225], [139.217604163, 34.318855829], [139.217603839, 34.318841775]]]}}, {"id": "35742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227884475, 34.369988225], [139.22784131, 34.369988829], [139.22785939, 34.370015973], [139.227884475, 34.369988225]]]}}, {"id": "35743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224644721, 34.373333135], [139.224667717, 34.373357865], [139.224664838, 34.373333946], [139.224644721, 34.373333135]]]}}, {"id": "35744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215203645, 34.316916225], [139.215191388, 34.316884135], [139.215196446, 34.316918694], [139.215203645, 34.316916225]]]}}, {"id": "35745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220965422, 34.320368721], [139.220989105, 34.320322333], [139.220968716, 34.320316919], [139.220965422, 34.320368721]]]}}, {"id": "35746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240660467, 34.366295802], [139.240637912, 34.366271532], [139.240622866, 34.366294081], [139.240660467, 34.366295802]]]}}, {"id": "35747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.207940532, 34.331529414], [139.207943333, 34.331486775], [139.207919144, 34.331499108], [139.207940532, 34.331529414]]]}}, {"id": "35748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225245914, 34.372956108], [139.225246667, 34.373002198], [139.225283217, 34.372967306], [139.225245914, 34.372956108]]]}}, {"id": "35749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266227834, 34.407713081], [139.2662693, 34.407691919], [139.266244864, 34.407687721], [139.266227834, 34.407713081]]]}}, {"id": "35750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244421219, 34.349264], [139.244389663, 34.349315333], [139.244435837, 34.349272198], [139.244421219, 34.349264]]]}}, {"id": "35751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244838495, 34.353340667], [139.244835642, 34.353297279], [139.244815694, 34.353337865], [139.244838495, 34.353340667]]]}}, {"id": "35752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222223696, 34.37415264], [139.222193696, 34.374195495], [139.222215746, 34.374197973], [139.222223696, 34.37415264]]]}}, {"id": "35753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226488885, 34.367815162], [139.226463696, 34.367855694], [139.22649834, 34.367848387], [139.226488885, 34.367815162]]]}}, {"id": "35754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226501751, 34.330034441], [139.226527977, 34.330048559], [139.226539027, 34.330020829], [139.226501751, 34.330034441]]]}}, {"id": "35755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221199222, 34.322123252], [139.221207004, 34.322083613], [139.221178054, 34.322090586], [139.221199222, 34.322123252]]]}}, {"id": "35756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227815253, 34.370012586], [139.227789585, 34.369983081], [139.227783696, 34.370018748], [139.227815253, 34.370012586]]]}}, {"id": "35757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.287732218, 34.410876054], [139.287777977, 34.410867775], [139.287724578, 34.410846973], [139.287732218, 34.410876054]]]}}, {"id": "35758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.206261505, 34.329324829], [139.206310558, 34.329330586], [139.206292218, 34.329297027], [139.206261505, 34.329324829]]]}}, {"id": "35759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226648911, 34.368542613], [139.226684163, 34.368521225], [139.226658392, 34.368510027], [139.226648911, 34.368542613]]]}}, {"id": "35760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21059786, 34.337294613], [139.210556641, 34.337269775], [139.210554449, 34.337287532], [139.21059786, 34.337294613]]]}}, {"id": "35761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20679061, 34.335156], [139.206798975, 34.335189667], [139.206827562, 34.335203775], [139.20679061, 34.335156]]]}}, {"id": "35762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244971115, 34.353138], [139.244971505, 34.353097333], [139.244948612, 34.353108054], [139.244971115, 34.353138]]]}}, {"id": "35763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223455642, 34.323049495], [139.223454747, 34.323007387], [139.22343978, 34.323034892], [139.223455642, 34.323049495]]]}}, {"id": "35764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218595383, 34.317584306], [139.218628859, 34.317595559], [139.218624812, 34.317585252], [139.218595383, 34.317584306]]]}}, {"id": "35765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257444617, 34.40143264], [139.257408054, 34.401417135], [139.257420921, 34.401445135], [139.257444617, 34.40143264]]]}}, {"id": "35766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224717134, 34.373335748], [139.224707445, 34.373367532], [139.224737302, 34.373343694], [139.224717134, 34.373335748]]]}}, {"id": "35767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227875136, 34.370168586], [139.227857173, 34.370140721], [139.227846329, 34.370181252], [139.227875136, 34.370168586]]]}}, {"id": "35768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215504968, 34.316288198], [139.215545227, 34.316299559], [139.215519001, 34.316271946], [139.215504968, 34.316288198]]]}}, {"id": "35769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.288106615, 34.400804468], [139.288150778, 34.400787441], [139.288110246, 34.400779054], [139.288106615, 34.400804468]]]}}, {"id": "35770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22733061, 34.369642892], [139.227285914, 34.369660973], [139.227313722, 34.369663721], [139.22733061, 34.369642892]]]}}, {"id": "35771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228739105, 34.37321864], [139.22869406, 34.37322564], [139.228734163, 34.373240892], [139.228739105, 34.37321864]]]}}, {"id": "35772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226026161, 34.367726586], [139.225986835, 34.367721441], [139.225990921, 34.367729387], [139.226026161, 34.367726586]]]}}, {"id": "35773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245059364, 34.353482919], [139.245053256, 34.353439495], [139.245033411, 34.353463748], [139.245059364, 34.353482919]]]}}, {"id": "35774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244844527, 34.352725108], [139.244805422, 34.352708613], [139.244821505, 34.352738532], [139.244844527, 34.352725108]]]}}, {"id": "35775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227926615, 34.370781532], [139.227910999, 34.370819586], [139.227938859, 34.370818198], [139.227926615, 34.370781532]]]}}, {"id": "35776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204530467, 34.326771694], [139.204535279, 34.326813162], [139.204546887, 34.326785559], [139.204530467, 34.326771694]]]}}, {"id": "35777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228504643, 34.366221198], [139.228539442, 34.366248865], [139.228566278, 34.366237468], [139.228504643, 34.366221198]]]}}, {"id": "35778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217668495, 34.318884198], [139.21766061, 34.318846919], [139.217648949, 34.318881387], [139.217668495, 34.318884198]]]}}, {"id": "35779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226758859, 34.367089946], [139.226758171, 34.36712536], [139.226785357, 34.367107387], [139.226758859, 34.367089946]]]}}, {"id": "35780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245118418, 34.353792414], [139.245154669, 34.353768252], [139.245115357, 34.353776081], [139.245118418, 34.353792414]]]}}, {"id": "35781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226780467, 34.368618081], [139.226825136, 34.368604613], [139.226821141, 34.368587721], [139.226780467, 34.368618081]]]}}, {"id": "35782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216984163, 34.316785892], [139.216944695, 34.316777946], [139.216979274, 34.316801829], [139.216984163, 34.316785892]]]}}, {"id": "35783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.204607302, 34.329058054], [139.204632023, 34.329082252], [139.204620752, 34.329048108], [139.204607302, 34.329058054]]]}}, {"id": "35784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229402918, 34.372505], [139.22941083, 34.372463667], [139.229386744, 34.372485802], [139.229402918, 34.372505]]]}}, {"id": "35785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228612503, 34.369035559], [139.228646329, 34.369033279], [139.228636887, 34.369015306], [139.228612503, 34.369035559]]]}}, {"id": "35786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240496615, 34.365355054], [139.240482802, 34.365324892], [139.240472166, 34.365352865], [139.240496615, 34.365355054]]]}}, {"id": "35787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244361777, 34.35002236], [139.244380169, 34.349987198], [139.244360506, 34.349987108], [139.244361777, 34.35002236]]]}}, {"id": "35788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227868885, 34.370809919], [139.22784131, 34.370791468], [139.227839274, 34.370800225], [139.227868885, 34.370809919]]]}}, {"id": "35789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24075703, 34.365182667], [139.240743217, 34.365152495], [139.240732581, 34.365180387], [139.24075703, 34.365182667]]]}}, {"id": "35790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226962049, 34.373940468], [139.226954254, 34.373967468], [139.226984034, 34.373955721], [139.226962049, 34.373940468]]]}}, {"id": "35791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240009105, 34.364969892], [139.239995668, 34.364936468], [139.239980558, 34.364964721], [139.240009105, 34.364969892]]]}}, {"id": "35792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23000083, 34.365678802], [139.230000246, 34.365714694], [139.23003083, 34.365710414], [139.23000083, 34.365678802]]]}}, {"id": "35793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217358664, 34.318084306], [139.217363645, 34.318119667], [139.217384254, 34.318108775], [139.217358664, 34.318084306]]]}}, {"id": "35794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.211012438, 34.337151027], [139.210991089, 34.337176613], [139.211016472, 34.33716664], [139.211012438, 34.337151027]]]}}, {"id": "35795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.203967134, 34.321692586], [139.203950856, 34.321672225], [139.203941141, 34.321695532], [139.203967134, 34.321692586]]]}}, {"id": "35796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218319468, 34.317230495], [139.218352309, 34.31724436], [139.218337912, 34.317218865], [139.218319468, 34.317230495]]]}}, {"id": "35797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24034978, 34.366044667], [139.24038572, 34.366021667], [139.240340078, 34.366032441], [139.24034978, 34.366044667]]]}}, {"id": "35798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202131219, 34.328374198], [139.202183606, 34.328388973], [139.202130558, 34.328362108], [139.202131219, 34.328374198]]]}}, {"id": "35799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242892672, 34.365124306], [139.242924112, 34.365106414], [139.242895668, 34.365101333], [139.242892672, 34.365124306]]]}}, {"id": "35800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224839105, 34.373278748], [139.224875551, 34.373288387], [139.224857328, 34.37326764], [139.224839105, 34.373278748]]]}}, {"id": "35801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224393839, 34.373042225], [139.224417977, 34.373011333], [139.224379494, 34.373024667], [139.224393839, 34.373042225]]]}}, {"id": "35802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244991115, 34.352766667], [139.24497834, 34.35272864], [139.24496834, 34.352758333], [139.244991115, 34.352766667]]]}}, {"id": "35803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229581725, 34.372133919], [139.229582918, 34.372103721], [139.22954153, 34.372128225], [139.229581725, 34.372133919]]]}}, {"id": "35804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216947419, 34.316746225], [139.216911946, 34.316736135], [139.21693192, 34.316754252], [139.216947419, 34.316746225]]]}}, {"id": "35805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241667224, 34.365046108], [139.24165917, 34.365009162], [139.241644163, 34.365033613], [139.241667224, 34.365046108]]]}}, {"id": "35806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242131894, 34.365568694], [139.242090856, 34.365574441], [139.242113606, 34.365588279], [139.242131894, 34.365568694]]]}}, {"id": "35807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.20855406, 34.336065468], [139.208556252, 34.336106333], [139.208569585, 34.336068333], [139.20855406, 34.336065468]]]}}, {"id": "35808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217434553, 34.318154667], [139.217441971, 34.318119802], [139.217409948, 34.318148586], [139.217434553, 34.318154667]]]}}, {"id": "35809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.203142387, 34.320425802], [139.203157173, 34.320456532], [139.20316511, 34.320438198], [139.203142387, 34.320425802]]]}}, {"id": "35810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229461193, 34.372536225], [139.229462438, 34.372498081], [139.229441193, 34.372519441], [139.229461193, 34.372536225]]]}}, {"id": "35811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217855668, 34.318904532], [139.217876693, 34.318867027], [139.21784869, 34.318891495], [139.217855668, 34.318904532]]]}}, {"id": "35812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229378638, 34.372555748], [139.229357276, 34.372591414], [139.229383307, 34.372572441], [139.229378638, 34.372555748]]]}}, {"id": "35813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227778301, 34.369950387], [139.2278007, 34.369907586], [139.227760169, 34.369946333], [139.227778301, 34.369950387]]]}}, {"id": "35814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218944838, 34.318300081], [139.218918145, 34.318278775], [139.218908171, 34.318303613], [139.218944838, 34.318300081]]]}}, {"id": "35815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202287419, 34.328357333], [139.202252361, 34.328348225], [139.202255746, 34.328361306], [139.202287419, 34.328357333]]]}}, {"id": "35816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220604228, 34.320380973], [139.2205862, 34.320352667], [139.220583943, 34.320393135], [139.220604228, 34.320380973]]]}}, {"id": "35817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245200584, 34.353746748], [139.245181362, 34.353711414], [139.245174501, 34.353743919], [139.245200584, 34.353746748]]]}}, {"id": "35818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218914669, 34.318697252], [139.218875058, 34.318704892], [139.218877691, 34.318712748], [139.218914669, 34.318697252]]]}}, {"id": "35819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.201359222, 34.329245892], [139.201377834, 34.329271135], [139.201392088, 34.329253559], [139.201359222, 34.329245892]]]}}, {"id": "35820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228852802, 34.373057108], [139.228863256, 34.373085748], [139.228873774, 34.373073892], [139.228852802, 34.373057108]]]}}, {"id": "35821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244262166, 34.349733306], [139.244279364, 34.349761162], [139.244300078, 34.349750081], [139.244262166, 34.349733306]]]}}, {"id": "35822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224954501, 34.373183586], [139.224971634, 34.373220162], [139.224991777, 34.373216225], [139.224954501, 34.373183586]]]}}, {"id": "35823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214566667, 34.317276495], [139.214559468, 34.317250135], [139.214552166, 34.317267613], [139.214566667, 34.317276495]]]}}, {"id": "35824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240398911, 34.366091252], [139.24037144, 34.36607264], [139.240377588, 34.366096441], [139.240398911, 34.366091252]]]}}, {"id": "35825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214151855, 34.335331108], [139.214119144, 34.335335532], [139.21412786, 34.335343694], [139.214151855, 34.335331108]]]}}, {"id": "35826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.202160441, 34.328333252], [139.202167302, 34.328302802], [139.202148249, 34.32832164], [139.202160441, 34.328333252]]]}}, {"id": "35827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245228911, 34.353952802], [139.245251997, 34.353933892], [139.245239001, 34.353928414], [139.245228911, 34.353952802]]]}}, {"id": "35828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244359248, 34.349950414], [139.244393385, 34.349962829], [139.244387108, 34.349945135], [139.244359248, 34.349950414]]]}}, {"id": "35829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241509494, 34.366831108], [139.241542412, 34.366819919], [139.241533554, 34.366813], [139.241509494, 34.366831108]]]}}, {"id": "35830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217726394, 34.319229694], [139.217721025, 34.319203333], [139.217712802, 34.319213946], [139.217726394, 34.319229694]]]}}, {"id": "35831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227870363, 34.370225721], [139.227862503, 34.370260667], [139.227879883, 34.370248027], [139.227870363, 34.370225721]]]}}, {"id": "35832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244304695, 34.349339252], [139.244320752, 34.349361054], [139.244327497, 34.349344775], [139.244304695, 34.349339252]]]}}, {"id": "35833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228919248, 34.37090536], [139.228896057, 34.370926694], [139.22892, 34.37092436], [139.228919248, 34.37090536]]]}}, {"id": "35834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240371777, 34.365624279], [139.240392244, 34.365600495], [139.240375499, 34.365602586], [139.240371777, 34.365624279]]]}}, {"id": "35835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240596135, 34.365350586], [139.240616641, 34.365326775], [139.240599857, 34.365328775], [139.240596135, 34.365350586]]]}}, {"id": "35836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227834254, 34.370970586], [139.227865837, 34.370977054], [139.227865966, 34.370957225], [139.227834254, 34.370970586]]]}}, {"id": "35837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225003359, 34.373209135], [139.225038911, 34.373194081], [139.225021582, 34.373182108], [139.225003359, 34.373209135]]]}}, {"id": "35838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228897691, 34.373088252], [139.2289293, 34.373094802], [139.22891594, 34.373076441], [139.228897691, 34.373088252]]]}}, {"id": "35839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218993554, 34.318247946], [139.218974669, 34.318230919], [139.218975525, 34.318262108], [139.218993554, 34.318247946]]]}}, {"id": "35840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224928223, 34.373298027], [139.224934086, 34.373270198], [139.224914864, 34.373296414], [139.224928223, 34.373298027]]]}}, {"id": "35841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224793995, 34.373304829], [139.224813113, 34.373322414], [139.224817977, 34.373298559], [139.224793995, 34.373304829]]]}}, {"id": "35842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241475305, 34.366792802], [139.241491699, 34.36681264], [139.241491751, 34.366789559], [139.241475305, 34.366792802]]]}}, {"id": "35843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241683502, 34.368048586], [139.241699883, 34.368068414], [139.241699948, 34.368045333], [139.241683502, 34.368048586]]]}}, {"id": "35844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228592607, 34.369216135], [139.228564812, 34.369197586], [139.228560052, 34.369208306], [139.228592607, 34.369216135]]]}}, {"id": "35845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224755863, 34.373242], [139.224768197, 34.373265865], [139.22476725, 34.373244387], [139.224755863, 34.373242]]]}}, {"id": "35846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224474137, 34.322494414], [139.22447083, 34.322473027], [139.22445358, 34.322484946], [139.224474137, 34.322494414]]]}}, {"id": "35847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.228668664, 34.369071532], [139.228675447, 34.369049667], [139.228659831, 34.369060306], [139.228668664, 34.369071532]]]}}, {"id": "35848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227902088, 34.371000225], [139.22789834, 34.37098036], [139.227883022, 34.37099064], [139.227902088, 34.371000225]]]}}, {"id": "35849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.225923061, 34.367775468], [139.2259462, 34.367763162], [139.225925772, 34.367760892], [139.225923061, 34.367775468]]]}}, {"id": "35850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "新島村", "N03_005": null, "N03_007": "13363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217879883, 34.318846225], [139.217896589, 34.318821973], [139.217871997, 34.318840946], [139.217879883, 34.318846225]]]}}, {"id": "35851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124941206, 34.189578018], [139.137688495, 34.242069829], [139.167696446, 34.234145973], [139.175244553, 34.204346387], [139.124941206, 34.189578018]]]}}, {"id": "35852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.190927497, 34.206518333], [139.192657497, 34.209285], [139.192372218, 34.206061108], [139.190927497, 34.206518333]]]}}, {"id": "35853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.188702776, 34.211301667], [139.186684449, 34.211625], [139.190932218, 34.211966667], [139.188702776, 34.211301667]]]}}, {"id": "35854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.072955006, 34.185279441], [139.076105279, 34.184068613], [139.072134449, 34.183816946], [139.072955006, 34.185279441]]]}}, {"id": "35855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.075010272, 34.186266667], [139.076960272, 34.188135829], [139.077248885, 34.18604], [139.075010272, 34.186266667]]]}}, {"id": "35856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.192617497, 34.205171667], [139.193965279, 34.204223054], [139.193021115, 34.203965829], [139.192617497, 34.205171667]]]}}, {"id": "35857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137155006, 34.241929586], [139.136167613, 34.240826162], [139.136779974, 34.242290802], [139.137155006, 34.241929586]]]}}, {"id": "35858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.182909728, 34.223036667], [139.183683891, 34.223722775], [139.18351834, 34.222880559], [139.182909728, 34.223036667]]]}}, {"id": "35859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.079086667, 34.186021667], [139.078103333, 34.186741946], [139.078357224, 34.187318892], [139.079086667, 34.186021667]]]}}, {"id": "35860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.193735837, 34.205931387], [139.193153061, 34.205361108], [139.192801115, 34.205598892], [139.193735837, 34.205931387]]]}}, {"id": "35861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.156400195, 34.196693919], [139.15612022, 34.196209495], [139.155873969, 34.195959829], [139.156400195, 34.196693919]]]}}, {"id": "35862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175702218, 34.205609946], [139.176190636, 34.205818468], [139.176248054, 34.205160919], [139.175702218, 34.205609946]]]}}, {"id": "35863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127967497, 34.184846613], [139.128494034, 34.184213495], [139.128159857, 34.183969495], [139.127967497, 34.184846613]]]}}, {"id": "35864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129898223, 34.216434279], [139.130180973, 34.215856559], [139.129977393, 34.215658829], [139.129898223, 34.216434279]]]}}, {"id": "35865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136166913, 34.239779441], [139.13662655, 34.239910333], [139.136328366, 34.239353559], [139.136166913, 34.239779441]]]}}, {"id": "35866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1252807, 34.186799], [139.125903774, 34.186560532], [139.12513725, 34.186435279], [139.1252807, 34.186799]]]}}, {"id": "35867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14642856, 34.19076864], [139.146790726, 34.190379667], [139.146668833, 34.190251054], [139.14642856, 34.19076864]]]}}, {"id": "35868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176590078, 34.210143468], [139.176945473, 34.209875802], [139.17658428, 34.209909919], [139.176590078, 34.210143468]]]}}, {"id": "35869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.079856667, 34.187128892], [139.079373891, 34.187189162], [139.07944834, 34.18733], [139.079856667, 34.187128892]]]}}, {"id": "35870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.180272776, 34.224055], [139.179994721, 34.223812775], [139.179909728, 34.224052775], [139.180272776, 34.224055]]]}}, {"id": "35871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12723214, 34.186841802], [139.12707, 34.186211586], [139.126801556, 34.186204973], [139.12723214, 34.186841802]]]}}, {"id": "35872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146895422, 34.190966802], [139.147218885, 34.190371495], [139.147192802, 34.190178333], [139.146895422, 34.190966802]]]}}, {"id": "35873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.072364721, 34.181684721], [139.071935006, 34.181387225], [139.07218834, 34.181763613], [139.072364721, 34.181684721]]]}}, {"id": "35874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13861406, 34.244041027], [139.138943839, 34.243583559], [139.138660026, 34.243702495], [139.13861406, 34.244041027]]]}}, {"id": "35875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.815291946, 33.946925279], [138.815775006, 33.946516667], [138.81571, 33.946410279], [138.815291946, 33.946925279]]]}}, {"id": "35876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817561673, 33.943761108], [138.81725834, 33.943502225], [138.81737083, 33.943917775], [138.817561673, 33.943761108]]]}}, {"id": "35877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817661946, 33.943310829], [138.817386939, 33.942911667], [138.817400272, 33.943294162], [138.817661946, 33.943310829]]]}}, {"id": "35878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816399728, 33.946573333], [138.816921946, 33.946465279], [138.81694834, 33.946330829], [138.816399728, 33.946573333]]]}}, {"id": "35879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143534578, 34.188343333], [139.143465279, 34.187860775], [139.14335297, 34.188382694], [139.143534578, 34.188343333]]]}}, {"id": "35880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147966524, 34.191228667], [139.147735422, 34.191259279], [139.147957445, 34.191615387], [139.147966524, 34.191228667]]]}}, {"id": "35881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119968975, 34.195005315], [139.120372646, 34.195102054], [139.120056342, 34.194861748], [139.119968975, 34.195005315]]]}}, {"id": "35882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.125235668, 34.188563198], [139.125454137, 34.188061667], [139.12514406, 34.188426252], [139.125235668, 34.188563198]]]}}, {"id": "35883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119689001, 34.195448874], [139.119827756, 34.195090775], [139.119663152, 34.195091883], [139.119689001, 34.195448874]]]}}, {"id": "35884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127580363, 34.185322495], [139.127519001, 34.184939414], [139.127339728, 34.185090667], [139.127580363, 34.185322495]]]}}, {"id": "35885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.15417808, 34.200957252], [139.154202607, 34.200766865], [139.153724501, 34.200811829], [139.15417808, 34.200957252]]]}}, {"id": "35886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121348729, 34.196932586], [139.121550104, 34.19673982], [139.121284734, 34.196595207], [139.121348729, 34.196932586]]]}}, {"id": "35887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1431393, 34.244233279], [139.143154254, 34.24426664], [139.143570026, 34.244226252], [139.1431393, 34.244233279]]]}}, {"id": "35888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077602776, 34.188005279], [139.077265551, 34.187933054], [139.077272503, 34.188175], [139.077602776, 34.188005279]]]}}, {"id": "35889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.183685279, 34.222009162], [139.183405279, 34.221787495], [139.183355006, 34.221873054], [139.183685279, 34.222009162]]]}}, {"id": "35890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.189253606, 34.209326387], [139.188909442, 34.209316108], [139.189015551, 34.209485279], [139.189253606, 34.209326387]]]}}, {"id": "35891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070205279, 34.184154721], [139.070304721, 34.183918054], [139.069966667, 34.184142775], [139.070205279, 34.184154721]]]}}, {"id": "35892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130844747, 34.211772559], [139.131080973, 34.211932865], [139.131039883, 34.211677829], [139.130844747, 34.211772559]]]}}, {"id": "35893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119054721, 34.194195829], [139.119291388, 34.194356387], [139.11930834, 34.194231946], [139.119054721, 34.194195829]]]}}, {"id": "35894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176428275, 34.209931919], [139.176487613, 34.209879225], [139.176068807, 34.209925468], [139.176428275, 34.209931919]]]}}, {"id": "35895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148243061, 34.241002495], [139.148512581, 34.240740108], [139.148324137, 34.240698586], [139.148243061, 34.241002495]]]}}, {"id": "35896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177483411, 34.210350468], [139.177656355, 34.210172252], [139.177227134, 34.210260306], [139.177483411, 34.210350468]]]}}, {"id": "35897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.815962503, 33.947396387], [138.816081946, 33.947012225], [138.815858885, 33.947360829], [138.815962503, 33.947396387]]]}}, {"id": "35898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12944061, 34.216585279], [139.129591997, 34.216300973], [139.129356472, 34.216395], [139.12944061, 34.216585279]]]}}, {"id": "35899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128159248, 34.186181946], [139.128346524, 34.185904162], [139.128220584, 34.18583836], [139.128159248, 34.186181946]]]}}, {"id": "35900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132049922, 34.223855], [139.131803333, 34.223697802], [139.131708911, 34.223839892], [139.132049922, 34.223855]]]}}, {"id": "35901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077816667, 34.185356946], [139.077470272, 34.185549162], [139.077857224, 34.185412225], [139.077816667, 34.185356946]]]}}, {"id": "35902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.15026917, 34.194505], [139.149900804, 34.194802], [139.150429222, 34.194543748], [139.15026917, 34.194505]]]}}, {"id": "35903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12448275, 34.189235928], [139.124744942, 34.189253405], [139.12456153, 34.188897036], [139.12448275, 34.189235928]]]}}, {"id": "35904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140316861, 34.186021694], [139.140485551, 34.185822946], [139.140399144, 34.185830748], [139.140316861, 34.186021694]]]}}, {"id": "35905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129891673, 34.215106946], [139.130080272, 34.215021667], [139.129831673, 34.214980829], [139.129891673, 34.215106946]]]}}, {"id": "35906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148135473, 34.241299333], [139.148153281, 34.240976387], [139.147958885, 34.241040225], [139.148135473, 34.241299333]]]}}, {"id": "35907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078166939, 34.188332775], [139.077951115, 34.188395559], [139.078036667, 34.188438613], [139.078166939, 34.188332775]]]}}, {"id": "35908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127841946, 34.222987775], [139.127617224, 34.222899721], [139.127794163, 34.223033333], [139.127841946, 34.222987775]]]}}, {"id": "35909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.815755279, 33.947194162], [138.815894721, 33.946885279], [138.815672218, 33.947161108], [138.815755279, 33.947194162]]]}}, {"id": "35910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174200506, 34.214406252], [139.174323865, 34.214216054], [139.174154578, 34.214309802], [139.174200506, 34.214406252]]]}}, {"id": "35911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139265422, 34.243631441], [139.139316861, 34.243344333], [139.139061115, 34.243368306], [139.139265422, 34.243631441]]]}}, {"id": "35912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.135526887, 34.186325865], [139.135755357, 34.186220694], [139.135558911, 34.186020333], [139.135526887, 34.186325865]]]}}, {"id": "35913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140779442, 34.244138054], [139.141003891, 34.244212495], [139.140887224, 34.243998892], [139.140779442, 34.244138054]]]}}, {"id": "35914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171680246, 34.227742721], [139.171596693, 34.227714946], [139.171269222, 34.227673054], [139.171514475, 34.22777564], [139.171680246, 34.227742721]]]}}, {"id": "35915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139965279, 34.243936946], [139.139889728, 34.244142225], [139.140073606, 34.243983892], [139.139965279, 34.243936946]]]}}, {"id": "35916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143466498, 34.245032387], [139.143467717, 34.244845586], [139.143179805, 34.244938], [139.143466498, 34.245032387]]]}}, {"id": "35917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.074704449, 34.18814], [139.074524721, 34.188362775], [139.074599728, 34.188403333], [139.074704449, 34.18814]]]}}, {"id": "35918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175622827, 34.210184721], [139.175601336, 34.210021946], [139.175254669, 34.210069135], [139.175622827, 34.210184721]]]}}, {"id": "35919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13044297, 34.214259829], [139.130661997, 34.214188892], [139.130413256, 34.214127333], [139.13044297, 34.214259829]]]}}, {"id": "35920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146779831, 34.24292536], [139.146701725, 34.242717586], [139.146664189, 34.242913559], [139.146779831, 34.24292536]]]}}, {"id": "35921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.837913333, 33.962998892], [138.838113891, 33.963123613], [138.838128885, 33.962925559], [138.837913333, 33.962998892]]]}}, {"id": "35922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146695084, 34.191229667], [139.146432049, 34.191061225], [139.1466462, 34.191358586], [139.146695084, 34.191229667]]]}}, {"id": "35923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142914163, 34.245695], [139.14277834, 34.245847225], [139.142979442, 34.245834721], [139.142914163, 34.245695]]]}}, {"id": "35924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134245058, 34.186148252], [139.134115551, 34.186316387], [139.134258716, 34.18626636], [139.134245058, 34.186148252]]]}}, {"id": "35925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119961673, 34.196276946], [139.120103061, 34.196142495], [139.119935551, 34.19624], [139.119961673, 34.196276946]]]}}, {"id": "35926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139340272, 34.244108892], [139.139545837, 34.244171387], [139.139547782, 34.244051946], [139.139340272, 34.244108892]]]}}, {"id": "35927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130704449, 34.210794441], [139.130779442, 34.210929162], [139.130852503, 34.210836387], [139.130704449, 34.210794441]]]}}, {"id": "35928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.183240272, 34.222691108], [139.18344, 34.222598333], [139.183205006, 34.222612775], [139.183240272, 34.222691108]]]}}, {"id": "35929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.15332192, 34.192679054], [139.15312655, 34.192700613], [139.153298301, 34.192781441], [139.15332192, 34.192679054]]]}}, {"id": "35930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077288612, 34.185653054], [139.07735, 34.185812495], [139.077396394, 34.185652225], [139.077288612, 34.185653054]]]}}, {"id": "35931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.07569083, 34.185742775], [139.07555, 34.185895279], [139.075743606, 34.185837775], [139.07569083, 34.185742775]]]}}, {"id": "35932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.07505917, 34.188458892], [139.075261946, 34.188526387], [139.075253606, 34.188466667], [139.07505917, 34.188458892]]]}}, {"id": "35933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139476498, 34.243559441], [139.139379637, 34.243367225], [139.139406744, 34.243580306], [139.139476498, 34.243559441]]]}}, {"id": "35934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143459922, 34.188667108], [139.143291245, 34.188714748], [139.143402387, 34.188762892], [139.143459922, 34.188667108]]]}}, {"id": "35935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.125126783, 34.18661364], [139.124971647, 34.186481667], [139.124996796, 34.186652297], [139.125126783, 34.18661364]]]}}, {"id": "35936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146945006, 34.241445829], [139.147124449, 34.241375279], [139.146903606, 34.241338892], [139.146945006, 34.241445829]]]}}, {"id": "35937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120211492, 34.195725], [139.120282724, 34.195485685], [139.120216952, 34.195476649], [139.120211492, 34.195725]]]}}, {"id": "35938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148352555, 34.241638162], [139.148293774, 34.241362225], [139.14821345, 34.241402892], [139.148352555, 34.241638162]]]}}, {"id": "35939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131853891, 34.233200559], [139.131817224, 34.233381667], [139.131917782, 34.233300559], [139.131853891, 34.233200559]]]}}, {"id": "35940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131080078, 34.214041973], [139.130922607, 34.214093919], [139.131090999, 34.214122559], [139.131080078, 34.214041973]]]}}, {"id": "35941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121161492, 34.197805928], [139.121273528, 34.197514108], [139.121116913, 34.197791153], [139.121161492, 34.197805928]]]}}, {"id": "35942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142118366, 34.243986], [139.142328755, 34.243824198], [139.142318249, 34.243661865], [139.142118366, 34.243986]]]}}, {"id": "35943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143331115, 34.244560829], [139.143479728, 34.244663054], [139.143466939, 34.244543333], [139.143331115, 34.244560829]]]}}, {"id": "35944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128693411, 34.18368036], [139.128721051, 34.183408532], [139.128651803, 34.183348892], [139.128693411, 34.18368036]]]}}, {"id": "35945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.149852776, 34.194498054], [139.149836394, 34.194665559], [139.149937224, 34.194563054], [139.149852776, 34.194498054]]]}}, {"id": "35946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146207756, 34.242815333], [139.146132244, 34.242619721], [139.146043839, 34.242744279], [139.146207756, 34.242815333]]]}}, {"id": "35947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145205279, 34.245086667], [139.145411673, 34.245132225], [139.145279728, 34.245030279], [139.145205279, 34.245086667]]]}}, {"id": "35948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078478612, 34.187649721], [139.078546667, 34.187803333], [139.07855834, 34.187627775], [139.078478612, 34.187649721]]]}}, {"id": "35949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134417108, 34.232040027], [139.134513307, 34.23195736], [139.134298716, 34.231930613], [139.134417108, 34.232040027]]]}}, {"id": "35950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077848054, 34.188117775], [139.077801115, 34.188293333], [139.077909442, 34.188180829], [139.077848054, 34.188117775]]]}}, {"id": "35951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171997782, 34.224385829], [139.171896109, 34.224548054], [139.171986667, 34.224531108], [139.171997782, 34.224385829]]]}}, {"id": "35952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071869728, 34.181974162], [139.071869728, 34.182155], [139.07194917, 34.182099441], [139.071869728, 34.181974162]]]}}, {"id": "35953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121407704, 34.198139405], [139.12150537, 34.19826655], [139.12158, 34.198178541], [139.121407704, 34.198139405]]]}}, {"id": "35954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817278612, 33.943958054], [138.817426109, 33.944119721], [138.817432503, 33.944074721], [138.817278612, 33.943958054]]]}}, {"id": "35955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140768275, 34.186897135], [139.140913256, 34.186747586], [139.140803554, 34.186696], [139.140768275, 34.186897135]]]}}, {"id": "35956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137814163, 34.242445414], [139.137778716, 34.242277162], [139.137723891, 34.242385225], [139.137814163, 34.242445414]]]}}, {"id": "35957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13944847, 34.243297559], [139.139425499, 34.243147586], [139.139365746, 34.243231441], [139.13944847, 34.243297559]]]}}, {"id": "35958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129619274, 34.212523387], [139.129724034, 34.212258306], [139.129663411, 34.212239829], [139.129619274, 34.212523387]]]}}, {"id": "35959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146833281, 34.242106694], [139.146674773, 34.241944414], [139.146807419, 34.242202198], [139.146833281, 34.242106694]]]}}, {"id": "35960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127663333, 34.184429721], [139.127795551, 34.184553054], [139.12782, 34.184471108], [139.127663333, 34.184429721]]]}}, {"id": "35961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134511673, 34.236374162], [139.134563528, 34.236521333], [139.134615279, 34.236406946], [139.134511673, 34.236374162]]]}}, {"id": "35962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070734163, 34.181430559], [139.070743061, 34.181568892], [139.070804721, 34.18146], [139.070734163, 34.181430559]]]}}, {"id": "35963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129179079, 34.223223414], [139.129223359, 34.223054802], [139.129107562, 34.223156108], [139.129179079, 34.223223414]]]}}, {"id": "35964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.135180272, 34.186892414], [139.135234916, 34.186764252], [139.135181479, 34.186706802], [139.135180272, 34.186892414]]]}}, {"id": "35965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.154903995, 34.194915613], [139.155092049, 34.194761667], [139.154837302, 34.194870414], [139.154903995, 34.194915613]]]}}, {"id": "35966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.156481362, 34.195486892], [139.156309364, 34.195487306], [139.156475006, 34.195588027], [139.156481362, 34.195486892]]]}}, {"id": "35967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141435006, 34.244416387], [139.141375279, 34.244562495], [139.141506109, 34.244574441], [139.141435006, 34.244416387]]]}}, {"id": "35968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071081946, 34.182173054], [139.070932776, 34.182222495], [139.071056109, 34.182266667], [139.071081946, 34.182173054]]]}}, {"id": "35969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817738612, 33.942512225], [138.817876667, 33.942608333], [138.817815551, 33.942497775], [138.817738612, 33.942512225]]]}}, {"id": "35970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121475551, 34.19829027], [139.12163799, 34.198328261], [139.121539585, 34.198236721], [139.121475551, 34.19829027]]]}}, {"id": "35971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147169728, 34.241486946], [139.147260246, 34.24135664], [139.147175837, 34.241376279], [139.147169728, 34.241486946]]]}}, {"id": "35972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071300272, 34.182437225], [139.071447782, 34.182483333], [139.071420558, 34.182393892], [139.071300272, 34.182437225]]]}}, {"id": "35973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146458003, 34.242677721], [139.146479974, 34.242524919], [139.146379494, 34.242547], [139.146458003, 34.242677721]]]}}, {"id": "35974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817292218, 33.942579721], [138.817305006, 33.942789441], [138.817354449, 33.942783892], [138.817292218, 33.942579721]]]}}, {"id": "35975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.07411083, 34.182887495], [139.07424917, 34.182957775], [139.074289728, 34.182884441], [139.07411083, 34.182887495]]]}}, {"id": "35976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17540489, 34.217298802], [139.175371971, 34.217134108], [139.175359533, 34.217310829], [139.17540489, 34.217298802]]]}}, {"id": "35977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175306809, 34.210020279], [139.175173411, 34.209927532], [139.175160506, 34.210009306], [139.175306809, 34.210020279]]]}}, {"id": "35978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120618353, 34.197506694], [139.120712555, 34.19736218], [139.12064773, 34.197328811], [139.120618353, 34.197506694]]]}}, {"id": "35979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.149592244, 34.194990162], [139.149468586, 34.194960532], [139.149502049, 34.195058892], [139.149592244, 34.194990162]]]}}, {"id": "35980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146858612, 34.243139721], [139.146975551, 34.243084162], [139.146865837, 34.243028054], [139.146858612, 34.243139721]]]}}, {"id": "35981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817624163, 33.942675559], [138.817481673, 33.942771108], [138.817517782, 33.942787775], [138.817624163, 33.942675559]]]}}, {"id": "35982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171605136, 34.229313559], [139.171481115, 34.229403135], [139.171605058, 34.229392252], [139.171605136, 34.229313559]]]}}, {"id": "35983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119711582, 34.191905937], [139.119857523, 34.191748748], [139.119783489, 34.191702514], [139.119711582, 34.191905937]]]}}, {"id": "35984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17262131, 34.219099973], [139.172525772, 34.218988198], [139.172473359, 34.219073559], [139.17262131, 34.219099973]]]}}, {"id": "35985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124099092, 34.188592784], [139.124201543, 34.188510162], [139.124097017, 34.188476559], [139.124099092, 34.188592784]]]}}, {"id": "35986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177882438, 34.210394694], [139.177823022, 34.210247892], [139.177794695, 34.210359252], [139.177882438, 34.210394694]]]}}, {"id": "35987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.135871673, 34.241926108], [139.135735279, 34.241981667], [139.135827782, 34.242073613], [139.135871673, 34.241926108]]]}}, {"id": "35988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.155764034, 34.195341306], [139.155618755, 34.195272054], [139.155713528, 34.195401162], [139.155764034, 34.195341306]]]}}, {"id": "35989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816061673, 33.947614162], [138.816128885, 33.947736667], [138.816161115, 33.947608892], [138.816061673, 33.947614162]]]}}, {"id": "35990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128457717, 34.220907946], [139.128295227, 34.220950559], [139.128392477, 34.221065532], [139.128457717, 34.220907946]]]}}, {"id": "35991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120924799, 34.196070207], [139.120790882, 34.195931937], [139.120898418, 34.196175721], [139.120924799, 34.196070207]]]}}, {"id": "35992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120903411, 34.196290964], [139.120760778, 34.196195658], [139.12079144, 34.196342423], [139.120903411, 34.196290964]]]}}, {"id": "35993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121490052, 34.198462009], [139.121369974, 34.198380802], [139.121401777, 34.198534072], [139.121490052, 34.198462009]]]}}, {"id": "35994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136460026, 34.242002559], [139.136491699, 34.241797162], [139.136325331, 34.24186836], [139.136460026, 34.242002559]]]}}, {"id": "35995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134822866, 34.22671564], [139.134730052, 34.226820225], [139.134827562, 34.226803748], [139.134822866, 34.22671564]]]}}, {"id": "35996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140298495, 34.185694667], [139.140400169, 34.185599586], [139.140312049, 34.185576], [139.140298495, 34.185694667]]]}}, {"id": "35997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144700026, 34.244938802], [139.144642438, 34.244794748], [139.144567613, 34.244878919], [139.144700026, 34.244938802]]]}}, {"id": "35998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.07895083, 34.184445559], [139.07895917, 34.184565559], [139.079013606, 34.18447], [139.07895083, 34.184445559]]]}}, {"id": "35999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136323139, 34.241635198], [139.136323645, 34.241823081], [139.136445032, 34.241728586], [139.136323139, 34.241635198]]]}}, {"id": "36000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.072181673, 34.181887225], [139.072345837, 34.181911946], [139.072326109, 34.181846108], [139.072181673, 34.181887225]]]}}, {"id": "36001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128402023, 34.222302081], [139.128247328, 34.222412973], [139.128311777, 34.222494225], [139.128402023, 34.222302081]]]}}, {"id": "36002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12920297, 34.18338], [139.129109922, 34.183286162], [139.12906428, 34.183426721], [139.12920297, 34.18338]]]}}, {"id": "36003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070287782, 34.183530559], [139.070403061, 34.183630559], [139.070351115, 34.183486387], [139.070287782, 34.183530559]]]}}, {"id": "36004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171154617, 34.229209532], [139.17120153, 34.229316892], [139.171307886, 34.229291135], [139.171154617, 34.229209532]]]}}, {"id": "36005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144304254, 34.244345225], [139.144185447, 34.244310387], [139.144095642, 34.244393559], [139.144304254, 34.244345225]]]}}, {"id": "36006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137074228, 34.239688946], [139.137087834, 34.239617613], [139.136951051, 34.239617721], [139.137074228, 34.239688946]]]}}, {"id": "36007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119858301, 34.190600874], [139.12000323, 34.190460532], [139.119975396, 34.190390586], [139.119858301, 34.190600874]]]}}, {"id": "36008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.160323891, 34.237513892], [139.160427497, 34.237431387], [139.16025, 34.237463333], [139.160323891, 34.237513892]]]}}, {"id": "36009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070098612, 34.181771946], [139.070082218, 34.181895559], [139.070171673, 34.181896108], [139.070098612, 34.181771946]]]}}, {"id": "36010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130213281, 34.212908081], [139.130284228, 34.212778559], [139.130200117, 34.212728495], [139.130213281, 34.212908081]]]}}, {"id": "36011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137981089, 34.242250721], [139.137844228, 34.242169081], [139.137815772, 34.242235], [139.137981089, 34.242250721]]]}}, {"id": "36012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.159526667, 34.23773], [139.159539442, 34.237600829], [139.159475006, 34.237683333], [139.159526667, 34.23773]]]}}, {"id": "36013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071868171, 34.180473081], [139.071890558, 34.180373333], [139.07183406, 34.180378658], [139.071868171, 34.180473081]]]}}, {"id": "36014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071997497, 34.181187495], [139.071903333, 34.181272775], [139.072009728, 34.181250279], [139.071997497, 34.181187495]]]}}, {"id": "36015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136234968, 34.241703225], [139.136157224, 34.241600892], [139.136132438, 34.241656468], [139.136234968, 34.241703225]]]}}, {"id": "36016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17272358, 34.219162532], [139.172680973, 34.219073613], [139.172593191, 34.219153081], [139.17272358, 34.219162532]]]}}, {"id": "36017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136629196, 34.186806532], [139.136605473, 34.186655667], [139.136571751, 34.18678664], [139.136629196, 34.186806532]]]}}, {"id": "36018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139702218, 34.243347495], [139.139626913, 34.24342164], [139.139668664, 34.243518865], [139.139702218, 34.243347495]]]}}, {"id": "36019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146249533, 34.243096495], [139.146313995, 34.242964333], [139.146288833, 34.242948586], [139.146249533, 34.243096495]]]}}, {"id": "36020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147136355, 34.243178802], [139.14711572, 34.243005225], [139.147101505, 34.243233162], [139.147136355, 34.243178802]]]}}, {"id": "36021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146644721, 34.243342225], [139.146775551, 34.243351946], [139.146725006, 34.243268054], [139.146644721, 34.243342225]]]}}, {"id": "36022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130126641, 34.215721162], [139.130204553, 34.21558964], [139.130091971, 34.21562036], [139.130126641, 34.215721162]]]}}, {"id": "36023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070519196, 34.179204775], [139.070586291, 34.179103189], [139.070509598, 34.179123108], [139.070519196, 34.179204775]]]}}, {"id": "36024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120112244, 34.193311018], [139.120030597, 34.193409], [139.120070986, 34.19345755], [139.120112244, 34.193311018]]]}}, {"id": "36025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.18304834, 34.223925279], [139.18316083, 34.223840279], [139.183032503, 34.223881108], [139.18304834, 34.223925279]]]}}, {"id": "36026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177845383, 34.209473559], [139.177925746, 34.209565027], [139.177958781, 34.209491027], [139.177845383, 34.209473559]]]}}, {"id": "36027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136917198, 34.186257667], [139.137001284, 34.186175919], [139.136957471, 34.18615964], [139.136917198, 34.186257667]]]}}, {"id": "36028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130452218, 34.213665], [139.130520558, 34.213565829], [139.130437497, 34.213548333], [139.130452218, 34.213665]]]}}, {"id": "36029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145480311, 34.187843865], [139.145351751, 34.187841532], [139.145409442, 34.187885748], [139.145480311, 34.187843865]]]}}, {"id": "36030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070558885, 34.181761667], [139.070585837, 34.181851946], [139.070600272, 34.181844162], [139.070558885, 34.181761667]]]}}, {"id": "36031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.172445188, 34.21898164], [139.172378197, 34.218862721], [139.172340856, 34.218931586], [139.172445188, 34.21898164]]]}}, {"id": "36032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145767782, 34.242998333], [139.145763891, 34.242871946], [139.145708054, 34.242900279], [139.145767782, 34.242998333]]]}}, {"id": "36033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136798885, 34.186539108], [139.136899144, 34.186420829], [139.13690061, 34.186334667], [139.136798885, 34.186539108]]]}}, {"id": "36034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142990558, 34.244751667], [139.143111388, 34.244667775], [139.142988612, 34.244717775], [139.142990558, 34.244751667]]]}}, {"id": "36035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.835864163, 33.963212225], [138.835756394, 33.963150559], [138.835782776, 33.963246387], [138.835864163, 33.963212225]]]}}, {"id": "36036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138919364, 34.185686333], [139.138829494, 34.185597829], [139.138812477, 34.185624414], [139.138919364, 34.185686333]]]}}, {"id": "36037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120292542, 34.193108045], [139.120164864, 34.193183126], [139.120200104, 34.193237333], [139.120292542, 34.193108045]]]}}, {"id": "36038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134884228, 34.227433892], [139.13497847, 34.227508802], [139.134999663, 34.227463748], [139.134884228, 34.227433892]]]}}, {"id": "36039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129045084, 34.183658775], [139.129123839, 34.183491613], [139.129099222, 34.183474613], [139.129045084, 34.183658775]]]}}, {"id": "36040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.125299196, 34.187557225], [139.125344968, 34.187362135], [139.12524939, 34.187559198], [139.125299196, 34.187557225]]]}}, {"id": "36041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.15432917, 34.240005279], [139.154334163, 34.240145], [139.15439, 34.240026946], [139.15432917, 34.240005279]]]}}, {"id": "36042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128639883, 34.201320054], [139.128648781, 34.201438027], [139.128694423, 34.201353198], [139.128639883, 34.201320054]]]}}, {"id": "36043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174134916, 34.212625387], [139.17401808, 34.212634865], [139.174100026, 34.212718252], [139.174134916, 34.212625387]]]}}, {"id": "36044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137331141, 34.242014802], [139.13728808, 34.241917721], [139.137219494, 34.242030667], [139.137331141, 34.242014802]]]}}, {"id": "36045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127010636, 34.186915532], [139.126909533, 34.186826054], [139.126948885, 34.186933306], [139.127010636, 34.186915532]]]}}, {"id": "36046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17274192, 34.218830054], [139.172759831, 34.218743694], [139.172650856, 34.218731387], [139.17274192, 34.218830054]]]}}, {"id": "36047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127511362, 34.184228414], [139.127440584, 34.184117919], [139.127439728, 34.184219892], [139.127511362, 34.184228414]]]}}, {"id": "36048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130008029, 34.214478225], [139.130132944, 34.214347225], [139.129928301, 34.214486162], [139.130008029, 34.214478225]]]}}, {"id": "36049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.067861388, 34.184808892], [139.067924163, 34.184721108], [139.067833606, 34.184767775], [139.067861388, 34.184808892]]]}}, {"id": "36050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127080052, 34.184862532], [139.12699594, 34.184877919], [139.127058495, 34.184910279], [139.127080052, 34.184862532]]]}}, {"id": "36051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130716161, 34.213574946], [139.130603385, 34.213526162], [139.130681141, 34.213661387], [139.130716161, 34.213574946]]]}}, {"id": "36052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1433307, 34.245033495], [139.143212361, 34.245006775], [139.143055888, 34.244996532], [139.143212503, 34.245069279], [139.1433307, 34.245033495]]]}}, {"id": "36053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14599275, 34.242979279], [139.145896667, 34.242900135], [139.145974527, 34.243030495], [139.14599275, 34.242979279]]]}}, {"id": "36054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17589358, 34.209976279], [139.175861777, 34.209895054], [139.175815357, 34.209947721], [139.17589358, 34.209976279]]]}}, {"id": "36055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071710272, 34.180860829], [139.071773333, 34.180761667], [139.071697224, 34.180774162], [139.071710272, 34.180860829]]]}}, {"id": "36056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128879442, 34.201442135], [139.12890489, 34.201526225], [139.128984812, 34.201465387], [139.128879442, 34.201442135]]]}}, {"id": "36057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13376869, 34.223489775], [139.133671051, 34.223521054], [139.133709339, 34.223605748], [139.13376869, 34.223489775]]]}}, {"id": "36058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119926278, 34.194741541], [139.120007536, 34.194627604], [139.119867717, 34.194712883], [139.119926278, 34.194741541]]]}}, {"id": "36059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070315551, 34.182158054], [139.07028917, 34.182248054], [139.070363891, 34.182229721], [139.070315551, 34.182158054]]]}}, {"id": "36060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148320726, 34.241320468], [139.148360363, 34.241210414], [139.14827572, 34.241167306], [139.148320726, 34.241320468]]]}}, {"id": "36061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163873061, 34.236185829], [139.163866278, 34.236274162], [139.163915888, 34.236196532], [139.163873061, 34.236185829]]]}}, {"id": "36062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817954721, 33.943204162], [138.818022776, 33.943114441], [138.817954721, 33.943125559], [138.817954721, 33.943204162]]]}}, {"id": "36063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174058638, 34.214295667], [139.173961051, 34.214270802], [139.174007471, 34.214359775], [139.174058638, 34.214295667]]]}}, {"id": "36064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120486809, 34.197935802], [139.120435292, 34.197818297], [139.12036489, 34.197853676], [139.120486809, 34.197935802]]]}}, {"id": "36065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119828029, 34.191657243], [139.119770091, 34.191593261], [139.119772348, 34.191672153], [139.119828029, 34.191657243]]]}}, {"id": "36066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175024189, 34.215969387], [139.174905668, 34.215970829], [139.174964968, 34.216050306], [139.175024189, 34.215969387]]]}}, {"id": "36067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070063891, 34.182078613], [139.069996109, 34.182161108], [139.070082503, 34.182136667], [139.070063891, 34.182078613]]]}}, {"id": "36068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.126095837, 34.201007162], [139.12600489, 34.201007829], [139.126016446, 34.201042252], [139.126095837, 34.201007162]]]}}, {"id": "36069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140962438, 34.244748054], [139.140854916, 34.244740414], [139.140922672, 34.244778054], [139.140962438, 34.244748054]]]}}, {"id": "36070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170898781, 34.229848333], [139.170869663, 34.229934], [139.17094594, 34.229895306], [139.170898781, 34.229848333]]]}}, {"id": "36071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175975357, 34.216102973], [139.175919857, 34.216040198], [139.175896226, 34.216150775], [139.175975357, 34.216102973]]]}}, {"id": "36072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.135489079, 34.186900135], [139.135400078, 34.186890333], [139.135452581, 34.18695736], [139.135489079, 34.186900135]]]}}, {"id": "36073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177417639, 34.209710802], [139.177518638, 34.209755162], [139.177507056, 34.209680919], [139.177417639, 34.209710802]]]}}, {"id": "36074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173935383, 34.213023252], [139.173843113, 34.212945495], [139.173817173, 34.212973829], [139.173935383, 34.213023252]]]}}, {"id": "36075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130144968, 34.212821748], [139.130046135, 34.212792333], [139.130110999, 34.212862306], [139.130144968, 34.212821748]]]}}, {"id": "36076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816939442, 33.944217775], [138.816944163, 33.944360829], [138.816977224, 33.944314721], [138.816939442, 33.944217775]]]}}, {"id": "36077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12953061, 34.212326081], [139.129547808, 34.212230532], [139.129477665, 34.212247495], [139.12953061, 34.212326081]]]}}, {"id": "36078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816305006, 33.947445279], [138.816204449, 33.947483892], [138.816317782, 33.947500829], [138.816305006, 33.947445279]]]}}, {"id": "36079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120960999, 34.196654811], [139.12090061, 34.196713604], [139.1209938, 34.19667682], [139.120960999, 34.196654811]]]}}, {"id": "36080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130894332, 34.213551081], [139.13078917, 34.213551586], [139.130853528, 34.213604775], [139.130894332, 34.213551081]]]}}, {"id": "36081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136089728, 34.242020829], [139.136127782, 34.241953054], [139.136078612, 34.241968333], [139.136089728, 34.242020829]]]}}, {"id": "36082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.156922776, 34.239245279], [139.156835837, 34.239307775], [139.156939442, 34.239283054], [139.156922776, 34.239245279]]]}}, {"id": "36083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138057471, 34.242283973], [139.138049053, 34.242184495], [139.13799, 34.242263946], [139.138057471, 34.242283973]]]}}, {"id": "36084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17079144, 34.231274027], [139.170671855, 34.231282135], [139.170785525, 34.231309333], [139.17079144, 34.231274027]]]}}, {"id": "36085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140908106, 34.243558495], [139.140822218, 34.243613559], [139.140864449, 34.243643721], [139.140908106, 34.243558495]]]}}, {"id": "36086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128325642, 34.222625919], [139.128372477, 34.222711387], [139.128389948, 34.222672559], [139.128325642, 34.222625919]]]}}, {"id": "36087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816879728, 33.943626108], [138.816846394, 33.943710279], [138.816981388, 33.943728333], [138.816879728, 33.943626108]]]}}, {"id": "36088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170648612, 34.231050135], [139.170644747, 34.231139892], [139.170718444, 34.231100441], [139.170648612, 34.231050135]]]}}, {"id": "36089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130449974, 34.215834108], [139.130339637, 34.215764054], [139.130400947, 34.215869694], [139.130449974, 34.215834108]]]}}, {"id": "36090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127842776, 34.222634721], [139.127807224, 34.222557225], [139.127782503, 34.222620279], [139.127842776, 34.222634721]]]}}, {"id": "36091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148731089, 34.196761081], [139.148642387, 34.196739306], [139.148670506, 34.196833775], [139.148731089, 34.196761081]]]}}, {"id": "36092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124438988, 34.189318532], [139.124385979, 34.189107081], [139.124359027, 34.189164532], [139.124438988, 34.189318532]]]}}, {"id": "36093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1327907, 34.186184865], [139.132853865, 34.186258532], [139.132880636, 34.186222441], [139.1327907, 34.186184865]]]}}, {"id": "36094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175847756, 34.208305775], [139.175784669, 34.208213495], [139.175758275, 34.208244081], [139.175847756, 34.208305775]]]}}, {"id": "36095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129061608, 34.183001613], [139.129014086, 34.183069613], [139.129083891, 34.183050802], [139.129061608, 34.183001613]]]}}, {"id": "36096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.153402503, 34.193071892], [139.153335642, 34.193008387], [139.153334137, 34.193046252], [139.153402503, 34.193071892]]]}}, {"id": "36097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127576109, 34.222730802], [139.127613554, 34.222639667], [139.127542387, 34.222674252], [139.127576109, 34.222730802]]]}}, {"id": "36098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.067924163, 34.183763613], [139.067894449, 34.183836108], [139.067943061, 34.183829441], [139.067924163, 34.183763613]]]}}, {"id": "36099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128751803, 34.182579721], [139.128793476, 34.182501054], [139.128725668, 34.182529441], [139.128751803, 34.182579721]]]}}, {"id": "36100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171828029, 34.229543387], [139.171862555, 34.229623559], [139.171907717, 34.229593225], [139.171828029, 34.229543387]]]}}, {"id": "36101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134452555, 34.231836198], [139.134412776, 34.231893865], [139.134486861, 34.231888414], [139.134452555, 34.231836198]]]}}, {"id": "36102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146922361, 34.242790946], [139.146852529, 34.24276864], [139.146869364, 34.242835892], [139.146922361, 34.242790946]]]}}, {"id": "36103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174830363, 34.214574532], [139.174824527, 34.214502468], [139.174773774, 34.21452564], [139.174830363, 34.214574532]]]}}, {"id": "36104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119660311, 34.19363936], [139.119695564, 34.193716919], [139.119720428, 34.193650613], [139.119660311, 34.19363936]]]}}, {"id": "36105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162187691, 34.236546829], [139.162092412, 34.236558946], [139.162145525, 34.236594919], [139.162187691, 34.236546829]]]}}, {"id": "36106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119750947, 34.19372373], [139.119837341, 34.193630198], [139.119778677, 34.193627063], [139.119750947, 34.19372373]]]}}, {"id": "36107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131705227, 34.233225054], [139.131723671, 34.23314836], [139.131676472, 34.233183495], [139.131705227, 34.233225054]]]}}, {"id": "36108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136245383, 34.229295162], [139.136177004, 34.229336252], [139.136257562, 34.229348054], [139.136245383, 34.229295162]]]}}, {"id": "36109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174890661, 34.210214054], [139.174854669, 34.21029436], [139.174914034, 34.210235919], [139.174890661, 34.210214054]]]}}, {"id": "36110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.816744721, 33.944375], [138.816818885, 33.944340559], [138.816756939, 33.944300279], [138.816744721, 33.944375]]]}}, {"id": "36111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128956226, 34.183502829], [139.129008444, 34.183395829], [139.129005279, 34.183346495], [139.128930337, 34.183381973], [139.128956226, 34.183502829]]]}}, {"id": "36112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131480272, 34.233902495], [139.131530558, 34.233848054], [139.131481946, 34.233839162], [139.131480272, 34.233902495]]]}}, {"id": "36113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070406939, 34.181945559], [139.070471946, 34.182004162], [139.070480272, 34.181985], [139.070406939, 34.181945559]]]}}, {"id": "36114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134756744, 34.227111387], [139.134827951, 34.227084027], [139.134792776, 34.227044973], [139.134756744, 34.227111387]]]}}, {"id": "36115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1306493, 34.212870892], [139.130563139, 34.212831468], [139.130578301, 34.212897532], [139.1306493, 34.212870892]]]}}, {"id": "36116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12103607, 34.196114036], [139.120975123, 34.196084928], [139.120998444, 34.196164036], [139.12103607, 34.196114036]]]}}, {"id": "36117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146672387, 34.195796973], [139.146641971, 34.195718721], [139.146613061, 34.195780694], [139.146672387, 34.195796973]]]}}, {"id": "36118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119809844, 34.194602198], [139.11986738, 34.194674838], [139.11985096, 34.194589901], [139.119809844, 34.194602198]]]}}, {"id": "36119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128792218, 34.222876721], [139.128664332, 34.222892027], [139.12876834, 34.222929414], [139.128792218, 34.222876721]]]}}, {"id": "36120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141586252, 34.24457336], [139.141581089, 34.244633721], [139.141646355, 34.244604441], [139.141586252, 34.24457336]]]}}, {"id": "36121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147334916, 34.191920414], [139.147282503, 34.191961694], [139.147322503, 34.191967775], [139.147334916, 34.191920414]]]}}, {"id": "36122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.071177224, 34.182332225], [139.071218054, 34.182386667], [139.07125083, 34.182334162], [139.071177224, 34.182332225]]]}}, {"id": "36123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.125236978, 34.187614748], [139.125179442, 34.187605946], [139.125187367, 34.187708495], [139.125236978, 34.187614748]]]}}, {"id": "36124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136446744, 34.240098919], [139.136354553, 34.240074054], [139.136342335, 34.240110586], [139.136446744, 34.240098919]]]}}, {"id": "36125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.183077497, 34.222848333], [139.183066939, 34.222913613], [139.183121388, 34.222862495], [139.183077497, 34.222848333]]]}}, {"id": "36126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136463865, 34.230260721], [139.136401167, 34.230323387], [139.136437691, 34.230340441], [139.136463865, 34.230260721]]]}}, {"id": "36127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128940973, 34.222998829], [139.12884808, 34.223062865], [139.1289507, 34.223018802], [139.128940973, 34.222998829]]]}}, {"id": "36128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120300545, 34.19540618], [139.120284449, 34.195333604], [139.12027323, 34.195389883], [139.120300545, 34.19540618]]]}}, {"id": "36129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142456641, 34.243624225], [139.142394358, 34.243646865], [139.142429559, 34.243697279], [139.142456641, 34.243624225]]]}}, {"id": "36130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175383995, 34.209290333], [139.17533297, 34.209336865], [139.175402944, 34.209308829], [139.175383995, 34.209290333]]]}}, {"id": "36131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148662438, 34.196689468], [139.148590143, 34.196681135], [139.148581505, 34.196704441], [139.148662438, 34.196689468]]]}}, {"id": "36132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170769857, 34.231175387], [139.170793061, 34.231235], [139.170826667, 34.231210829], [139.170769857, 34.231175387]]]}}, {"id": "36133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177755837, 34.210304135], [139.177667562, 34.210242721], [139.177736719, 34.210347306], [139.177755837, 34.210304135]]]}}, {"id": "36134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.178810337, 34.207819], [139.178728301, 34.207761694], [139.178784695, 34.207835559], [139.178810337, 34.207819]]]}}, {"id": "36135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120127328, 34.192073523], [139.120105227, 34.192148225], [139.120158664, 34.192101748], [139.120127328, 34.192073523]]]}}, {"id": "36136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141354812, 34.187492414], [139.141298638, 34.187542225], [139.141320532, 34.187571919], [139.141354812, 34.187492414]]]}}, {"id": "36137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127799442, 34.222524162], [139.127718521, 34.222505306], [139.127787977, 34.22254764], [139.127799442, 34.222524162]]]}}, {"id": "36138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.123414501, 34.188775811], [139.123388275, 34.188836784], [139.123428768, 34.188833144], [139.123414501, 34.188775811]]]}}, {"id": "36139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174898249, 34.215696162], [139.174887834, 34.215782468], [139.174923606, 34.215784919], [139.174898249, 34.215696162]]]}}, {"id": "36140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128412555, 34.201257081], [139.128487912, 34.20126264], [139.12847642, 34.201223198], [139.128412555, 34.201257081]]]}}, {"id": "36141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163953411, 34.235561694], [139.163953333, 34.235638865], [139.163984669, 34.235560613], [139.163953411, 34.235561694]]]}}, {"id": "36142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.159930558, 34.237403054], [139.159997224, 34.237444162], [139.159978885, 34.237391667], [139.159930558, 34.237403054]]]}}, {"id": "36143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143228975, 34.244475775], [139.143306304, 34.244401919], [139.143188975, 34.244439306], [139.143228975, 34.244475775]]]}}, {"id": "36144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136049754, 34.185725135], [139.13599572, 34.185751613], [139.136018521, 34.185776802], [139.136049754, 34.185725135]]]}}, {"id": "36145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173799339, 34.213049027], [139.173773554, 34.213127135], [139.173812309, 34.213125279], [139.173799339, 34.213049027]]]}}, {"id": "36146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141387691, 34.24387136], [139.141372555, 34.243941586], [139.141424838, 34.243907441], [139.141387691, 34.24387136]]]}}, {"id": "36147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130741725, 34.214835387], [139.130638638, 34.214834721], [139.130639585, 34.214865279], [139.130741725, 34.214835387]]]}}, {"id": "36148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162591777, 34.207102468], [139.162514695, 34.207079306], [139.162570895, 34.207137333], [139.162591777, 34.207102468]]]}}, {"id": "36149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137202309, 34.239807414], [139.137185084, 34.239749532], [139.137158275, 34.239789495], [139.137202309, 34.239807414]]]}}, {"id": "36150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148603943, 34.240557892], [139.148676226, 34.240612279], [139.148613606, 34.240530252], [139.148603943, 34.240557892]]]}}, {"id": "36151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140418301, 34.185488613], [139.140405863, 34.185378387], [139.140383165, 34.18552764], [139.140418301, 34.185488613]]]}}, {"id": "36152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132243645, 34.185037919], [139.13228297, 34.18510964], [139.132296615, 34.185060748], [139.132243645, 34.185037919]]]}}, {"id": "36153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138824137, 34.245123279], [139.13874939, 34.245142613], [139.138851089, 34.245144973], [139.138824137, 34.245123279]]]}}, {"id": "36154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13864594, 34.242033892], [139.138610921, 34.242111135], [139.138692283, 34.242026306], [139.13864594, 34.242033892]]]}}, {"id": "36155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.158339922, 34.237788162], [139.158416887, 34.237773441], [139.158404578, 34.237750946], [139.158339922, 34.237788162]]]}}, {"id": "36156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128850506, 34.184397108], [139.128814553, 34.184349586], [139.128806252, 34.184424198], [139.128850506, 34.184397108]]]}}, {"id": "36157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129587198, 34.20134236], [139.129645772, 34.201304829], [139.129574423, 34.201313973], [139.129587198, 34.20134236]]]}}, {"id": "36158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148213917, 34.19174936], [139.14817131, 34.191758946], [139.148201388, 34.191768748], [139.148213917, 34.19174936]]]}}, {"id": "36159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121291336, 34.198145306], [139.121265824, 34.198095216], [139.121244851, 34.198124477], [139.121291336, 34.198145306]]]}}, {"id": "36160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119367782, 34.193986775], [139.119400804, 34.194055135], [139.119418807, 34.194021748], [139.119367782, 34.193986775]]]}}, {"id": "36161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131231388, 34.223458135], [139.131258885, 34.223529252], [139.131272724, 34.223498586], [139.131231388, 34.223458135]]]}}, {"id": "36162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130468171, 34.234588162], [139.130525863, 34.234632027], [139.130537419, 34.234600198], [139.130468171, 34.234588162]]]}}, {"id": "36163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132347977, 34.185419532], [139.132287276, 34.185373559], [139.132260415, 34.185370973], [139.132281673, 34.185436721], [139.132347977, 34.185419532]]]}}, {"id": "36164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.161821582, 34.236680054], [139.161856252, 34.236716414], [139.161874747, 34.236668198], [139.161821582, 34.236680054]]]}}, {"id": "36165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171255525, 34.227786667], [139.171271777, 34.227832198], [139.171307691, 34.227818694], [139.171255525, 34.227786667]]]}}, {"id": "36166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136347756, 34.229455333], [139.136274721, 34.229464559], [139.136337717, 34.229485559], [139.136347756, 34.229455333]]]}}, {"id": "36167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145003385, 34.242771892], [139.145080078, 34.242767441], [139.145012607, 34.242748027], [139.145003385, 34.242771892]]]}}, {"id": "36168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174011777, 34.218000694], [139.174066861, 34.217908306], [139.173982529, 34.217966532], [139.174011777, 34.218000694]]]}}, {"id": "36169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130387639, 34.215577532], [139.130349922, 34.215637], [139.130389079, 34.215639198], [139.130387639, 34.215577532]]]}}, {"id": "36170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130441505, 34.234686829], [139.130512607, 34.234700946], [139.130490856, 34.234664027], [139.130441505, 34.234686829]]]}}, {"id": "36171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14452214, 34.243693198], [139.144531725, 34.243755532], [139.144567808, 34.243737], [139.14452214, 34.243693198]]]}}, {"id": "36172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127887173, 34.187040387], [139.127935422, 34.186994054], [139.127923333, 34.186985252], [139.127887173, 34.187040387]]]}}, {"id": "36173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.16427834, 34.235557613], [139.164324669, 34.235614586], [139.164324942, 34.23556436], [139.16427834, 34.235557613]]]}}, {"id": "36174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175434384, 34.209243279], [139.175386835, 34.209206694], [139.175393606, 34.209268225], [139.175434384, 34.209243279]]]}}, {"id": "36175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127563061, 34.200863532], [139.127631556, 34.200886279], [139.127610052, 34.200835748], [139.127563061, 34.200863532]]]}}, {"id": "36176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.119584968, 34.193940045], [139.119638911, 34.19393864], [139.119623839, 34.19388545], [139.119584968, 34.193940045]]]}}, {"id": "36177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.164240117, 34.23580664], [139.16425083, 34.235745279], [139.164211673, 34.235770559], [139.164240117, 34.23580664]]]}}, {"id": "36178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121158223, 34.196503595], [139.12108952, 34.196519153], [139.121159585, 34.196535243], [139.121158223, 34.196503595]]]}}, {"id": "36179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174299494, 34.215226027], [139.174271219, 34.215276559], [139.174317276, 34.215253892], [139.174299494, 34.215226027]]]}}, {"id": "36180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174879442, 34.215785946], [139.174836913, 34.215826559], [139.174887367, 34.215826919], [139.174879442, 34.215785946]]]}}, {"id": "36181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131907977, 34.23343564], [139.131967302, 34.233441667], [139.131913256, 34.233388892], [139.131907977, 34.23343564]]]}}, {"id": "36182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124373411, 34.189092036], [139.124371881, 34.188976541], [139.124353359, 34.188959838], [139.124373411, 34.189092036]]]}}, {"id": "36183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127577108, 34.18408336], [139.127577419, 34.184152694], [139.127622776, 34.184110027], [139.127577108, 34.18408336]]]}}, {"id": "36184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.126757224, 34.200599054], [139.126745058, 34.200639198], [139.126805188, 34.200636387], [139.126757224, 34.200599054]]]}}, {"id": "36185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13475572, 34.231810441], [139.134723943, 34.231766613], [139.134702244, 34.231817162], [139.13475572, 34.231810441]]]}}, {"id": "36186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127866667, 34.223153892], [139.127813606, 34.223131667], [139.127817224, 34.223161108], [139.127866667, 34.223153892]]]}}, {"id": "36187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131259079, 34.185356414], [139.131213671, 34.185392387], [139.13127297, 34.185409225], [139.131259079, 34.185356414]]]}}, {"id": "36188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121137873, 34.196627171], [139.12107677, 34.19661582], [139.121105642, 34.196666649], [139.121137873, 34.196627171]]]}}, {"id": "36189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148950558, 34.196603], [139.148887445, 34.196613748], [139.148900947, 34.196633829], [139.148950558, 34.196603]]]}}, {"id": "36190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12849083, 34.222378054], [139.12844834, 34.222425027], [139.128478223, 34.222472919], [139.12849083, 34.222378054]]]}}, {"id": "36191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.164317173, 34.23545036], [139.16430847, 34.235505586], [139.164349222, 34.235473441], [139.164317173, 34.23545036]]]}}, {"id": "36192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134876252, 34.231922919], [139.134888885, 34.231850495], [139.134859144, 34.231918946], [139.134876252, 34.231922919]]]}}, {"id": "36193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173683606, 34.213150387], [139.173729144, 34.213198495], [139.173708171, 34.213146], [139.173683606, 34.213150387]]]}}, {"id": "36194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.155905837, 34.195176946], [139.155857782, 34.195141387], [139.155843333, 34.195161946], [139.155905837, 34.195176946]]]}}, {"id": "36195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127973385, 34.20089464], [139.128046278, 34.200899946], [139.128009974, 34.200868721], [139.127973385, 34.20089464]]]}}, {"id": "36196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.150863307, 34.193577892], [139.150793191, 34.193566495], [139.150849611, 34.193593135], [139.150863307, 34.193577892]]]}}, {"id": "36197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.178839922, 34.207796441], [139.178888911, 34.207829441], [139.17889083, 34.207793748], [139.178839922, 34.207796441]]]}}, {"id": "36198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136243917, 34.229212586], [139.13617978, 34.229236108], [139.136221556, 34.229252559], [139.136243917, 34.229212586]]]}}, {"id": "36199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124530208, 34.189581505], [139.124480506, 34.189479432], [139.124522983, 34.189589396], [139.124530208, 34.189581505]]]}}, {"id": "36200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170980532, 34.229264919], [139.170997886, 34.229318225], [139.171019144, 34.22929336], [139.170980532, 34.229264919]]]}}, {"id": "36201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143753943, 34.243745586], [139.143814112, 34.243770252], [139.143826252, 34.243747252], [139.143753943, 34.243745586]]]}}, {"id": "36202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13225594, 34.185450441], [139.132281556, 34.185528054], [139.132314163, 34.185534279], [139.13225594, 34.185450441]]]}}, {"id": "36203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121010636, 34.196455495], [139.120977912, 34.196398234], [139.120980739, 34.196474883], [139.121010636, 34.196455495]]]}}, {"id": "36204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129977588, 34.214420721], [139.12994511, 34.21439836], [139.129909533, 34.214459279], [139.129977588, 34.214420721]]]}}, {"id": "36205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.178691894, 34.207742], [139.178690441, 34.207802586], [139.178718833, 34.207791829], [139.178691894, 34.207742]]]}}, {"id": "36206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163074254, 34.207263054], [139.163112192, 34.207311135], [139.163128586, 34.207283198], [139.163074254, 34.207263054]]]}}, {"id": "36207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121430143, 34.198102387], [139.121363035, 34.198096225], [139.12146214, 34.198116459], [139.121430143, 34.198102387]]]}}, {"id": "36208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.164435551, 34.235784162], [139.164420272, 34.23573], [139.164380558, 34.235765829], [139.164435551, 34.235784162]]]}}, {"id": "36209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.124224604, 34.189397532], [139.124181868, 34.18940909], [139.124217782, 34.189460333], [139.124224604, 34.189397532]]]}}, {"id": "36210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.16788192, 34.233986135], [139.167850272, 34.234032586], [139.167890999, 34.234018559], [139.16788192, 34.233986135]]]}}, {"id": "36211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.158461025, 34.237697973], [139.158516667, 34.237701973], [139.158519585, 34.237664306], [139.158461025, 34.237697973]]]}}, {"id": "36212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130835357, 34.216434333], [139.1308307, 34.216486586], [139.13087153, 34.216467892], [139.130835357, 34.216434333]]]}}, {"id": "36213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170506641, 34.230577919], [139.170516278, 34.230636306], [139.170533696, 34.230617667], [139.170506641, 34.230577919]]]}}, {"id": "36214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146585253, 34.191059279], [139.146507393, 34.191000892], [139.146572218, 34.19107264], [139.146585253, 34.191059279]]]}}, {"id": "36215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136323748, 34.229098694], [139.136266031, 34.229108829], [139.136284449, 34.229139586], [139.136323748, 34.229098694]]]}}, {"id": "36216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128226161, 34.200967694], [139.128279883, 34.200990721], [139.128249754, 34.200962225], [139.128226161, 34.200967694]]]}}, {"id": "36217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175307691, 34.217279], [139.175266641, 34.217266865], [139.17529153, 34.217332], [139.175307691, 34.217279]]]}}, {"id": "36218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140996744, 34.243539892], [139.140947173, 34.243535829], [139.140949364, 34.243560279], [139.140996744, 34.243539892]]]}}, {"id": "36219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128723502, 34.182594613], [139.128668911, 34.182596108], [139.1286838, 34.182619441], [139.128723502, 34.182594613]]]}}, {"id": "36220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131153061, 34.234073865], [139.131212192, 34.234049333], [139.131177497, 34.234031559], [139.131153061, 34.234073865]]]}}, {"id": "36221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148933645, 34.19649364], [139.148891894, 34.196452027], [139.148885888, 34.196508775], [139.148933645, 34.19649364]]]}}, {"id": "36222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14864358, 34.240406721], [139.148644423, 34.24045164], [139.148682335, 34.240435892], [139.14864358, 34.240406721]]]}}, {"id": "36223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146505447, 34.242343775], [139.146536005, 34.242390721], [139.146552283, 34.242350802], [139.146505447, 34.242343775]]]}}, {"id": "36224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171030895, 34.229166198], [139.171099585, 34.229142333], [139.171030441, 34.229155387], [139.171030895, 34.229166198]]]}}, {"id": "36225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130381725, 34.21360936], [139.130342944, 34.213640694], [139.130374527, 34.213666946], [139.130381725, 34.21360936]]]}}, {"id": "36226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147012361, 34.191104225], [139.146969339, 34.191137892], [139.146994449, 34.191144333], [139.147012361, 34.191104225]]]}}, {"id": "36227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128123995, 34.200988198], [139.128167613, 34.200975108], [139.128145447, 34.200964694], [139.128123995, 34.200988198]]]}}, {"id": "36228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.121430597, 34.19715755], [139.121371997, 34.197146658], [139.121398521, 34.197179721], [139.121430597, 34.19715755]]]}}, {"id": "36229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144210584, 34.244529], [139.144213865, 34.244580135], [139.144237328, 34.244536], [139.144210584, 34.244529]]]}}, {"id": "36230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170430973, 34.230898387], [139.170440804, 34.230945694], [139.170444669, 34.230896919], [139.170430973, 34.230898387]]]}}, {"id": "36231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.155703307, 34.195105468], [139.155656978, 34.195133892], [139.155711388, 34.195125721], [139.155703307, 34.195105468]]]}}, {"id": "36232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170454086, 34.231354892], [139.170447977, 34.231401279], [139.170478859, 34.231380081], [139.170454086, 34.231354892]]]}}, {"id": "36233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147291336, 34.242956198], [139.147256667, 34.242934613], [139.147281388, 34.242963532], [139.147291336, 34.242956198]]]}}, {"id": "36234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171233722, 34.227688559], [139.17125917, 34.227724306], [139.171280752, 34.227710279], [139.171233722, 34.227688559]]]}}, {"id": "36235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130342192, 34.215967108], [139.130402438, 34.215990252], [139.130414916, 34.215976162], [139.130342192, 34.215967108]]]}}, {"id": "36236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.175786278, 34.216179306], [139.175773748, 34.216129829], [139.17575917, 34.216162225], [139.175786278, 34.216179306]]]}}, {"id": "36237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148097393, 34.196779559], [139.148044527, 34.196795667], [139.148095499, 34.196801], [139.148097393, 34.196779559]]]}}, {"id": "36238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.126942244, 34.200687946], [139.126961582, 34.200725198], [139.126984475, 34.200685829], [139.126942244, 34.200687946]]]}}, {"id": "36239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130475162, 34.215464892], [139.130433476, 34.215493225], [139.130445811, 34.215513387], [139.130475162, 34.215464892]]]}}, {"id": "36240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120142477, 34.193689225], [139.120173281, 34.193728892], [139.120183463, 34.193706045], [139.120142477, 34.193689225]]]}}, {"id": "36241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127648145, 34.200838135], [139.12768978, 34.200852441], [139.127698366, 34.20082564], [139.127648145, 34.200838135]]]}}, {"id": "36242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137768781, 34.244450252], [139.137818716, 34.244462135], [139.137788781, 34.244433865], [139.137768781, 34.244450252]]]}}, {"id": "36243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147445577, 34.243066306], [139.147396667, 34.243084892], [139.147454721, 34.243115225], [139.147445577, 34.243066306]]]}}, {"id": "36244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130072724, 34.212936919], [139.130040195, 34.212958387], [139.130066161, 34.212965468], [139.130072724, 34.212936919]]]}}, {"id": "36245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136503917, 34.225344], [139.136533087, 34.225387721], [139.136536083, 34.225353198], [139.136503917, 34.225344]]]}}, {"id": "36246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.155359196, 34.194979054], [139.155326109, 34.195015748], [139.155362192, 34.195009559], [139.155359196, 34.194979054]]]}}, {"id": "36247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141736861, 34.243773892], [139.14176214, 34.243788919], [139.141771193, 34.243731694], [139.141736861, 34.243773892]]]}}, {"id": "36248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130121115, 34.20137236], [139.130107665, 34.201333532], [139.130089053, 34.201353973], [139.130121115, 34.20137236]]]}}, {"id": "36249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127699689, 34.222341865], [139.127726005, 34.222299279], [139.127705914, 34.222288775], [139.127699689, 34.222341865]]]}}, {"id": "36250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146485006, 34.242280081], [139.146469248, 34.242323721], [139.146496446, 34.242314333], [139.146485006, 34.242280081]]]}}, {"id": "36251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136493671, 34.228435306], [139.136498911, 34.228481946], [139.136515422, 34.228454721], [139.136493671, 34.228435306]]]}}, {"id": "36252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162998275, 34.207130279], [139.16302703, 34.207156946], [139.163052633, 34.207142829], [139.162998275, 34.207130279]]]}}, {"id": "36253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146471803, 34.242382], [139.146461193, 34.242418892], [139.146513502, 34.242394829], [139.146471803, 34.242382]]]}}, {"id": "36254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127677639, 34.200892586], [139.127723113, 34.200875802], [139.127689494, 34.20086064], [139.127677639, 34.200892586]]]}}, {"id": "36255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170784163, 34.229929495], [139.170724449, 34.229932135], [139.170720726, 34.229949333], [139.170784163, 34.229929495]]]}}, {"id": "36256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148384501, 34.240589667], [139.148362166, 34.240624252], [139.148414358, 34.240602532], [139.148384501, 34.240589667]]]}}, {"id": "36257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170558859, 34.231353108], [139.170587393, 34.23138264], [139.170598301, 34.231362532], [139.170558859, 34.231353108]]]}}, {"id": "36258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130943606, 34.218950946], [139.130971245, 34.21898336], [139.130978106, 34.218953198], [139.130943606, 34.218950946]]]}}, {"id": "36259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141150272, 34.243949279], [139.141188949, 34.243959027], [139.141183476, 34.243926559], [139.141150272, 34.243949279]]]}}, {"id": "36260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148482996, 34.240545027], [139.148450143, 34.240567306], [139.148488949, 34.240573387], [139.148482996, 34.240545027]]]}}, {"id": "36261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127462776, 34.200841054], [139.12751725, 34.200828748], [139.127482607, 34.200817721], [139.127462776, 34.200841054]]]}}, {"id": "36262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148466031, 34.240630586], [139.148469831, 34.240669919], [139.1484893, 34.240664802], [139.148466031, 34.240630586]]]}}, {"id": "36263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177593113, 34.209176135], [139.177623528, 34.209202], [139.177630337, 34.209162081], [139.177593113, 34.209176135]]]}}, {"id": "36264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139318275, 34.243647252], [139.139267717, 34.243668495], [139.13928275, 34.243690333], [139.139318275, 34.243647252]]]}}, {"id": "36265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128326719, 34.222548586], [139.128379831, 34.222544468], [139.128367523, 34.222524108], [139.128326719, 34.222548586]]]}}, {"id": "36266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163057691, 34.207354198], [139.163024527, 34.207375306], [139.163068003, 34.207380865], [139.163057691, 34.207354198]]]}}, {"id": "36267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171890895, 34.219571054], [139.171920078, 34.219611333], [139.17193061, 34.219599775], [139.171890895, 34.219571054]]]}}, {"id": "36268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127222944, 34.186890162], [139.127191751, 34.186912973], [139.127217717, 34.186920252], [139.127222944, 34.186890162]]]}}, {"id": "36269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137963554, 34.244435306], [139.137973917, 34.24440336], [139.137949144, 34.244420532], [139.137963554, 34.244435306]]]}}, {"id": "36270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137603307, 34.244439198], [139.137630363, 34.244411865], [139.137599689, 34.24441764], [139.137603307, 34.244439198]]]}}, {"id": "36271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17540572, 34.217038532], [139.175400415, 34.217078532], [139.175418521, 34.21706664], [139.17540572, 34.217038532]]]}}, {"id": "36272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141364332, 34.187800081], [139.141324423, 34.187810865], [139.141348275, 34.187827225], [139.141364332, 34.187800081]]]}}, {"id": "36273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.16196655, 34.236742973], [139.162008275, 34.236736802], [139.161970311, 34.236733532], [139.16196655, 34.236742973]]]}}, {"id": "36274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.068203333, 34.184030279], [139.068234163, 34.184067225], [139.068247224, 34.184046946], [139.068203333, 34.184030279]]]}}, {"id": "36275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146659754, 34.192002108], [139.146703165, 34.191998306], [139.146699948, 34.191982135], [139.146659754, 34.192002108]]]}}, {"id": "36276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.161571284, 34.236664279], [139.161611115, 34.236677027], [139.161593722, 34.236653225], [139.161571284, 34.236664279]]]}}, {"id": "36277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.120860506, 34.190130216], [139.120884708, 34.190155694], [139.120894397, 34.19012564], [139.120860506, 34.190130216]]]}}, {"id": "36278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170746641, 34.229870946], [139.170771556, 34.229905532], [139.170777717, 34.229891775], [139.170746641, 34.229870946]]]}}, {"id": "36279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171781362, 34.219644667], [139.171817782, 34.219648108], [139.171802724, 34.219632532], [139.171781362, 34.219644667]]]}}, {"id": "36280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137281219, 34.242103775], [139.137294358, 34.242141721], [139.137300532, 34.242104252], [139.137281219, 34.242103775]]]}}, {"id": "36281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137891803, 34.244407468], [139.137913995, 34.244377414], [139.137880363, 34.244389027], [139.137891803, 34.244407468]]]}}, {"id": "36282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144394812, 34.243465279], [139.144364358, 34.243429225], [139.144363191, 34.243454721], [139.144394812, 34.243465279]]]}}, {"id": "36283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171149974, 34.229178468], [139.171169144, 34.229155865], [139.171132776, 34.229158559], [139.171149974, 34.229178468]]]}}, {"id": "36284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130536589, 34.215792667], [139.130562698, 34.215823586], [139.13055808, 34.215793162], [139.130536589, 34.215792667]]]}}, {"id": "36285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146879494, 34.191994973], [139.146909416, 34.192011532], [139.146896835, 34.191985775], [139.146879494, 34.191994973]]]}}, {"id": "36286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174085136, 34.217873865], [139.174062166, 34.217856802], [139.174047367, 34.217892414], [139.174085136, 34.217873865]]]}}, {"id": "36287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144349364, 34.243510919], [139.144345642, 34.243543892], [139.144385032, 34.243518414], [139.144349364, 34.243510919]]]}}, {"id": "36288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141943113, 34.243973586], [139.14197131, 34.243967054], [139.14196917, 34.243935135], [139.141943113, 34.243973586]]]}}, {"id": "36289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132257588, 34.185319387], [139.132261556, 34.185351306], [139.132277302, 34.18533364], [139.132257588, 34.185319387]]]}}, {"id": "36290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137641803, 34.244510721], [139.13766642, 34.244487333], [139.137639663, 34.244492694], [139.137641803, 34.244510721]]]}}, {"id": "36291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130433865, 34.215553081], [139.130448171, 34.215580225], [139.130461115, 34.215550279], [139.130433865, 34.215553081]]]}}, {"id": "36292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130287588, 34.215575865], [139.130285447, 34.21561236], [139.130300804, 34.215605775], [139.130287588, 34.215575865]]]}}, {"id": "36293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.161523722, 34.236718279], [139.161548975, 34.236740414], [139.161551193, 34.236719532], [139.161523722, 34.236718279]]]}}, {"id": "36294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127924501, 34.18688364], [139.127922581, 34.186916919], [139.127943385, 34.18690936], [139.127924501, 34.18688364]]]}}, {"id": "36295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170438716, 34.230781306], [139.170466083, 34.230794162], [139.170462866, 34.230777225], [139.170438716, 34.230781306]]]}}, {"id": "36296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130407613, 34.215956748], [139.130424228, 34.215930252], [139.130392892, 34.215950081], [139.130407613, 34.215956748]]]}}, {"id": "36297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130483476, 34.215823198], [139.130501089, 34.215806441], [139.1304793, 34.215817135], [139.130483476, 34.215823198]]]}}, {"id": "36298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143013774, 34.245884865], [139.143043891, 34.245883054], [139.143022361, 34.245871946], [139.143013774, 34.245884865]]]}}, {"id": "36299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143031634, 34.245852694], [139.143046524, 34.245825559], [139.143028366, 34.245842667], [139.143031634, 34.245852694]]]}}, {"id": "36300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.156867834, 34.197727441], [139.156874578, 34.197751919], [139.156888392, 34.197736586], [139.156867834, 34.197727441]]]}}, {"id": "36301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137667367, 34.244467865], [139.137674812, 34.244447279], [139.137655811, 34.244458613], [139.137667367, 34.244467865]]]}}, {"id": "36302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "神津島村", "N03_005": null, "N03_007": "13364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.170423917, 34.231287108], [139.170440506, 34.231304225], [139.170440921, 34.231290532], [139.170423917, 34.231287108]]]}}, {"id": "36303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.531804553, 34.046920162], [139.481367613, 34.052046748], [139.472873476, 34.076579054], [139.492584384, 34.119537532], [139.53200083, 34.125560108], [139.559474086, 34.111711865], [139.563032244, 34.068854468], [139.531804553, 34.046920162]]]}}, {"id": "36304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.383371115, 34.04832], [139.384601673, 34.049238054], [139.38480917, 34.048296667], [139.383371115, 34.04832]]]}}, {"id": "36305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384826109, 34.045308333], [139.385841946, 34.045603054], [139.386186394, 34.045106667], [139.384826109, 34.045308333]]]}}, {"id": "36306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.379938885, 34.046915829], [139.38012083, 34.045932495], [139.379347497, 34.046321946], [139.379938885, 34.046915829]]]}}, {"id": "36307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477809144, 34.066854495], [139.477613217, 34.065571198], [139.477505746, 34.06684064], [139.477809144, 34.066854495]]]}}, {"id": "36308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.378211673, 34.045764441], [139.379008612, 34.045459441], [139.377992503, 34.045481946], [139.378211673, 34.045764441]]]}}, {"id": "36309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.501674449, 34.044800829], [139.501139728, 34.044399441], [139.501565006, 34.044871667], [139.501674449, 34.044800829]]]}}, {"id": "36310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.549746589, 34.057860748], [139.549529922, 34.057283802], [139.549252698, 34.057385748], [139.549746589, 34.057860748]]]}}, {"id": "36311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.519085551, 34.124333613], [139.51893834, 34.123801667], [139.518901673, 34.124372225], [139.519085551, 34.124333613]]]}}, {"id": "36312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.385625279, 34.047498054], [139.385774449, 34.047160279], [139.385430558, 34.047487775], [139.385625279, 34.047498054]]]}}, {"id": "36313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.381842776, 34.048298892], [139.382271946, 34.048550279], [139.382583606, 34.048445], [139.381842776, 34.048298892]]]}}, {"id": "36314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480475953, 34.056772658], [139.480488988, 34.056438072], [139.480250402, 34.056726847], [139.480475953, 34.056772658]]]}}, {"id": "36315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476165279, 34.080296108], [139.475844449, 34.080142775], [139.475932218, 34.080407495], [139.476165279, 34.080296108]]]}}, {"id": "36316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384396939, 34.044366667], [139.384605006, 34.044130279], [139.384436667, 34.044017775], [139.384396939, 34.044366667]]]}}, {"id": "36317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384790558, 34.046589721], [139.385001388, 34.046306387], [139.38468083, 34.046570279], [139.384790558, 34.046589721]]]}}, {"id": "36318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476642776, 34.072228054], [139.47685834, 34.072004441], [139.476669442, 34.071968054], [139.476642776, 34.072228054]]]}}, {"id": "36319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477475837, 34.062104441], [139.477206394, 34.062037225], [139.477357782, 34.062161946], [139.477475837, 34.062104441]]]}}, {"id": "36320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.379703891, 34.045606667], [139.379708612, 34.045385279], [139.379559442, 34.045568054], [139.379703891, 34.045606667]]]}}, {"id": "36321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.539414553, 34.053759829], [139.539402918, 34.053523721], [139.539331245, 34.053568721], [139.539414553, 34.053759829]]]}}, {"id": "36322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.379287224, 34.045931667], [139.379497224, 34.045966108], [139.379506939, 34.045903613], [139.379287224, 34.045931667]]]}}, {"id": "36323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480290272, 34.053861387], [139.480114449, 34.053671667], [139.48023083, 34.053894162], [139.480290272, 34.053861387]]]}}, {"id": "36324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.544534228, 34.055584748], [139.544312283, 34.055624198], [139.544618106, 34.05569836], [139.544534228, 34.055584748]]]}}, {"id": "36325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.531134384, 34.04644964], [139.530968833, 34.046470468], [139.531066615, 34.046570198], [139.531134384, 34.04644964]]]}}, {"id": "36326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.55033655, 34.057868198], [139.550305966, 34.058048495], [139.5504107, 34.057957387], [139.55033655, 34.057868198]]]}}, {"id": "36327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.485583709, 34.052184441], [139.485488132, 34.052003072], [139.485445019, 34.052140486], [139.485583709, 34.052184441]]]}}, {"id": "36328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.540517056, 34.124508414], [139.540330117, 34.124490081], [139.54039428, 34.124560919], [139.540517056, 34.124508414]]]}}, {"id": "36329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.543629222, 34.055890865], [139.54351061, 34.055842532], [139.543500052, 34.05589864], [139.543629222, 34.055890865]]]}}, {"id": "36330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565253606, 34.091383054], [139.565078612, 34.091327775], [139.565102218, 34.091402775], [139.565253606, 34.091383054]]]}}, {"id": "36331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48312917, 34.051187775], [139.483068054, 34.051318613], [139.48316917, 34.051305279], [139.48312917, 34.051187775]]]}}, {"id": "36332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480093009, 34.053566441], [139.479964345, 34.053467315], [139.479931427, 34.053535964], [139.480093009, 34.053566441]]]}}, {"id": "36333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479629624, 34.054161613], [139.479783645, 34.054309468], [139.479802049, 34.054284541], [139.479629624, 34.054161613]]]}}, {"id": "36334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475455006, 34.072215829], [139.475361946, 34.072353892], [139.475484163, 34.072315829], [139.475455006, 34.072215829]]]}}, {"id": "36335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.530948275, 34.04673464], [139.530804384, 34.046803532], [139.530974669, 34.046801865], [139.530948275, 34.04673464]]]}}, {"id": "36336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.383471673, 34.047931387], [139.383435279, 34.047821946], [139.383388054, 34.047977775], [139.383471673, 34.047931387]]]}}, {"id": "36337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384715006, 34.046979441], [139.384743606, 34.046894721], [139.384552503, 34.046934441], [139.384715006, 34.046979441]]]}}, {"id": "36338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474940558, 34.072614721], [139.474885006, 34.07274], [139.474983061, 34.072714162], [139.474940558, 34.072614721]]]}}, {"id": "36339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.534636667, 34.124461387], [139.534486939, 34.124388892], [139.534557782, 34.124482225], [139.534636667, 34.124461387]]]}}, {"id": "36340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.530463839, 34.04690936], [139.530376615, 34.046853802], [139.530372724, 34.046924919], [139.530463839, 34.04690936]]]}}, {"id": "36341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482058612, 34.050766667], [139.482123606, 34.050879162], [139.48214083, 34.050772495], [139.482058612, 34.050766667]]]}}, {"id": "36342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479815603, 34.053513171], [139.479765006, 34.053617793], [139.479846368, 34.05361536], [139.479815603, 34.053513171]]]}}, {"id": "36343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.545356835, 34.055923387], [139.545302503, 34.055801973], [139.54527808, 34.055817279], [139.545356835, 34.055923387]]]}}, {"id": "36344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.384233891, 34.046719721], [139.384095837, 34.046648613], [139.384064449, 34.046685559], [139.384233891, 34.046719721]]]}}, {"id": "36345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480184112, 34.054714315], [139.480146524, 34.054620703], [139.48011013, 34.054685658], [139.480184112, 34.054714315]]]}}, {"id": "36346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500262218, 34.045705559], [139.500143891, 34.045644162], [139.500148885, 34.045698333], [139.500262218, 34.045705559]]]}}, {"id": "36347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480836394, 34.052010559], [139.480738054, 34.052027225], [139.48076917, 34.052101667], [139.480836394, 34.052010559]]]}}, {"id": "36348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477948612, 34.064454162], [139.477863891, 34.064423892], [139.477854163, 34.064475829], [139.477948612, 34.064454162]]]}}, {"id": "36349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47825, 34.064823333], [139.478196667, 34.064742225], [139.478173891, 34.064778892], [139.47825, 34.064823333]]]}}, {"id": "36350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.383308054, 34.048205829], [139.383213061, 34.048178054], [139.383208054, 34.048210829], [139.383308054, 34.048205829]]]}}, {"id": "36351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.38317, 34.048417225], [139.383108612, 34.048348054], [139.383110272, 34.048439721], [139.38317, 34.048417225]]]}}, {"id": "36352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.38483, 34.047180559], [139.384838054, 34.047273333], [139.384861388, 34.047266667], [139.38483, 34.047180559]]]}}, {"id": "36353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.544196161, 34.056241829], [139.544168106, 34.056157667], [139.544172555, 34.056231], [139.544196161, 34.056241829]]]}}, {"id": "36354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.378608612, 34.046063054], [139.378668885, 34.046016667], [139.378582776, 34.046039162], [139.378608612, 34.046063054]]]}}, {"id": "36355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.545736719, 34.055788081], [139.54568978, 34.055827802], [139.545762555, 34.055814748], [139.545736719, 34.055788081]]]}}, {"id": "36356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "三宅村", "N03_005": null, "N03_007": "13381"}, "geometry": {"type": "Polygon", "coordinates": [[[139.545735331, 34.055564748], [139.54568978, 34.055600865], [139.545755888, 34.055590865], [139.545735331, 34.055564748]]]}}, {"id": "36357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.624965551, 33.857701378], [139.579188353, 33.860422658], [139.586837263, 33.897532667], [139.618334371, 33.892320432], [139.624965551, 33.857701378]]]}}, {"id": "36358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619498054, 33.851640829], [139.620784163, 33.850529162], [139.619143333, 33.851245], [139.619498054, 33.851640829]]]}}, {"id": "36359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.299243061, 33.652218387], [139.298774112, 33.65076236], [139.298565888, 33.652133225], [139.299243061, 33.652218387]]]}}, {"id": "36360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619542218, 33.850669441], [139.619696939, 33.850327225], [139.619381388, 33.850622495], [139.619542218, 33.850669441]]]}}, {"id": "36361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.621293333, 33.850557775], [139.621462503, 33.850254441], [139.621248054, 33.850370559], [139.621293333, 33.850557775]]]}}, {"id": "36362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619116939, 33.851106667], [139.619023061, 33.850896108], [139.618924163, 33.851180559], [139.619116939, 33.851106667]]]}}, {"id": "36363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591114721, 33.853088054], [139.590842218, 33.852940829], [139.590763061, 33.852977495], [139.591114721, 33.853088054]]]}}, {"id": "36364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592850272, 33.854053333], [139.592561115, 33.853965279], [139.592512503, 33.854031946], [139.592850272, 33.854053333]]]}}, {"id": "36365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595623671, 33.900007063], [139.595509715, 33.899849153], [139.595491336, 33.900044225], [139.595623671, 33.900007063]]]}}, {"id": "36366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.621899364, 33.850337919], [139.621724163, 33.850298054], [139.621763333, 33.850423613], [139.621899364, 33.850337919]]]}}, {"id": "36367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576288444, 33.871599658], [139.576335863, 33.871719486], [139.576402387, 33.871665892], [139.576288444, 33.871599658]]]}}, {"id": "36368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592228885, 33.853729441], [139.592278885, 33.853849162], [139.592348949, 33.853790613], [139.592228885, 33.853729441]]]}}, {"id": "36369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.621373333, 33.851077495], [139.621256667, 33.851103892], [139.62129083, 33.851178892], [139.621373333, 33.851077495]]]}}, {"id": "36370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.298497134, 33.651532667], [139.298373359, 33.651435973], [139.298332244, 33.651500559], [139.298497134, 33.651532667]]]}}, {"id": "36371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.590729416, 33.854111279], [139.590547834, 33.854151667], [139.59073358, 33.854159225], [139.590729416, 33.854111279]]]}}, {"id": "36372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60142332, 33.901390495], [139.601440908, 33.90120191], [139.601369014, 33.901356586], [139.60142332, 33.901390495]]]}}, {"id": "36373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591953891, 33.853139441], [139.59185, 33.853259162], [139.591984449, 33.853186108], [139.591953891, 33.853139441]]]}}, {"id": "36374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.618066109, 33.892797495], [139.61806, 33.892669162], [139.617995837, 33.892758892], [139.618066109, 33.892797495]]]}}, {"id": "36375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.298382088, 33.651931135], [139.298245746, 33.651921054], [139.298373333, 33.651959721], [139.298382088, 33.651931135]]]}}, {"id": "36376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.620200558, 33.891020559], [139.620144449, 33.891107495], [139.620230272, 33.891117225], [139.620200558, 33.891020559]]]}}, {"id": "36377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576495551, 33.866137495], [139.576473891, 33.86624], [139.576572503, 33.866164721], [139.576495551, 33.866137495]]]}}, {"id": "36378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.629673606, 33.877441108], [139.629630558, 33.877335279], [139.629604721, 33.877448892], [139.629673606, 33.877441108]]]}}, {"id": "36379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619909728, 33.891774162], [139.619796394, 33.891786667], [139.619933061, 33.891835559], [139.619909728, 33.891774162]]]}}, {"id": "36380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619989442, 33.891049441], [139.620066939, 33.891155829], [139.62008, 33.891094721], [139.619989442, 33.891049441]]]}}, {"id": "36381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.58493668, 33.856786523], [139.584977639, 33.856897865], [139.585059533, 33.856908405], [139.58493668, 33.856786523]]]}}, {"id": "36382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.298552827, 33.652192306], [139.298475811, 33.652247162], [139.298578612, 33.652273613], [139.298552827, 33.652192306]]]}}, {"id": "36383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.580890999, 33.859096775], [139.580764514, 33.859076234], [139.580765447, 33.859089396], [139.580890999, 33.859096775]]]}}, {"id": "36384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604613268, 33.901169333], [139.60464668, 33.901048216], [139.604618923, 33.90103464], [139.604613268, 33.901169333]]]}}, {"id": "36385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576505837, 33.867116387], [139.576461388, 33.867203054], [139.576526394, 33.867183892], [139.576505837, 33.867116387]]]}}, {"id": "36386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.624995837, 33.856725279], [139.625092503, 33.856698892], [139.624986394, 33.856665279], [139.624995837, 33.856725279]]]}}, {"id": "36387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.620722503, 33.851046108], [139.620633891, 33.851011108], [139.620654449, 33.851093613], [139.620722503, 33.851046108]]]}}, {"id": "36388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595733126, 33.89999673], [139.595737873, 33.900079505], [139.595755279, 33.900001369], [139.595733126, 33.89999673]]]}}, {"id": "36389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597835162, 33.900134928], [139.597844916, 33.900047847], [139.597777289, 33.900105243], [139.597835162, 33.900134928]]]}}, {"id": "36390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.628236096, 33.861945378], [139.628280661, 33.862017766], [139.628308444, 33.861969937], [139.628236096, 33.861945378]]]}}, {"id": "36391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.624776667, 33.856602495], [139.624839442, 33.856652225], [139.624884721, 33.856637495], [139.624776667, 33.856602495]]]}}, {"id": "36392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576396394, 33.866674441], [139.576453333, 33.866745559], [139.57641, 33.866646108], [139.576396394, 33.866674441]]]}}, {"id": "36393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600164825, 33.900944514], [139.600150804, 33.900852883], [139.600113541, 33.900957135], [139.600164825, 33.900944514]]]}}, {"id": "36394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600389728, 33.900748117], [139.600371505, 33.900847261], [139.600418833, 33.900819937], [139.600389728, 33.900748117]]]}}, {"id": "36395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61727978, 33.892667613], [139.617248573, 33.892740775], [139.617291038, 33.892749144], [139.61727978, 33.892667613]]]}}, {"id": "36396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595587691, 33.899805838], [139.595662205, 33.899759099], [139.595614695, 33.899738], [139.595587691, 33.899805838]]]}}, {"id": "36397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.618424163, 33.892638613], [139.618367224, 33.892700559], [139.618423333, 33.892696946], [139.618424163, 33.892638613]]]}}, {"id": "36398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60547537, 33.900886288], [139.605586304, 33.900887757], [139.605473268, 33.900863477], [139.60547537, 33.900886288]]]}}, {"id": "36399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.625751038, 33.85850173], [139.625778444, 33.858566243], [139.625794228, 33.858521369], [139.625751038, 33.85850173]]]}}, {"id": "36400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599137082, 33.900349018], [139.599136563, 33.900419802], [139.59919131, 33.900367514], [139.599137082, 33.900349018]]]}}, {"id": "36401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576785837, 33.867661387], [139.576780272, 33.867738973], [139.57681083, 33.867723613], [139.576785837, 33.867661387]]]}}, {"id": "36402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.622804994, 33.854332964], [139.622832374, 33.854406045], [139.622857224, 33.854363982], [139.622804994, 33.854332964]]]}}, {"id": "36403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576717484, 33.877511135], [139.576757951, 33.87757082], [139.576748444, 33.877495874], [139.576717484, 33.877511135]]]}}, {"id": "36404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.62595834, 33.858681108], [139.625893891, 33.858696108], [139.62594834, 33.858721667], [139.62595834, 33.858681108]]]}}, {"id": "36405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.594632737, 33.899059694], [139.594573191, 33.89908555], [139.594650934, 33.899085063], [139.594632737, 33.899059694]]]}}, {"id": "36406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576563813, 33.877822784], [139.57658415, 33.877890541], [139.576596952, 33.877839622], [139.576563813, 33.877822784]]]}}, {"id": "36407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588506135, 33.855448414], [139.5885062, 33.855384856], [139.588473333, 33.855391009], [139.588506135, 33.855448414]]]}}, {"id": "36408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576697367, 33.87733509], [139.576686252, 33.877399631], [139.576724617, 33.877368243], [139.576697367, 33.87733509]]]}}, {"id": "36409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.620725396, 33.852250117], [139.620708482, 33.852314288], [139.620745525, 33.852282613], [139.620725396, 33.852250117]]]}}, {"id": "36410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.628671984, 33.862894541], [139.628705603, 33.862847532], [139.628647847, 33.862864919], [139.628671984, 33.862894541]]]}}, {"id": "36411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.626073606, 33.859011252], [139.626012088, 33.859018721], [139.626037951, 33.859050865], [139.626073606, 33.859011252]]]}}, {"id": "36412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600096939, 33.901016874], [139.600021414, 33.90099609], [139.600090311, 33.901029667], [139.600096939, 33.901016874]]]}}, {"id": "36413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576862827, 33.869070225], [139.576906654, 33.869126126], [139.576912516, 33.869083315], [139.576862827, 33.869070225]]]}}, {"id": "36414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.620821193, 33.852404739], [139.620827639, 33.852462721], [139.620871647, 33.852450811], [139.620821193, 33.852404739]]]}}, {"id": "36415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61824834, 33.892523604], [139.618284877, 33.892484171], [139.618225409, 33.892482991], [139.61824834, 33.892523604]]]}}, {"id": "36416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601188003, 33.900919667], [139.601180039, 33.90086682], [139.601143009, 33.900884694], [139.601188003, 33.900919667]]]}}, {"id": "36417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576809339, 33.869101946], [139.576862815, 33.869150649], [139.5768338, 33.869092252], [139.576809339, 33.869101946]]]}}, {"id": "36418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.630128885, 33.877234721], [139.630075551, 33.877267495], [139.630112503, 33.877277495], [139.630128885, 33.877234721]]]}}, {"id": "36419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "御蔵島村", "N03_005": null, "N03_007": "13382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.625502348, 33.883040838], [139.625501673, 33.883006396], [139.625468949, 33.883036], [139.625502348, 33.883040838]]]}}, {"id": "36420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.749636693, 33.11684955], [139.738582983, 33.145870477], [139.772058314, 33.158851315], [139.817206394, 33.120115694], [139.846594267, 33.117062225], [139.858596096, 33.079363288], [139.838946161, 33.074999468], [139.83245856, 33.045232441], [139.784137951, 33.069302613], [139.779465331, 33.100870468], [139.749636693, 33.11684955]]]}}, {"id": "36421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688247497, 33.116235829], [139.676810363, 33.136467414], [139.701164449, 33.117812775], [139.688247497, 33.116235829]]]}}, {"id": "36422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.698511673, 33.129532225], [139.698442218, 33.130599162], [139.699222776, 33.129446946], [139.698511673, 33.129532225]]]}}, {"id": "36423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.838092503, 33.119203613], [139.838626667, 33.118958054], [139.838393333, 33.118576387], [139.838092503, 33.119203613]]]}}, {"id": "36424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.701378612, 33.118436387], [139.701600558, 33.117786946], [139.701040026, 33.117308667], [139.701378612, 33.118436387]]]}}, {"id": "36425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683469442, 33.115742225], [139.683591751, 33.116286387], [139.683852503, 33.116076108], [139.683469442, 33.115742225]]]}}, {"id": "36426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.67500917, 33.130566946], [139.675497497, 33.130062495], [139.675180558, 33.129902495], [139.67500917, 33.130566946]]]}}, {"id": "36427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688464449, 33.113958054], [139.688408885, 33.114650829], [139.68881917, 33.114194441], [139.688464449, 33.113958054]]]}}, {"id": "36428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818891388, 33.125160279], [139.818570272, 33.125492225], [139.818938612, 33.125364721], [139.818891388, 33.125160279]]]}}, {"id": "36429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.837248054, 33.119160559], [139.837192776, 33.118756946], [139.836784163, 33.119038892], [139.837248054, 33.119160559]]]}}, {"id": "36430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818547497, 33.124635829], [139.818708054, 33.124938054], [139.818838054, 33.124790829], [139.818547497, 33.124635829]]]}}, {"id": "36431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.841098223, 33.072952829], [139.841677951, 33.073233081], [139.840553748, 33.072652198], [139.841098223, 33.072952829]]]}}, {"id": "36432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.769158885, 33.099949072], [139.769122711, 33.100213225], [139.769468054, 33.100134667], [139.769158885, 33.099949072]]]}}, {"id": "36433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752607224, 33.106198333], [139.752681388, 33.106528892], [139.752970272, 33.106228892], [139.752607224, 33.106198333]]]}}, {"id": "36434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844793696, 33.117402225], [139.845146744, 33.11737964], [139.844894384, 33.117127613], [139.844793696, 33.117402225]]]}}, {"id": "36435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.816016939, 33.128812775], [139.81631083, 33.128739162], [139.816010558, 33.128580829], [139.816016939, 33.128812775]]]}}, {"id": "36436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.675846394, 33.129435279], [139.675444449, 33.1292], [139.67539083, 33.129293054], [139.675846394, 33.129435279]]]}}, {"id": "36437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817583891, 33.125862225], [139.817843061, 33.125776387], [139.81757917, 33.125705], [139.817583891, 33.125862225]]]}}, {"id": "36438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.84592917, 33.117323613], [139.846132503, 33.117240559], [139.845883891, 33.117190559], [139.84592917, 33.117323613]]]}}, {"id": "36439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.752065279, 33.107328613], [139.752259442, 33.10722], [139.752076109, 33.107108613], [139.752065279, 33.107328613]]]}}, {"id": "36440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780042503, 33.074879721], [139.779807497, 33.074663054], [139.779756939, 33.074707495], [139.780042503, 33.074879721]]]}}, {"id": "36441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.677686939, 33.136324162], [139.677489974, 33.136473495], [139.677749728, 33.136486946], [139.677686939, 33.136324162]]]}}, {"id": "36442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.747383606, 33.156995829], [139.747156394, 33.156862225], [139.747163061, 33.156890279], [139.747383606, 33.156995829]]]}}, {"id": "36443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.783831115, 33.069228333], [139.783929728, 33.069064441], [139.78383917, 33.069039162], [139.783831115, 33.069228333]]]}}, {"id": "36444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76827083, 33.100259441], [139.768502776, 33.100357225], [139.768469728, 33.100278054], [139.76827083, 33.100259441]]]}}, {"id": "36445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780704163, 33.072315829], [139.780517782, 33.072403613], [139.780707497, 33.072362495], [139.780704163, 33.072315829]]]}}, {"id": "36446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.846710272, 33.116521946], [139.846778054, 33.116353892], [139.846660272, 33.116378333], [139.846710272, 33.116521946]]]}}, {"id": "36447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835659922, 33.118599477], [139.835940623, 33.118587586], [139.835942283, 33.118509243], [139.835659922, 33.118599477]]]}}, {"id": "36448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.844358054, 33.117269162], [139.844489442, 33.117268892], [139.844536109, 33.117032225], [139.844358054, 33.117269162]]]}}, {"id": "36449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683748612, 33.136707495], [139.683785837, 33.136891108], [139.683846667, 33.136774162], [139.683748612, 33.136707495]]]}}, {"id": "36450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759859728, 33.160378054], [139.759994034, 33.160211441], [139.75980917, 33.160352225], [139.759859728, 33.160378054]]]}}, {"id": "36451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.69334834, 33.129954441], [139.693245006, 33.129851946], [139.693083891, 33.129904721], [139.69334834, 33.129954441]]]}}, {"id": "36452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.790185837, 33.066212775], [139.79029083, 33.066069162], [139.790084721, 33.066080559], [139.790185837, 33.066212775]]]}}, {"id": "36453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78242917, 33.071118892], [139.782481388, 33.070933054], [139.782406109, 33.070896667], [139.78242917, 33.071118892]]]}}, {"id": "36454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.840206667, 33.118098333], [139.840225279, 33.117895279], [139.840146394, 33.117930829], [139.840206667, 33.118098333]]]}}, {"id": "36455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755547224, 33.158467225], [139.755681388, 33.158318054], [139.755529728, 33.158362495], [139.755547224, 33.158467225]]]}}, {"id": "36456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753503606, 33.105353613], [139.75352834, 33.105155829], [139.753373606, 33.105179721], [139.753503606, 33.105353613]]]}}, {"id": "36457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.795411388, 33.143032775], [139.795352776, 33.143159162], [139.795543333, 33.143141667], [139.795411388, 33.143032775]]]}}, {"id": "36458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.782137782, 33.151804162], [139.782282503, 33.151895], [139.782276939, 33.151772495], [139.782137782, 33.151804162]]]}}, {"id": "36459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681497224, 33.120691667], [139.68145083, 33.120539441], [139.68137083, 33.120561108], [139.681497224, 33.120691667]]]}}, {"id": "36460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.694546667, 33.129535829], [139.694451946, 33.129443892], [139.694302218, 33.129568892], [139.694546667, 33.129535829]]]}}, {"id": "36461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.838771479, 33.048431027], [139.838741647, 33.048277901], [139.838633696, 33.048274315], [139.838771479, 33.048431027]]]}}, {"id": "36462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.846372776, 33.117687225], [139.846490272, 33.117525], [139.846380272, 33.117501108], [139.846372776, 33.117687225]]]}}, {"id": "36463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68348917, 33.117888333], [139.683461115, 33.117681946], [139.683378029, 33.117680919], [139.68348917, 33.117888333]]]}}, {"id": "36464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.811311115, 33.129113892], [139.811393333, 33.128985829], [139.811236667, 33.128993613], [139.811311115, 33.129113892]]]}}, {"id": "36465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.805392036, 33.061419883], [139.805533048, 33.061353568], [139.805375331, 33.061333063], [139.805392036, 33.061419883]]]}}, {"id": "36466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681833606, 33.115233333], [139.681704449, 33.11515], [139.681733606, 33.115285559], [139.681833606, 33.115233333]]]}}, {"id": "36467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77466834, 33.157621946], [139.774789728, 33.157531667], [139.774684163, 33.157515829], [139.77466834, 33.157621946]]]}}, {"id": "36468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774522503, 33.157855], [139.774575279, 33.157718333], [139.774487224, 33.157787495], [139.774522503, 33.157855]]]}}, {"id": "36469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.679077497, 33.125936667], [139.679229442, 33.126003333], [139.679195279, 33.1259], [139.679077497, 33.125936667]]]}}, {"id": "36470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.750477497, 33.115675559], [139.750449442, 33.115527225], [139.750402776, 33.115641667], [139.750477497, 33.115675559]]]}}, {"id": "36471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.793697782, 33.144111667], [139.793654449, 33.143957775], [139.793578885, 33.14409], [139.793697782, 33.144111667]]]}}, {"id": "36472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755248054, 33.103344721], [139.755115279, 33.103261667], [139.75515917, 33.10339], [139.755248054, 33.103344721]]]}}, {"id": "36473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.699100558, 33.115589441], [139.69912, 33.115479162], [139.699021673, 33.115473054], [139.699100558, 33.115589441]]]}}, {"id": "36474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.693743333, 33.129713054], [139.693886667, 33.129781667], [139.693969728, 33.129722495], [139.693743333, 33.129713054]]]}}, {"id": "36475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76796834, 33.099900829], [139.768116667, 33.099995279], [139.768035279, 33.099889162], [139.76796834, 33.099900829]]]}}, {"id": "36476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.793797782, 33.143817775], [139.793759922, 33.143673613], [139.793684721, 33.143806387], [139.793797782, 33.143817775]]]}}, {"id": "36477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.795225551, 33.143533333], [139.795075279, 33.143541946], [139.79520834, 33.143635559], [139.795225551, 33.143533333]]]}}, {"id": "36478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780562776, 33.152376387], [139.780676394, 33.152434162], [139.780693333, 33.152341108], [139.780562776, 33.152376387]]]}}, {"id": "36479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.789838054, 33.146048613], [139.78993, 33.145944721], [139.789838054, 33.146018054], [139.789838054, 33.146048613]]]}}, {"id": "36480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.783525551, 33.069148054], [139.783424721, 33.069266946], [139.783576109, 33.069193054], [139.783525551, 33.069148054]]]}}, {"id": "36481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.747441946, 33.156590559], [139.747464721, 33.156464162], [139.747371673, 33.156531387], [139.747441946, 33.156590559]]]}}, {"id": "36482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78208834, 33.070830279], [139.782098054, 33.070931667], [139.782221388, 33.070853892], [139.78208834, 33.070830279]]]}}, {"id": "36483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774669442, 33.158316387], [139.774802218, 33.158243333], [139.774685006, 33.158199721], [139.774669442, 33.158316387]]]}}, {"id": "36484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.784612218, 33.068687775], [139.784735837, 33.068718333], [139.784745551, 33.068671387], [139.784612218, 33.068687775]]]}}, {"id": "36485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.767231388, 33.100142495], [139.767371946, 33.100148054], [139.76725, 33.100031667], [139.767231388, 33.100142495]]]}}, {"id": "36486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.699304449, 33.121458892], [139.699395279, 33.121380279], [139.699301388, 33.121378892], [139.699304449, 33.121458892]]]}}, {"id": "36487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.797722776, 33.137514162], [139.797632776, 33.137413613], [139.797594163, 33.137477225], [139.797722776, 33.137514162]]]}}, {"id": "36488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683316939, 33.1181], [139.683378885, 33.117965], [139.683316939, 33.117969162], [139.683316939, 33.1181]]]}}, {"id": "36489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682803606, 33.115342775], [139.682662503, 33.115378054], [139.682802776, 33.115399721], [139.682803606, 33.115342775]]]}}, {"id": "36490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.699395551, 33.120288054], [139.699367224, 33.120173333], [139.699336109, 33.120279441], [139.699395551, 33.120288054]]]}}, {"id": "36491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.784463606, 33.068651108], [139.784489728, 33.068534441], [139.784399728, 33.068597225], [139.784463606, 33.068651108]]]}}, {"id": "36492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681856109, 33.115598333], [139.681912776, 33.115466946], [139.681823891, 33.115531667], [139.681856109, 33.115598333]]]}}, {"id": "36493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.817548885, 33.124638054], [139.817685551, 33.124695], [139.817661673, 33.124610279], [139.817548885, 33.124638054]]]}}, {"id": "36494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76748, 33.158708333], [139.767604163, 33.158656946], [139.767488885, 33.158673054], [139.76748, 33.158708333]]]}}, {"id": "36495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768820272, 33.158516387], [139.768778054, 33.158428054], [139.768731115, 33.158473613], [139.768820272, 33.158516387]]]}}, {"id": "36496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680681388, 33.120027225], [139.680576667, 33.120046387], [139.680663606, 33.120108333], [139.680681388, 33.120027225]]]}}, {"id": "36497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.789688612, 33.145910279], [139.789671946, 33.145757495], [139.789592503, 33.145841387], [139.789688612, 33.145910279]]]}}, {"id": "36498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.818796394, 33.125671387], [139.81865083, 33.125644721], [139.818601115, 33.125704721], [139.818796394, 33.125671387]]]}}, {"id": "36499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78329, 33.069840829], [139.783362218, 33.069757775], [139.783237224, 33.069766667], [139.78329, 33.069840829]]]}}, {"id": "36500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.750402503, 33.115891387], [139.75042834, 33.115766108], [139.750341115, 33.115804162], [139.750402503, 33.115891387]]]}}, {"id": "36501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.798090558, 33.137475279], [139.797947497, 33.137523333], [139.798076939, 33.137509162], [139.798090558, 33.137475279]]]}}, {"id": "36502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836481388, 33.118820279], [139.836413606, 33.118767775], [139.836362776, 33.118828333], [139.836481388, 33.118820279]]]}}, {"id": "36503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.698318054, 33.126134721], [139.698371946, 33.126250279], [139.698418612, 33.126201667], [139.698318054, 33.126134721]]]}}, {"id": "36504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.697756394, 33.127146387], [139.697867782, 33.127144162], [139.697853606, 33.127101108], [139.697756394, 33.127146387]]]}}, {"id": "36505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774384721, 33.157864162], [139.774288054, 33.157787495], [139.774264163, 33.157874162], [139.774384721, 33.157864162]]]}}, {"id": "36506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78365083, 33.069508333], [139.783778885, 33.069529162], [139.783761946, 33.069474441], [139.78365083, 33.069508333]]]}}, {"id": "36507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.806739728, 33.130573333], [139.806721115, 33.130486387], [139.806652503, 33.130551667], [139.806739728, 33.130573333]]]}}, {"id": "36508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.700778885, 33.117122495], [139.700643061, 33.117123613], [139.70070917, 33.117178613], [139.700778885, 33.117122495]]]}}, {"id": "36509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.836379442, 33.118645559], [139.836263333, 33.118694441], [139.836333061, 33.118710559], [139.836379442, 33.118645559]]]}}, {"id": "36510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.798352218, 33.137475279], [139.798368885, 33.137404441], [139.798273061, 33.137422775], [139.798352218, 33.137475279]]]}}, {"id": "36511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.81091, 33.129288054], [139.810784721, 33.129271946], [139.810835551, 33.129313613], [139.81091, 33.129288054]]]}}, {"id": "36512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680671388, 33.119870279], [139.680782218, 33.119976667], [139.680826667, 33.119935], [139.680671388, 33.119870279]]]}}, {"id": "36513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.815032776, 33.128428613], [139.815034721, 33.128537225], [139.81508917, 33.12846], [139.815032776, 33.128428613]]]}}, {"id": "36514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688288664, 33.113892387], [139.688388392, 33.113823054], [139.688265551, 33.113836667], [139.688288664, 33.113892387]]]}}, {"id": "36515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76974, 33.098763054], [139.769837224, 33.098750279], [139.769779442, 33.098668054], [139.76974, 33.098763054]]]}}, {"id": "36516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.699281673, 33.122132225], [139.699155279, 33.122174441], [139.699236394, 33.122195559], [139.699281673, 33.122132225]]]}}, {"id": "36517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.793628249, 33.144403279], [139.793557276, 33.144314586], [139.793536394, 33.144430559], [139.793628249, 33.144403279]]]}}, {"id": "36518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781132218, 33.152304441], [139.781042776, 33.152247495], [139.781040272, 33.152298892], [139.781132218, 33.152304441]]]}}, {"id": "36519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.84541917, 33.117840829], [139.845331115, 33.117785], [139.845309728, 33.117851946], [139.84541917, 33.117840829]]]}}, {"id": "36520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.795174721, 33.143325559], [139.795096394, 33.143253054], [139.795033891, 33.143269441], [139.795174721, 33.143325559]]]}}, {"id": "36521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.806190272, 33.129895829], [139.806206667, 33.129973333], [139.806223333, 33.12995], [139.806190272, 33.129895829]]]}}, {"id": "36522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.768588885, 33.158408613], [139.76853834, 33.158312225], [139.768501388, 33.158371667], [139.768588885, 33.158408613]]]}}, {"id": "36523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68882083, 33.113940279], [139.688736394, 33.113988054], [139.68883725, 33.113984162], [139.68882083, 33.113940279]]]}}, {"id": "36524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.783189728, 33.069508333], [139.783256394, 33.069564721], [139.783266939, 33.069523892], [139.783189728, 33.069508333]]]}}, {"id": "36525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.6993, 33.120772775], [139.699261946, 33.120676667], [139.699230558, 33.120724162], [139.6993, 33.120772775]]]}}, {"id": "36526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.67800834, 33.135656946], [139.677936394, 33.135730279], [139.678046394, 33.135694721], [139.67800834, 33.135656946]]]}}, {"id": "36527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742205006, 33.149623892], [139.742274721, 33.149734441], [139.742244163, 33.149611667], [139.742205006, 33.149623892]]]}}, {"id": "36528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743301946, 33.152231946], [139.74334083, 33.152323054], [139.74337, 33.152297225], [139.743301946, 33.152231946]]]}}, {"id": "36529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835573645, 33.118395838], [139.835625564, 33.118468586], [139.835661401, 33.118426775], [139.835573645, 33.118395838]]]}}, {"id": "36530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.69584917, 33.129121946], [139.695749442, 33.129085], [139.695751946, 33.129125559], [139.69584917, 33.129121946]]]}}, {"id": "36531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.796191193, 33.139295234], [139.796263256, 33.139360523], [139.796227782, 33.139292432], [139.796191193, 33.139295234]]]}}, {"id": "36532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.838213165, 33.049727387], [139.838130674, 33.049794685], [139.838210584, 33.049786], [139.838213165, 33.049727387]]]}}, {"id": "36533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742413606, 33.150028613], [139.742481388, 33.149995], [139.742415837, 33.149941667], [139.742413606, 33.150028613]]]}}, {"id": "36534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688580558, 33.113935279], [139.688571388, 33.113853613], [139.688533061, 33.113873613], [139.688580558, 33.113935279]]]}}, {"id": "36535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682080558, 33.122514441], [139.682000558, 33.122452225], [139.682035837, 33.122521387], [139.682080558, 33.122514441]]]}}, {"id": "36536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743383891, 33.152561667], [139.743503333, 33.15252], [139.743464163, 33.152489441], [139.743383891, 33.152561667]]]}}, {"id": "36537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68348, 33.119352495], [139.683565551, 33.119396667], [139.683535279, 33.11934], [139.68348, 33.119352495]]]}}, {"id": "36538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682625577, 33.136598054], [139.682645551, 33.136495279], [139.682589442, 33.136572495], [139.682625577, 33.136598054]]]}}, {"id": "36539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683465551, 33.119947225], [139.683381388, 33.119914162], [139.683395006, 33.119965559], [139.683465551, 33.119947225]]]}}, {"id": "36540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.699034721, 33.115947225], [139.69897083, 33.115958892], [139.699026667, 33.115988892], [139.699034721, 33.115947225]]]}}, {"id": "36541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682629144, 33.121264333], [139.682601803, 33.121180414], [139.68256, 33.121232532], [139.682629144, 33.121264333]]]}}, {"id": "36542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683263333, 33.117698054], [139.683195837, 33.117745829], [139.683242776, 33.117738613], [139.683263333, 33.117698054]]]}}, {"id": "36543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682446109, 33.121526108], [139.682503061, 33.121484721], [139.682443061, 33.121460829], [139.682446109, 33.121526108]]]}}, {"id": "36544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682321245, 33.121725225], [139.68232834, 33.121648054], [139.682295837, 33.121668054], [139.682321245, 33.121725225]]]}}, {"id": "36545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68328834, 33.118233333], [139.683300558, 33.118171387], [139.683276667, 33.118185279], [139.68328834, 33.118233333]]]}}, {"id": "36546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682067497, 33.121429721], [139.681999728, 33.121452495], [139.682074163, 33.121476667], [139.682067497, 33.121429721]]]}}, {"id": "36547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682555188, 33.121327279], [139.682506161, 33.121371946], [139.682538054, 33.121373613], [139.682555188, 33.121327279]]]}}, {"id": "36548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.683221362, 33.118281802], [139.683176939, 33.118211667], [139.683147782, 33.118243892], [139.683221362, 33.118281802]]]}}, {"id": "36549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68339917, 33.119025279], [139.683373606, 33.119075559], [139.683450558, 33.119045559], [139.68339917, 33.119025279]]]}}, {"id": "36550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.675231946, 33.129282495], [139.675272218, 33.129335279], [139.675288054, 33.129291667], [139.675231946, 33.129282495]]]}}, {"id": "36551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681308612, 33.120459162], [139.681368054, 33.120436946], [139.681303333, 33.120404441], [139.681308612, 33.120459162]]]}}, {"id": "36552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.698765279, 33.115822225], [139.698707497, 33.115853892], [139.698766939, 33.115857775], [139.698765279, 33.115822225]]]}}, {"id": "36553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682356667, 33.121546946], [139.682389442, 33.121607225], [139.682383061, 33.121551946], [139.682356667, 33.121546946]]]}}, {"id": "36554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682226667, 33.121510279], [139.68217917, 33.121498333], [139.682174163, 33.121520829], [139.682226667, 33.121510279]]]}}, {"id": "36555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "八丈町", "N03_005": null, "N03_007": "13401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681994721, 33.115361108], [139.681975279, 33.11532], [139.681940558, 33.115363333], [139.681994721, 33.115361108]]]}}, {"id": "36556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757901712, 32.446949072], [139.754306783, 32.465632739], [139.759159261, 32.473577946], [139.781301284, 32.452377757], [139.757901712, 32.446949072]]]}}, {"id": "36557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.77227083, 32.443745279], [139.772371115, 32.443568613], [139.772208885, 32.443559441], [139.77227083, 32.443745279]]]}}, {"id": "36558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780728093, 32.453640378], [139.780869611, 32.453735486], [139.780895798, 32.453694108], [139.780728093, 32.453640378]]]}}, {"id": "36559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.758035279, 32.47377], [139.758091673, 32.473667225], [139.757996109, 32.473722495], [139.758035279, 32.47377]]]}}, {"id": "36560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76707917, 32.443061108], [139.767190558, 32.442955279], [139.767160272, 32.442947225], [139.76707917, 32.443061108]]]}}, {"id": "36561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.78189083, 32.457334441], [139.781992776, 32.457257775], [139.781865837, 32.457257775], [139.78189083, 32.457334441]]]}}, {"id": "36562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778664462, 32.460408207], [139.778631958, 32.460324955], [139.778580298, 32.460433964], [139.778664462, 32.460408207]]]}}, {"id": "36563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781483476, 32.452199], [139.781383995, 32.452265604], [139.781490246, 32.452267721], [139.781483476, 32.452199]]]}}, {"id": "36564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753710272, 32.456011387], [139.753681673, 32.455925829], [139.753615279, 32.456003333], [139.753710272, 32.456011387]]]}}, {"id": "36565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780490558, 32.455774441], [139.780501115, 32.455683613], [139.78042917, 32.455721387], [139.780490558, 32.455774441]]]}}, {"id": "36566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761235006, 32.473568613], [139.761328885, 32.473596108], [139.761347497, 32.473533892], [139.761235006, 32.473568613]]]}}, {"id": "36567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.76614917, 32.443265559], [139.766199442, 32.443192225], [139.766115006, 32.443228333], [139.76614917, 32.443265559]]]}}, {"id": "36568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781364163, 32.452164676], [139.781339416, 32.452080703], [139.781298106, 32.452152658], [139.781364163, 32.452164676]]]}}, {"id": "36569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.766301673, 32.443463054], [139.766363333, 32.443380829], [139.766301115, 32.443384162], [139.766301673, 32.443463054]]]}}, {"id": "36570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781188119, 32.450324928], [139.781147536, 32.450244468], [139.781148768, 32.450323739], [139.781188119, 32.450324928]]]}}, {"id": "36571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781298054, 32.450584982], [139.781373709, 32.450525486], [139.781347341, 32.45050609], [139.781298054, 32.450584982]]]}}, {"id": "36572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.779949131, 32.458606423], [139.780032815, 32.458638378], [139.780019559, 32.458587694], [139.779949131, 32.458606423]]]}}, {"id": "36573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778781453, 32.46024782], [139.778706485, 32.460211532], [139.778707315, 32.46025464], [139.778781453, 32.46024782]]]}}, {"id": "36574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754701595, 32.46020027], [139.754786706, 32.460189054], [139.754712283, 32.460148423], [139.754701595, 32.46020027]]]}}, {"id": "36575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.778125279, 32.461778613], [139.778058054, 32.461857225], [139.778103891, 32.461863054], [139.778125279, 32.461778613]]]}}, {"id": "36576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775560934, 32.462700477], [139.775548016, 32.462773613], [139.775596446, 32.462724757], [139.775560934, 32.462700477]]]}}, {"id": "36577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780219987, 32.458526901], [139.780258534, 32.45847218], [139.780206602, 32.458504892], [139.780219987, 32.458526901]]]}}, {"id": "36578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780702283, 32.449019396], [139.780616446, 32.449025946], [139.780648975, 32.449049856], [139.780702283, 32.449019396]]]}}, {"id": "36579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774074851, 32.463680189], [139.773986459, 32.463668874], [139.774011323, 32.463731198], [139.774074851, 32.463680189]]]}}, {"id": "36580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755215071, 32.471775847], [139.755158003, 32.471825685], [139.755219922, 32.471822838], [139.755215071, 32.471775847]]]}}, {"id": "36581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775003074, 32.463072955], [139.774940376, 32.463129207], [139.775011336, 32.46311345], [139.775003074, 32.463072955]]]}}, {"id": "36582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781175888, 32.451423829], [139.781143372, 32.451372856], [139.78112345, 32.451431288], [139.781175888, 32.451423829]]]}}, {"id": "36583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771197095, 32.467162802], [139.771253761, 32.467215766], [139.771251453, 32.467165712], [139.771197095, 32.467162802]]]}}, {"id": "36584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755821193, 32.449615829], [139.755874228, 32.449659604], [139.755875759, 32.449615955], [139.755821193, 32.449615829]]]}}, {"id": "36585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.774282646, 32.444873468], [139.774357289, 32.444899568], [139.774323294, 32.444853468], [139.774282646, 32.444873468]]]}}, {"id": "36586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.764229559, 32.471042234], [139.764214942, 32.47110455], [139.764240908, 32.471096261], [139.764229559, 32.471042234]]]}}, {"id": "36587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780616187, 32.457487784], [139.780680117, 32.457504405], [139.780674708, 32.457467604], [139.780616187, 32.457487784]]]}}, {"id": "36588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771051479, 32.467742072], [139.771036537, 32.467807721], [139.771072088, 32.467791144], [139.771051479, 32.467742072]]]}}, {"id": "36589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781099403, 32.45108136], [139.781143735, 32.451127018], [139.781142075, 32.451055586], [139.781099403, 32.45108136]]]}}, {"id": "36590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781273917, 32.451509991], [139.781317912, 32.451562766], [139.781314021, 32.451501351], [139.781273917, 32.451509991]]]}}, {"id": "36591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.770683722, 32.467885108], [139.770684008, 32.467939667], [139.770712542, 32.467902252], [139.770683722, 32.467885108]]]}}, {"id": "36592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.756930402, 32.472966162], [139.756996005, 32.473009216], [139.756981038, 32.472971423], [139.756930402, 32.472966162]]]}}, {"id": "36593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.781230973, 32.450524072], [139.781222075, 32.450469874], [139.781170571, 32.450513856], [139.781230973, 32.450524072]]]}}, {"id": "36594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759616433, 32.473289541], [139.759596187, 32.473330649], [139.759644189, 32.47330218], [139.759616433, 32.473289541]]]}}, {"id": "36595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755168262, 32.471656324], [139.755231349, 32.471653027], [139.755208612, 32.471617568], [139.755168262, 32.471656324]]]}}, {"id": "36596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755817899, 32.472224613], [139.755792542, 32.472263378], [139.755833515, 32.472255919], [139.755817899, 32.472224613]]]}}, {"id": "36597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780866459, 32.45715727], [139.780810298, 32.457165541], [139.780883995, 32.457196414], [139.780866459, 32.45715727]]]}}, {"id": "36598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.757755655, 32.448636243], [139.757820195, 32.448654324], [139.757777263, 32.448618766], [139.757755655, 32.448636243]]]}}, {"id": "36599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.776650973, 32.462009622], [139.776709274, 32.462007486], [139.776700143, 32.461972577], [139.776650973, 32.462009622]]]}}, {"id": "36600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754552607, 32.470177189], [139.754621842, 32.470208072], [139.75463463, 32.470175342], [139.754552607, 32.470177189]]]}}, {"id": "36601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.761692036, 32.446061703], [139.761645992, 32.446051216], [139.761656174, 32.446077189], [139.761692036, 32.446061703]]]}}, {"id": "36602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780684112, 32.456670468], [139.780740052, 32.456667874], [139.780686135, 32.456647919], [139.780684112, 32.456670468]]]}}, {"id": "36603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.775622257, 32.462628901], [139.775683761, 32.46259809], [139.775662594, 32.462579054], [139.775622257, 32.462628901]]]}}, {"id": "36604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.755098716, 32.471608757], [139.755146563, 32.471643595], [139.755132451, 32.471605802], [139.755098716, 32.471608757]]]}}, {"id": "36605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780166524, 32.448313658], [139.78017965, 32.44826018], [139.780150791, 32.448310315], [139.780166524, 32.448313658]]]}}, {"id": "36606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780645564, 32.456553126], [139.780595435, 32.456592243], [139.780627873, 32.456617685], [139.780645564, 32.456553126]]]}}, {"id": "36607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.754396083, 32.453630685], [139.754374773, 32.453674586], [139.754436394, 32.453635396], [139.754396083, 32.453630685]]]}}, {"id": "36608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.771804215, 32.46590864], [139.771810311, 32.465860568], [139.77177869, 32.465902306], [139.771804215, 32.46590864]]]}}, {"id": "36609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "青ヶ島村", "N03_005": null, "N03_007": "13402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.780445798, 32.453465838], [139.780421258, 32.453423351], [139.780410597, 32.453459874], [139.780445798, 32.453465838]]]}}, {"id": "36610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293352374, 24.749852036], [141.286302905, 24.790526072], [141.330324306, 24.813512036], [141.349010778, 24.777984586], [141.293352374, 24.749852036]]]}}, {"id": "36611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208231556, 27.084173387], [142.182979637, 27.103132], [142.219003256, 27.100836387], [142.237858638, 27.05225864], [142.221922503, 27.053451613], [142.229403671, 27.035950252], [142.185744163, 27.040399], [142.195295383, 27.061395135], [142.181788521, 27.074377775], [142.208231556, 27.084173387]]]}}, {"id": "36612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124475136, 26.70517464], [142.16503061, 26.702569829], [142.146614916, 26.685191468], [142.168614864, 26.689884468], [142.164055253, 26.660427946], [142.189156057, 26.659303027], [142.171214254, 26.643389279], [142.181099805, 26.628482532], [142.178475162, 26.607566198], [142.124475136, 26.70517464]]]}}, {"id": "36613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235704163, 27.109846387], [142.187124449, 27.121533613], [142.186748054, 27.130387225], [142.191574163, 27.144197495], [142.235704163, 27.109846387]]]}}, {"id": "36614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.274721077, 25.422310667], [141.273505525, 25.441319829], [141.288094968, 25.447381216], [141.293280804, 25.425717613], [141.274721077, 25.422310667]]]}}, {"id": "36615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201864449, 27.166272495], [142.188771673, 27.144480559], [142.180641115, 27.14645], [142.184253333, 27.187347775], [142.201864449, 27.166272495]]]}}, {"id": "36616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.457246939, 24.225081667], [141.455443606, 24.242401667], [141.472238612, 24.241913613], [141.468833061, 24.227201667], [141.457246939, 24.225081667]]]}}, {"id": "36617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.873713372, 27.253866829], [140.884117562, 27.237024162], [140.869116991, 27.243176243], [140.873713372, 27.253866829]]]}}, {"id": "36618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148745551, 27.673210559], [142.125236939, 27.687026667], [142.130933333, 27.689245559], [142.142482776, 27.688851108], [142.148745551, 27.673210559]]]}}, {"id": "36619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.986071946, 24.281547694], [153.971700765, 24.285756216], [153.984607056, 24.297385505], [153.986071946, 24.281547694]]]}}, {"id": "36620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161326109, 26.559721387], [142.150883333, 26.547360279], [142.154574721, 26.564984441], [142.161326109, 26.559721387]]]}}, {"id": "36621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125317224, 26.595575829], [142.131967782, 26.610542495], [142.135933891, 26.601181108], [142.125317224, 26.595575829]]]}}, {"id": "36622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184844449, 27.619438054], [142.17499083, 27.635901108], [142.187473891, 27.622143333], [142.184844449, 27.619438054]]]}}, {"id": "36623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218334163, 26.563189441], [142.201566109, 26.553498333], [142.203181946, 26.562101387], [142.218334163, 26.563189441]]]}}, {"id": "36624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240171388, 26.568983054], [142.225828612, 26.566426387], [142.230406939, 26.575748613], [142.240171388, 26.568983054]]]}}, {"id": "36625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204455837, 27.497100829], [142.212686109, 27.501141667], [142.214859728, 27.489375279], [142.204455837, 27.497100829]]]}}, {"id": "36626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161593333, 27.113150829], [142.163381673, 27.121559162], [142.17223834, 27.116492225], [142.161593333, 27.113150829]]]}}, {"id": "36627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158526109, 26.583388054], [142.147124163, 26.582381667], [142.162082218, 26.587992225], [142.158526109, 26.583388054]]]}}, {"id": "36628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177973333, 27.035354721], [142.171585279, 27.043483054], [142.17281917, 27.04529], [142.177973333, 27.035354721]]]}}, {"id": "36629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.245738885, 27.090312225], [142.247463061, 27.094970279], [142.248865006, 27.091385], [142.245738885, 27.090312225]]]}}, {"id": "36630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287821349, 24.807255459], [141.285126031, 24.803327009], [141.285640208, 24.804852423], [141.285562944, 24.80525164], [141.287821349, 24.807255459]]]}}, {"id": "36631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101667782, 27.715711387], [142.096415551, 27.720484441], [142.102961673, 27.716345279], [142.101667782, 27.715711387]]]}}, {"id": "36632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198194449, 27.194567495], [142.193891388, 27.195791108], [142.19856083, 27.196769721], [142.198194449, 27.194567495]]]}}, {"id": "36633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159115006, 27.662365829], [142.156225551, 27.658975], [142.157025279, 27.664448054], [142.159115006, 27.662365829]]]}}, {"id": "36634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126412776, 27.678122225], [142.123578612, 27.679364441], [142.126683061, 27.681680829], [142.126412776, 27.678122225]]]}}, {"id": "36635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207333061, 27.489363892], [142.204834721, 27.487879441], [142.205052503, 27.488805], [142.207333061, 27.489363892]]]}}, {"id": "36636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165151115, 26.588712495], [142.163686667, 26.592925559], [142.166341115, 26.590983333], [142.165151115, 26.588712495]]]}}, {"id": "36637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179827224, 27.126905], [142.179380272, 27.129367495], [142.182074163, 27.127098892], [142.179827224, 27.126905]]]}}, {"id": "36638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188429728, 27.116119162], [142.185201946, 27.117612495], [142.184197224, 27.118188613], [142.188429728, 27.116119162]]]}}, {"id": "36639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.109175006, 27.716107225], [142.106213333, 27.71787], [142.110575837, 27.717623054], [142.109175006, 27.716107225]]]}}, {"id": "36640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177367717, 26.605501279], [142.176819883, 26.601786694], [142.175483554, 26.601932694], [142.177367717, 26.605501279]]]}}, {"id": "36641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239382387, 27.045778532], [142.238972724, 27.047967252], [142.241632166, 27.045727198], [142.239382387, 27.045778532]]]}}, {"id": "36642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219203606, 27.495382775], [142.218121388, 27.492942225], [142.218247782, 27.496028892], [142.219203606, 27.495382775]]]}}, {"id": "36643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172514721, 27.624415829], [142.170876394, 27.624161108], [142.171055006, 27.625926946], [142.172514721, 27.624415829]]]}}, {"id": "36644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16902917, 26.593665279], [142.167588054, 26.594718892], [142.168718612, 26.595623892], [142.16902917, 26.593665279]]]}}, {"id": "36645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207981946, 26.553497775], [142.207893606, 26.550381387], [142.207093061, 26.551281387], [142.207981946, 26.553497775]]]}}, {"id": "36646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155183061, 26.541932495], [142.155487497, 26.53978], [142.154292503, 26.540206108], [142.155183061, 26.541932495]]]}}, {"id": "36647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124521388, 27.718188054], [142.126415837, 27.716847775], [142.123926667, 27.717881387], [142.124521388, 27.718188054]]]}}, {"id": "36648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16778917, 27.638295829], [142.169104449, 27.637119441], [142.167942776, 27.636648333], [142.16778917, 27.638295829]]]}}, {"id": "36649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182799339, 27.086382081], [142.184358885, 27.08718], [142.184673645, 27.086572613], [142.182799339, 27.086382081]]]}}, {"id": "36650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232150272, 26.579592775], [142.231856394, 26.578096108], [142.231429442, 26.579367775], [142.232150272, 26.579592775]]]}}, {"id": "36651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230657497, 26.576074721], [142.231551388, 26.576933892], [142.231516939, 26.575641946], [142.230657497, 26.576074721]]]}}, {"id": "36652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122591284, 26.717188225], [142.122923022, 26.716592306], [142.121709027, 26.715797135], [142.122591284, 26.717188225]]]}}, {"id": "36653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184801388, 26.62220536], [142.184101051, 26.623172279], [142.184408859, 26.623287775], [142.184801388, 26.62220536]]]}}, {"id": "36654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20739, 27.485658892], [142.20779083, 27.484363892], [142.206557224, 27.484538892], [142.20739, 27.485658892]]]}}, {"id": "36655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123400558, 27.71808], [142.122244721, 27.718046387], [142.12323917, 27.718628054], [142.123400558, 27.71808]]]}}, {"id": "36656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145685525, 26.653618667], [142.144928495, 26.653143027], [142.144440246, 26.653264027], [142.145685525, 26.653618667]]]}}, {"id": "36657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175195331, 26.599652973], [142.175525888, 26.600445802], [142.175974086, 26.598785027], [142.175195331, 26.599652973]]]}}, {"id": "36658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192880921, 27.107005865], [142.194023217, 27.107290865], [142.192228716, 27.106371973], [142.192880921, 27.107005865]]]}}, {"id": "36659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176732503, 27.621908613], [142.176287782, 27.620626387], [142.175908612, 27.621018333], [142.176732503, 27.621908613]]]}}, {"id": "36660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125889728, 26.610903892], [142.127211115, 26.610949441], [142.126167497, 26.610215], [142.125889728, 26.610903892]]]}}, {"id": "36661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213076109, 26.565521387], [142.213062776, 26.566655], [142.213684449, 26.565978054], [142.213076109, 26.565521387]]]}}, {"id": "36662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15925, 26.563846946], [142.160443061, 26.564778613], [142.159959442, 26.563383054], [142.15925, 26.563846946]]]}}, {"id": "36663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.108391673, 27.715093892], [142.108597497, 27.715904162], [142.109146109, 27.715387225], [142.108391673, 27.715093892]]]}}, {"id": "36664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176622503, 27.043020829], [142.179117224, 27.044311387], [142.178805279, 27.043908054], [142.176622503, 27.043020829]]]}}, {"id": "36665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199560558, 27.136326108], [142.200177782, 27.135160829], [142.199362218, 27.135572495], [142.199560558, 27.136326108]]]}}, {"id": "36666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157783061, 27.691332225], [142.157105551, 27.692962775], [142.158134721, 27.691422775], [142.157783061, 27.691332225]]]}}, {"id": "36667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156529728, 27.658209721], [142.157721673, 27.658134162], [142.157806939, 27.657483054], [142.156529728, 27.658209721]]]}}, {"id": "36668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151145279, 26.546690559], [142.150055837, 26.547291108], [142.150562776, 26.547505829], [142.151145279, 26.546690559]]]}}, {"id": "36669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162962776, 26.588939721], [142.164025837, 26.588783613], [142.163771115, 26.587912225], [142.162962776, 26.588939721]]]}}, {"id": "36670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.220225279, 27.130493054], [142.219441673, 27.130052225], [142.219331115, 27.130542495], [142.220225279, 27.130493054]]]}}, {"id": "36671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181444501, 27.046870333], [142.182550661, 27.046773532], [142.182520778, 27.045321108], [142.181444501, 27.046870333]]]}}, {"id": "36672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176026667, 27.127088613], [142.178547497, 27.126066108], [142.178805551, 27.125635829], [142.176026667, 27.127088613]]]}}, {"id": "36673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158097782, 26.582290279], [142.158465551, 26.583153333], [142.15927083, 26.582561946], [142.158097782, 26.582290279]]]}}, {"id": "36674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.110225551, 27.718807225], [142.110496667, 27.717900279], [142.109635006, 27.718652775], [142.110225551, 27.718807225]]]}}, {"id": "36675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126977782, 26.611184441], [142.126353606, 26.611963333], [142.127364163, 26.611698613], [142.126977782, 26.611184441]]]}}, {"id": "36676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.215714721, 27.492112495], [142.21458834, 27.492628613], [142.215922776, 27.492527225], [142.215714721, 27.492112495]]]}}, {"id": "36677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173871997, 26.600733694], [142.173212023, 26.60127836], [142.173567665, 26.601533], [142.173871997, 26.600733694]]]}}, {"id": "36678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195002218, 27.144171108], [142.195743061, 27.143655829], [142.195014163, 27.143559162], [142.195002218, 27.144171108]]]}}, {"id": "36679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175376446, 26.615767892], [142.174865227, 26.616968667], [142.175396809, 26.616940198], [142.175376446, 26.615767892]]]}}, {"id": "36680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149598054, 26.547790559], [142.149027224, 26.546481667], [142.148816939, 26.546509721], [142.149598054, 26.547790559]]]}}, {"id": "36681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161201388, 26.563584162], [142.161823891, 26.563082775], [142.161496394, 26.562968892], [142.161201388, 26.563584162]]]}}, {"id": "36682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.107345837, 27.716511667], [142.108015837, 27.716029721], [142.107011946, 27.715958613], [142.107345837, 27.716511667]]]}}, {"id": "36683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125126109, 27.682782495], [142.125503891, 27.683615559], [142.125968054, 27.683416387], [142.125126109, 27.682782495]]]}}, {"id": "36684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192376939, 27.191559441], [142.19216, 27.192545279], [142.192362218, 27.192523054], [142.192376939, 27.191559441]]]}}, {"id": "36685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.09704917, 27.720822495], [142.096693606, 27.721461108], [142.097414449, 27.721181667], [142.09704917, 27.720822495]]]}}, {"id": "36686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.10251917, 27.714661387], [142.102166939, 27.715347775], [142.102795551, 27.715240559], [142.10251917, 27.714661387]]]}}, {"id": "36687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230869728, 26.579291387], [142.230146667, 26.579656387], [142.230880558, 26.579868613], [142.230869728, 26.579291387]]]}}, {"id": "36688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152184449, 26.539847775], [142.151933333, 26.540645829], [142.15226917, 26.540894162], [142.152184449, 26.539847775]]]}}, {"id": "36689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155934721, 27.659332225], [142.155119728, 27.659804721], [142.155845837, 27.659905559], [142.155934721, 27.659332225]]]}}, {"id": "36690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231688885, 26.576619441], [142.232218885, 26.577351387], [142.232187497, 26.576771946], [142.231688885, 26.576619441]]]}}, {"id": "36691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169161115, 27.635837775], [142.168685006, 27.636265559], [142.169453061, 27.636539441], [142.169161115, 27.635837775]]]}}, {"id": "36692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.111863891, 27.717772495], [142.11224917, 27.718386946], [142.112427224, 27.718031667], [142.111863891, 27.717772495]]]}}, {"id": "36693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226125837, 26.572839162], [142.227146394, 26.572411667], [142.226783333, 26.572195279], [142.226125837, 26.572839162]]]}}, {"id": "36694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123174449, 26.597463054], [142.124083333, 26.597431946], [142.123294721, 26.597188054], [142.123174449, 26.597463054]]]}}, {"id": "36695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186059144, 27.036778333], [142.186612892, 27.037321135], [142.186420921, 27.036739613], [142.186059144, 27.036778333]]]}}, {"id": "36696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095798612, 27.722669162], [142.095225551, 27.723318054], [142.096320558, 27.723043892], [142.095798612, 27.722669162]]]}}, {"id": "36697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123828612, 26.599286387], [142.12348, 26.598714441], [142.123510272, 26.599066387], [142.123828612, 26.599286387]]]}}, {"id": "36698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102244449, 27.712116667], [142.102103606, 27.712713333], [142.102729728, 27.712521946], [142.102244449, 27.712116667]]]}}, {"id": "36699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235857951, 27.069325108], [142.235288781, 27.068880198], [142.235017419, 27.068661054], [142.235038949, 27.068983135], [142.235857951, 27.069325108]]]}}, {"id": "36700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18619, 27.184455279], [142.186310558, 27.183795279], [142.185691115, 27.184247775], [142.18619, 27.184455279]]]}}, {"id": "36701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188501673, 27.139067775], [142.188743333, 27.138473054], [142.188413061, 27.138477495], [142.188501673, 27.139067775]]]}}, {"id": "36702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12233345, 26.706932559], [142.121966446, 26.70638164], [142.121676083, 26.706831865], [142.12233345, 26.706932559]]]}}, {"id": "36703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180793061, 27.621346667], [142.181175837, 27.620518613], [142.180734163, 27.620554721], [142.180793061, 27.621346667]]]}}, {"id": "36704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.112940272, 27.728880829], [142.113049728, 27.728124441], [142.11260834, 27.728385559], [142.112940272, 27.728880829]]]}}, {"id": "36705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138134449, 27.672115], [142.138210558, 27.672763333], [142.138696939, 27.672546108], [142.138134449, 27.672115]]]}}, {"id": "36706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185252192, 26.660041748], [142.184663839, 26.659935], [142.184787808, 26.660571829], [142.185252192, 26.660041748]]]}}, {"id": "36707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201598612, 26.552809162], [142.2015, 26.552153054], [142.201096109, 26.552386108], [142.201598612, 26.552809162]]]}}, {"id": "36708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178703891, 27.624058333], [142.178892218, 27.623233054], [142.178340272, 27.623910279], [142.178703891, 27.624058333]]]}}, {"id": "36709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227522503, 27.121233333], [142.228163333, 27.121168892], [142.228001673, 27.120886667], [142.227522503, 27.121233333]]]}}, {"id": "36710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166680752, 26.659789162], [142.166821336, 26.660631054], [142.166945006, 26.659609775], [142.166680752, 26.659789162]]]}}, {"id": "36711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170215837, 27.635790829], [142.170073891, 27.635201387], [142.169836939, 27.635628613], [142.170215837, 27.635790829]]]}}, {"id": "36712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16505856, 26.700489694], [142.165283281, 26.701047802], [142.165779585, 26.701223333], [142.16505856, 26.700489694]]]}}, {"id": "36713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148657224, 27.679617225], [142.14840083, 27.679098333], [142.148177497, 27.679411108], [142.148657224, 27.679617225]]]}}, {"id": "36714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194189728, 27.199369441], [142.194788054, 27.198166108], [142.194008885, 27.199301667], [142.194189728, 27.199369441]]]}}, {"id": "36715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137415551, 27.670979721], [142.136827224, 27.671381387], [142.137482503, 27.671191387], [142.137415551, 27.670979721]]]}}, {"id": "36716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181483722, 27.043487252], [142.182034423, 27.043998829], [142.182907471, 27.043651198], [142.181483722, 27.043487252]]]}}, {"id": "36717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162216394, 27.120058333], [142.162044163, 27.120642225], [142.162463061, 27.120406108], [142.162216394, 27.120058333]]]}}, {"id": "36718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228658003, 27.039277198], [142.228037302, 27.039631387], [142.22871297, 27.03949636], [142.228658003, 27.039277198]]]}}, {"id": "36719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129632776, 27.690989162], [142.130361388, 27.690914441], [142.129720272, 27.690771108], [142.129632776, 27.690989162]]]}}, {"id": "36720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143872244, 26.647706919], [142.143118638, 26.648005721], [142.142685188, 26.648322532], [142.14364725, 26.648200252], [142.143872244, 26.647706919]]]}}, {"id": "36721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183750026, 27.037447225], [142.183060558, 27.037296027], [142.183449831, 27.037789054], [142.183750026, 27.037447225]]]}}, {"id": "36722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204294163, 26.562667775], [142.203723061, 26.562751108], [142.20404834, 26.563097775], [142.204294163, 26.562667775]]]}}, {"id": "36723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160086278, 26.687866865], [142.160201829, 26.68735664], [142.159420441, 26.687695306], [142.160086278, 26.687866865]]]}}, {"id": "36724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160133891, 27.10677], [142.160814721, 27.106413613], [142.159972503, 27.106451387], [142.160133891, 27.10677]]]}}, {"id": "36725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.118077471, 26.723668054], [142.117449689, 26.72382], [142.117867198, 26.724009162], [142.118077471, 26.723668054]]]}}, {"id": "36726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172355006, 27.031803333], [142.17302917, 27.031825829], [142.172733061, 27.031447775], [142.172355006, 27.031803333]]]}}, {"id": "36727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171617497, 27.115164441], [142.172128612, 27.115134721], [142.171623606, 27.115006667], [142.171617497, 27.115164441]]]}}, {"id": "36728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158981673, 26.565866946], [142.158566939, 26.566097495], [142.158928885, 26.566392225], [142.158981673, 26.565866946]]]}}, {"id": "36729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143981167, 26.669998532], [142.143616887, 26.670418892], [142.144129611, 26.670116252], [142.143981167, 26.669998532]]]}}, {"id": "36730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196029442, 27.179387225], [142.196531115, 27.178828333], [142.195693061, 27.179153613], [142.196029442, 27.179387225]]]}}, {"id": "36731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166161115, 26.592335279], [142.165795551, 26.591994721], [142.16562917, 26.592416108], [142.166161115, 26.592335279]]]}}, {"id": "36732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156514721, 27.664635559], [142.155903606, 27.664901387], [142.156253606, 27.664999721], [142.156514721, 27.664635559]]]}}, {"id": "36733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203534721, 27.499236946], [142.203651388, 27.49863], [142.20321, 27.498697775], [142.203534721, 27.499236946]]]}}, {"id": "36734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241790052, 27.047347775], [142.241056693, 27.047469162], [142.240732724, 27.047999081], [142.241790052, 27.047347775]]]}}, {"id": "36735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18232917, 27.127780829], [142.182292776, 27.127341667], [142.182048054, 27.127705559], [142.18232917, 27.127780829]]]}}, {"id": "36736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.117318586, 26.721643802], [142.116806913, 26.721770748], [142.117155253, 26.722210748], [142.117318586, 26.721643802]]]}}, {"id": "36737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198568885, 27.194673613], [142.198796109, 27.194332775], [142.198245006, 27.194188054], [142.198568885, 27.194673613]]]}}, {"id": "36738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.09695834, 27.724886387], [142.097398885, 27.725212495], [142.097552776, 27.724849721], [142.09695834, 27.724886387]]]}}, {"id": "36739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173777224, 27.030530829], [142.173953606, 27.030795829], [142.174331673, 27.030418054], [142.173777224, 27.030530829]]]}}, {"id": "36740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137422503, 27.671746946], [142.137563606, 27.671266667], [142.137257224, 27.671525279], [142.137422503, 27.671746946]]]}}, {"id": "36741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123633333, 27.679902225], [142.124217224, 27.679646667], [142.123616109, 27.679573054], [142.123633333, 27.679902225]]]}}, {"id": "36742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216456109, 27.493573892], [142.216888054, 27.493957775], [142.216840558, 27.493489162], [142.216456109, 27.493573892]]]}}, {"id": "36743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233288885, 26.566175559], [142.232827497, 26.565657225], [142.232694163, 26.56594], [142.233288885, 26.566175559]]]}}, {"id": "36744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171722503, 27.044521946], [142.171935279, 27.044815], [142.171928054, 27.044419162], [142.171722503, 27.044521946]]]}}, {"id": "36745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121554332, 26.716457559], [142.121603139, 26.715857333], [142.12146703, 26.715839775], [142.121554332, 26.716457559]]]}}, {"id": "36746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166545837, 26.594101667], [142.167086939, 26.594218054], [142.166985006, 26.593703613], [142.166545837, 26.594101667]]]}}, {"id": "36747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378392192, 24.780514315], [141.378950246, 24.780390054], [141.378739403, 24.780015405], [141.378392192, 24.780514315]]]}}, {"id": "36748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138801115, 26.586315], [142.138465837, 26.585783333], [142.138293891, 26.586103333], [142.138801115, 26.586315]]]}}, {"id": "36749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149905279, 27.673738892], [142.149975006, 27.673214162], [142.149651388, 27.673581108], [142.149905279, 27.673738892]]]}}, {"id": "36750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208926667, 26.567217775], [142.208466394, 26.567075829], [142.208632218, 26.567475279], [142.208926667, 26.567217775]]]}}, {"id": "36751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153497782, 27.682579162], [142.153907497, 27.682925], [142.154047782, 27.682679721], [142.153497782, 27.682579162]]]}}, {"id": "36752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142280078, 26.664451054], [142.141946278, 26.664883829], [142.142515032, 26.664904829], [142.142280078, 26.664451054]]]}}, {"id": "36753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182524773, 27.037943694], [142.183281051, 27.038068252], [142.183335668, 27.037940198], [142.182524773, 27.037943694]]]}}, {"id": "36754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147384384, 26.650160721], [142.147525811, 26.649442532], [142.147302114, 26.650147721], [142.147384384, 26.650160721]]]}}, {"id": "36755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16221834, 26.559638892], [142.162545837, 26.559212495], [142.162255279, 26.559274721], [142.16221834, 26.559638892]]]}}, {"id": "36756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170601115, 27.63189], [142.171079728, 27.631685279], [142.170644721, 27.631600559], [142.170601115, 27.63189]]]}}, {"id": "36757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.073679079, 20.422822775], [136.074012387, 20.423208387], [136.074094669, 20.422845], [136.073679079, 20.422822775]]]}}, {"id": "36758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100913606, 27.715585559], [142.101533333, 27.715612775], [142.101555279, 27.715396667], [142.100913606, 27.715585559]]]}}, {"id": "36759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201893333, 27.162628054], [142.201578612, 27.163088054], [142.202013606, 27.162893892], [142.201893333, 27.162628054]]]}}, {"id": "36760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174527224, 27.030248613], [142.174646939, 27.029757775], [142.174231115, 27.029881946], [142.174527224, 27.030248613]]]}}, {"id": "36761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185248054, 27.619308054], [142.185403891, 27.618846946], [142.184889442, 27.619216108], [142.185248054, 27.619308054]]]}}, {"id": "36762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17651406, 26.600228306], [142.176015227, 26.600819162], [142.176455162, 26.600972613], [142.17651406, 26.600228306]]]}}, {"id": "36763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202199689, 27.079082027], [142.2023538, 27.079496892], [142.202542166, 27.079329279], [142.202199689, 27.079082027]]]}}, {"id": "36764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161739442, 26.582277225], [142.161237497, 26.582296108], [142.161694449, 26.582613892], [142.161739442, 26.582277225]]]}}, {"id": "36765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161539442, 27.106151946], [142.160985279, 27.106087775], [142.160873333, 27.106378333], [142.161539442, 27.106151946]]]}}, {"id": "36766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199732503, 27.161382225], [142.20030083, 27.161619441], [142.200116109, 27.161282775], [142.199732503, 27.161382225]]]}}, {"id": "36767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149447224, 26.546871387], [142.149489442, 26.546195279], [142.149181673, 26.546238892], [142.149447224, 26.546871387]]]}}, {"id": "36768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151965279, 26.587121667], [142.152431946, 26.586913054], [142.152141946, 26.586774162], [142.151965279, 26.587121667]]]}}, {"id": "36769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212776109, 26.565232495], [142.21339834, 26.565041946], [142.212968612, 26.564863892], [142.212776109, 26.565232495]]]}}, {"id": "36770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160053671, 26.634905919], [142.160853502, 26.634651892], [142.160049857, 26.634762108], [142.160053671, 26.634905919]]]}}, {"id": "36771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200069442, 26.549872225], [142.199832503, 26.550343892], [142.200125006, 26.550366108], [142.200069442, 26.549872225]]]}}, {"id": "36772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096355279, 27.722880829], [142.09675083, 27.722661667], [142.096221946, 27.722570829], [142.096355279, 27.722880829]]]}}, {"id": "36773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203559442, 26.561043613], [142.203166394, 26.560745279], [142.203277497, 26.561169721], [142.203559442, 26.561043613]]]}}, {"id": "36774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176684747, 26.605515829], [142.176519689, 26.606054829], [142.176879857, 26.605712829], [142.176684747, 26.605515829]]]}}, {"id": "36775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151431388, 26.540250829], [142.15160083, 26.540801108], [142.151898885, 26.540950559], [142.151431388, 26.540250829]]]}}, {"id": "36776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181072023, 27.072404225], [142.181117523, 27.073119198], [142.181364384, 27.072145973], [142.181072023, 27.072404225]]]}}, {"id": "36777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125138612, 26.610258333], [142.125482503, 26.609991667], [142.12500917, 26.609945279], [142.125138612, 26.610258333]]]}}, {"id": "36778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095174163, 27.722053054], [142.094981388, 27.721700279], [142.094706109, 27.721755829], [142.095174163, 27.722053054]]]}}, {"id": "36779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170571673, 27.036923613], [142.170215551, 27.037296108], [142.170611115, 27.037326946], [142.170571673, 27.036923613]]]}}, {"id": "36780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.093505006, 27.724884721], [142.093352776, 27.725235279], [142.093842503, 27.725275], [142.093505006, 27.724884721]]]}}, {"id": "36781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151741673, 26.558964162], [142.151502503, 26.558427495], [142.151316939, 26.558487775], [142.151741673, 26.558964162]]]}}, {"id": "36782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18127917, 27.045491108], [142.180428054, 27.045288892], [142.180289442, 27.045378892], [142.18127917, 27.045491108]]]}}, {"id": "36783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15275917, 27.682094441], [142.153170558, 27.682061387], [142.152969442, 27.681846667], [142.15275917, 27.682094441]]]}}, {"id": "36784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.097147224, 27.724689721], [142.096921673, 27.724334721], [142.096763333, 27.724552775], [142.097147224, 27.724689721]]]}}, {"id": "36785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179683333, 27.126570829], [142.179271388, 27.126322225], [142.17931917, 27.126727495], [142.179683333, 27.126570829]]]}}, {"id": "36786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.106732218, 27.718576667], [142.106223333, 27.71841], [142.106242218, 27.718656108], [142.106732218, 27.718576667]]]}}, {"id": "36787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171091388, 27.033879721], [142.171475837, 27.033913892], [142.17138834, 27.033773054], [142.171091388, 27.033879721]]]}}, {"id": "36788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219556394, 27.493145279], [142.219115279, 27.493424441], [142.219254163, 27.493605], [142.219556394, 27.493145279]]]}}, {"id": "36789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152478054, 26.560950279], [142.152736667, 26.560363333], [142.152374449, 26.560309441], [142.152478054, 26.560950279]]]}}, {"id": "36790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195645837, 27.178241667], [142.19568, 27.178655], [142.195908612, 27.178246387], [142.195645837, 27.178241667]]]}}, {"id": "36791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200946394, 27.162545279], [142.201305837, 27.162376108], [142.20108, 27.162246108], [142.200946394, 27.162545279]]]}}, {"id": "36792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102901946, 27.713006667], [142.102564163, 27.712782495], [142.102466394, 27.713018333], [142.102901946, 27.713006667]]]}}, {"id": "36793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201737782, 27.162442225], [142.201364721, 27.162153613], [142.201693606, 27.162620829], [142.201737782, 27.162442225]]]}}, {"id": "36794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.094503606, 27.715258892], [142.093997224, 27.714928613], [142.094209442, 27.715346108], [142.094503606, 27.715258892]]]}}, {"id": "36795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175205642, 26.599159775], [142.174700726, 26.599191441], [142.174803281, 26.599551108], [142.175205642, 26.599159775]]]}}, {"id": "36796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164377471, 26.700264829], [142.164161556, 26.699812865], [142.163964475, 26.699935586], [142.164377471, 26.700264829]]]}}, {"id": "36797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137383333, 26.644932225], [142.137183891, 26.644537495], [142.137106109, 26.644878333], [142.137383333, 26.644932225]]]}}, {"id": "36798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182017004, 27.047700081], [142.182302023, 27.048057108], [142.18258406, 27.047842946], [142.182017004, 27.047700081]]]}}, {"id": "36799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147076667, 26.582009162], [142.146691946, 26.581780829], [142.146792776, 26.582190559], [142.147076667, 26.582009162]]]}}, {"id": "36800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174166057, 26.621860441], [142.173840143, 26.622035495], [142.17401083, 26.62214964], [142.174166057, 26.621860441]]]}}, {"id": "36801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135749831, 26.684416198], [142.135472166, 26.684710162], [142.135870337, 26.684772414], [142.135749831, 26.684416198]]]}}, {"id": "36802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180250558, 27.047550559], [142.180642218, 27.047049721], [142.179974449, 27.047498054], [142.180250558, 27.047550559]]]}}, {"id": "36803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146188885, 26.577858892], [142.146133333, 26.577526946], [142.145901115, 26.577722495], [142.146188885, 26.577858892]]]}}, {"id": "36804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099484721, 27.721661946], [142.099225006, 27.721286108], [142.099364163, 27.721716387], [142.099484721, 27.721661946]]]}}, {"id": "36805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124268885, 26.596807775], [142.124302776, 26.596410279], [142.123992503, 26.596178054], [142.124268885, 26.596807775]]]}}, {"id": "36806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22737, 27.119163613], [142.227211115, 27.118809162], [142.22709917, 27.119168613], [142.22737, 27.119163613]]]}}, {"id": "36807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145739585, 26.706512775], [142.145907302, 26.706963721], [142.146110584, 26.706772162], [142.145739585, 26.706512775]]]}}, {"id": "36808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157267782, 27.6616], [142.156890272, 27.661395279], [142.156965006, 27.661698333], [142.157267782, 27.6616]]]}}, {"id": "36809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15026834, 26.548017495], [142.150306667, 26.547570279], [142.150029442, 26.547699721], [142.15026834, 26.548017495]]]}}, {"id": "36810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202013061, 27.163454162], [142.202467782, 27.163529162], [142.202210272, 27.163276667], [142.202013061, 27.163454162]]]}}, {"id": "36811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213829728, 27.108370559], [142.213523606, 27.108443613], [142.214037782, 27.108443613], [142.213829728, 27.108370559]]]}}, {"id": "36812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235947224, 27.114136108], [142.236056394, 27.113679721], [142.235748054, 27.114103613], [142.235947224, 27.114136108]]]}}, {"id": "36813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144014721, 27.688111108], [142.14358083, 27.688050559], [142.143823891, 27.688323892], [142.144014721, 27.688111108]]]}}, {"id": "36814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195646394, 27.196604162], [142.195312218, 27.196856667], [142.195650558, 27.196879162], [142.195646394, 27.196604162]]]}}, {"id": "36815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141830441, 26.676662279], [142.142022802, 26.676958135], [142.142177173, 26.676660306], [142.141830441, 26.676662279]]]}}, {"id": "36816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179925551, 27.072738306], [142.180382672, 27.072582829], [142.180017691, 27.072478694], [142.179925551, 27.072738306]]]}}, {"id": "36817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171052218, 27.119519162], [142.171505551, 27.119707775], [142.171181673, 27.119445], [142.171052218, 27.119519162]]]}}, {"id": "36818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189913333, 27.190977495], [142.189684163, 27.190518892], [142.189698885, 27.191059162], [142.189913333, 27.190977495]]]}}, {"id": "36819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178675136, 26.604554748], [142.178213839, 26.604413613], [142.178223191, 26.604693162], [142.178675136, 26.604554748]]]}}, {"id": "36820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169581388, 27.630515559], [142.169840272, 27.630152495], [142.169461388, 27.630117775], [142.169581388, 27.630515559]]]}}, {"id": "36821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176322581, 26.608475225], [142.176051479, 26.608222802], [142.176040311, 26.608608532], [142.176322581, 26.608475225]]]}}, {"id": "36822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151971115, 27.683711667], [142.151448054, 27.683736946], [142.151757224, 27.683927225], [142.151971115, 27.683711667]]]}}, {"id": "36823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180965279, 27.631518613], [142.180936667, 27.631044721], [142.180681673, 27.631142775], [142.180965279, 27.631518613]]]}}, {"id": "36824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178372218, 27.032463892], [142.17813917, 27.032790829], [142.178491946, 27.032827495], [142.178372218, 27.032463892]]]}}, {"id": "36825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205676667, 27.135552495], [142.205385006, 27.135327225], [142.205556109, 27.135667775], [142.205676667, 27.135552495]]]}}, {"id": "36826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.119504721, 26.716986946], [142.119859442, 26.716944721], [142.119586394, 26.716744441], [142.119504721, 26.716986946]]]}}, {"id": "36827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182466524, 27.042242946], [142.182756835, 27.042623802], [142.182761699, 27.042269081], [142.182466524, 27.042242946]]]}}, {"id": "36828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.242324721, 26.567479441], [142.241923891, 26.567310279], [142.242047497, 26.567623892], [142.242324721, 26.567479441]]]}}, {"id": "36829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168132776, 27.038650559], [142.168444163, 27.038429721], [142.168321946, 27.038276667], [142.168132776, 27.038650559]]]}}, {"id": "36830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171049442, 26.658331946], [142.170783891, 26.658598892], [142.171091946, 26.658638333], [142.171049442, 26.658331946]]]}}, {"id": "36831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208596109, 26.566046108], [142.208979728, 26.565861387], [142.20878917, 26.565664441], [142.208596109, 26.566046108]]]}}, {"id": "36832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17133, 27.042450559], [142.171704449, 27.042258892], [142.171206667, 27.042329441], [142.17133, 27.042450559]]]}}, {"id": "36833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142344527, 26.673394613], [142.142195668, 26.673754802], [142.142565914, 26.673672468], [142.142344527, 26.673394613]]]}}, {"id": "36834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208238612, 26.566044721], [142.208330272, 26.565645829], [142.208014449, 26.565859441], [142.208238612, 26.566044721]]]}}, {"id": "36835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194045694, 27.041061865], [142.194314086, 27.041332532], [142.194375837, 27.041013306], [142.194045694, 27.041061865]]]}}, {"id": "36836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095371673, 27.723709162], [142.09541, 27.723361946], [142.095143606, 27.723485279], [142.095371673, 27.723709162]]]}}, {"id": "36837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122446161, 26.710842559], [142.121968638, 26.710902892], [142.121779248, 26.711229162], [142.122446161, 26.710842559]]]}}, {"id": "36838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128281362, 26.692503441], [142.128577497, 26.692334468], [142.128187276, 26.692389081], [142.128281362, 26.692503441]]]}}, {"id": "36839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134967782, 27.679415], [142.135005006, 27.678996667], [142.134760272, 27.679015], [142.134967782, 27.679415]]]}}, {"id": "36840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188990467, 27.068223081], [142.189582555, 27.068268414], [142.189372503, 27.068047667], [142.188990467, 27.068223081]]]}}, {"id": "36841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212846939, 27.501409721], [142.212531673, 27.501443613], [142.212888054, 27.501725829], [142.212846939, 27.501409721]]]}}, {"id": "36842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125919728, 27.682274721], [142.126012218, 27.681849162], [142.125758612, 27.682015559], [142.125919728, 27.682274721]]]}}, {"id": "36843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.097435006, 27.723530279], [142.097873333, 27.72332], [142.097468054, 27.723336667], [142.097435006, 27.723530279]]]}}, {"id": "36844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168128612, 27.037527775], [142.167647224, 27.037726946], [142.168305837, 27.037661667], [142.168128612, 27.037527775]]]}}, {"id": "36845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184028003, 27.043119027], [142.184132361, 27.043442919], [142.184352503, 27.043251919], [142.184028003, 27.043119027]]]}}, {"id": "36846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163083061, 27.645742225], [142.162761946, 27.645650279], [142.162825279, 27.645883892], [142.163083061, 27.645742225]]]}}, {"id": "36847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213995837, 27.108960279], [142.213689442, 27.108646387], [142.213652218, 27.109012495], [142.213995837, 27.108960279]]]}}, {"id": "36848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132451673, 26.596336946], [142.132743061, 26.595861387], [142.132562218, 26.595848333], [142.132451673, 26.596336946]]]}}, {"id": "36849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125625006, 26.609302775], [142.125537497, 26.608875], [142.125352503, 26.609042225], [142.125625006, 26.609302775]]]}}, {"id": "36850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165905837, 27.120925], [142.166275279, 27.120622495], [142.166546939, 27.120525279], [142.166177497, 27.120527495], [142.165905837, 27.120925]]]}}, {"id": "36851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19447917, 27.144133054], [142.194614163, 27.143797775], [142.194335279, 27.143989721], [142.19447917, 27.144133054]]]}}, {"id": "36852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147293191, 26.688895333], [142.147162088, 26.689217973], [142.147470999, 26.689086414], [142.147293191, 26.688895333]]]}}, {"id": "36853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162544721, 26.590439162], [142.162651946, 26.590078054], [142.16236917, 26.590059162], [142.162544721, 26.590439162]]]}}, {"id": "36854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183238444, 26.621692892], [142.183203696, 26.622317], [142.183425422, 26.622378], [142.183238444, 26.621692892]]]}}, {"id": "36855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146447224, 26.583083613], [142.146483891, 26.582754162], [142.146153606, 26.583034721], [142.146447224, 26.583083613]]]}}, {"id": "36856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163828833, 26.700023748], [142.163883502, 26.700308108], [142.164252866, 26.700268225], [142.163828833, 26.700023748]]]}}, {"id": "36857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.107042218, 27.716524721], [142.106681388, 27.716744441], [142.107142218, 27.716726387], [142.107042218, 27.716524721]]]}}, {"id": "36858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142016057, 26.709438054], [142.142026083, 26.709998586], [142.142235863, 26.709602468], [142.142016057, 26.709438054]]]}}, {"id": "36859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.109439442, 27.728259441], [142.10961834, 27.727982495], [142.109434449, 27.727985559], [142.109439442, 27.728259441]]]}}, {"id": "36860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147860558, 27.684483054], [142.147520272, 27.684257225], [142.147553606, 27.684500829], [142.147860558, 27.684483054]]]}}, {"id": "36861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130636939, 27.678066387], [142.130687224, 27.677669721], [142.130448054, 27.677900829], [142.130636939, 27.678066387]]]}}, {"id": "36862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195333333, 27.177674162], [142.195015006, 27.177565559], [142.19496917, 27.177741667], [142.195333333, 27.177674162]]]}}, {"id": "36863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13378847, 26.702354054], [142.133845447, 26.702841225], [142.134096835, 26.70296536], [142.13378847, 26.702354054]]]}}, {"id": "36864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151233891, 27.684201667], [142.151071946, 27.683946387], [142.150936667, 27.684106387], [142.151233891, 27.684201667]]]}}, {"id": "36865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101512218, 27.715237775], [142.101487497, 27.714904162], [142.101278054, 27.715123333], [142.101512218, 27.715237775]]]}}, {"id": "36866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208258054, 26.567806108], [142.208577782, 26.568130829], [142.208392218, 26.567641667], [142.208258054, 26.567806108]]]}}, {"id": "36867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239051673, 27.092504135], [142.238924228, 27.092941], [142.239222283, 27.09245836], [142.239051673, 27.092504135]]]}}, {"id": "36868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126066667, 26.601545829], [142.126240272, 26.601815279], [142.126404449, 26.601518054], [142.126066667, 26.601545829]]]}}, {"id": "36869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239640052, 27.045500162], [142.239305162, 27.045677919], [142.239593774, 27.045740162], [142.239640052, 27.045500162]]]}}, {"id": "36870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161426109, 26.582536667], [142.161025551, 26.582576667], [142.161430558, 26.582741667], [142.161426109, 26.582536667]]]}}, {"id": "36871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.093451946, 27.720032775], [142.093365551, 27.719691946], [142.09317834, 27.719748613], [142.093451946, 27.720032775]]]}}, {"id": "36872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180819728, 27.041185], [142.180674163, 27.040848054], [142.18056917, 27.041181387], [142.180819728, 27.041185]]]}}, {"id": "36873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141827562, 26.664736198], [142.141408197, 26.664804586], [142.14154, 26.665059441], [142.141827562, 26.664736198]]]}}, {"id": "36874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162454721, 26.564663892], [142.162653891, 26.564314162], [142.162313891, 26.564438613], [142.162454721, 26.564663892]]]}}, {"id": "36875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176109053, 26.605164162], [142.175718366, 26.605104892], [142.176099637, 26.605386495], [142.176109053, 26.605164162]]]}}, {"id": "36876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153504721, 27.671341667], [142.153805551, 27.671094721], [142.153601115, 27.671051387], [142.153504721, 27.671341667]]]}}, {"id": "36877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15698834, 27.666130559], [142.156655006, 27.666101946], [142.156618054, 27.666307775], [142.15698834, 27.666130559]]]}}, {"id": "36878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102899728, 27.714413892], [142.102996109, 27.714120829], [142.102809442, 27.714109162], [142.102899728, 27.714413892]]]}}, {"id": "36879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174634163, 26.598065919], [142.17420703, 26.598323532], [142.174333554, 26.598475198], [142.174634163, 26.598065919]]]}}, {"id": "36880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188400558, 27.126538333], [142.188857224, 27.12649], [142.188919728, 27.126358333], [142.188400558, 27.126538333]]]}}, {"id": "36881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183719637, 27.040263468], [142.183755837, 27.039884721], [142.183487134, 27.040035532], [142.183719637, 27.040263468]]]}}, {"id": "36882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17081917, 27.052949721], [142.170732218, 27.052588892], [142.170574163, 27.052733613], [142.17081917, 27.052949721]]]}}, {"id": "36883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102810272, 27.714910279], [142.102764721, 27.714542775], [142.102592218, 27.714555559], [142.102810272, 27.714910279]]]}}, {"id": "36884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144797497, 26.647632865], [142.144641634, 26.647917081], [142.144930947, 26.647751865], [142.144797497, 26.647632865]]]}}, {"id": "36885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162860558, 26.589797775], [142.162497224, 26.589923333], [142.162806939, 26.590057495], [142.162860558, 26.589797775]]]}}, {"id": "36886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140556887, 26.666882387], [142.140290441, 26.66663], [142.140289689, 26.666842279], [142.140556887, 26.666882387]]]}}, {"id": "36887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122706394, 26.715466387], [142.122945006, 26.715187225], [142.122641115, 26.715206108], [142.122706394, 26.715466387]]]}}, {"id": "36888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203626394, 27.496736946], [142.203304721, 27.496920279], [142.20368, 27.496937225], [142.203626394, 27.496736946]]]}}, {"id": "36889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209815551, 27.501265829], [142.2095, 27.501138892], [142.209544163, 27.501353333], [142.209815551, 27.501265829]]]}}, {"id": "36890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098938885, 27.716627225], [142.098917224, 27.716910829], [142.09917, 27.716809162], [142.098938885, 27.716627225]]]}}, {"id": "36891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137649728, 27.688416946], [142.137567497, 27.688053613], [142.137418612, 27.688088613], [142.137649728, 27.688416946]]]}}, {"id": "36892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18978834, 27.142628333], [142.189982776, 27.142438054], [142.189512503, 27.142407775], [142.18978834, 27.142628333]]]}}, {"id": "36893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208042218, 26.569626108], [142.207797497, 26.569893613], [142.208037497, 26.569892225], [142.208042218, 26.569626108]]]}}, {"id": "36894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166823917, 26.682176892], [142.166919922, 26.682687198], [142.166917497, 26.682052387], [142.166823917, 26.682176892]]]}}, {"id": "36895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186294163, 27.083457775], [142.186465551, 27.083750829], [142.186505279, 27.083520829], [142.186294163, 27.083457775]]]}}, {"id": "36896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175805162, 26.597458441], [142.175343113, 26.597661306], [142.175526252, 26.597801], [142.175805162, 26.597458441]]]}}, {"id": "36897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143731673, 26.658109973], [142.144274189, 26.657812081], [142.143582529, 26.658059306], [142.143731673, 26.658109973]]]}}, {"id": "36898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15012834, 27.674409721], [142.150186394, 27.674119721], [142.150015279, 27.674273054], [142.15012834, 27.674409721]]]}}, {"id": "36899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169276394, 27.631008892], [142.169201388, 27.630677775], [142.16908917, 27.630925829], [142.169276394, 27.631008892]]]}}, {"id": "36900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183548197, 27.048139892], [142.183828911, 27.048126081], [142.183823943, 27.047912892], [142.183548197, 27.048139892]]]}}, {"id": "36901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204358054, 27.499665829], [142.203955551, 27.499835829], [142.204373891, 27.499761667], [142.204358054, 27.499665829]]]}}, {"id": "36902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183334527, 27.043761135], [142.182975642, 27.043852468], [142.183447393, 27.043850414], [142.183334527, 27.043761135]]]}}, {"id": "36903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141540337, 26.666958829], [142.141634553, 26.66637664], [142.141441388, 26.667039081], [142.141540337, 26.666958829]]]}}, {"id": "36904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129390506, 26.694240802], [142.129405084, 26.694598225], [142.129554163, 26.69438464], [142.129390506, 26.694240802]]]}}, {"id": "36905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12490083, 27.682806667], [142.124603606, 27.682611387], [142.124511946, 27.682774721], [142.12490083, 27.682806667]]]}}, {"id": "36906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182965188, 27.046795892], [142.182802503, 27.047039892], [142.18306131, 27.047072135], [142.182965188, 27.046795892]]]}}, {"id": "36907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167547782, 27.038139721], [142.167799728, 27.037850279], [142.167528885, 27.03799], [142.167547782, 27.038139721]]]}}, {"id": "36908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173778054, 27.116357495], [142.173423061, 27.116461667], [142.173522218, 27.116596667], [142.173778054, 27.116357495]]]}}, {"id": "36909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174507782, 26.594407225], [142.174623606, 26.594071946], [142.174385006, 26.594179162], [142.174507782, 26.594407225]]]}}, {"id": "36910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171425551, 27.035211387], [142.171138612, 27.035318613], [142.171425551, 27.035414441], [142.171425551, 27.035211387]]]}}, {"id": "36911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187226939, 27.120504441], [142.187170272, 27.120293613], [142.186785837, 27.120568333], [142.187226939, 27.120504441]]]}}, {"id": "36912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131261025, 26.688467973], [142.130930052, 26.68883736], [142.131432218, 26.688595973], [142.131261025, 26.688467973]]]}}, {"id": "36913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15975, 27.659824721], [142.159418612, 27.659653613], [142.15942, 27.659834441], [142.15975, 27.659824721]]]}}, {"id": "36914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.115991414, 26.701279279], [142.115772529, 26.701015387], [142.115671699, 26.701218441], [142.115991414, 26.701279279]]]}}, {"id": "36915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156848885, 26.542776387], [142.157008885, 26.543066946], [142.157087497, 26.543001946], [142.156848885, 26.542776387]]]}}, {"id": "36916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100924163, 27.716626108], [142.100726109, 27.716360829], [142.100637224, 27.716610559], [142.100924163, 27.716626108]]]}}, {"id": "36917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161105006, 26.558241667], [142.161206939, 26.557914441], [142.160987782, 26.558084441], [142.161105006, 26.558241667]]]}}, {"id": "36918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137776226, 26.701022198], [142.137995837, 26.701294667], [142.138106835, 26.701092829], [142.137776226, 26.701022198]]]}}, {"id": "36919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237097497, 27.112679162], [142.237025551, 27.112406667], [142.236968885, 27.112634721], [142.237097497, 27.112679162]]]}}, {"id": "36920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24941917, 27.091556946], [142.249129442, 27.091698054], [142.24941917, 27.091624721], [142.24941917, 27.091556946]]]}}, {"id": "36921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148293061, 26.584735], [142.148055006, 26.584482775], [142.14801083, 26.584545279], [142.148293061, 26.584735]]]}}, {"id": "36922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236233333, 27.111971946], [142.235973333, 27.112127225], [142.236383606, 27.112137495], [142.236233333, 27.111971946]]]}}, {"id": "36923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14439, 27.688222495], [142.144060558, 27.688122495], [142.144145551, 27.688336667], [142.14439, 27.688222495]]]}}, {"id": "36924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.069980661, 20.425315495], [136.069749339, 20.425017], [136.069557912, 20.425120333], [136.069980661, 20.425315495]]]}}, {"id": "36925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138387756, 26.679967108], [142.138146304, 26.68014436], [142.138424112, 26.680043973], [142.138387756, 26.679967108]]]}}, {"id": "36926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123711673, 27.717625279], [142.123566667, 27.717350559], [142.123486939, 27.717512775], [142.123711673, 27.717625279]]]}}, {"id": "36927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18184917, 27.62138], [142.18143, 27.621428333], [142.181516667, 27.621565], [142.18184917, 27.62138]]]}}, {"id": "36928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177903891, 27.033808892], [142.177753061, 27.033566108], [142.177740272, 27.033791946], [142.177903891, 27.033808892]]]}}, {"id": "36929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149879831, 26.708661829], [142.1503407, 26.708850081], [142.150121089, 26.708613748], [142.149879831, 26.708661829]]]}}, {"id": "36930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285128508, 24.745724234], [141.285406083, 24.745608459], [141.285037069, 24.745446901], [141.285128508, 24.745724234]]]}}, {"id": "36931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172177224, 27.114685559], [142.171830272, 27.114459721], [142.172131388, 27.114808054], [142.172177224, 27.114685559]]]}}, {"id": "36932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240541115, 26.567636108], [142.240330558, 26.567878054], [142.24059, 26.567857495], [142.240541115, 26.567636108]]]}}, {"id": "36933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12609083, 26.599094162], [142.125763891, 26.598993333], [142.126045006, 26.599175], [142.12609083, 26.599094162]]]}}, {"id": "36934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168145032, 26.685054802], [142.168434228, 26.68505564], [142.168388197, 26.684972829], [142.168145032, 26.685054802]]]}}, {"id": "36935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208074449, 27.489341108], [142.20774, 27.489623333], [142.208137497, 27.489414721], [142.208074449, 27.489341108]]]}}, {"id": "36936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.081360195, 20.425646108], [136.081070636, 20.425381387], [136.080930752, 20.425494], [136.081360195, 20.425646108]]]}}, {"id": "36937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378246122, 24.779781784], [141.37852572, 24.779635604], [141.378176991, 24.779425054], [141.378246122, 24.779781784]]]}}, {"id": "36938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103578054, 27.713787495], [142.103321388, 27.713587495], [142.103292218, 27.713806946], [142.103578054, 27.713787495]]]}}, {"id": "36939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138837497, 26.586699162], [142.138550558, 26.586777775], [142.138964449, 26.58687], [142.138837497, 26.586699162]]]}}, {"id": "36940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206408054, 26.553706667], [142.206201673, 26.553465], [142.206180272, 26.553683333], [142.206408054, 26.553706667]]]}}, {"id": "36941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168916394, 27.636706667], [142.16852083, 27.636604441], [142.168862218, 27.636816387], [142.168916394, 27.636706667]]]}}, {"id": "36942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133714163, 26.702581946], [142.133419637, 26.702684829], [142.133681829, 26.702771775], [142.133714163, 26.702581946]]]}}, {"id": "36943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176778885, 27.044340279], [142.17699083, 27.044247495], [142.176688612, 27.044187775], [142.176778885, 27.044340279]]]}}, {"id": "36944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184207224, 27.152733892], [142.184513606, 27.152676387], [142.184377497, 27.152477775], [142.184207224, 27.152733892]]]}}, {"id": "36945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.0695407, 20.425172333], [136.06976406, 20.425458387], [136.069941829, 20.425369892], [136.0695407, 20.425172333]]]}}, {"id": "36946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128736109, 26.694686468], [142.128817639, 26.694911162], [142.128894306, 26.694720468], [142.128736109, 26.694686468]]]}}, {"id": "36947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.11551834, 27.741313613], [142.11554, 27.741571108], [142.115736939, 27.741395829], [142.11551834, 27.741313613]]]}}, {"id": "36948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191570558, 27.107161387], [142.191807224, 27.106858613], [142.191513061, 27.107078892], [142.191570558, 27.107161387]]]}}, {"id": "36949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152504578, 26.708289865], [142.1522593, 26.708560108], [142.152583554, 26.708587198], [142.152504578, 26.708289865]]]}}, {"id": "36950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171364163, 27.053341108], [142.171062503, 27.053203054], [142.17126834, 27.053452495], [142.171364163, 27.053341108]]]}}, {"id": "36951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130692555, 26.689051306], [142.130562827, 26.689045559], [142.12996489, 26.689632], [142.130692555, 26.689051306]]]}}, {"id": "36952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212457497, 26.555582495], [142.212326667, 26.555335279], [142.212212776, 26.555533054], [142.212457497, 26.555582495]]]}}, {"id": "36953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.105653606, 27.719296387], [142.10546834, 27.719091946], [142.105421673, 27.719331667], [142.105653606, 27.719296387]]]}}, {"id": "36954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171788885, 27.117705279], [142.171866939, 27.117364162], [142.171752503, 27.117300279], [142.171788885, 27.117705279]]]}}, {"id": "36955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163756005, 26.665366946], [142.163947613, 26.665170667], [142.163651219, 26.665301802], [142.163756005, 26.665366946]]]}}, {"id": "36956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155289728, 26.542268333], [142.155052218, 26.542184441], [142.155201946, 26.542513892], [142.155289728, 26.542268333]]]}}, {"id": "36957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135511414, 26.684016081], [142.135150117, 26.684114559], [142.135624617, 26.684225306], [142.135511414, 26.684016081]]]}}, {"id": "36958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142328392, 26.64823164], [142.142391336, 26.648461027], [142.142573865, 26.648218667], [142.142328392, 26.64823164]]]}}, {"id": "36959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149195006, 27.671779441], [142.148956939, 27.671604441], [142.149063333, 27.671817775], [142.149195006, 27.671779441]]]}}, {"id": "36960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151729442, 26.543597225], [142.152015006, 26.543639441], [142.151801673, 26.543481387], [142.151729442, 26.543597225]]]}}, {"id": "36961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121146394, 26.714916108], [142.121501115, 26.714958333], [142.121400558, 26.714789441], [142.121146394, 26.714916108]]]}}, {"id": "36962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.080909922, 20.425573775], [136.081034617, 20.425801027], [136.081332088, 20.425718775], [136.080909922, 20.425573775]]]}}, {"id": "36963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125880272, 26.610456387], [142.125614163, 26.610430829], [142.125665837, 26.610557775], [142.125880272, 26.610456387]]]}}, {"id": "36964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188730117, 27.067840108], [142.188990973, 27.068050414], [142.18933144, 27.067987333], [142.188730117, 27.067840108]]]}}, {"id": "36965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144660973, 26.648741775], [142.144646031, 26.648925027], [142.145018755, 26.648574081], [142.144660973, 26.648741775]]]}}, {"id": "36966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228878612, 26.576928333], [142.229008612, 26.577160559], [142.229064449, 26.576948892], [142.228878612, 26.576928333]]]}}, {"id": "36967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16181428, 26.687489225], [142.16205847, 26.687637613], [142.16207358, 26.687461865], [142.16181428, 26.687489225]]]}}, {"id": "36968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151144721, 26.559534721], [142.151087497, 26.55924], [142.151034163, 26.559534721], [142.151144721, 26.559534721]]]}}, {"id": "36969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146616446, 26.661093108], [142.146548664, 26.661351054], [142.14671061, 26.661199973], [142.146616446, 26.661093108]]]}}, {"id": "36970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154536939, 26.542172495], [142.154729442, 26.542052495], [142.154549442, 26.541955279], [142.154536939, 26.542172495]]]}}, {"id": "36971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163516835, 26.665193802], [142.163516887, 26.665518586], [142.163612555, 26.665253198], [142.163516835, 26.665193802]]]}}, {"id": "36972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149148612, 27.674883054], [142.148991115, 27.675091387], [142.149206394, 27.675065], [142.149148612, 27.674883054]]]}}, {"id": "36973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130206835, 26.688800468], [142.13004022, 26.689055252], [142.130357639, 26.688961441], [142.130206835, 26.688800468]]]}}, {"id": "36974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13193083, 26.68746], [142.131852244, 26.68781436], [142.132033865, 26.687674559], [142.13193083, 26.68746]]]}}, {"id": "36975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.108513061, 27.714703892], [142.108768054, 27.714474441], [142.108572503, 27.714508892], [142.108513061, 27.714703892]]]}}, {"id": "36976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124770272, 27.686416108], [142.124798054, 27.686161946], [142.124622503, 27.686320829], [142.124770272, 27.686416108]]]}}, {"id": "36977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101452776, 27.720982225], [142.101347224, 27.720728333], [142.101220272, 27.720916667], [142.101452776, 27.720982225]]]}}, {"id": "36978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102937782, 27.714040279], [142.103066109, 27.713865279], [142.102863333, 27.713814721], [142.102937782, 27.714040279]]]}}, {"id": "36979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159591115, 27.662446108], [142.159288612, 27.662463892], [142.159308612, 27.662505559], [142.159591115, 27.662446108]]]}}, {"id": "36980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186983061, 27.126655279], [142.186787497, 27.126947495], [142.187053606, 27.126705279], [142.186983061, 27.126655279]]]}}, {"id": "36981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175310558, 27.055364162], [142.175235279, 27.055142225], [142.175091115, 27.055373892], [142.175310558, 27.055364162]]]}}, {"id": "36982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173886667, 26.620064279], [142.174246978, 26.620259532], [142.174307977, 26.620215027], [142.173886667, 26.620064279]]]}}, {"id": "36983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134016939, 26.686155468], [142.134094034, 26.68633764], [142.13419939, 26.686299919], [142.134016939, 26.686155468]]]}}, {"id": "36984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126893333, 26.700711198], [142.126824773, 26.700948721], [142.126998249, 26.700960027], [142.126893333, 26.700711198]]]}}, {"id": "36985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128884228, 26.694948468], [142.12888275, 26.695157694], [142.128972607, 26.694996946], [142.128884228, 26.694948468]]]}}, {"id": "36986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169581388, 27.038273054], [142.169396667, 27.038003613], [142.169362218, 27.038120829], [142.169581388, 27.038273054]]]}}, {"id": "36987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139426939, 27.671809162], [142.13913, 27.671686108], [142.139115551, 27.671843054], [142.139426939, 27.671809162]]]}}, {"id": "36988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229722503, 26.564549721], [142.229758054, 26.564811108], [142.229875551, 26.564603333], [142.229722503, 26.564549721]]]}}, {"id": "36989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189496355, 27.073544721], [142.18948655, 27.073828054], [142.189660726, 27.073612279], [142.189496355, 27.073544721]]]}}, {"id": "36990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219241388, 26.563809721], [142.219087497, 26.564010279], [142.219263061, 26.563980829], [142.219241388, 26.563809721]]]}}, {"id": "36991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16169917, 26.582829721], [142.161565006, 26.583060559], [142.16183834, 26.582912225], [142.16169917, 26.582829721]]]}}, {"id": "36992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188131115, 27.115801946], [142.187835551, 27.115839162], [142.188005837, 27.115948613], [142.188131115, 27.115801946]]]}}, {"id": "36993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140823022, 26.66688636], [142.140726719, 26.666593441], [142.140762387, 26.666921802], [142.140823022, 26.66688636]]]}}, {"id": "36994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101131388, 27.715316946], [142.100866394, 27.715282775], [142.100894721, 27.715426667], [142.101131388, 27.715316946]]]}}, {"id": "36995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213448612, 26.564792225], [142.213719442, 26.56485], [142.213536667, 26.564681946], [142.213448612, 26.564792225]]]}}, {"id": "36996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226804449, 26.563181667], [142.22670083, 26.563465], [142.226900558, 26.563262495], [142.226804449, 26.563181667]]]}}, {"id": "36997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200703606, 27.160991667], [142.200431946, 27.161079162], [142.200664721, 27.161140559], [142.200703606, 27.160991667]]]}}, {"id": "36998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14049214, 26.667264694], [142.140266109, 26.667096775], [142.140386278, 26.667357586], [142.14049214, 26.667264694]]]}}, {"id": "36999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16824917, 27.122224162], [142.168324721, 27.121948054], [142.168145006, 27.122066667], [142.16824917, 27.122224162]]]}}, {"id": "37000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236721388, 27.112368892], [142.236635551, 27.112086387], [142.236481673, 27.112317225], [142.236721388, 27.112368892]]]}}, {"id": "37001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162653061, 27.120157495], [142.162876667, 27.119926667], [142.16259083, 27.120119441], [142.162653061, 27.120157495]]]}}, {"id": "37002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17916489, 26.604905802], [142.178825447, 26.605007054], [142.17893642, 26.605078946], [142.17916489, 26.604905802]]]}}, {"id": "37003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141965888, 26.665868225], [142.141748975, 26.66603164], [142.141771193, 26.666286973], [142.141965888, 26.665868225]]]}}, {"id": "37004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189861141, 27.068455865], [142.189566031, 27.06850464], [142.18973655, 27.068591252], [142.189861141, 27.068455865]]]}}, {"id": "37005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232496109, 27.062117775], [142.232598054, 27.061959441], [142.232424449, 27.062010279], [142.232496109, 27.062117775]]]}}, {"id": "37006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129929948, 26.688403198], [142.129635966, 26.688634802], [142.129977613, 26.688433135], [142.129929948, 26.688403198]]]}}, {"id": "37007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234394254, 27.077346829], [142.234122672, 27.077468333], [142.233979689, 27.077666135], [142.234394254, 27.077346829]]]}}, {"id": "37008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199041115, 27.122210559], [142.19907834, 27.122452775], [142.199132776, 27.122252495], [142.199041115, 27.122210559]]]}}, {"id": "37009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152523891, 26.586549162], [142.152364449, 26.586699162], [142.152571946, 26.586820829], [142.152523891, 26.586549162]]]}}, {"id": "37010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232953217, 27.077648252], [142.233012581, 27.077394919], [142.232879948, 27.077667532], [142.232953217, 27.077648252]]]}}, {"id": "37011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099731673, 27.721667225], [142.099591115, 27.721451387], [142.099628054, 27.721718892], [142.099731673, 27.721667225]]]}}, {"id": "37012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.117040272, 27.737189162], [142.116787224, 27.737154721], [142.116920272, 27.737322775], [142.117040272, 27.737189162]]]}}, {"id": "37013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176203385, 26.616861748], [142.176088366, 26.616711613], [142.175977367, 26.616883054], [142.176203385, 26.616861748]]]}}, {"id": "37014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126249442, 27.681667775], [142.126063891, 27.681477775], [142.125917224, 27.681516108], [142.126249442, 27.681667775]]]}}, {"id": "37015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228880558, 27.121511667], [142.228707782, 27.121306108], [142.228704163, 27.121473613], [142.228880558, 27.121511667]]]}}, {"id": "37016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.273920765, 25.423111532], [141.273851855, 25.423314568], [141.274034682, 25.423230712], [141.273920765, 25.423111532]]]}}, {"id": "37017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18537917, 27.178583892], [142.185314163, 27.178304441], [142.185185551, 27.178371946], [142.18537917, 27.178583892]]]}}, {"id": "37018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186638885, 27.120135279], [142.186493891, 27.119978333], [142.186361946, 27.120106667], [142.186638885, 27.120135279]]]}}, {"id": "37019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168604449, 26.686577495], [142.16865, 26.686347225], [142.168502218, 26.686404162], [142.168604449, 26.686577495]]]}}, {"id": "37020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159462218, 27.662889441], [142.159183333, 27.662902775], [142.159223333, 27.662986108], [142.159462218, 27.662889441]]]}}, {"id": "37021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202761115, 27.167155], [142.202506109, 27.167015], [142.202625279, 27.167210829], [142.202761115, 27.167155]]]}}, {"id": "37022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199436394, 27.095365], [142.199646394, 27.095393892], [142.19947834, 27.095256108], [142.199436394, 27.095365]]]}}, {"id": "37023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128237782, 26.5973], [142.128086939, 26.597106667], [142.128132218, 26.597396946], [142.128237782, 26.5973]]]}}, {"id": "37024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148704163, 27.685095279], [142.148538054, 27.684914441], [142.148495279, 27.684996946], [142.148704163, 27.685095279]]]}}, {"id": "37025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186525006, 27.084225829], [142.186340272, 27.084078333], [142.186250272, 27.084149162], [142.186525006, 27.084225829]]]}}, {"id": "37026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285716368, 24.788363189], [141.285527562, 24.788574], [141.285711219, 24.788623721], [141.285716368, 24.788363189]]]}}, {"id": "37027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212575837, 27.502352225], [142.212780558, 27.502507775], [142.212840558, 27.502336946], [142.212575837, 27.502352225]]]}}, {"id": "37028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206867808, 27.103806559], [142.206575966, 27.103823225], [142.206547639, 27.103931775], [142.206867808, 27.103806559]]]}}, {"id": "37029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180417224, 27.041902775], [142.180731115, 27.042005559], [142.180432503, 27.041850829], [142.180417224, 27.041902775]]]}}, {"id": "37030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181657471, 26.623442586], [142.181598223, 26.623877559], [142.181717302, 26.623364892], [142.181657471, 26.623442586]]]}}, {"id": "37031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.215216109, 27.493023613], [142.215456109, 27.493012495], [142.21539917, 27.492905], [142.215216109, 27.493023613]]]}}, {"id": "37032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129671115, 26.689168054], [142.12936917, 26.689096387], [142.129305006, 26.689201946], [142.129671115, 26.689168054]]]}}, {"id": "37033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214435966, 27.100959333], [142.214293113, 27.101201441], [142.214554254, 27.100958973], [142.214435966, 27.100959333]]]}}, {"id": "37034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142937198, 26.67651836], [142.142795668, 26.676791829], [142.142866031, 26.676830108], [142.142937198, 26.67651836]]]}}, {"id": "37035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184822503, 27.144695829], [142.184634721, 27.144875279], [142.184849442, 27.144750829], [142.184822503, 27.144695829]]]}}, {"id": "37036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170988612, 27.043689441], [142.170998612, 27.043495829], [142.170915551, 27.043508333], [142.170988612, 27.043689441]]]}}, {"id": "37037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170491673, 27.119550279], [142.170321115, 27.119369441], [142.170260272, 27.119474441], [142.170491673, 27.119550279]]]}}, {"id": "37038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150558612, 26.647296495], [142.150860973, 26.647220279], [142.150616329, 26.647190748], [142.150558612, 26.647296495]]]}}, {"id": "37039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21333834, 26.564495279], [142.213141673, 26.564615559], [142.213377497, 26.564690829], [142.21333834, 26.564495279]]]}}, {"id": "37040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186805006, 27.137776108], [142.187011946, 27.137658892], [142.186799728, 27.137654162], [142.186805006, 27.137776108]]]}}, {"id": "37041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236581946, 27.098645829], [142.236563061, 27.098835], [142.23671917, 27.098713333], [142.236581946, 27.098645829]]]}}, {"id": "37042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152139144, 26.643468586], [142.151994501, 26.643704495], [142.15217, 26.643641586], [142.152139144, 26.643468586]]]}}, {"id": "37043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182245616, 26.621618775], [142.182397134, 26.621994279], [142.182487562, 26.62187636], [142.182245616, 26.621618775]]]}}, {"id": "37044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148300026, 26.648852667], [142.148344475, 26.64911764], [142.148419883, 26.648863387], [142.148300026, 26.648852667]]]}}, {"id": "37045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181293891, 27.092732225], [142.18091917, 27.092615279], [142.181287224, 27.092799721], [142.181293891, 27.092732225]]]}}, {"id": "37046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231258054, 26.578941108], [142.231073333, 26.578834721], [142.231143061, 26.57906], [142.231258054, 26.578941108]]]}}, {"id": "37047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134052996, 26.685868495], [142.134023333, 26.686019279], [142.134217665, 26.686021775], [142.134052996, 26.685868495]]]}}, {"id": "37048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128014358, 26.694487748], [142.127977108, 26.694701892], [142.128096304, 26.694706279], [142.128014358, 26.694487748]]]}}, {"id": "37049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22873, 27.121623054], [142.228492218, 27.121609721], [142.228652218, 27.121730829], [142.22873, 27.121623054]]]}}, {"id": "37050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233823333, 27.072343054], [142.234007497, 27.072089441], [142.233741946, 27.072346387], [142.233823333, 27.072343054]]]}}, {"id": "37051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230774501, 27.053381667], [142.230956472, 27.053487532], [142.230968911, 27.053354559], [142.230774501, 27.053381667]]]}}, {"id": "37052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203421946, 27.499786667], [142.203474721, 27.499631946], [142.20325083, 27.499691108], [142.203421946, 27.499786667]]]}}, {"id": "37053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160483606, 27.662226667], [142.160216109, 27.662140279], [142.160258054, 27.662253333], [142.160483606, 27.662226667]]]}}, {"id": "37054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200943606, 27.163477225], [142.200774721, 27.16332], [142.200821673, 27.163509162], [142.200943606, 27.163477225]]]}}, {"id": "37055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152634306, 26.637487027], [142.15250978, 26.637796667], [142.152565188, 26.637838829], [142.152634306, 26.637487027]]]}}, {"id": "37056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230203774, 26.582153928], [142.230376148, 26.582293225], [142.230397445, 26.582166117], [142.230203774, 26.582153928]]]}}, {"id": "37057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162325006, 26.563864162], [142.162164449, 26.564], [142.162341388, 26.564048333], [142.162325006, 26.563864162]]]}}, {"id": "37058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168254475, 26.686013802], [142.168441167, 26.686154108], [142.168415499, 26.685985892], [142.168254475, 26.686013802]]]}}, {"id": "37059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135080272, 27.686918054], [142.134854163, 27.686903054], [142.135110558, 27.687086387], [142.135080272, 27.686918054]]]}}, {"id": "37060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178421115, 27.625000559], [142.178650558, 27.625116946], [142.178508885, 27.624947495], [142.178421115, 27.625000559]]]}}, {"id": "37061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28372428, 24.751572243], [141.283377704, 24.751305613], [141.283590623, 24.751587946], [141.28372428, 24.751572243]]]}}, {"id": "37062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194910752, 27.076007414], [142.194969663, 27.076193613], [142.195039585, 27.076050198], [142.194910752, 27.076007414]]]}}, {"id": "37063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136312607, 26.682459387], [142.136272283, 26.682587054], [142.136522361, 26.682572559], [142.136312607, 26.682459387]]]}}, {"id": "37064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244263061, 27.091779721], [142.244226939, 27.092034162], [142.244378885, 27.091902495], [142.244263061, 27.091779721]]]}}, {"id": "37065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231741946, 27.114630279], [142.231904449, 27.114447775], [142.231694163, 27.114316108], [142.231741946, 27.114630279]]]}}, {"id": "37066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128617717, 26.694417162], [142.128437471, 26.694544333], [142.128578366, 26.694617865], [142.128617717, 26.694417162]]]}}, {"id": "37067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285233268, 24.745177802], [141.285490726, 24.745240694], [141.285292711, 24.745067495], [141.285233268, 24.745177802]]]}}, {"id": "37068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171921673, 27.116873333], [142.172033606, 27.117170279], [142.172063333, 27.116914162], [142.171921673, 27.116873333]]]}}, {"id": "37069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20257022, 27.105526], [142.202675642, 27.105695613], [142.203006783, 27.105559748], [142.20257022, 27.105526]]]}}, {"id": "37070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161819728, 26.68813036], [142.16189345, 26.688327387], [142.161990895, 26.688232892], [142.161819728, 26.68813036]]]}}, {"id": "37071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181209533, 26.617109919], [142.181431505, 26.617194586], [142.181228781, 26.61703], [142.181209533, 26.617109919]]]}}, {"id": "37072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230982776, 26.578986387], [142.230867782, 26.578872225], [142.230827782, 26.579136667], [142.230982776, 26.578986387]]]}}, {"id": "37073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182565668, 27.04060536], [142.182476589, 27.040421252], [142.182385616, 27.040574721], [142.182565668, 27.04060536]]]}}, {"id": "37074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196184721, 27.17738], [142.195941946, 27.177340279], [142.195936667, 27.177464721], [142.196184721, 27.17738]]]}}, {"id": "37075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21505917, 27.108265279], [142.215263891, 27.108177775], [142.21527083, 27.108046946], [142.21505917, 27.108265279]]]}}, {"id": "37076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203143554, 27.044089802], [142.203070999, 27.044223775], [142.2032607, 27.044275946], [142.203143554, 27.044089802]]]}}, {"id": "37077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176563891, 27.03478], [142.176308612, 27.034672775], [142.176226667, 27.034768613], [142.176563891, 27.03478]]]}}, {"id": "37078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127014137, 26.697257441], [142.127091115, 26.697446946], [142.127207276, 26.697339694], [142.127014137, 26.697257441]]]}}, {"id": "37079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182668521, 27.086360495], [142.182832529, 27.086202054], [142.182720337, 27.08615436], [142.182668521, 27.086360495]]]}}, {"id": "37080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16200297, 26.703316559], [142.162262438, 26.703515441], [142.161985888, 26.703249667], [142.16200297, 26.703316559]]]}}, {"id": "37081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156999442, 27.664948054], [142.156862503, 27.664870559], [142.15679083, 27.665012775], [142.156999442, 27.664948054]]]}}, {"id": "37082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142419728, 26.676910532], [142.142447328, 26.677122081], [142.142526057, 26.676933], [142.142419728, 26.676910532]]]}}, {"id": "37083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145835032, 26.666671162], [142.145940169, 26.666883892], [142.146113217, 26.666850946], [142.145835032, 26.666671162]]]}}, {"id": "37084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185255837, 26.66058], [142.185081115, 26.66042], [142.185041388, 26.660491108], [142.185255837, 26.66058]]]}}, {"id": "37085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142486667, 26.587441667], [142.142307224, 26.587374441], [142.142321388, 26.587528054], [142.142486667, 26.587441667]]]}}, {"id": "37086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184489442, 27.061311667], [142.184668054, 27.061253892], [142.184516667, 27.061109441], [142.184489442, 27.061311667]]]}}, {"id": "37087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127881971, 26.692470667], [142.128112607, 26.692582108], [142.12828786, 26.692575279], [142.127881971, 26.692470667]]]}}, {"id": "37088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196418054, 27.039325973], [142.196613606, 27.039452333], [142.196561089, 27.039209333], [142.196418054, 27.039325973]]]}}, {"id": "37089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143043061, 26.586711387], [142.142821115, 26.586641108], [142.142853333, 26.586768892], [142.143043061, 26.586711387]]]}}, {"id": "37090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136486394, 27.687870279], [142.136277497, 27.687788333], [142.136307497, 27.687915], [142.136486394, 27.687870279]]]}}, {"id": "37091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227766939, 27.116079162], [142.227498612, 27.116036667], [142.227572776, 27.116162225], [142.227766939, 27.116079162]]]}}, {"id": "37092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.116824695, 26.702671532], [142.116915253, 26.70253264], [142.116765525, 26.702552919], [142.116824695, 26.702671532]]]}}, {"id": "37093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168599442, 27.036345279], [142.16875083, 27.036229441], [142.168673606, 27.036192775], [142.168599442, 27.036345279]]]}}, {"id": "37094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142902776, 26.665735829], [142.142940272, 26.665618333], [142.142737497, 26.665613613], [142.142902776, 26.665735829]]]}}, {"id": "37095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181818612, 27.087163333], [142.182063891, 27.087124441], [142.18184834, 27.087067775], [142.181818612, 27.087163333]]]}}, {"id": "37096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136738885, 26.680734441], [142.136817497, 26.680912495], [142.136926939, 26.680746108], [142.136738885, 26.680734441]]]}}, {"id": "37097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194067497, 27.107968892], [142.194111673, 27.107735], [142.194026109, 27.107773333], [142.194067497, 27.107968892]]]}}, {"id": "37098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171441388, 27.02984], [142.171431946, 27.029648054], [142.171340558, 27.029704441], [142.171441388, 27.02984]]]}}, {"id": "37099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.094343891, 27.716805559], [142.094114449, 27.716829162], [142.094136394, 27.716901108], [142.094343891, 27.716805559]]]}}, {"id": "37100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167099364, 26.685004865], [142.167288911, 26.685038306], [142.167328638, 26.684924252], [142.167099364, 26.685004865]]]}}, {"id": "37101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16854428, 26.690475225], [142.168716861, 26.690369414], [142.168545188, 26.690348225], [142.16854428, 26.690475225]]]}}, {"id": "37102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.45145, 24.243928613], [141.451711673, 24.243826946], [141.451726939, 24.243773333], [141.45145, 24.243928613]]]}}, {"id": "37103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196954669, 27.039020775], [142.196760661, 27.039103829], [142.196664137, 27.03922636], [142.196954669, 27.039020775]]]}}, {"id": "37104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195501115, 27.197429162], [142.195228885, 27.197497225], [142.195284163, 27.197595279], [142.195501115, 27.197429162]]]}}, {"id": "37105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179198885, 27.045246387], [142.179371946, 27.045117495], [142.179166109, 27.045086667], [142.179198885, 27.045246387]]]}}, {"id": "37106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174821829, 26.647664919], [142.174765551, 26.647837748], [142.174947951, 26.647823441], [142.174821829, 26.647664919]]]}}, {"id": "37107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13945978, 26.678857108], [142.139421634, 26.679043441], [142.139507367, 26.678972306], [142.13945978, 26.678857108]]]}}, {"id": "37108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183223891, 27.127659721], [142.183028612, 27.127683333], [142.183151115, 27.127782225], [142.183223891, 27.127659721]]]}}, {"id": "37109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189179948, 27.073708252], [142.189153645, 27.073896198], [142.189273722, 27.073841973], [142.189179948, 27.073708252]]]}}, {"id": "37110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238412387, 27.048211532], [142.238602192, 27.048255252], [142.238454086, 27.048097468], [142.238412387, 27.048211532]]]}}, {"id": "37111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181612698, 27.040894775], [142.18146594, 27.04095464], [142.181770117, 27.04106264], [142.181612698, 27.040894775]]]}}, {"id": "37112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125649494, 26.700691252], [142.125803022, 26.700764135], [142.125747951, 26.700655973], [142.125649494, 26.700691252]]]}}, {"id": "37113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125677224, 26.700637495], [142.125468054, 26.700643054], [142.125562776, 26.700757225], [142.125677224, 26.700637495]]]}}, {"id": "37114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181749948, 27.045500279], [142.181859027, 27.045689694], [142.1818562, 27.045503225], [142.181749948, 27.045500279]]]}}, {"id": "37115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176497782, 27.634082775], [142.176551673, 27.634249721], [142.176620272, 27.634191946], [142.176497782, 27.634082775]]]}}, {"id": "37116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.211006589, 27.103412748], [142.211075694, 27.103528162], [142.211217004, 27.103428495], [142.211006589, 27.103412748]]]}}, {"id": "37117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136380143, 26.681615162], [142.136459364, 26.681990135], [142.13653703, 26.682063721], [142.136380143, 26.681615162]]]}}, {"id": "37118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144164137, 26.675611414], [142.144362866, 26.675901694], [142.144415888, 26.6759], [142.144164137, 26.675611414]]]}}, {"id": "37119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161860026, 26.687863135], [142.161889857, 26.688076108], [142.161955357, 26.687837919], [142.161860026, 26.687863135]]]}}, {"id": "37120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169650558, 27.051503054], [142.169605279, 27.051311108], [142.169537497, 27.051532225], [142.169650558, 27.051503054]]]}}, {"id": "37121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18071572, 26.630381081], [142.180819974, 26.630568694], [142.180815305, 26.630412802], [142.18071572, 26.630381081]]]}}, {"id": "37122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160603333, 27.105636387], [142.160484449, 27.105737495], [142.160671673, 27.105788613], [142.160603333, 27.105636387]]]}}, {"id": "37123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184791946, 27.155808613], [142.184783606, 27.156071946], [142.184851946, 27.155807225], [142.184791946, 27.155808613]]]}}, {"id": "37124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101867224, 27.713179721], [142.101656394, 27.71317], [142.101837782, 27.713258892], [142.101867224, 27.713179721]]]}}, {"id": "37125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184429442, 27.178097225], [142.18429834, 27.177933333], [142.184284721, 27.178098054], [142.184429442, 27.178097225]]]}}, {"id": "37126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.282334163, 24.809480829], [141.282277224, 24.809656387], [141.282388885, 24.809676108], [141.282334163, 24.809480829]]]}}, {"id": "37127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241000804, 27.046988441], [142.240852944, 27.047177441], [142.24104939, 27.047122667], [142.241000804, 27.046988441]]]}}, {"id": "37128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141122503, 27.671193892], [142.14082834, 27.671170559], [142.141117497, 27.671247775], [142.141122503, 27.671193892]]]}}, {"id": "37129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231891829, 27.064885252], [142.232092049, 27.064780865], [142.231899585, 27.064641108], [142.231891829, 27.064885252]]]}}, {"id": "37130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181188054, 27.096446946], [142.181342218, 27.096254721], [142.181172218, 27.096323613], [142.181188054, 27.096446946]]]}}, {"id": "37131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136134643, 26.684135919], [142.136007562, 26.684239559], [142.136284163, 26.684212748], [142.136134643, 26.684135919]]]}}, {"id": "37132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123170947, 26.705627], [142.122992387, 26.705567225], [142.123013696, 26.70565864], [142.123170947, 26.705627]]]}}, {"id": "37133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238337951, 27.047479027], [142.238451855, 27.047434973], [142.238374669, 27.047392333], [142.238337951, 27.047479027]]]}}, {"id": "37134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141678301, 26.666069613], [142.141446913, 26.666232225], [142.141533554, 26.666268892], [142.141678301, 26.666069613]]]}}, {"id": "37135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156080947, 26.708201694], [142.156289637, 26.708177721], [142.156296252, 26.708078252], [142.156080947, 26.708201694]]]}}, {"id": "37136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179519728, 26.608354162], [142.179636667, 26.608517775], [142.179648054, 26.608335], [142.179519728, 26.608354162]]]}}, {"id": "37137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181656861, 27.073323559], [142.181732698, 27.073456225], [142.181802088, 27.073340973], [142.181656861, 27.073323559]]]}}, {"id": "37138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23475834, 27.077257225], [142.235034721, 27.077277495], [142.234724721, 27.077189721], [142.23475834, 27.077257225]]]}}, {"id": "37139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185313139, 27.039532919], [142.185247691, 27.039687252], [142.185348586, 27.039621333], [142.185313139, 27.039532919]]]}}, {"id": "37140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171081673, 27.033726946], [142.171201673, 27.033586387], [142.170971673, 27.033690829], [142.171081673, 27.033726946]]]}}, {"id": "37141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.279223891, 24.801851946], [141.279025837, 24.80181], [141.27905834, 24.801915829], [141.279223891, 24.801851946]]]}}, {"id": "37142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233968029, 27.07767564], [142.233842672, 27.077858081], [142.234082023, 27.077709306], [142.233968029, 27.07767564]]]}}, {"id": "37143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141656109, 27.671096108], [142.141779728, 27.670948054], [142.141593333, 27.671011946], [142.141656109, 27.671096108]]]}}, {"id": "37144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13083808, 26.68696936], [142.130646744, 26.687123892], [142.130921894, 26.686963973], [142.13083808, 26.68696936]]]}}, {"id": "37145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181504163, 27.620841108], [142.181676109, 27.620734162], [142.181495006, 27.620730279], [142.181504163, 27.620841108]]]}}, {"id": "37146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128006939, 26.698955829], [142.127934721, 26.698818892], [142.127848612, 26.698920279], [142.128006939, 26.698955829]]]}}, {"id": "37147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129044617, 26.690757802], [142.12922869, 26.690748054], [142.129080337, 26.690620108], [142.129044617, 26.690757802]]]}}, {"id": "37148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129723943, 26.690711946], [142.129733995, 26.690902865], [142.129858145, 26.690758495], [142.129723943, 26.690711946]]]}}, {"id": "37149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17277083, 27.035022225], [142.172616394, 27.035160559], [142.172776939, 27.035085279], [142.17277083, 27.035022225]]]}}, {"id": "37150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195369442, 27.175492495], [142.195294163, 27.175646667], [142.195424449, 27.175539162], [142.195369442, 27.175492495]]]}}, {"id": "37151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229714721, 27.115098892], [142.22956083, 27.114980559], [142.229441946, 27.115053892], [142.229714721, 27.115098892]]]}}, {"id": "37152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136984501, 26.680844198], [142.136979144, 26.680984108], [142.137066135, 26.680879135], [142.136984501, 26.680844198]]]}}, {"id": "37153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129543022, 26.693684468], [142.129832672, 26.693713], [142.129519339, 26.693632225], [142.129543022, 26.693684468]]]}}, {"id": "37154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178830272, 27.036766387], [142.17870917, 27.036613613], [142.178655551, 27.036678333], [142.178830272, 27.036766387]]]}}, {"id": "37155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196223333, 27.17377], [142.196123606, 27.173906108], [142.196278612, 27.173846387], [142.196223333, 27.17377]]]}}, {"id": "37156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171175279, 27.051107775], [142.171028054, 27.050994441], [142.171006394, 27.051068892], [142.171175279, 27.051107775]]]}}, {"id": "37157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187104838, 27.060154495], [142.18717022, 27.060372829], [142.187146615, 27.060123667], [142.187104838, 27.060154495]]]}}, {"id": "37158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167052581, 26.680366387], [142.167128521, 26.680550892], [142.167136226, 26.680377495], [142.167052581, 26.680366387]]]}}, {"id": "37159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187603359, 27.061797333], [142.18766594, 27.061602748], [142.187511699, 27.06172064], [142.187603359, 27.061797333]]]}}, {"id": "37160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100680272, 27.714407775], [142.100580272, 27.714544721], [142.100707224, 27.714552225], [142.100680272, 27.714407775]]]}}, {"id": "37161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172426939, 27.042824721], [142.17223917, 27.042858054], [142.172413891, 27.042953333], [142.172426939, 27.042824721]]]}}, {"id": "37162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122261699, 26.710690892], [142.122084189, 26.710781027], [142.122103528, 26.710822252], [142.122261699, 26.710690892]]]}}, {"id": "37163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230132218, 27.114816387], [142.229946939, 27.114987225], [142.230155279, 27.114859162], [142.230132218, 27.114816387]]]}}, {"id": "37164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.112250817, 27.744773468], [142.112379663, 27.744896045], [142.11244546, 27.744827739], [142.112250817, 27.744773468]]]}}, {"id": "37165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207857497, 27.489979162], [142.207910272, 27.489798333], [142.20782834, 27.489829441], [142.207857497, 27.489979162]]]}}, {"id": "37166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129492672, 26.688514892], [142.129271608, 26.688635252], [142.129521997, 26.688608387], [142.129492672, 26.688514892]]]}}, {"id": "37167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.211914449, 26.564537775], [142.211941388, 26.564692495], [142.212014449, 26.564568892], [142.211914449, 26.564537775]]]}}, {"id": "37168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219125136, 27.100974306], [142.218862698, 27.101165532], [142.219192866, 27.100998027], [142.219125136, 27.100974306]]]}}, {"id": "37169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207606693, 27.103223306], [142.2076493, 27.103354667], [142.207786394, 27.103308973], [142.207606693, 27.103223306]]]}}, {"id": "37170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143506278, 26.707648279], [142.143293645, 26.707825135], [142.143571479, 26.707696613], [142.143506278, 26.707648279]]]}}, {"id": "37171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121469339, 26.705221198], [142.121725642, 26.705424613], [142.12175786, 26.705406081], [142.121469339, 26.705221198]]]}}, {"id": "37172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142396887, 26.709217162], [142.142166498, 26.709202054], [142.142251673, 26.709305495], [142.142396887, 26.709217162]]]}}, {"id": "37173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144574163, 26.655734162], [142.144703606, 26.655846667], [142.144683891, 26.655621667], [142.144574163, 26.655734162]]]}}, {"id": "37174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214644384, 27.100785441], [142.214824137, 27.100861162], [142.214843333, 27.100718892], [142.214644384, 27.100785441]]]}}, {"id": "37175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1850662, 26.611960829], [142.185060558, 26.611828333], [142.184962438, 26.611872892], [142.1850662, 26.611960829]]]}}, {"id": "37176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17045, 27.622715559], [142.170525837, 27.622847225], [142.170608885, 27.622768333], [142.17045, 27.622715559]]]}}, {"id": "37177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285620376, 24.790601721], [141.285669001, 24.790416694], [141.28549048, 24.790731468], [141.285620376, 24.790601721]]]}}, {"id": "37178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2317593, 27.067309694], [142.231972776, 27.067284441], [142.231750078, 27.067237613], [142.2317593, 27.067309694]]]}}, {"id": "37179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185597224, 27.047952081], [142.185269637, 27.048153441], [142.18521192, 27.048236198], [142.185450532, 27.048123333], [142.185597224, 27.047952081]]]}}, {"id": "37180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285565123, 24.790285468], [141.285697263, 24.79014409], [141.285635473, 24.790125018], [141.285565123, 24.790285468]]]}}, {"id": "37181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171991673, 27.049733054], [142.17212917, 27.049594162], [142.17192834, 27.049667775], [142.171991673, 27.049733054]]]}}, {"id": "37182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173267471, 26.597887892], [142.173243061, 26.598084775], [142.173385227, 26.598006081], [142.173267471, 26.597887892]]]}}, {"id": "37183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137322944, 26.700140694], [142.137364384, 26.700341198], [142.137445525, 26.700225306], [142.137322944, 26.700140694]]]}}, {"id": "37184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224964643, 27.087724414], [142.225107562, 27.087792694], [142.22511703, 27.087638532], [142.224964643, 27.087724414]]]}}, {"id": "37185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17249, 27.046381387], [142.172316109, 27.046309441], [142.172305279, 27.046393333], [142.17249, 27.046381387]]]}}, {"id": "37186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208424163, 27.499829441], [142.208544163, 27.499716667], [142.208395837, 27.499750559], [142.208424163, 27.499829441]]]}}, {"id": "37187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152624332, 26.707126441], [142.152408716, 26.707177495], [142.152589196, 26.707299054], [142.152624332, 26.707126441]]]}}, {"id": "37188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176178249, 26.598755532], [142.175995331, 26.598958306], [142.175993217, 26.59902864], [142.176178249, 26.598755532]]]}}, {"id": "37189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17896083, 27.632080279], [142.179066394, 27.632004721], [142.179003333, 27.631879721], [142.17896083, 27.632080279]]]}}, {"id": "37190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233090272, 27.074497414], [142.233237912, 27.074463613], [142.233149079, 27.074362027], [142.233090272, 27.074497414]]]}}, {"id": "37191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21486917, 27.489307775], [142.214922776, 27.489183613], [142.214815551, 27.489245559], [142.21486917, 27.489307775]]]}}, {"id": "37192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230563606, 27.080380279], [142.230691673, 27.080415], [142.230603606, 27.080329162], [142.230563606, 27.080380279]]]}}, {"id": "37193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221528885, 27.094551802], [142.221283865, 27.094678198], [142.221565422, 27.094570162], [142.221528885, 27.094551802]]]}}, {"id": "37194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227667497, 27.116516108], [142.227496109, 27.1165], [142.227603891, 27.116610279], [142.227667497, 27.116516108]]]}}, {"id": "37195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184996109, 26.660935], [142.184931388, 26.660762495], [142.184863606, 26.660866667], [142.184996109, 26.660935]]]}}, {"id": "37196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143771946, 26.587435279], [142.143632218, 26.587555559], [142.143783333, 26.587539162], [142.143771946, 26.587435279]]]}}, {"id": "37197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14356834, 26.671295], [142.143721115, 26.671163892], [142.143499442, 26.671251946], [142.14356834, 26.671295]]]}}, {"id": "37198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226457328, 27.054654387], [142.226452529, 27.054520441], [142.22628275, 27.054553225], [142.226457328, 27.054654387]]]}}, {"id": "37199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136000272, 26.681749162], [142.136072218, 26.681857775], [142.136140558, 26.681707495], [142.136000272, 26.681749162]]]}}, {"id": "37200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.473144163, 24.239279441], [141.473103333, 24.239096387], [141.473016939, 24.239127495], [141.473144163, 24.239279441]]]}}, {"id": "37201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137094864, 26.700361054], [142.137167004, 26.700497829], [142.137250804, 26.700408198], [142.137094864, 26.700361054]]]}}, {"id": "37202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124146939, 26.597103333], [142.124274449, 26.597283054], [142.124316394, 26.597255559], [142.124146939, 26.597103333]]]}}, {"id": "37203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252223333, 27.089785559], [142.252062776, 27.089703613], [142.252122503, 27.089872495], [142.252223333, 27.089785559]]]}}, {"id": "37204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140747056, 26.707533802], [142.140777977, 26.707426441], [142.140701051, 26.707483387], [142.140747056, 26.707533802]]]}}, {"id": "37205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139630856, 26.67858036], [142.139675279, 26.678741162], [142.139702918, 26.678598333], [142.139630856, 26.67858036]]]}}, {"id": "37206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179359442, 27.633386667], [142.179307497, 27.633522775], [142.179428054, 27.633468892], [142.179359442, 27.633386667]]]}}, {"id": "37207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130626783, 26.688563694], [142.130669274, 26.688719081], [142.130734086, 26.688632108], [142.130626783, 26.688563694]]]}}, {"id": "37208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182345058, 27.086806162], [142.182344358, 27.086994252], [142.182436615, 27.086808559], [142.182345058, 27.086806162]]]}}, {"id": "37209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208002607, 27.040055225], [142.208119248, 27.040170748], [142.208063671, 27.040041775], [142.208002607, 27.040055225]]]}}, {"id": "37210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18432834, 27.088152495], [142.184456394, 27.088024162], [142.184296394, 27.088054721], [142.18432834, 27.088152495]]]}}, {"id": "37211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184155642, 27.075363748], [142.184229922, 27.075454802], [142.184261608, 27.075291135], [142.184155642, 27.075363748]]]}}, {"id": "37212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192967691, 27.040539027], [142.193030752, 27.040583532], [142.192947562, 27.040437252], [142.192967691, 27.040539027]]]}}, {"id": "37213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141333217, 26.702024865], [142.141466615, 26.702204973], [142.141549831, 26.702146054], [142.141333217, 26.702024865]]]}}, {"id": "37214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146963333, 26.581396108], [142.147108612, 26.581365], [142.146948612, 26.581329441], [142.146963333, 26.581396108]]]}}, {"id": "37215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196649533, 27.038720468], [142.196607691, 27.038880919], [142.196717134, 27.038994586], [142.196649533, 27.038720468]]]}}, {"id": "37216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147003333, 26.691980279], [142.147165551, 26.692057495], [142.147168885, 26.691905279], [142.147003333, 26.691980279]]]}}, {"id": "37217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15391406, 26.635558613], [142.153920895, 26.635707162], [142.154003839, 26.63561664], [142.15391406, 26.635558613]]]}}, {"id": "37218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173655227, 26.597812135], [142.173764449, 26.597943775], [142.173850311, 26.597811613], [142.173655227, 26.597812135]]]}}, {"id": "37219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166058054, 27.043545], [142.165925551, 27.043566946], [142.16605, 27.043683613], [142.166058054, 27.043545]]]}}, {"id": "37220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122376524, 26.714506081], [142.122368716, 26.714640495], [142.12248786, 26.714575748], [142.122376524, 26.714506081]]]}}, {"id": "37221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181835914, 26.621327748], [142.181890415, 26.621495865], [142.181921946, 26.621307802], [142.181835914, 26.621327748]]]}}, {"id": "37222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210672503, 27.493915829], [142.210515837, 27.493873054], [142.2105, 27.493943613], [142.210672503, 27.493915829]]]}}, {"id": "37223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142813385, 26.664818694], [142.142944773, 26.664870829], [142.142877393, 26.664732613], [142.142813385, 26.664818694]]]}}, {"id": "37224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180417497, 26.607616667], [142.180453061, 26.607452775], [142.180363606, 26.607584162], [142.180417497, 26.607616667]]]}}, {"id": "37225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136810467, 26.681163279], [142.13650939, 26.681208973], [142.136478664, 26.681240865], [142.136810467, 26.681163279]]]}}, {"id": "37226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189783606, 27.073543333], [142.189899533, 27.073641027], [142.18984153, 27.073501559], [142.189783606, 27.073543333]]]}}, {"id": "37227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229525357, 27.054401559], [142.229627562, 27.054386586], [142.229613943, 27.054286775], [142.229525357, 27.054401559]]]}}, {"id": "37228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160686109, 27.106202775], [142.160559442, 27.10626], [142.160634721, 27.106327495], [142.160686109, 27.106202775]]]}}, {"id": "37229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184644163, 27.144431946], [142.184773606, 27.144509721], [142.184803606, 27.144440559], [142.184644163, 27.144431946]]]}}, {"id": "37230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16900834, 27.042955559], [142.168863333, 27.043029441], [142.168914163, 27.043058054], [142.16900834, 27.042955559]]]}}, {"id": "37231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131608975, 26.687294054], [142.131656667, 26.687441748], [142.131717951, 26.687316973], [142.131608975, 26.687294054]]]}}, {"id": "37232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201683606, 26.552990559], [142.201913061, 26.552945279], [142.201681388, 26.552930829], [142.201683606, 26.552990559]]]}}, {"id": "37233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128650636, 26.694202027], [142.128811284, 26.694168225], [142.128651855, 26.694115027], [142.128650636, 26.694202027]]]}}, {"id": "37234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232928054, 27.062939495], [142.23291808, 27.062747613], [142.232876394, 27.062911333], [142.232928054, 27.062939495]]]}}, {"id": "37235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121295032, 26.715721054], [142.121379274, 26.715914306], [142.121452049, 26.715830225], [142.121295032, 26.715721054]]]}}, {"id": "37236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18689917, 27.087314162], [142.18686917, 27.087167775], [142.186810558, 27.087311667], [142.18689917, 27.087314162]]]}}, {"id": "37237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240579663, 27.04736536], [142.240554968, 27.047504694], [142.24063834, 27.047410387], [142.240579663, 27.04736536]]]}}, {"id": "37238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18077275, 26.630741135], [142.18072131, 26.630979865], [142.18073022, 26.631036], [142.180812244, 26.630950775], [142.18077275, 26.630741135]]]}}, {"id": "37239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19897, 27.157435829], [142.198994163, 27.157611946], [142.199072503, 27.157497775], [142.19897, 27.157435829]]]}}, {"id": "37240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162930558, 27.646069721], [142.163106394, 27.646111387], [142.163071115, 27.646005], [142.162930558, 27.646069721]]]}}, {"id": "37241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224958664, 27.089741135], [142.224839585, 27.089941252], [142.224970895, 27.089742829], [142.224958664, 27.089741135]]]}}, {"id": "37242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127993217, 26.696354667], [142.128127912, 26.696457279], [142.128185305, 26.696388252], [142.127993217, 26.696354667]]]}}, {"id": "37243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233390558, 27.098246946], [142.233456394, 27.0981], [142.233299728, 27.098197495], [142.233390558, 27.098246946]]]}}, {"id": "37244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127933061, 26.696311946], [142.128033061, 26.696202775], [142.127918054, 26.696223892], [142.127933061, 26.696311946]]]}}, {"id": "37245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453711388, 24.242884441], [141.453701946, 24.242698054], [141.453635006, 24.242847225], [141.453711388, 24.242884441]]]}}, {"id": "37246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180558807, 26.627281441], [142.180568716, 26.627073829], [142.180515473, 26.627256225], [142.180558807, 26.627281441]]]}}, {"id": "37247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.108021946, 27.717770559], [142.108163333, 27.717684441], [142.108017497, 27.717680279], [142.108021946, 27.717770559]]]}}, {"id": "37248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15374, 26.543585829], [142.153828054, 26.543464441], [142.153687224, 26.54342], [142.15374, 26.543585829]]]}}, {"id": "37249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241754163, 27.093841667], [142.241768885, 27.094016946], [142.241846939, 27.093843892], [142.241754163, 27.093841667]]]}}, {"id": "37250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164476109, 27.115740279], [142.164621946, 27.115667495], [142.164513061, 27.115662495], [142.164476109, 27.115740279]]]}}, {"id": "37251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198945837, 27.183132775], [142.198752776, 27.183051667], [142.198766667, 27.183178333], [142.198945837, 27.183132775]]]}}, {"id": "37252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233376109, 27.049968333], [142.233296667, 27.049847775], [142.233335551, 27.049981946], [142.233376109, 27.049968333]]]}}, {"id": "37253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187909728, 27.139488054], [142.187875279, 27.139626387], [142.187963061, 27.139591946], [142.187909728, 27.139488054]]]}}, {"id": "37254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174785837, 27.623306946], [142.17491083, 27.623453333], [142.174942218, 27.623421946], [142.174785837, 27.623306946]]]}}, {"id": "37255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184223061, 26.610934441], [142.18416917, 26.610782775], [142.184083606, 26.610875829], [142.184223061, 26.610934441]]]}}, {"id": "37256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165328003, 26.660224559], [142.165410311, 26.660317613], [142.165421141, 26.660176414], [142.165328003, 26.660224559]]]}}, {"id": "37257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16494, 27.642584441], [142.165036667, 27.642691387], [142.165063606, 27.642572225], [142.16494, 27.642584441]]]}}, {"id": "37258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231507108, 27.070241225], [142.231511115, 27.070123], [142.231423411, 27.070187027], [142.231507108, 27.070241225]]]}}, {"id": "37259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233128885, 27.069885829], [142.233096667, 27.069728613], [142.233033891, 27.069873054], [142.233128885, 27.069885829]]]}}, {"id": "37260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238367497, 27.093449162], [142.238251673, 27.093500559], [142.238401673, 27.093595], [142.238367497, 27.093449162]]]}}, {"id": "37261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131616394, 26.687089441], [142.13176834, 26.687064441], [142.131713606, 26.686978054], [142.131616394, 26.687089441]]]}}, {"id": "37262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172545551, 27.116143333], [142.172388054, 27.116125279], [142.172525551, 27.116221946], [142.172545551, 27.116143333]]]}}, {"id": "37263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168155006, 26.686540279], [142.168291115, 26.686405279], [142.168149728, 26.686425279], [142.168155006, 26.686540279]]]}}, {"id": "37264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172772503, 27.115753333], [142.172661673, 27.115708613], [142.172655006, 27.115845279], [142.172772503, 27.115753333]]]}}, {"id": "37265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181651219, 27.070688946], [142.181722114, 27.070569532], [142.181605551, 27.070633667], [142.181651219, 27.070688946]]]}}, {"id": "37266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219617886, 27.100820198], [142.219401115, 27.100786946], [142.219281855, 27.100875225], [142.219617886, 27.100820198]]]}}, {"id": "37267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150910272, 26.637484721], [142.150976939, 26.637337495], [142.150865837, 26.637400279], [142.150910272, 26.637484721]]]}}, {"id": "37268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210079728, 27.039639162], [142.21017834, 27.039479441], [142.210061673, 27.039568613], [142.210079728, 27.039639162]]]}}, {"id": "37269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182259001, 27.040501135], [142.182092192, 27.040519495], [142.182057328, 27.040594919], [142.182259001, 27.040501135]]]}}, {"id": "37270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213531946, 27.489028333], [142.213411946, 27.489101667], [142.213462503, 27.489194441], [142.213531946, 27.489028333]]]}}, {"id": "37271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163901582, 26.663410775], [142.16402131, 26.663530865], [142.16398131, 26.663386027], [142.163901582, 26.663410775]]]}}, {"id": "37272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147615058, 26.687326973], [142.147451855, 26.687410441], [142.147568392, 26.687451108], [142.147615058, 26.687326973]]]}}, {"id": "37273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17523572, 26.620167667], [142.1753438, 26.620302865], [142.175313671, 26.620166414], [142.17523572, 26.620167667]]]}}, {"id": "37274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122308054, 26.711182775], [142.122428885, 26.710999721], [142.122277497, 26.711192225], [142.122308054, 26.711182775]]]}}, {"id": "37275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134632802, 26.684687667], [142.134688197, 26.684797027], [142.134774617, 26.684715613], [142.134632802, 26.684687667]]]}}, {"id": "37276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234328975, 27.074471973], [142.234457134, 27.074617892], [142.234491556, 27.074541946], [142.234328975, 27.074471973]]]}}, {"id": "37277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168216394, 26.690373054], [142.168130558, 26.690237775], [142.16810834, 26.690291946], [142.168216394, 26.690373054]]]}}, {"id": "37278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128871751, 26.694310414], [142.128940661, 26.694203108], [142.128860246, 26.694195162], [142.128871751, 26.694310414]]]}}, {"id": "37279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183202335, 26.621664865], [142.183274527, 26.621531721], [142.183141219, 26.621629468], [142.183202335, 26.621664865]]]}}, {"id": "37280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160054449, 27.655659162], [142.160104449, 27.655492775], [142.159991673, 27.655589441], [142.160054449, 27.655659162]]]}}, {"id": "37281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168584163, 27.038684441], [142.168621946, 27.038531108], [142.168535279, 27.038533333], [142.168584163, 27.038684441]]]}}, {"id": "37282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205248029, 27.044023748], [142.205133165, 27.044106973], [142.205273645, 27.044138892], [142.205248029, 27.044023748]]]}}, {"id": "37283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131431946, 26.687315], [142.13154834, 26.687381387], [142.131512503, 26.687211946], [142.131431946, 26.687315]]]}}, {"id": "37284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171697782, 26.594839721], [142.171632776, 26.594946667], [142.171754449, 26.594949162], [142.171697782, 26.594839721]]]}}, {"id": "37285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165495331, 26.701279162], [142.165640169, 26.701280721], [142.165452918, 26.701198532], [142.165495331, 26.701279162]]]}}, {"id": "37286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186109442, 27.083876667], [142.185975551, 27.083874721], [142.186019442, 27.083914162], [142.186109442, 27.083876667]]]}}, {"id": "37287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378776939, 24.779607297], [141.378709767, 24.779830748], [141.378788379, 24.779930108], [141.378776939, 24.779607297]]]}}, {"id": "37288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199417497, 26.550047495], [142.199525837, 26.549940559], [142.199476394, 26.549937775], [142.199417497, 26.550047495]]]}}, {"id": "37289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182591388, 27.165668054], [142.182726394, 27.165709721], [142.182666667, 27.165611667], [142.182591388, 27.165668054]]]}}, {"id": "37290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143970558, 26.587688333], [142.143828885, 26.587766667], [142.144011115, 26.587729441], [142.143970558, 26.587688333]]]}}, {"id": "37291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167984721, 26.690504162], [142.168038612, 26.690407225], [142.167856109, 26.690401387], [142.167984721, 26.690504162]]]}}, {"id": "37292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181385551, 27.070612225], [142.181596394, 27.070690829], [142.181383061, 27.070580279], [142.181385551, 27.070612225]]]}}, {"id": "37293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232265616, 27.069795027], [142.23231786, 27.069818225], [142.232341829, 27.069657694], [142.232265616, 27.069795027]]]}}, {"id": "37294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221969442, 27.109500829], [142.222064163, 27.109613613], [142.222102503, 27.109549721], [142.221969442, 27.109500829]]]}}, {"id": "37295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141965525, 26.709146559], [142.141787588, 26.709270225], [142.141765032, 26.709312387], [142.14188847, 26.709334559], [142.141965525, 26.709146559]]]}}, {"id": "37296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182881115, 27.070197495], [142.183021946, 27.070205829], [142.182885279, 27.070136387], [142.182881115, 27.070197495]]]}}, {"id": "37297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230741388, 27.079791387], [142.230846667, 27.079645], [142.230774449, 27.079598054], [142.230741388, 27.079791387]]]}}, {"id": "37298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193565473, 27.040995559], [142.193562218, 27.041202613], [142.193724747, 27.041181081], [142.193565473, 27.040995559]]]}}, {"id": "37299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232600272, 27.069615559], [142.232682776, 27.069456946], [142.232555551, 27.069548333], [142.232600272, 27.069615559]]]}}, {"id": "37300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218440558, 26.561107775], [142.218523891, 26.561205], [142.218590272, 26.561166108], [142.218440558, 26.561107775]]]}}, {"id": "37301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22662834, 27.042902225], [142.22657083, 27.042759721], [142.226515551, 27.042809162], [142.22662834, 27.042902225]]]}}, {"id": "37302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151337497, 26.545507225], [142.151231388, 26.545539441], [142.151312218, 26.54559], [142.151337497, 26.545507225]]]}}, {"id": "37303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233695914, 27.072787306], [142.233743645, 27.072900225], [142.233845227, 27.072675586], [142.233695914, 27.072787306]]]}}, {"id": "37304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232779442, 27.058071946], [142.232751388, 27.057930279], [142.232686939, 27.058008892], [142.232779442, 27.058071946]]]}}, {"id": "37305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173447639, 26.637976559], [142.173591829, 26.638094], [142.173485525, 26.637930387], [142.173447639, 26.637976559]]]}}, {"id": "37306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138909689, 26.679542], [142.138934695, 26.679690829], [142.139011245, 26.679585775], [142.138909689, 26.679542]]]}}, {"id": "37307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16784917, 27.637134441], [142.167955006, 27.637038333], [142.167835837, 27.637056387], [142.16784917, 27.637134441]]]}}, {"id": "37308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179621673, 27.129498054], [142.179760558, 27.129432775], [142.179689442, 27.129388613], [142.179621673, 27.129498054]]]}}, {"id": "37309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169785837, 27.042652495], [142.169888612, 27.042753054], [142.169919728, 27.042681387], [142.169785837, 27.042652495]]]}}, {"id": "37310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13391511, 26.701763694], [142.134030726, 26.701690748], [142.133902918, 26.701645559], [142.13391511, 26.701763694]]]}}, {"id": "37311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178932503, 27.12971], [142.179041673, 27.129613892], [142.178897782, 27.129634721], [142.178932503, 27.12971]]]}}, {"id": "37312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161914942, 26.700204387], [142.161870778, 26.700382532], [142.162031479, 26.700235387], [142.161914942, 26.700204387]]]}}, {"id": "37313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22535703, 27.087383532], [142.225259831, 27.087288721], [142.225259222, 27.087438198], [142.22535703, 27.087383532]]]}}, {"id": "37314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122954086, 26.710148613], [142.122998145, 26.710260775], [142.123050856, 26.710219468], [142.122954086, 26.710148613]]]}}, {"id": "37315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233816394, 27.075459441], [142.233916109, 27.075306108], [142.233848612, 27.075282225], [142.233816394, 27.075459441]]]}}, {"id": "37316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189208612, 27.139913613], [142.189375551, 27.139889441], [142.189219442, 27.139865], [142.189208612, 27.139913613]]]}}, {"id": "37317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182222581, 26.623120532], [142.182115058, 26.623270946], [142.182142698, 26.623288694], [142.182222581, 26.623120532]]]}}, {"id": "37318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174883891, 27.623066108], [142.175008054, 27.62302], [142.174952218, 27.622959721], [142.174883891, 27.623066108]]]}}, {"id": "37319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141324163, 26.670548613], [142.141453606, 26.670484721], [142.141350558, 26.670432225], [142.141324163, 26.670548613]]]}}, {"id": "37320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101091388, 27.719236946], [142.101107497, 27.719386946], [142.101166667, 27.719358333], [142.101091388, 27.719236946]]]}}, {"id": "37321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185365032, 26.658935775], [142.185417276, 26.659058387], [142.185442438, 26.658970973], [142.185365032, 26.658935775]]]}}, {"id": "37322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169212503, 27.039782225], [142.169046109, 27.039817225], [142.169046109, 27.039884162], [142.169212503, 27.039782225]]]}}, {"id": "37323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147356083, 26.687248441], [142.147412827, 26.687369694], [142.147434449, 26.68723636], [142.147356083, 26.687248441]]]}}, {"id": "37324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232082088, 27.070183054], [142.232204423, 27.070246135], [142.232148975, 27.070145225], [142.232082088, 27.070183054]]]}}, {"id": "37325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190356109, 27.188736667], [142.19025, 27.188817225], [142.190328612, 27.188844441], [142.190356109, 27.188736667]]]}}, {"id": "37326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188918885, 27.145485], [142.189034163, 27.145530279], [142.189013891, 27.145414162], [142.188918885, 27.145485]]]}}, {"id": "37327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235286355, 27.055458613], [142.235252724, 27.055612027], [142.235384617, 27.055481387], [142.235286355, 27.055458613]]]}}, {"id": "37328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153254721, 26.697797495], [142.153281673, 26.697685829], [142.153221388, 26.69771], [142.153254721, 26.697797495]]]}}, {"id": "37329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240238807, 27.045542027], [142.24034978, 27.045629387], [142.240369974, 27.045507694], [142.240238807, 27.045542027]]]}}, {"id": "37330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22402725, 27.09142836], [142.224090337, 27.091562748], [142.224105006, 27.091428414], [142.22402725, 27.09142836]]]}}, {"id": "37331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19040061, 27.042817108], [142.190211829, 27.042891667], [142.190178911, 27.042972027], [142.19040061, 27.042817108]]]}}, {"id": "37332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15205022, 26.707544802], [142.151916057, 26.707627532], [142.151851336, 26.707706865], [142.15205022, 26.707544802]]]}}, {"id": "37333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197128612, 27.10567], [142.19697917, 27.10559], [142.196966939, 27.105661667], [142.197128612, 27.10567]]]}}, {"id": "37334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128180999, 26.696851946], [142.128287419, 26.696926387], [142.128279805, 26.696860775], [142.128180999, 26.696851946]]]}}, {"id": "37335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240855837, 27.094069721], [142.240981388, 27.094014441], [142.240889442, 27.093935279], [142.240855837, 27.094069721]]]}}, {"id": "37336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235911751, 27.084392865], [142.235925914, 27.084503865], [142.235982827, 27.084379387], [142.235911751, 27.084392865]]]}}, {"id": "37337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18195406, 27.040620495], [142.181846278, 27.040716495], [142.181933722, 27.040690748], [142.18195406, 27.040620495]]]}}, {"id": "37338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153023528, 26.637865441], [142.152877782, 26.637923441], [142.15302856, 26.638011108], [142.153023528, 26.637865441]]]}}, {"id": "37339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181856667, 27.165345559], [142.181797782, 27.165459441], [142.181872503, 27.165436946], [142.181856667, 27.165345559]]]}}, {"id": "37340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234404578, 27.076890387], [142.23422131, 27.077050721], [142.23426428, 27.077108865], [142.234404578, 27.076890387]]]}}, {"id": "37341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.119538885, 27.688618892], [142.119668054, 27.688670559], [142.11965917, 27.688580279], [142.119538885, 27.688618892]]]}}, {"id": "37342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143633748, 26.671287108], [142.143806913, 26.671411414], [142.143850999, 26.671393306], [142.143633748, 26.671287108]]]}}, {"id": "37343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121283891, 27.687583892], [142.121421388, 27.687615], [142.121386394, 27.687536946], [142.121283891, 27.687583892]]]}}, {"id": "37344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130271388, 26.690455], [142.130374163, 26.690560279], [142.130456109, 26.690451667], [142.130271388, 26.690455]]]}}, {"id": "37345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.097348885, 27.72357], [142.097281673, 27.723695], [142.097363061, 27.723728333], [142.097348885, 27.72357]]]}}, {"id": "37346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232982776, 27.099416387], [142.23296083, 27.099547225], [142.233044163, 27.099423613], [142.232982776, 27.099416387]]]}}, {"id": "37347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248499442, 27.090837495], [142.248356939, 27.090915559], [142.248515279, 27.090902495], [142.248499442, 27.090837495]]]}}, {"id": "37348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240867977, 26.565545225], [142.240917717, 26.565650973], [142.24097358, 26.565572748], [142.240867977, 26.565545225]]]}}, {"id": "37349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17969834, 27.631942495], [142.179841673, 27.631971946], [142.17977083, 27.631870829], [142.17969834, 27.631942495]]]}}, {"id": "37350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103350272, 27.716460829], [142.103473333, 27.716447225], [142.103423061, 27.71638], [142.103350272, 27.716460829]]]}}, {"id": "37351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199717782, 27.179941108], [142.199851673, 27.179986108], [142.199839442, 27.179925279], [142.199717782, 27.179941108]]]}}, {"id": "37352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166208612, 26.592581108], [142.16635083, 26.592654441], [142.166362776, 26.592594721], [142.166208612, 26.592581108]]]}}, {"id": "37353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160497224, 27.659859162], [142.16061, 27.659776387], [142.16042083, 27.659801108], [142.160497224, 27.659859162]]]}}, {"id": "37354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142645551, 26.586868333], [142.142757224, 26.586968333], [142.142776939, 26.586905829], [142.142645551, 26.586868333]]]}}, {"id": "37355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233679339, 27.078065946], [142.233789222, 27.078105387], [142.233765357, 27.078018225], [142.233679339, 27.078065946]]]}}, {"id": "37356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141801673, 26.709541946], [142.141934449, 26.709461946], [142.141846667, 26.709408333], [142.141801673, 26.709541946]]]}}, {"id": "37357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150183891, 26.706958892], [142.150219728, 26.706838054], [142.150093891, 26.706890829], [142.150183891, 26.706958892]]]}}, {"id": "37358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16791, 27.637406387], [142.167795279, 27.637306387], [142.167811115, 27.637422495], [142.16791, 27.637406387]]]}}, {"id": "37359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187016394, 27.120758333], [142.187156939, 27.120656667], [142.186989728, 27.1207], [142.187016394, 27.120758333]]]}}, {"id": "37360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18454917, 26.611963054], [142.184726667, 26.61187], [142.184516667, 26.611921946], [142.18454917, 26.611963054]]]}}, {"id": "37361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153160078, 26.641671495], [142.153062361, 26.641596613], [142.153001673, 26.641653721], [142.153160078, 26.641671495]]]}}, {"id": "37362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223274747, 27.091929333], [142.223074916, 27.092045441], [142.223082802, 27.092113829], [142.223274747, 27.091929333]]]}}, {"id": "37363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170392218, 27.119651108], [142.170212218, 27.119653892], [142.170388054, 27.119695279], [142.170392218, 27.119651108]]]}}, {"id": "37364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179818171, 27.07272264], [142.179687419, 27.072863414], [142.179860532, 27.072800198], [142.179818171, 27.07272264]]]}}, {"id": "37365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20775808, 27.041042919], [142.207767173, 27.041156441], [142.207874086, 27.041078865], [142.20775808, 27.041042919]]]}}, {"id": "37366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212610272, 27.501672225], [142.212515837, 27.501796387], [142.212592218, 27.501822225], [142.212610272, 27.501672225]]]}}, {"id": "37367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199608054, 26.549278333], [142.199771946, 26.549358054], [142.199781946, 26.549317495], [142.199608054, 26.549278333]]]}}, {"id": "37368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210048885, 27.493703892], [142.210055279, 27.493556946], [142.209976394, 27.493593613], [142.210048885, 27.493703892]]]}}, {"id": "37369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121668054, 26.705162279], [142.12173725, 26.705291748], [142.121832218, 26.705300495], [142.121668054, 26.705162279]]]}}, {"id": "37370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147180389, 26.689784919], [142.147276355, 26.689941495], [142.147322049, 26.689843694], [142.147180389, 26.689784919]]]}}, {"id": "37371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22176083, 27.109921108], [142.221881946, 27.109886387], [142.221781946, 27.109827495], [142.22176083, 27.109921108]]]}}, {"id": "37372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147022503, 26.575335829], [142.147017224, 26.575438054], [142.147138885, 26.575406387], [142.147022503, 26.575335829]]]}}, {"id": "37373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181904086, 26.621133973], [142.182039274, 26.621085225], [142.181984695, 26.620985559], [142.181904086, 26.621133973]]]}}, {"id": "37374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188939922, 27.06982064], [142.18896192, 27.069708586], [142.188827834, 27.069715802], [142.188939922, 27.06982064]]]}}, {"id": "37375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187796939, 27.126645829], [142.18776, 27.126830559], [142.187838612, 27.126634441], [142.187796939, 27.126645829]]]}}, {"id": "37376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145014916, 26.647367721], [142.144860726, 26.647427], [142.145032866, 26.647409135], [142.145014916, 26.647367721]]]}}, {"id": "37377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131340506, 26.705624559], [142.131302283, 26.705780027], [142.131341997, 26.705799027], [142.131340506, 26.705624559]]]}}, {"id": "37378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150844721, 26.636080279], [142.15075083, 26.635976946], [142.150795551, 26.636120279], [142.150844721, 26.636080279]]]}}, {"id": "37379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179712503, 27.631560829], [142.179795837, 27.631462775], [142.179747224, 27.631445829], [142.179712503, 27.631560829]]]}}, {"id": "37380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168341556, 26.69023664], [142.168342996, 26.690126414], [142.168249274, 26.690146559], [142.168341556, 26.69023664]]]}}, {"id": "37381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.220540272, 27.130041667], [142.220665279, 27.130129721], [142.220621946, 27.130011387], [142.220540272, 27.130041667]]]}}, {"id": "37382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160341388, 26.546209721], [142.160230558, 26.546238333], [142.160285551, 26.546291387], [142.160341388, 26.546209721]]]}}, {"id": "37383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189413606, 27.068535], [142.189362503, 27.068435279], [142.189341388, 27.068499162], [142.189413606, 27.068535]]]}}, {"id": "37384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159330558, 27.660372225], [142.159334449, 27.660475], [142.159406939, 27.660426387], [142.159330558, 27.660372225]]]}}, {"id": "37385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181700026, 26.624055775], [142.181678171, 26.624266306], [142.181735642, 26.624036252], [142.181700026, 26.624055775]]]}}, {"id": "37386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134740947, 26.684804108], [142.134773191, 26.68495536], [142.134839364, 26.684912414], [142.134740947, 26.684804108]]]}}, {"id": "37387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24557917, 27.096123892], [142.245496109, 27.09622], [142.245609442, 27.096204721], [142.24557917, 27.096123892]]]}}, {"id": "37388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285626472, 24.789916333], [141.285777419, 24.789981243], [141.28579262, 24.789915865], [141.285626472, 24.789916333]]]}}, {"id": "37389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179665279, 26.604547775], [142.17971, 26.604450559], [142.179652218, 26.604451387], [142.179665279, 26.604547775]]]}}, {"id": "37390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183355473, 26.621773973], [142.183433969, 26.621686946], [142.183337393, 26.621653865], [142.183355473, 26.621773973]]]}}, {"id": "37391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145204449, 27.686885829], [142.145076394, 27.686898892], [142.145131388, 27.686936667], [142.145204449, 27.686885829]]]}}, {"id": "37392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163300117, 26.665608], [142.163253995, 26.665458225], [142.163191777, 26.665497198], [142.163300117, 26.665608]]]}}, {"id": "37393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181420558, 26.616363054], [142.181553606, 26.616330559], [142.181581115, 26.616228054], [142.181420558, 26.616363054]]]}}, {"id": "37394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235433891, 27.096427495], [142.235564721, 27.096478054], [142.235576394, 27.096437775], [142.235433891, 27.096427495]]]}}, {"id": "37395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285402101, 24.787168162], [141.28528847, 24.787133946], [141.285325019, 24.787260793], [141.285402101, 24.787168162]]]}}, {"id": "37396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181049027, 26.653161], [142.181129144, 26.653185892], [142.181098833, 26.653073279], [142.181049027, 26.653161]]]}}, {"id": "37397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177452944, 26.602347973], [142.177603554, 26.602357], [142.177592387, 26.60228164], [142.177452944, 26.602347973]]]}}, {"id": "37398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100221388, 27.713177495], [142.100340272, 27.713108892], [142.100259442, 27.713061667], [142.100221388, 27.713177495]]]}}, {"id": "37399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18301917, 27.166028333], [142.182906667, 27.165961108], [142.182952218, 27.166068892], [142.18301917, 27.166028333]]]}}, {"id": "37400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188021115, 27.126470559], [142.187945837, 27.126397495], [142.18790917, 27.126553613], [142.188021115, 27.126470559]]]}}, {"id": "37401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20759917, 26.554214721], [142.207757782, 26.554205], [142.207754163, 26.554156387], [142.20759917, 26.554214721]]]}}, {"id": "37402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150965811, 26.637489892], [142.150998003, 26.637597441], [142.151023554, 26.637489279], [142.150965811, 26.637489892]]]}}, {"id": "37403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18288083, 26.612930279], [142.18300083, 26.612827495], [142.182902218, 26.612809441], [142.18288083, 26.612930279]]]}}, {"id": "37404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180534527, 26.629224586], [142.180596744, 26.629372], [142.180634228, 26.629314252], [142.180534527, 26.629224586]]]}}, {"id": "37405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195884942, 27.039087892], [142.196013696, 27.038999802], [142.195963839, 27.038960162], [142.195884942, 27.039087892]]]}}, {"id": "37406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163543061, 27.115343613], [142.163568885, 27.115460829], [142.163637224, 27.115436108], [142.163543061, 27.115343613]]]}}, {"id": "37407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1642, 27.112456387], [142.164261673, 27.112592225], [142.164295279, 27.112579721], [142.1642, 27.112456387]]]}}, {"id": "37408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096419728, 27.720655], [142.096553891, 27.720706946], [142.096555279, 27.720645279], [142.096419728, 27.720655]]]}}, {"id": "37409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200535279, 27.161883054], [142.20053083, 27.161734721], [142.20048834, 27.161746387], [142.200535279, 27.161883054]]]}}, {"id": "37410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.09824834, 27.716016946], [142.098364449, 27.715931108], [142.09822917, 27.715955559], [142.09824834, 27.716016946]]]}}, {"id": "37411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100679442, 27.715660829], [142.100763891, 27.715562495], [142.100675279, 27.715544162], [142.100679442, 27.715660829]]]}}, {"id": "37412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168797445, 26.685456225], [142.168781608, 26.685339], [142.168734747, 26.685454135], [142.168797445, 26.685456225]]]}}, {"id": "37413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172445279, 27.623041108], [142.172452776, 27.623184441], [142.172506394, 27.623038613], [142.172445279, 27.623041108]]]}}, {"id": "37414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151953891, 26.581460829], [142.152088612, 26.581517225], [142.152088612, 26.581451108], [142.151953891, 26.581460829]]]}}, {"id": "37415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231848612, 27.07087436], [142.231977276, 27.070933], [142.231961946, 27.070840162], [142.231848612, 27.07087436]]]}}, {"id": "37416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17929786, 26.604536198], [142.179293774, 26.604756892], [142.179333995, 26.604782108], [142.179368911, 26.604587198], [142.17929786, 26.604536198]]]}}, {"id": "37417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185740272, 27.116676108], [142.185639728, 27.116763333], [142.185802776, 27.116756946], [142.185740272, 27.116676108]]]}}, {"id": "37418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200152218, 27.169488892], [142.20024083, 27.169574441], [142.200288612, 27.169521667], [142.200152218, 27.169488892]]]}}, {"id": "37419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199289728, 27.161335559], [142.199386394, 27.161294441], [142.19932, 27.161250559], [142.199289728, 27.161335559]]]}}, {"id": "37420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341453152, 24.804910604], [141.341431245, 24.804789072], [141.341351505, 24.804829982], [141.341453152, 24.804910604]]]}}, {"id": "37421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222546394, 27.110068613], [142.222649728, 27.109995], [142.222529728, 27.110016108], [142.222546394, 27.110068613]]]}}, {"id": "37422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185147523, 27.04825], [142.185022192, 27.048230667], [142.185009974, 27.048274892], [142.185147523, 27.04825]]]}}, {"id": "37423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23697847, 27.051091802], [142.237102049, 27.050999721], [142.237004449, 27.050990135], [142.23697847, 27.051091802]]]}}, {"id": "37424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13223834, 26.703508694], [142.132388521, 26.703555748], [142.132248638, 26.703465], [142.13223834, 26.703508694]]]}}, {"id": "37425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17186847, 26.641993306], [142.171941946, 26.641881108], [142.171828249, 26.641883054], [142.17186847, 26.641993306]]]}}, {"id": "37426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175503061, 27.619681946], [142.175537782, 27.619575279], [142.17544917, 27.619644721], [142.175503061, 27.619681946]]]}}, {"id": "37427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233540947, 27.050344919], [142.233600117, 27.05024164], [142.233541751, 27.050244802], [142.233540947, 27.050344919]]]}}, {"id": "37428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232488106, 27.070281946], [142.232560752, 27.070062135], [142.232450441, 27.070297532], [142.232488106, 27.070281946]]]}}, {"id": "37429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219165577, 27.100305892], [142.21941428, 27.100357865], [142.219464864, 27.100337108], [142.219165577, 27.100305892]]]}}, {"id": "37430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.108824163, 27.717934721], [142.108838885, 27.718048333], [142.108911946, 27.718008613], [142.108824163, 27.717934721]]]}}, {"id": "37431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232713333, 27.108905829], [142.232843891, 27.108983892], [142.232896394, 27.108951667], [142.232713333, 27.108905829]]]}}, {"id": "37432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.106323891, 27.716514721], [142.106476394, 27.716538054], [142.106441115, 27.71646], [142.106323891, 27.716514721]]]}}, {"id": "37433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129685863, 26.689293333], [142.129566109, 26.689393], [142.12975572, 26.689318892], [142.129685863, 26.689293333]]]}}, {"id": "37434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137060636, 26.700562108], [142.137079883, 26.700693865], [142.137164812, 26.700677162], [142.137060636, 26.700562108]]]}}, {"id": "37435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225098145, 27.041868748], [142.225126278, 27.041980694], [142.225196835, 27.041835081], [142.225098145, 27.041868748]]]}}, {"id": "37436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133569857, 26.702397306], [142.133682698, 26.702380865], [142.133597302, 26.702331919], [142.133569857, 26.702397306]]]}}, {"id": "37437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147436589, 26.661541586], [142.147600947, 26.661542135], [142.147435253, 26.66152164], [142.147436589, 26.661541586]]]}}, {"id": "37438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182305837, 27.127140559], [142.182395279, 27.127084441], [142.182272776, 27.127020829], [142.182305837, 27.127140559]]]}}, {"id": "37439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238243333, 27.08692], [142.238237497, 27.086802225], [142.238163891, 27.086891387], [142.238243333, 27.08692]]]}}, {"id": "37440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176758612, 27.053789441], [142.176678612, 27.053657775], [142.176682503, 27.053791667], [142.176758612, 27.053789441]]]}}, {"id": "37441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168897782, 26.685548613], [142.16904834, 26.685544721], [142.168914163, 26.685495829], [142.168897782, 26.685548613]]]}}, {"id": "37442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188221388, 27.115755829], [142.188325837, 27.115808892], [142.188378612, 27.115706946], [142.188221388, 27.115755829]]]}}, {"id": "37443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131782166, 26.687346865], [142.131849728, 26.687452054], [142.13188131, 26.687383613], [142.131782166, 26.687346865]]]}}, {"id": "37444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134555837, 26.684828333], [142.134661673, 26.684948333], [142.1347, 26.684828333], [142.134555837, 26.684828333]]]}}, {"id": "37445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.093712503, 27.724563613], [142.093725837, 27.724695559], [142.093782218, 27.724625559], [142.093712503, 27.724563613]]]}}, {"id": "37446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182686939, 27.165950279], [142.18281, 27.165910829], [142.182725006, 27.165862775], [142.182686939, 27.165950279]]]}}, {"id": "37447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181865668, 27.093989468], [142.181686355, 27.093978586], [142.181867393, 27.094058333], [142.181865668, 27.093989468]]]}}, {"id": "37448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202251946, 26.557488613], [142.202186939, 26.557576946], [142.202298612, 26.557556667], [142.202251946, 26.557488613]]]}}, {"id": "37449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233403061, 27.076862225], [142.233368054, 27.076731946], [142.23333917, 27.076850559], [142.233403061, 27.076862225]]]}}, {"id": "37450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123036083, 26.709199973], [142.122926693, 26.709333586], [142.122919001, 26.70937736], [142.123069754, 26.709297333], [142.123036083, 26.709199973]]]}}, {"id": "37451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13236856, 26.687567198], [142.132391193, 26.687692559], [142.132427108, 26.687628802], [142.13236856, 26.687567198]]]}}, {"id": "37452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095033891, 27.719890279], [142.095116109, 27.719752225], [142.095042218, 27.719766387], [142.095033891, 27.719890279]]]}}, {"id": "37453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188670506, 27.053482973], [142.188730311, 27.053378468], [142.188635551, 27.053449162], [142.188670506, 27.053482973]]]}}, {"id": "37454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156976939, 27.656018892], [142.156885006, 27.656095559], [142.156998054, 27.656097495], [142.156976939, 27.656018892]]]}}, {"id": "37455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194355694, 27.040500306], [142.194184449, 27.040561721], [142.19417856, 27.04060164], [142.194355694, 27.040500306]]]}}, {"id": "37456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18281834, 27.158756108], [142.182912776, 27.158636387], [142.182851115, 27.158623333], [142.18281834, 27.158756108]]]}}, {"id": "37457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14038, 26.678080559], [142.140444773, 26.678222748], [142.140514228, 26.678214919], [142.14038, 26.678080559]]]}}, {"id": "37458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239792698, 27.045472468], [142.239910532, 27.045369279], [142.239861803, 27.045301586], [142.239792698, 27.045472468]]]}}, {"id": "37459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284730623, 24.786112631], [141.28483192, 24.785952144], [141.284685162, 24.786107541], [141.284730623, 24.786112631]]]}}, {"id": "37460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285185966, 24.785502883], [141.28515904, 24.785732063], [141.285215383, 24.785770523], [141.285185966, 24.785502883]]]}}, {"id": "37461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200833606, 27.163001946], [142.200912503, 27.162959441], [142.200840558, 27.162939721], [142.200833606, 27.163001946]]]}}, {"id": "37462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146719442, 26.651814162], [142.146760558, 26.651696667], [142.146645551, 26.651732225], [142.146719442, 26.651814162]]]}}, {"id": "37463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236063061, 27.109920829], [142.236139442, 27.109938054], [142.236088054, 27.109783054], [142.236063061, 27.109920829]]]}}, {"id": "37464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151282698, 26.637936441], [142.151287756, 26.638049802], [142.151385084, 26.637984973], [142.151282698, 26.637936441]]]}}, {"id": "37465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203707224, 27.115338613], [142.203826109, 27.115277225], [142.203754721, 27.115238613], [142.203707224, 27.115338613]]]}}, {"id": "37466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193580337, 27.039956387], [142.193658171, 27.040023613], [142.193665473, 27.03988064], [142.193580337, 27.039956387]]]}}, {"id": "37467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184935305, 26.66064636], [142.185045331, 26.660727108], [142.185105136, 26.66068236], [142.184935305, 26.66064636]]]}}, {"id": "37468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232748054, 27.1143], [142.232715279, 27.11442], [142.23281083, 27.114389721], [142.232748054, 27.1143]]]}}, {"id": "37469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151560415, 26.696185973], [142.151547302, 26.696389694], [142.151589559, 26.696409775], [142.151560415, 26.696185973]]]}}, {"id": "37470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129903191, 26.692829532], [142.130013606, 26.692893333], [142.130048223, 26.692834198], [142.129903191, 26.692829532]]]}}, {"id": "37471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185026939, 27.155465559], [142.185082218, 27.155591667], [142.185103606, 27.155456667], [142.185026939, 27.155465559]]]}}, {"id": "37472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232610272, 27.061921946], [142.232538612, 27.061811387], [142.232507497, 27.061866108], [142.232610272, 27.061921946]]]}}, {"id": "37473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123618612, 26.598619162], [142.123663891, 26.598506387], [142.123575279, 26.598578333], [142.123618612, 26.598619162]]]}}, {"id": "37474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152043917, 26.639970252], [142.152123865, 26.639895775], [142.151989611, 26.639923108], [142.152043917, 26.639970252]]]}}, {"id": "37475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150859754, 26.639796586], [142.150819533, 26.639687135], [142.150770999, 26.639741694], [142.150859754, 26.639796586]]]}}, {"id": "37476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208119728, 26.567041946], [142.208028612, 26.567154721], [142.208164163, 26.567114721], [142.208119728, 26.567041946]]]}}, {"id": "37477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18346834, 27.162681108], [142.18346834, 27.162785279], [142.183513891, 27.162731667], [142.18346834, 27.162681108]]]}}, {"id": "37478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143437497, 26.672541414], [142.143505357, 26.672661865], [142.143457886, 26.672526225], [142.143437497, 26.672541414]]]}}, {"id": "37479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169971388, 27.119546387], [142.170072776, 27.119508054], [142.170013061, 27.119462225], [142.169971388, 27.119546387]]]}}, {"id": "37480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209941946, 27.489648892], [142.209790558, 27.489671387], [142.209822218, 27.489702495], [142.209941946, 27.489648892]]]}}, {"id": "37481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236849442, 27.098846108], [142.236742776, 27.098855], [142.236804449, 27.098911387], [142.236849442, 27.098846108]]]}}, {"id": "37482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.094521388, 27.723556667], [142.094645279, 27.723548613], [142.094535837, 27.723481946], [142.094521388, 27.723556667]]]}}, {"id": "37483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285086926, 24.785460063], [141.285096472, 24.785260315], [141.285054034, 24.785262459], [141.285086926, 24.785460063]]]}}, {"id": "37484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182158003, 27.070970441], [142.182242244, 27.071074108], [142.182238975, 27.070967081], [142.182158003, 27.070970441]]]}}, {"id": "37485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188623554, 26.655418468], [142.188499663, 26.655577946], [142.188540752, 26.655629613], [142.188623554, 26.655418468]]]}}, {"id": "37486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156489728, 27.661601667], [142.15640834, 27.661655279], [142.156469728, 27.661724162], [142.156489728, 27.661601667]]]}}, {"id": "37487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184707782, 27.627369441], [142.184805006, 27.627305279], [142.18472917, 27.627284162], [142.184707782, 27.627369441]]]}}, {"id": "37488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147161946, 26.580899721], [142.14706083, 26.580980279], [142.147091115, 26.580998892], [142.147161946, 26.580899721]]]}}, {"id": "37489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136232633, 26.681787], [142.136084553, 26.681894468], [142.136280143, 26.681843108], [142.136232633, 26.681787]]]}}, {"id": "37490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22357856, 27.091705802], [142.223611894, 27.091847829], [142.223651479, 27.091712108], [142.22357856, 27.091705802]]]}}, {"id": "37491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182968301, 26.612556495], [142.183091673, 26.612525721], [142.182976719, 26.612481108], [142.182968301, 26.612556495]]]}}, {"id": "37492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103259442, 27.717075829], [142.103377497, 27.717133613], [142.10339083, 27.717078054], [142.103259442, 27.717075829]]]}}, {"id": "37493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146445837, 26.651741667], [142.146506667, 26.651652775], [142.146422776, 26.651656667], [142.146445837, 26.651741667]]]}}, {"id": "37494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193552192, 27.040594919], [142.193472698, 27.040500162], [142.193482438, 27.040595], [142.193552192, 27.040594919]]]}}, {"id": "37495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168400726, 26.690286829], [142.168549339, 26.690283694], [142.168452672, 26.690215198], [142.168400726, 26.690286829]]]}}, {"id": "37496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161465006, 27.112970279], [142.161555279, 27.113051108], [142.161546109, 27.112964441], [142.161465006, 27.112970279]]]}}, {"id": "37497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163353606, 26.703518892], [142.163247782, 26.703446667], [142.163295837, 26.703548054], [142.163353606, 26.703518892]]]}}, {"id": "37498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16931, 27.0425], [142.169391115, 27.042457775], [142.169331946, 27.042437225], [142.16931, 27.0425]]]}}, {"id": "37499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167060726, 26.684772748], [142.167005305, 26.68467036], [142.166973061, 26.684737468], [142.167060726, 26.684772748]]]}}, {"id": "37500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15959, 27.657444162], [142.159505279, 27.657361108], [142.159485837, 27.65745], [142.15959, 27.657444162]]]}}, {"id": "37501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18945083, 27.138555279], [142.189557782, 27.138549441], [142.189497782, 27.138497495], [142.18945083, 27.138555279]]]}}, {"id": "37502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182678223, 26.620649441], [142.182697108, 26.620539027], [142.18261406, 26.620599775], [142.182678223, 26.620649441]]]}}, {"id": "37503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183503606, 27.187080559], [142.183536394, 27.187184721], [142.183564721, 27.187157225], [142.183503606, 27.187080559]]]}}, {"id": "37504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17162, 26.595038333], [142.171566109, 26.595154162], [142.171651115, 26.595101946], [142.17162, 26.595038333]]]}}, {"id": "37505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140529689, 26.667317387], [142.140591388, 26.667418135], [142.140644773, 26.667362468], [142.140529689, 26.667317387]]]}}, {"id": "37506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.097721388, 27.721345559], [142.097730272, 27.721453892], [142.09782, 27.721424721], [142.097721388, 27.721345559]]]}}, {"id": "37507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159689728, 26.546816667], [142.159831388, 26.546872495], [142.159843061, 26.546811387], [142.159689728, 26.546816667]]]}}, {"id": "37508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188405058, 27.105089721], [142.188225577, 27.105179414], [142.188354254, 27.105169027], [142.188405058, 27.105089721]]]}}, {"id": "37509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194181829, 27.040047441], [142.194120117, 27.039958973], [142.19402428, 27.039972559], [142.194181829, 27.040047441]]]}}, {"id": "37510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202048664, 27.04414436], [142.202035746, 27.044034198], [142.20196144, 27.044076892], [142.202048664, 27.04414436]]]}}, {"id": "37511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177731608, 26.605627198], [142.17752144, 26.605613802], [142.177600169, 26.605693495], [142.177731608, 26.605627198]]]}}, {"id": "37512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196268781, 27.038855225], [142.196281803, 27.038993108], [142.196331673, 27.038850613], [142.196268781, 27.038855225]]]}}, {"id": "37513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183712581, 26.613223387], [142.183593502, 26.613178414], [142.183599468, 26.613257667], [142.183712581, 26.613223387]]]}}, {"id": "37514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178611115, 27.631820829], [142.178746667, 27.631792775], [142.178735837, 27.631750829], [142.178611115, 27.631820829]]]}}, {"id": "37515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234224838, 27.051275054], [142.23408, 27.051201108], [142.234057497, 27.051236414], [142.234224838, 27.051275054]]]}}, {"id": "37516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162435863, 26.671016919], [142.162612335, 26.670983135], [142.162645499, 26.670930027], [142.162435863, 26.671016919]]]}}, {"id": "37517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24108131, 27.045501333], [142.241150272, 27.045611414], [142.24117275, 27.045504865], [142.24108131, 27.045501333]]]}}, {"id": "37518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188312503, 27.146713892], [142.188385279, 27.146605559], [142.188323333, 27.146620829], [142.188312503, 27.146713892]]]}}, {"id": "37519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186169728, 27.120077495], [142.186189728, 27.119966946], [142.186122776, 27.120052225], [142.186169728, 27.120077495]]]}}, {"id": "37520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204445837, 27.498056387], [142.204376109, 27.497973613], [142.204347224, 27.498056387], [142.204445837, 27.498056387]]]}}, {"id": "37521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1785, 26.602802775], [142.178456667, 26.60293], [142.17854083, 26.602850829], [142.1785, 26.602802775]]]}}, {"id": "37522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173724501, 26.644592613], [142.17386144, 26.644601829], [142.173732088, 26.644543946], [142.173724501, 26.644592613]]]}}, {"id": "37523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22739834, 27.116181946], [142.227335551, 27.116279721], [142.227381946, 27.116286946], [142.22739834, 27.116181946]]]}}, {"id": "37524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232928638, 27.072928748], [142.232985162, 27.07305536], [142.233012724, 27.073031414], [142.232928638, 27.072928748]]]}}, {"id": "37525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098855837, 27.720608892], [142.098994449, 27.720642225], [142.09892083, 27.720573892], [142.098855837, 27.720608892]]]}}, {"id": "37526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184944721, 27.087996946], [142.184865837, 27.087893613], [142.184897497, 27.088034721], [142.184944721, 27.087996946]]]}}, {"id": "37527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188661946, 26.659945559], [142.188521673, 26.659985279], [142.188656394, 26.659987775], [142.188661946, 26.659945559]]]}}, {"id": "37528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143177224, 26.674097225], [142.143267782, 26.674021108], [142.143206667, 26.673962225], [142.143177224, 26.674097225]]]}}, {"id": "37529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145660272, 26.582618613], [142.145589442, 26.582724441], [142.145666394, 26.582746108], [142.145660272, 26.582618613]]]}}, {"id": "37530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13510917, 26.68457864], [142.135205746, 26.684691], [142.135234864, 26.684659225], [142.13510917, 26.68457864]]]}}, {"id": "37531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144762672, 26.655863892], [142.144914864, 26.655778973], [142.144728807, 26.655852468], [142.144762672, 26.655863892]]]}}, {"id": "37532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218341673, 26.562414441], [142.218374163, 26.562586667], [142.218406394, 26.562574441], [142.218341673, 26.562414441]]]}}, {"id": "37533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16651856, 26.682021162], [142.166634034, 26.682049108], [142.166633256, 26.681981252], [142.16651856, 26.682021162]]]}}, {"id": "37534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187207782, 27.115981946], [142.18717917, 27.116098054], [142.187258054, 27.115987775], [142.187207782, 27.115981946]]]}}, {"id": "37535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19196, 27.106846387], [142.191846939, 27.10678], [142.191882503, 27.106862495], [142.19196, 27.106846387]]]}}, {"id": "37536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125404449, 27.683864721], [142.125461946, 27.683974441], [142.125488612, 27.683909441], [142.125404449, 27.683864721]]]}}, {"id": "37537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129843061, 26.692766946], [142.129898054, 26.692645279], [142.129822218, 26.692727775], [142.129843061, 26.692766946]]]}}, {"id": "37538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188401673, 27.189483892], [142.188344163, 27.189545559], [142.188443606, 27.189642495], [142.188401673, 27.189483892]]]}}, {"id": "37539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200764449, 27.162139162], [142.200823061, 27.162265], [142.200852503, 27.162230829], [142.200764449, 27.162139162]]]}}, {"id": "37540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195857497, 27.173726667], [142.195952218, 27.173632225], [142.195835006, 27.173678613], [142.195857497, 27.173726667]]]}}, {"id": "37541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192275694, 27.105941919], [142.192315357, 27.105850694], [142.192186641, 27.105894198], [142.192275694, 27.105941919]]]}}, {"id": "37542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188843022, 27.052372468], [142.188998859, 27.052307387], [142.188796329, 27.052293225], [142.188843022, 27.052372468]]]}}, {"id": "37543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153171388, 26.583391387], [142.153171388, 26.583266667], [142.153124449, 26.583280559], [142.153171388, 26.583391387]]]}}, {"id": "37544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129870272, 26.692325279], [142.129901388, 26.692186387], [142.129825006, 26.692316108], [142.129870272, 26.692325279]]]}}, {"id": "37545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234643696, 27.071820333], [142.234717419, 27.07193664], [142.234765162, 27.071907946], [142.234643696, 27.071820333]]]}}, {"id": "37546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186724163, 27.115963054], [142.186633333, 27.116051667], [142.186767224, 27.116003613], [142.186724163, 27.115963054]]]}}, {"id": "37547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17877, 26.605117775], [142.178670558, 26.605099721], [142.17874834, 26.605144721], [142.17877, 26.605117775]]]}}, {"id": "37548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231527782, 27.114283333], [142.23152, 27.114373333], [142.231593606, 27.114360559], [142.231527782, 27.114283333]]]}}, {"id": "37549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184974163, 27.155809721], [142.184992776, 27.155699162], [142.184928612, 27.155730829], [142.184974163, 27.155809721]]]}}, {"id": "37550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151909728, 26.582886108], [142.15197917, 26.582809441], [142.151865006, 26.582799441], [142.151909728, 26.582886108]]]}}, {"id": "37551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2275, 26.572941946], [142.227591946, 26.572929162], [142.227518612, 26.572851946], [142.2275, 26.572941946]]]}}, {"id": "37552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203844721, 27.079300559], [142.203747497, 27.079194162], [142.203710558, 27.079236946], [142.203844721, 27.079300559]]]}}, {"id": "37553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341219572, 24.805034613], [141.34110655, 24.805028432], [141.341117315, 24.805049243], [141.341219572, 24.805034613]]]}}, {"id": "37554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233165279, 27.099276667], [142.233170558, 27.099144721], [142.233111946, 27.099165829], [142.233165279, 27.099276667]]]}}, {"id": "37555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210175551, 27.489420279], [142.210121946, 27.489586667], [142.210206939, 27.489428613], [142.210175551, 27.489420279]]]}}, {"id": "37556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210825279, 27.48898], [142.210721115, 27.488935], [142.210741388, 27.489016946], [142.210825279, 27.48898]]]}}, {"id": "37557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.10042917, 27.716837225], [142.100573333, 27.716826108], [142.10056083, 27.716786946], [142.10042917, 27.716837225]]]}}, {"id": "37558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231622503, 27.060258054], [142.231693606, 27.060153054], [142.231563606, 27.060163892], [142.231622503, 27.060258054]]]}}, {"id": "37559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176650272, 27.622343892], [142.17676, 27.622292225], [142.176708885, 27.622242225], [142.176650272, 27.622343892]]]}}, {"id": "37560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.305027523, 24.756354964], [141.305072062, 24.756451955], [141.305170298, 24.756388766], [141.305027523, 24.756354964]]]}}, {"id": "37561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182015551, 26.622779495], [142.18205655, 26.622855919], [142.18212642, 26.622766198], [142.182015551, 26.622779495]]]}}, {"id": "37562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198697782, 27.159444441], [142.198794449, 27.159349441], [142.198694721, 27.159355279], [142.198697782, 27.159444441]]]}}, {"id": "37563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180363671, 26.630095919], [142.180241284, 26.630059441], [142.180252335, 26.630120081], [142.180363671, 26.630095919]]]}}, {"id": "37564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198153891, 27.169199441], [142.198106939, 27.169326667], [142.198160272, 27.169343333], [142.198153891, 27.169199441]]]}}, {"id": "37565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192873528, 27.06181964], [142.1928062, 27.061936414], [142.192911634, 27.061868586], [142.192873528, 27.06181964]]]}}, {"id": "37566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185851855, 27.074812306], [142.18591358, 27.074694613], [142.185856161, 27.074670027], [142.185851855, 27.074812306]]]}}, {"id": "37567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192513061, 27.185438613], [142.192474163, 27.185552775], [142.192533891, 27.185526946], [142.192513061, 27.185438613]]]}}, {"id": "37568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141757108, 26.702505081], [142.141787471, 26.702605135], [142.141828054, 26.702494081], [142.141757108, 26.702505081]]]}}, {"id": "37569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181548885, 27.631110559], [142.181660558, 27.631184162], [142.181597224, 27.631088892], [142.181548885, 27.631110559]]]}}, {"id": "37570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098599728, 27.716368333], [142.098665837, 27.716279162], [142.098573061, 27.716331108], [142.098599728, 27.716368333]]]}}, {"id": "37571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170722776, 27.622440279], [142.170777497, 27.622332495], [142.170669442, 27.622381387], [142.170722776, 27.622440279]]]}}, {"id": "37572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181769728, 26.617842775], [142.181681115, 26.617763054], [142.181632776, 26.617811387], [142.181769728, 26.617842775]]]}}, {"id": "37573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196088521, 27.039480775], [142.19610808, 27.039364495], [142.196059001, 27.039372333], [142.196088521, 27.039480775]]]}}, {"id": "37574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183167004, 27.045368306], [142.183167665, 27.045473162], [142.183275551, 27.04542864], [142.183167004, 27.045368306]]]}}, {"id": "37575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288302542, 24.745533405], [141.288188794, 24.745596153], [141.288219339, 24.745648577], [141.288302542, 24.745533405]]]}}, {"id": "37576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128907224, 26.688333054], [142.128835279, 26.688243333], [142.128810272, 26.688303054], [142.128907224, 26.688333054]]]}}, {"id": "37577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178800272, 27.631930279], [142.178883891, 27.631829162], [142.178814449, 27.631836387], [142.178800272, 27.631930279]]]}}, {"id": "37578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131225525, 26.705174162], [142.131166641, 26.705278829], [142.131218949, 26.705317225], [142.131225525, 26.705174162]]]}}, {"id": "37579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235499442, 27.110850559], [142.235446667, 27.110765279], [142.235404163, 27.110788892], [142.235499442, 27.110850559]]]}}, {"id": "37580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187674812, 27.044514468], [142.187594254, 27.044622441], [142.187773722, 27.044526162], [142.187674812, 27.044514468]]]}}, {"id": "37581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160929442, 27.105656108], [142.160828054, 27.105628054], [142.160849442, 27.105726946], [142.160929442, 27.105656108]]]}}, {"id": "37582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238404475, 27.047952586], [142.238391115, 27.047833667], [142.238333645, 27.047910829], [142.238404475, 27.047952586]]]}}, {"id": "37583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239239442, 26.567616387], [142.239181388, 26.567719162], [142.239237497, 26.567742495], [142.239239442, 26.567616387]]]}}, {"id": "37584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173741141, 26.622390973], [142.173621829, 26.622454495], [142.173648197, 26.622545441], [142.173741141, 26.622390973]]]}}, {"id": "37585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152413333, 26.637371667], [142.152389728, 26.637251108], [142.152360272, 26.637373613], [142.152413333, 26.637371667]]]}}, {"id": "37586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152194449, 26.556711108], [142.152250272, 26.556817775], [142.152261388, 26.556711108], [142.152194449, 26.556711108]]]}}, {"id": "37587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.097224449, 27.718641667], [142.09733, 27.718745], [142.09728083, 27.718613892], [142.097224449, 27.718641667]]]}}, {"id": "37588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23645808, 27.054879081], [142.236375525, 27.054883387], [142.23627144, 27.055004135], [142.23645808, 27.054879081]]]}}, {"id": "37589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213077497, 27.501773054], [142.213015551, 27.501705829], [142.21296917, 27.501825], [142.213077497, 27.501773054]]]}}, {"id": "37590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231821388, 26.576257775], [142.231761115, 26.576375279], [142.231850558, 26.576355], [142.231821388, 26.576257775]]]}}, {"id": "37591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131850778, 26.687070252], [142.131781997, 26.687202892], [142.131854034, 26.687184775], [142.131850778, 26.687070252]]]}}, {"id": "37592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230601608, 27.059640694], [142.230477302, 27.059680973], [142.230602192, 27.059679613], [142.230601608, 27.059640694]]]}}, {"id": "37593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198796394, 27.197347495], [142.198837224, 27.197426946], [142.198919442, 27.197401108], [142.198796394, 27.197347495]]]}}, {"id": "37594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172726939, 26.627230829], [142.172723333, 26.627121387], [142.172642776, 26.627263613], [142.172726939, 26.627230829]]]}}, {"id": "37595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149032672, 26.648124919], [142.149153528, 26.648145829], [142.149040143, 26.648083946], [142.149032672, 26.648124919]]]}}, {"id": "37596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180849053, 26.626320667], [142.18096725, 26.626319], [142.180899637, 26.626247495], [142.180849053, 26.626320667]]]}}, {"id": "37597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235107782, 27.049435748], [142.235136913, 27.049538586], [142.235140752, 27.049444892], [142.235107782, 27.049435748]]]}}, {"id": "37598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182995837, 27.087801387], [142.182914163, 27.087904441], [142.183005551, 27.087877225], [142.182995837, 27.087801387]]]}}, {"id": "37599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232978054, 27.072574441], [142.232888612, 27.072502495], [142.232916667, 27.072581108], [142.232978054, 27.072574441]]]}}, {"id": "37600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23195214, 27.067101973], [142.23187917, 27.067011027], [142.231852555, 27.067107198], [142.23195214, 27.067101973]]]}}, {"id": "37601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123299339, 26.705485721], [142.123233333, 26.705608721], [142.123289637, 26.705627802], [142.123299339, 26.705485721]]]}}, {"id": "37602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182347977, 27.092228559], [142.182235227, 27.092348387], [142.182409144, 27.092259252], [142.182347977, 27.092228559]]]}}, {"id": "37603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172690272, 27.624946387], [142.172784721, 27.624967495], [142.172756109, 27.624882225], [142.172690272, 27.624946387]]]}}, {"id": "37604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128446667, 26.610569441], [142.128503061, 26.610444721], [142.128406667, 26.610508892], [142.128446667, 26.610569441]]]}}, {"id": "37605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15571917, 27.664716108], [142.155631115, 27.664789721], [142.155764721, 27.664781946], [142.15571917, 27.664716108]]]}}, {"id": "37606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125616109, 27.684005559], [142.125675006, 27.684101667], [142.125721388, 27.684051667], [142.125616109, 27.684005559]]]}}, {"id": "37607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186032503, 27.118266946], [142.186079728, 27.118383054], [142.186101388, 27.118292775], [142.186032503, 27.118266946]]]}}, {"id": "37608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200751115, 27.162687225], [142.200812776, 27.16259], [142.200702776, 27.162611108], [142.200751115, 27.162687225]]]}}, {"id": "37609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181709339, 26.618643865], [142.18175153, 26.618520225], [142.181723359, 26.618496532], [142.181709339, 26.618643865]]]}}, {"id": "37610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175865551, 26.601209721], [142.175771115, 26.601141387], [142.175737782, 26.601199441], [142.175865551, 26.601209721]]]}}, {"id": "37611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216664332, 27.100583775], [142.216770973, 27.100609532], [142.21678642, 27.100557495], [142.216664332, 27.100583775]]]}}, {"id": "37612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128812218, 26.693616387], [142.128831388, 26.693520559], [142.128748612, 26.693566387], [142.128812218, 26.693616387]]]}}, {"id": "37613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122404669, 26.711128973], [142.122386744, 26.711276225], [142.122447808, 26.711141667], [142.122404669, 26.711128973]]]}}, {"id": "37614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163791582, 26.676139135], [142.163718716, 26.676267387], [142.16373703, 26.676288387], [142.163791582, 26.676139135]]]}}, {"id": "37615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148733748, 26.654027441], [142.148775331, 26.654112613], [142.148797276, 26.654056919], [142.148733748, 26.654027441]]]}}, {"id": "37616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235133087, 27.055918027], [142.235154553, 27.055815892], [142.235086498, 27.055912586], [142.235133087, 27.055918027]]]}}, {"id": "37617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162094163, 27.115394721], [142.162078885, 27.115289721], [142.161987497, 27.115339721], [142.162094163, 27.115394721]]]}}, {"id": "37618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202815006, 27.086040441], [142.202827445, 27.086120829], [142.202904578, 27.086066027], [142.202815006, 27.086040441]]]}}, {"id": "37619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191742503, 27.075497225], [142.191793606, 27.075397225], [142.191721673, 27.075394721], [142.191742503, 27.075497225]]]}}, {"id": "37620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182097224, 26.619703892], [142.182037224, 26.619629721], [142.182026667, 26.619752495], [142.182097224, 26.619703892]]]}}, {"id": "37621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.340708495, 24.804998685], [141.340801699, 24.805049658], [141.340835914, 24.804958081], [141.340708495, 24.804998685]]]}}, {"id": "37622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233475279, 27.076396667], [142.233413606, 27.076313613], [142.233385837, 27.076429721], [142.233475279, 27.076396667]]]}}, {"id": "37623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130201803, 26.691987829], [142.130212996, 26.692104613], [142.130269637, 26.692079108], [142.130201803, 26.691987829]]]}}, {"id": "37624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202586667, 27.075293054], [142.202643891, 27.075146667], [142.20255083, 27.075280279], [142.202586667, 27.075293054]]]}}, {"id": "37625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177869728, 26.599885559], [142.177941388, 26.599966108], [142.177968612, 26.599931108], [142.177869728, 26.599885559]]]}}, {"id": "37626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160555837, 27.655753613], [142.160612503, 27.655670559], [142.160545006, 27.655676387], [142.160555837, 27.655753613]]]}}, {"id": "37627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231859442, 27.060110559], [142.231786667, 27.060019441], [142.231754163, 27.060079441], [142.231859442, 27.060110559]]]}}, {"id": "37628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186464163, 26.659911387], [142.18650917, 26.659779162], [142.18643917, 26.65979], [142.186464163, 26.659911387]]]}}, {"id": "37629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226495551, 26.571706387], [142.226593333, 26.571676108], [142.226561673, 26.571614721], [142.226495551, 26.571706387]]]}}, {"id": "37630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190232387, 27.042763387], [142.190381219, 27.042674892], [142.190428275, 27.042553441], [142.190232387, 27.042763387]]]}}, {"id": "37631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181235888, 26.616181333], [142.181252724, 26.616296865], [142.181303022, 26.616215468], [142.181235888, 26.616181333]]]}}, {"id": "37632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135056667, 26.685378892], [142.135156667, 26.685377495], [142.135154449, 26.685302495], [142.135056667, 26.685378892]]]}}, {"id": "37633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153208521, 26.639278748], [142.153146304, 26.639468829], [142.153242283, 26.639290441], [142.153208521, 26.639278748]]]}}, {"id": "37634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132153696, 26.687361495], [142.132190441, 26.687439829], [142.132203307, 26.687356225], [142.132153696, 26.687361495]]]}}, {"id": "37635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161837497, 26.563596667], [142.16194, 26.563656387], [142.161955279, 26.563599162], [142.161837497, 26.563596667]]]}}, {"id": "37636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191509248, 27.075507441], [142.191521608, 27.075602468], [142.191593722, 27.075552919], [142.191509248, 27.075507441]]]}}, {"id": "37637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150011582, 26.709042973], [142.150023943, 26.709116162], [142.150073281, 26.709098054], [142.150011582, 26.709042973]]]}}, {"id": "37638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200137497, 26.551460279], [142.199998612, 26.551392225], [142.199972776, 26.551427775], [142.200137497, 26.551460279]]]}}, {"id": "37639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.093973061, 27.716823613], [142.093893891, 27.716906387], [142.093988612, 27.716897225], [142.093973061, 27.716823613]]]}}, {"id": "37640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161187497, 27.113902495], [142.161292218, 27.113955829], [142.161202218, 27.113868333], [142.161187497, 27.113902495]]]}}, {"id": "37641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128485772, 26.695406748], [142.128582049, 26.69531836], [142.128482088, 26.695343919], [142.128485772, 26.695406748]]]}}, {"id": "37642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227645006, 26.563349441], [142.227733061, 26.563411667], [142.227742218, 26.563340829], [142.227645006, 26.563349441]]]}}, {"id": "37643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184590895, 27.048184667], [142.184526031, 27.048289162], [142.184720921, 27.048250468], [142.184590895, 27.048184667]]]}}, {"id": "37644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196414942, 27.038923973], [142.196461051, 27.039019027], [142.196506913, 27.038962667], [142.196414942, 27.038923973]]]}}, {"id": "37645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176445837, 26.598884441], [142.176539442, 26.598828892], [142.176461115, 26.598816946], [142.176445837, 26.598884441]]]}}, {"id": "37646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231758716, 27.058544694], [142.231869468, 27.058523829], [142.231862918, 27.058468721], [142.231758716, 27.058544694]]]}}, {"id": "37647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158286939, 27.659252225], [142.158351388, 27.659146387], [142.158274163, 27.659141387], [142.158286939, 27.659252225]]]}}, {"id": "37648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207709442, 27.041400586], [142.207771115, 27.041496532], [142.207807276, 27.041424721], [142.207709442, 27.041400586]]]}}, {"id": "37649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177090584, 26.619115532], [142.177166135, 26.619022], [142.177039754, 26.619037613], [142.177090584, 26.619115532]]]}}, {"id": "37650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193147497, 27.088878054], [142.193035006, 27.088786946], [142.193082776, 27.088906946], [142.193147497, 27.088878054]]]}}, {"id": "37651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145412503, 26.658633333], [142.145396667, 26.658515829], [142.145348885, 26.658519441], [142.145412503, 26.658633333]]]}}, {"id": "37652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207993061, 27.486091667], [142.207913891, 27.486025559], [142.207913891, 27.486109721], [142.207993061, 27.486091667]]]}}, {"id": "37653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231867056, 27.07891664], [142.23182022, 27.079035135], [142.231954968, 27.078908721], [142.231867056, 27.07891664]]]}}, {"id": "37654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16480214, 26.630589414], [142.164906083, 26.630731721], [142.164829922, 26.630558775], [142.16480214, 26.630589414]]]}}, {"id": "37655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192769027, 27.041494333], [142.19268572, 27.041637414], [142.192799274, 27.041498802], [142.192769027, 27.041494333]]]}}, {"id": "37656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231603385, 27.059190027], [142.231561336, 27.059082054], [142.231520558, 27.059163802], [142.231603385, 27.059190027]]]}}, {"id": "37657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103011946, 27.716210559], [142.103035551, 27.716105], [142.102953061, 27.716190559], [142.103011946, 27.716210559]]]}}, {"id": "37658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166175279, 26.593248333], [142.166197497, 26.593354721], [142.166231115, 26.593260279], [142.166175279, 26.593248333]]]}}, {"id": "37659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128058885, 26.695143054], [142.12796917, 26.695070279], [142.127923606, 26.695137225], [142.128058885, 26.695143054]]]}}, {"id": "37660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171386394, 27.044774162], [142.171421946, 27.044904721], [142.171437497, 27.044781108], [142.171386394, 27.044774162]]]}}, {"id": "37661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160513606, 26.554656387], [142.160417224, 26.554601387], [142.160404449, 26.554653892], [142.160513606, 26.554656387]]]}}, {"id": "37662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141124501, 26.704649441], [142.141042114, 26.704580559], [142.141015162, 26.704654775], [142.141124501, 26.704649441]]]}}, {"id": "37663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235732918, 27.04950536], [142.23574978, 27.049418775], [142.235669053, 27.049430667], [142.235732918, 27.04950536]]]}}, {"id": "37664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147328885, 26.581104441], [142.147384721, 26.581018892], [142.14733, 26.581027225], [142.147328885, 26.581104441]]]}}, {"id": "37665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21944917, 27.495498333], [142.219491673, 27.495363892], [142.219429728, 27.495376946], [142.21944917, 27.495498333]]]}}, {"id": "37666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13626, 26.700698613], [142.136135006, 26.700675829], [142.136214449, 26.700738333], [142.13626, 26.700698613]]]}}, {"id": "37667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200316939, 27.164725279], [142.200395551, 27.164652225], [142.200335551, 27.164648613], [142.200316939, 27.164725279]]]}}, {"id": "37668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141910558, 26.709098333], [142.141868612, 26.709], [142.141851388, 26.709117495], [142.141910558, 26.709098333]]]}}, {"id": "37669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225909105, 27.054031135], [142.225970584, 27.054118306], [142.226000467, 27.054048946], [142.225909105, 27.054031135]]]}}, {"id": "37670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173393865, 26.638084495], [142.173373385, 26.637970532], [142.173273165, 26.637985081], [142.173393865, 26.638084495]]]}}, {"id": "37671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235711388, 27.110902495], [142.235906394, 27.11092], [142.235717497, 27.110847495], [142.235711388, 27.110902495]]]}}, {"id": "37672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124572503, 27.682494162], [142.12461, 27.682401108], [142.124548054, 27.682424162], [142.124572503, 27.682494162]]]}}, {"id": "37673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233733061, 27.081003892], [142.233717497, 27.080900829], [142.233654721, 27.080943333], [142.233733061, 27.081003892]]]}}, {"id": "37674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188582944, 27.049228252], [142.188643022, 27.049120667], [142.188537134, 27.049154387], [142.188582944, 27.049228252]]]}}, {"id": "37675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155782218, 27.657451108], [142.155894721, 27.657513054], [142.155920558, 27.657469162], [142.155782218, 27.657451108]]]}}, {"id": "37676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205511946, 27.076109721], [142.205386939, 27.076110559], [142.205516394, 27.076177495], [142.205511946, 27.076109721]]]}}, {"id": "37677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121401997, 26.703805775], [142.121457471, 26.703708414], [142.121367419, 26.703776721], [142.121401997, 26.703805775]]]}}, {"id": "37678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138009857, 26.680402559], [142.138065837, 26.68048464], [142.138102607, 26.680406694], [142.138009857, 26.680402559]]]}}, {"id": "37679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147066667, 26.582314721], [142.147106109, 26.582217495], [142.147041946, 26.582219721], [142.147066667, 26.582314721]]]}}, {"id": "37680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.458866291, 24.24585545], [141.458893554, 24.245776324], [141.458822438, 24.24578055], [141.458866291, 24.24585545]]]}}, {"id": "37681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123537782, 26.703158054], [142.123684163, 26.703149162], [142.123607497, 26.703072495], [142.123537782, 26.703158054]]]}}, {"id": "37682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19071834, 27.104985279], [142.190674721, 27.104892775], [142.190603333, 27.104924721], [142.19071834, 27.104985279]]]}}, {"id": "37683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227415279, 26.572918333], [142.227334163, 26.572950829], [142.227377782, 26.572998613], [142.227415279, 26.572918333]]]}}, {"id": "37684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155988054, 27.659276108], [142.156092218, 27.659312495], [142.15600917, 27.659223613], [142.155988054, 27.659276108]]]}}, {"id": "37685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236971673, 27.087918613], [142.23688, 27.087884162], [142.236911673, 27.087970829], [142.236971673, 27.087918613]]]}}, {"id": "37686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191945551, 27.192621387], [142.192051673, 27.192683054], [142.19199, 27.192570559], [142.191945551, 27.192621387]]]}}, {"id": "37687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238621829, 27.047916225], [142.238622607, 27.047811613], [142.238545577, 27.047896748], [142.238621829, 27.047916225]]]}}, {"id": "37688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212776109, 26.555713613], [142.212772218, 26.555621667], [142.212730558, 26.555674441], [142.212776109, 26.555713613]]]}}, {"id": "37689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191923061, 27.106305279], [142.191892503, 27.106187775], [142.191863061, 27.106206946], [142.191923061, 27.106305279]]]}}, {"id": "37690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150825863, 26.647789162], [142.150785357, 26.64768964], [142.150793217, 26.647786946], [142.150825863, 26.647789162]]]}}, {"id": "37691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133963606, 26.701298252], [142.13405511, 26.701252135], [142.134017639, 26.701181586], [142.133963606, 26.701298252]]]}}, {"id": "37692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176499442, 27.622173054], [142.176587224, 27.622224162], [142.176567497, 27.622120279], [142.176499442, 27.622173054]]]}}, {"id": "37693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132390661, 26.703745946], [142.132512244, 26.703731306], [142.132409494, 26.703684], [142.132390661, 26.703745946]]]}}, {"id": "37694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186010272, 27.084662775], [142.185943606, 27.084593613], [142.185944449, 27.084675279], [142.186010272, 27.084662775]]]}}, {"id": "37695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141808054, 26.677810279], [142.141727497, 26.677737775], [142.141736394, 26.677813054], [142.141808054, 26.677810279]]]}}, {"id": "37696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207393061, 26.565765829], [142.207428054, 26.56588], [142.207474721, 26.565862775], [142.207393061, 26.565765829]]]}}, {"id": "37697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207702218, 27.489857775], [142.207658054, 27.489758892], [142.207591673, 27.489812495], [142.207702218, 27.489857775]]]}}, {"id": "37698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284002192, 25.448922883], [141.283956641, 25.448875946], [141.283886641, 25.448983441], [141.284002192, 25.448922883]]]}}, {"id": "37699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141185551, 26.677941108], [142.141215279, 26.677842775], [142.141138054, 26.677862775], [142.141185551, 26.677941108]]]}}, {"id": "37700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185392361, 27.048368441], [142.185305499, 27.048314946], [142.185360558, 27.048394387], [142.185392361, 27.048368441]]]}}, {"id": "37701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197185863, 27.040159414], [142.197283165, 27.040240532], [142.197306783, 27.040198973], [142.197185863, 27.040159414]]]}}, {"id": "37702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189735279, 27.187061387], [142.18984083, 27.187032495], [142.189787224, 27.186985279], [142.189735279, 27.187061387]]]}}, {"id": "37703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168974163, 27.632823892], [142.169063333, 27.632874721], [142.16907083, 27.632798333], [142.168974163, 27.632823892]]]}}, {"id": "37704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216345551, 27.493864721], [142.216305551, 27.49397], [142.216380272, 27.494], [142.216345551, 27.493864721]]]}}, {"id": "37705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178880558, 27.631615559], [142.179011115, 27.631666108], [142.179000558, 27.631604441], [142.178880558, 27.631615559]]]}}, {"id": "37706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236688029, 27.050222495], [142.236743281, 27.050080162], [142.236695136, 27.050060279], [142.236688029, 27.050222495]]]}}, {"id": "37707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122719442, 26.711598333], [142.12275834, 26.711471108], [142.122694163, 26.711514441], [142.122719442, 26.711598333]]]}}, {"id": "37708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23727358, 27.048727387], [142.237264916, 27.048825225], [142.237346615, 27.048744865], [142.23727358, 27.048727387]]]}}, {"id": "37709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236468054, 27.088756387], [142.236376394, 27.088780279], [142.236449728, 27.088823333], [142.236468054, 27.088756387]]]}}, {"id": "37710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17805083, 27.129367775], [142.178229442, 27.129401946], [142.178229442, 27.129367775], [142.17805083, 27.129367775]]]}}, {"id": "37711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1294407, 26.690468775], [142.129533165, 26.690567252], [142.129561855, 26.690535], [142.1294407, 26.690468775]]]}}, {"id": "37712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163787782, 26.589748892], [142.163831946, 26.589632495], [142.163745279, 26.589727495], [142.163787782, 26.589748892]]]}}, {"id": "37713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128792555, 26.692421919], [142.12892847, 26.692474414], [142.128958171, 26.69243964], [142.128792555, 26.692421919]]]}}, {"id": "37714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194120506, 27.040947306], [142.193992698, 27.04101464], [142.194135914, 27.041003892], [142.194120506, 27.040947306]]]}}, {"id": "37715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179688612, 27.630718054], [142.179782776, 27.630693333], [142.179752503, 27.630639721], [142.179688612, 27.630718054]]]}}, {"id": "37716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34136332, 24.804372126], [141.341185084, 24.80435536], [141.341335655, 24.80442355], [141.34136332, 24.804372126]]]}}, {"id": "37717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142456744, 26.655187162], [142.142473839, 26.655281865], [142.142511479, 26.655239829], [142.142456744, 26.655187162]]]}}, {"id": "37718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204601115, 27.498068892], [142.204583061, 27.498188333], [142.204645279, 27.498170279], [142.204601115, 27.498068892]]]}}, {"id": "37719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133784449, 26.684697495], [142.13368917, 26.684656108], [142.133712218, 26.684726946], [142.133784449, 26.684697495]]]}}, {"id": "37720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20370406, 27.044406613], [142.203809079, 27.044454667], [142.203828444, 27.044409694], [142.20370406, 27.044406613]]]}}, {"id": "37721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156648612, 27.659998333], [142.156562776, 27.660055], [142.156631946, 27.660078333], [142.156648612, 27.659998333]]]}}, {"id": "37722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177061946, 27.619937775], [142.176955006, 27.619967775], [142.177043333, 27.619996108], [142.177061946, 27.619937775]]]}}, {"id": "37723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182728366, 27.047891667], [142.182702555, 27.048011667], [142.182781997, 27.04801236], [142.182728366, 27.047891667]]]}}, {"id": "37724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152686394, 26.546388054], [142.152601946, 26.546445], [142.152668612, 26.546466667], [142.152686394, 26.546388054]]]}}, {"id": "37725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166573891, 26.592593892], [142.166468612, 26.592603054], [142.166479728, 26.592647775], [142.166573891, 26.592593892]]]}}, {"id": "37726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235436978, 27.055503495], [142.235355746, 27.055620162], [142.235380415, 27.055652613], [142.235436978, 27.055503495]]]}}, {"id": "37727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150561634, 26.693896892], [142.1506338, 26.693994387], [142.150658054, 26.693935225], [142.150561634, 26.693896892]]]}}, {"id": "37728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158496394, 27.664016946], [142.158587782, 27.664105], [142.158531388, 27.663994721], [142.158496394, 27.664016946]]]}}, {"id": "37729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134048521, 26.701361919], [142.134140506, 26.701310559], [142.134124475, 26.701268775], [142.134048521, 26.701361919]]]}}, {"id": "37730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095361673, 27.721454162], [142.095456394, 27.721457225], [142.095413606, 27.721385829], [142.095361673, 27.721454162]]]}}, {"id": "37731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188241388, 27.105422495], [142.188163606, 27.105366946], [142.188167224, 27.105459162], [142.188241388, 27.105422495]]]}}, {"id": "37732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133197497, 26.596345279], [142.133316394, 26.596365], [142.133292218, 26.596314721], [142.133197497, 26.596345279]]]}}, {"id": "37733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147075914, 26.689957694], [142.147059468, 26.690079279], [142.147112309, 26.690055054], [142.147075914, 26.689957694]]]}}, {"id": "37734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159611673, 27.656978613], [142.159572503, 27.656883892], [142.159531388, 27.656972775], [142.159611673, 27.656978613]]]}}, {"id": "37735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233241725, 27.050184198], [142.233190506, 27.050081387], [142.233185888, 27.05018736], [142.233241725, 27.050184198]]]}}, {"id": "37736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129818054, 26.688817775], [142.129781673, 26.688708613], [142.129771946, 26.688803892], [142.129818054, 26.688817775]]]}}, {"id": "37737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235535551, 27.082259162], [142.235485006, 27.082158892], [142.235459728, 27.082228892], [142.235535551, 27.082259162]]]}}, {"id": "37738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189713891, 27.189354441], [142.189676109, 27.189453054], [142.189734163, 27.189473892], [142.189713891, 27.189354441]]]}}, {"id": "37739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.882891128, 27.236932568], [140.882993696, 27.236948], [140.882967562, 27.236888342], [140.882891128, 27.236932568]]]}}, {"id": "37740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186345746, 27.042679135], [142.186448586, 27.042695054], [142.186445357, 27.042627198], [142.186345746, 27.042679135]]]}}, {"id": "37741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136137224, 26.682909162], [142.136089442, 26.682819721], [142.13608834, 26.682909162], [142.136137224, 26.682909162]]]}}, {"id": "37742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143079728, 26.672050559], [142.143162218, 26.671996108], [142.143080558, 26.671971108], [142.143079728, 26.672050559]]]}}, {"id": "37743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20658083, 27.103596387], [142.206673891, 27.103524162], [142.20655834, 27.103566946], [142.20658083, 27.103596387]]]}}, {"id": "37744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131746394, 26.595545559], [142.131843891, 26.595478054], [142.131746394, 26.595491667], [142.131746394, 26.595545559]]]}}, {"id": "37745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167224384, 26.658362829], [142.167326252, 26.658436802], [142.167314669, 26.658354495], [142.167224384, 26.658362829]]]}}, {"id": "37746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17960834, 26.604781387], [142.179533891, 26.60468], [142.179545006, 26.604781387], [142.17960834, 26.604781387]]]}}, {"id": "37747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143503191, 26.664747775], [142.143451699, 26.664846495], [142.14353061, 26.664821586], [142.143503191, 26.664747775]]]}}, {"id": "37748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17869, 27.631544162], [142.178787782, 27.631619721], [142.178798612, 27.631559441], [142.17869, 27.631544162]]]}}, {"id": "37749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166335837, 26.59278], [142.166455279, 26.592803613], [142.166363606, 26.592736946], [142.166335837, 26.59278]]]}}, {"id": "37750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195102309, 27.038467559], [142.195089831, 27.038542586], [142.195191505, 27.038409135], [142.195102309, 27.038467559]]]}}, {"id": "37751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140203333, 26.587287495], [142.14022, 26.587401946], [142.140245551, 26.587289441], [142.140203333, 26.587287495]]]}}, {"id": "37752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125294163, 26.610488054], [142.125399728, 26.610502775], [142.125395006, 26.610441387], [142.125294163, 26.610488054]]]}}, {"id": "37753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096072503, 27.719807775], [142.096173061, 27.719768054], [142.09612083, 27.719736667], [142.096072503, 27.719807775]]]}}, {"id": "37754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238123606, 27.087083613], [142.238044163, 27.087008333], [142.238047497, 27.087078333], [142.238123606, 27.087083613]]]}}, {"id": "37755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096170558, 27.720392775], [142.096266667, 27.720374441], [142.096187782, 27.720318333], [142.096170558, 27.720392775]]]}}, {"id": "37756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226368612, 26.571590279], [142.226395006, 26.571483892], [142.226351946, 26.571485559], [142.226368612, 26.571590279]]]}}, {"id": "37757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163808885, 27.115548613], [142.163842218, 27.115482495], [142.163771946, 27.115522225], [142.163808885, 27.115548613]]]}}, {"id": "37758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182463943, 27.070799279], [142.182371219, 27.070891198], [142.182432166, 27.070923946], [142.182463943, 27.070799279]]]}}, {"id": "37759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143382503, 26.672615], [142.143305279, 26.672553333], [142.143312503, 26.672624721], [142.143382503, 26.672615]]]}}, {"id": "37760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157457497, 27.662626946], [142.15753917, 27.662545829], [142.157478612, 27.662545], [142.157457497, 27.662626946]]]}}, {"id": "37761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228402218, 26.573922775], [142.22844, 26.574032775], [142.228465279, 26.573985829], [142.228402218, 26.573922775]]]}}, {"id": "37762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193368911, 27.040817748], [142.193329364, 27.040962829], [142.193406446, 27.040828892], [142.193368911, 27.040817748]]]}}, {"id": "37763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122806719, 26.711999306], [142.122877562, 26.712076252], [142.122915188, 26.712022694], [142.122806719, 26.711999306]]]}}, {"id": "37764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180635357, 26.630871225], [142.180666641, 26.630974081], [142.18072275, 26.630888081], [142.180635357, 26.630871225]]]}}, {"id": "37765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200887108, 27.044690829], [142.20106131, 27.044702135], [142.200884358, 27.044675667], [142.200887108, 27.044690829]]]}}, {"id": "37766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23337131, 27.074029613], [142.233441894, 27.074128667], [142.233457445, 27.074034973], [142.23337131, 27.074029613]]]}}, {"id": "37767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233827886, 27.050610495], [142.233788366, 27.050509946], [142.233731362, 27.050589829], [142.233827886, 27.050610495]]]}}, {"id": "37768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203126031, 27.089373468], [142.203226278, 27.089368081], [142.203196252, 27.089281108], [142.203126031, 27.089373468]]]}}, {"id": "37769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174243476, 26.608074306], [142.174128586, 26.608136441], [142.174265305, 26.608172108], [142.174243476, 26.608074306]]]}}, {"id": "37770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232814254, 27.063098252], [142.232869222, 27.062967667], [142.232753113, 27.063068027], [142.232814254, 27.063098252]]]}}, {"id": "37771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144927782, 26.647223054], [142.144835006, 26.647286387], [142.144903891, 26.647303613], [142.144927782, 26.647223054]]]}}, {"id": "37772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156675551, 27.657925279], [142.156723891, 27.658028054], [142.156755279, 27.657981946], [142.156675551, 27.657925279]]]}}, {"id": "37773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23453939, 27.075379252], [142.234536913, 27.075262559], [142.2344907, 27.075382225], [142.23453939, 27.075379252]]]}}, {"id": "37774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223928145, 27.091241162], [142.224007613, 27.091341468], [142.224022283, 27.091261054], [142.223928145, 27.091241162]]]}}, {"id": "37775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164056304, 26.687499027], [142.163942633, 26.687410135], [142.164043087, 26.687529441], [142.164056304, 26.687499027]]]}}, {"id": "37776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161672776, 26.585366387], [142.161758612, 26.585307775], [142.161681946, 26.585300559], [142.161672776, 26.585366387]]]}}, {"id": "37777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132224721, 26.687618973], [142.132106226, 26.687689667], [142.132129468, 26.687724027], [142.132224721, 26.687618973]]]}}, {"id": "37778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186395837, 27.070650279], [142.186314721, 27.070667775], [142.186358054, 27.070697775], [142.186395837, 27.070650279]]]}}, {"id": "37779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12891275, 26.693686946], [142.128876278, 26.693774973], [142.128964916, 26.693794108], [142.12891275, 26.693686946]]]}}, {"id": "37780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177731673, 27.129269441], [142.177745006, 27.129182225], [142.177657224, 27.129235559], [142.177731673, 27.129269441]]]}}, {"id": "37781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287427198, 25.447897054], [141.287303022, 25.447911775], [141.287411634, 25.447938721], [141.287427198, 25.447897054]]]}}, {"id": "37782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206693411, 27.042714973], [142.206769053, 27.042791054], [142.206814812, 27.042738162], [142.206693411, 27.042714973]]]}}, {"id": "37783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.271966083, 25.428995667], [141.271883865, 25.428915387], [141.271888586, 25.428984279], [141.271966083, 25.428995667]]]}}, {"id": "37784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174715837, 26.597871387], [142.174811388, 26.597906667], [142.174798054, 26.597863054], [142.174715837, 26.597871387]]]}}, {"id": "37785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142121971, 26.709361225], [142.142126109, 26.709447414], [142.142190143, 26.709364225], [142.142121971, 26.709361225]]]}}, {"id": "37786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150017224, 26.546705279], [142.149962503, 26.546608613], [142.149963606, 26.546716108], [142.150017224, 26.546705279]]]}}, {"id": "37787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098327497, 27.720618892], [142.098409728, 27.720691108], [142.098443891, 27.720636387], [142.098327497, 27.720618892]]]}}, {"id": "37788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098236394, 27.718204162], [142.098308885, 27.718262495], [142.098323333, 27.718200559], [142.098236394, 27.718204162]]]}}, {"id": "37789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130069831, 26.693281225], [142.130038833, 26.693408892], [142.130146913, 26.693371054], [142.130069831, 26.693281225]]]}}, {"id": "37790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181571946, 26.617513892], [142.181487782, 26.617442225], [142.181531388, 26.617539162], [142.181571946, 26.617513892]]]}}, {"id": "37791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172717782, 26.627966946], [142.172821673, 26.627943892], [142.172786109, 26.627868892], [142.172717782, 26.627966946]]]}}, {"id": "37792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122843722, 26.716135198], [142.122941167, 26.716267252], [142.123006887, 26.71626664], [142.122843722, 26.716135198]]]}}, {"id": "37793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17134, 27.045498892], [142.171405279, 27.045405], [142.17131917, 27.045451387], [142.17134, 27.045498892]]]}}, {"id": "37794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190179728, 27.186947495], [142.190241946, 27.186857225], [142.190195006, 27.186832495], [142.190179728, 27.186947495]]]}}, {"id": "37795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131649494, 26.706205279], [142.131638975, 26.706302495], [142.131665279, 26.706296613], [142.131649494, 26.706205279]]]}}, {"id": "37796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231712088, 27.071460198], [142.231818949, 27.071461279], [142.231822672, 27.071401973], [142.231712088, 27.071460198]]]}}, {"id": "37797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23474, 27.09716], [142.234812218, 27.097252225], [142.234787497, 27.097117495], [142.23474, 27.09716]]]}}, {"id": "37798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122571388, 26.713138892], [142.122538054, 26.713241387], [142.122616394, 26.713226946], [142.122571388, 26.713138892]]]}}, {"id": "37799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21198917, 27.489925279], [142.212065551, 27.489893892], [142.212026939, 27.489798333], [142.21198917, 27.489925279]]]}}, {"id": "37800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156207665, 26.62993], [142.156228781, 26.630016532], [142.156277471, 26.629934162], [142.156207665, 26.62993]]]}}, {"id": "37801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152427691, 26.707770225], [142.152408716, 26.707868], [142.15251511, 26.707743414], [142.152427691, 26.707770225]]]}}, {"id": "37802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231013022, 27.061255468], [142.230954228, 27.061148613], [142.230961634, 27.061271333], [142.231013022, 27.061255468]]]}}, {"id": "37803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149937224, 27.674095], [142.149968612, 27.674003054], [142.149885551, 27.674068054], [142.149937224, 27.674095]]]}}, {"id": "37804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174277224, 26.635421108], [142.174273333, 26.635310802], [142.174223191, 26.635361495], [142.174277224, 26.635421108]]]}}, {"id": "37805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096765837, 27.717911667], [142.096862218, 27.717881108], [142.096796109, 27.717843892], [142.096765837, 27.717911667]]]}}, {"id": "37806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150090558, 27.673949441], [142.150186394, 27.674033333], [142.150192776, 27.673993054], [142.150090558, 27.673949441]]]}}, {"id": "37807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126006083, 26.701908054], [142.126061751, 26.702005468], [142.126083333, 26.701967279], [142.126006083, 26.701908054]]]}}, {"id": "37808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235165188, 27.085894919], [142.235281141, 27.085897081], [142.235300532, 27.085853892], [142.235165188, 27.085894919]]]}}, {"id": "37809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198703061, 27.045240279], [142.198612776, 27.045162495], [142.198607497, 27.045212225], [142.198703061, 27.045240279]]]}}, {"id": "37810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142402218, 26.674772225], [142.142324163, 26.674700279], [142.142297497, 26.674756667], [142.142402218, 26.674772225]]]}}, {"id": "37811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209446667, 27.487199721], [142.209431388, 27.487302225], [142.209506667, 27.487275829], [142.209446667, 27.487199721]]]}}, {"id": "37812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149911699, 26.684473162], [142.150073774, 26.684549], [142.149933022, 26.684430162], [142.149911699, 26.684473162]]]}}, {"id": "37813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227163333, 27.116256387], [142.227263061, 27.116262225], [142.227242503, 27.116180559], [142.227163333, 27.116256387]]]}}, {"id": "37814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126107108, 26.700837532], [142.126022944, 26.700894198], [142.126138054, 26.700935613], [142.126107108, 26.700837532]]]}}, {"id": "37815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204021673, 27.115433892], [142.203924449, 27.11546], [142.204019442, 27.115492495], [142.204021673, 27.115433892]]]}}, {"id": "37816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210982776, 27.492450829], [142.211068054, 27.492524162], [142.211014449, 27.492411387], [142.210982776, 27.492450829]]]}}, {"id": "37817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187596667, 27.622400559], [142.187686109, 27.62242], [142.187687782, 27.622334721], [142.187596667, 27.622400559]]]}}, {"id": "37818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234731388, 26.566611108], [142.234837497, 26.566640829], [142.234773891, 26.566570829], [142.234731388, 26.566611108]]]}}, {"id": "37819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172400272, 26.64402864], [142.172482698, 26.644120532], [142.172432412, 26.644017946], [142.172400272, 26.64402864]]]}}, {"id": "37820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173074475, 26.598212802], [142.173203307, 26.598217613], [142.173112827, 26.598155441], [142.173074475, 26.598212802]]]}}, {"id": "37821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182908885, 27.158256387], [142.183007224, 27.158250559], [142.182932503, 27.158211667], [142.182908885, 27.158256387]]]}}, {"id": "37822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146605551, 26.580853892], [142.146667224, 26.580955279], [142.146648612, 26.580825829], [142.146605551, 26.580853892]]]}}, {"id": "37823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149675551, 26.546979721], [142.149626394, 26.547063892], [142.149671946, 26.54707], [142.149675551, 26.546979721]]]}}, {"id": "37824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141585837, 26.665650559], [142.141545551, 26.665554162], [142.141507782, 26.665595559], [142.141585837, 26.665650559]]]}}, {"id": "37825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17510083, 27.055129162], [142.175003061, 27.055085829], [142.175026667, 27.055160829], [142.17510083, 27.055129162]]]}}, {"id": "37826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195972023, 27.038907973], [142.195927613, 27.038820865], [142.195878638, 27.038879054], [142.195972023, 27.038907973]]]}}, {"id": "37827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379101686, 24.780464081], [141.379012179, 24.780585234], [141.379041673, 24.780598802], [141.379101686, 24.780464081]]]}}, {"id": "37828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235927782, 26.571469721], [142.235950272, 26.571571387], [142.235973061, 26.571497775], [142.235927782, 26.571469721]]]}}, {"id": "37829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155978054, 26.583849721], [142.156081115, 26.583916667], [142.156103061, 26.583863333], [142.155978054, 26.583849721]]]}}, {"id": "37830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12237083, 26.710625279], [142.122365279, 26.710528054], [142.122310272, 26.710603333], [142.12237083, 26.710625279]]]}}, {"id": "37831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28638284, 24.745173622], [141.28650594, 24.745188477], [141.286433502, 24.745114459], [141.28638284, 24.745173622]]]}}, {"id": "37832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161056394, 26.552855829], [142.160960272, 26.552920279], [142.160993606, 26.552952495], [142.161056394, 26.552855829]]]}}, {"id": "37833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098973891, 27.721322495], [142.098891673, 27.721246946], [142.098922776, 27.721342775], [142.098973891, 27.721322495]]]}}, {"id": "37834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19657061, 27.038600162], [142.196648781, 27.038691694], [142.196673502, 27.038652027], [142.19657061, 27.038600162]]]}}, {"id": "37835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288064968, 25.420692054], [141.288035253, 25.420591216], [141.287998301, 25.420634829], [141.288064968, 25.420692054]]]}}, {"id": "37836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146221855, 26.653153054], [142.146122309, 26.653223829], [142.146166226, 26.653244027], [142.146221855, 26.653153054]]]}}, {"id": "37837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148446667, 27.674637495], [142.148531115, 27.674583613], [142.148463891, 27.674572495], [142.148446667, 27.674637495]]]}}, {"id": "37838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284583709, 24.750867541], [141.284528872, 24.750756414], [141.284536757, 24.750882757], [141.284583709, 24.750867541]]]}}, {"id": "37839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201087782, 26.551533613], [142.201189728, 26.551554721], [142.20119, 26.551526108], [142.201087782, 26.551533613]]]}}, {"id": "37840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154567691, 26.635459414], [142.154652996, 26.635496532], [142.154621777, 26.635428586], [142.154567691, 26.635459414]]]}}, {"id": "37841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286545253, 25.448075667], [141.286591362, 25.448002333], [141.286521077, 25.448015387], [141.286545253, 25.448075667]]]}}, {"id": "37842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194338612, 27.108265], [142.19423834, 27.108272225], [142.194334449, 27.108309162], [142.194338612, 27.108265]]]}}, {"id": "37843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228800558, 26.562748054], [142.228888885, 26.562772775], [142.228883606, 26.562683892], [142.228800558, 26.562748054]]]}}, {"id": "37844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209220558, 26.565938054], [142.209301115, 26.566008333], [142.209315837, 26.565952225], [142.209220558, 26.565938054]]]}}, {"id": "37845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173664449, 26.638024135], [142.17357808, 26.637962333], [142.173657834, 26.638103135], [142.173664449, 26.638024135]]]}}, {"id": "37846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147172114, 26.689680946], [142.14718869, 26.689764225], [142.147205006, 26.689692721], [142.147172114, 26.689680946]]]}}, {"id": "37847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162304942, 26.667252667], [142.162278781, 26.667157721], [142.162243307, 26.667161108], [142.162304942, 26.667252667]]]}}, {"id": "37848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125526394, 27.683731946], [142.125534721, 27.683839162], [142.125576939, 27.683815279], [142.125526394, 27.683731946]]]}}, {"id": "37849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217678249, 27.101458162], [142.217587056, 27.101438721], [142.217587198, 27.101510559], [142.217678249, 27.101458162]]]}}, {"id": "37850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203340246, 27.092015], [142.203426667, 27.091946441], [142.203334695, 27.091945135], [142.203340246, 27.092015]]]}}, {"id": "37851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287850402, 24.80722509], [141.287869455, 24.807370171], [141.287921634, 24.807239514], [141.287850402, 24.80722509]]]}}, {"id": "37852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162601634, 26.671242748], [142.162567562, 26.671147748], [142.162507497, 26.671169387], [142.162601634, 26.671242748]]]}}, {"id": "37853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145929442, 26.576375829], [142.145994163, 26.576486946], [142.14601083, 26.576460559], [142.145929442, 26.576375829]]]}}, {"id": "37854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144332503, 26.676016108], [142.144265006, 26.67607], [142.144341946, 26.676078333], [142.144332503, 26.676016108]]]}}, {"id": "37855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21016917, 27.489174721], [142.210160272, 27.489278054], [142.210213333, 27.489245279], [142.21016917, 27.489174721]]]}}, {"id": "37856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095630272, 27.719829441], [142.095666939, 27.719723054], [142.095597782, 27.719741387], [142.095630272, 27.719829441]]]}}, {"id": "37857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19545511, 27.038256054], [142.195293748, 27.038316027], [142.19528572, 27.038344], [142.195376135, 27.038346225], [142.19545511, 27.038256054]]]}}, {"id": "37858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125292802, 26.70434], [142.125310506, 26.704454162], [142.125373645, 26.704363919], [142.125292802, 26.70434]]]}}, {"id": "37859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15830834, 27.657387225], [142.158373891, 27.657304162], [142.158293606, 27.657311667], [142.15830834, 27.657387225]]]}}, {"id": "37860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161056667, 26.553766667], [142.161055551, 26.553868333], [142.161126939, 26.553768613], [142.161056667, 26.553766667]]]}}, {"id": "37861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218039339, 27.100116919], [142.218158664, 27.100128306], [142.218167665, 27.100086667], [142.218039339, 27.100116919]]]}}, {"id": "37862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12602, 26.700739162], [142.125911673, 26.700748054], [142.126023606, 26.700783613], [142.12602, 26.700739162]]]}}, {"id": "37863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202676667, 27.164156946], [142.202774449, 27.164213333], [142.202746939, 27.164144162], [142.202676667, 27.164156946]]]}}, {"id": "37864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230436835, 27.06084764], [142.230579611, 27.060905775], [142.230466083, 27.060760108], [142.230436835, 27.06084764]]]}}, {"id": "37865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133334449, 26.686533333], [142.133274721, 26.686602225], [142.133340558, 26.686617775], [142.133334449, 26.686533333]]]}}, {"id": "37866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201967108, 27.073468613], [142.201907393, 27.073345946], [142.20186275, 27.073359081], [142.201967108, 27.073468613]]]}}, {"id": "37867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152820272, 26.697236162], [142.152906861, 26.697282559], [142.152940467, 26.697243162], [142.152820272, 26.697236162]]]}}, {"id": "37868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191305006, 27.074808892], [142.191205837, 27.074805], [142.191286109, 27.074874162], [142.191305006, 27.074808892]]]}}, {"id": "37869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122317691, 26.714673108], [142.122269948, 26.714758468], [142.122371803, 26.714702865], [142.122317691, 26.714673108]]]}}, {"id": "37870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158458885, 27.657256946], [142.158553061, 27.657287225], [142.158528885, 27.657215], [142.158458885, 27.657256946]]]}}, {"id": "37871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127796109, 27.688568613], [142.12776917, 27.688653054], [142.127828612, 27.688610279], [142.127796109, 27.688568613]]]}}, {"id": "37872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158153333, 27.659860279], [142.158260558, 27.659890279], [142.158251946, 27.659823054], [142.158153333, 27.659860279]]]}}, {"id": "37873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095031115, 27.719633333], [142.095107782, 27.719565], [142.095065837, 27.719539441], [142.095031115, 27.719633333]]]}}, {"id": "37874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230516939, 27.114556946], [142.230498612, 27.114639721], [142.230597224, 27.114622495], [142.230516939, 27.114556946]]]}}, {"id": "37875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226985279, 26.563444162], [142.227088612, 26.563484162], [142.22700083, 26.563398613], [142.226985279, 26.563444162]]]}}, {"id": "37876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158646394, 27.657215829], [142.158702503, 27.657296387], [142.158735006, 27.657223892], [142.158646394, 27.657215829]]]}}, {"id": "37877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240437834, 27.04547236], [142.24052917, 27.045430865], [142.24044358, 27.045383559], [142.240437834, 27.04547236]]]}}, {"id": "37878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136496109, 27.688149162], [142.136576109, 27.688220279], [142.136571946, 27.68816], [142.136496109, 27.688149162]]]}}, {"id": "37879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230421777, 27.080598333], [142.230501479, 27.080626468], [142.230463917, 27.080500802], [142.230421777, 27.080598333]]]}}, {"id": "37880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285549442, 24.789103523], [141.285452581, 24.789179432], [141.285500571, 24.789193477], [141.285549442, 24.789103523]]]}}, {"id": "37881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140755551, 26.678176667], [142.140677497, 26.678066108], [142.14066917, 26.678140559], [142.140755551, 26.678176667]]]}}, {"id": "37882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183061946, 27.186947775], [142.183158885, 27.186921387], [142.183086667, 27.186877495], [142.183061946, 27.186947775]]]}}, {"id": "37883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132773061, 27.678226108], [142.132853333, 27.678269441], [142.13285, 27.678214721], [142.132773061, 27.678226108]]]}}, {"id": "37884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158635279, 27.656422225], [142.158732503, 27.656477495], [142.158731673, 27.656415], [142.158635279, 27.656422225]]]}}, {"id": "37885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229727497, 27.115228613], [142.229844721, 27.115215], [142.229837497, 27.115189441], [142.229727497, 27.115228613]]]}}, {"id": "37886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162329248, 26.671233135], [142.162367834, 26.671307829], [142.162416226, 26.671281054], [142.162329248, 26.671233135]]]}}, {"id": "37887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229312503, 27.035128495], [142.229422996, 27.035145586], [142.229334112, 27.035052108], [142.229312503, 27.035128495]]]}}, {"id": "37888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184366939, 27.048403919], [142.18440939, 27.048456198], [142.18448131, 27.04836], [142.184366939, 27.048403919]]]}}, {"id": "37889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146448612, 26.583173613], [142.146513061, 26.583256946], [142.14651917, 26.583187775], [142.146448612, 26.583173613]]]}}, {"id": "37890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183062724, 27.103363946], [142.183063748, 27.103262306], [142.183013696, 27.103355694], [142.183062724, 27.103363946]]]}}, {"id": "37891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192141115, 27.105391946], [142.192031388, 27.105401946], [142.192126939, 27.105434721], [142.192141115, 27.105391946]]]}}, {"id": "37892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131648859, 26.687993441], [142.13170725, 26.688072306], [142.131703917, 26.687980495], [142.131648859, 26.687993441]]]}}, {"id": "37893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182762088, 26.653977387], [142.182657082, 26.653972667], [142.182739728, 26.654018054], [142.182762088, 26.653977387]]]}}, {"id": "37894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189876667, 27.188368892], [142.189941946, 27.188266108], [142.189860558, 27.188297495], [142.189876667, 27.188368892]]]}}, {"id": "37895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233509144, 27.080737225], [142.233466135, 27.080764279], [142.233429248, 27.080875532], [142.233509144, 27.080737225]]]}}, {"id": "37896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286525811, 25.448543162], [141.286411362, 25.448555387], [141.286476641, 25.448603441], [141.286525811, 25.448543162]]]}}, {"id": "37897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099191388, 27.717281946], [142.099220558, 27.717367225], [142.099257497, 27.717318333], [142.099191388, 27.717281946]]]}}, {"id": "37898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122797302, 26.70883336], [142.122688444, 26.708926613], [142.122832802, 26.70886536], [142.122797302, 26.70883336]]]}}, {"id": "37899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125528911, 26.702633441], [142.125583528, 26.702671054], [142.125624358, 26.70261], [142.125528911, 26.702633441]]]}}, {"id": "37900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207024163, 27.485830829], [142.206926394, 27.485785829], [142.206957782, 27.485876946], [142.207024163, 27.485830829]]]}}, {"id": "37901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14655428, 26.651753829], [142.14660572, 26.651843495], [142.146631751, 26.651776775], [142.14655428, 26.651753829]]]}}, {"id": "37902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130883476, 26.70530364], [142.130944773, 26.705404306], [142.130966693, 26.705322694], [142.130883476, 26.70530364]]]}}, {"id": "37903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131716939, 26.595745829], [142.131735279, 26.595666946], [142.13163917, 26.595678333], [142.131716939, 26.595745829]]]}}, {"id": "37904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186195006, 26.659951667], [142.186085006, 26.659945], [142.186106939, 26.659997495], [142.186195006, 26.659951667]]]}}, {"id": "37905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189123606, 27.05415], [142.189013333, 27.054153892], [142.189033891, 27.054189721], [142.189123606, 27.05415]]]}}, {"id": "37906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212617782, 26.564648054], [142.212638885, 26.564722495], [142.212706939, 26.564682775], [142.212617782, 26.564648054]]]}}, {"id": "37907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133769494, 26.702280586], [142.133857108, 26.702264441], [142.133765227, 26.702217225], [142.133769494, 26.702280586]]]}}, {"id": "37908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149371751, 26.694224892], [142.149394086, 26.694324252], [142.149437951, 26.694282865], [142.149371751, 26.694224892]]]}}, {"id": "37909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183798586, 26.612365973], [142.183725188, 26.612439892], [142.183767782, 26.612453829], [142.183798586, 26.612365973]]]}}, {"id": "37910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126186667, 26.714040532], [142.126137977, 26.714163946], [142.126223554, 26.714117667], [142.126186667, 26.714040532]]]}}, {"id": "37911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174849442, 27.622785279], [142.174856394, 27.622890829], [142.174900558, 27.622869162], [142.174849442, 27.622785279]]]}}, {"id": "37912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151306641, 26.695028], [142.151393671, 26.695104973], [142.151341115, 26.695018027], [142.151306641, 26.695028]]]}}, {"id": "37913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221775837, 27.110289721], [142.221692218, 27.110331108], [142.221778885, 27.110352495], [142.221775837, 27.110289721]]]}}, {"id": "37914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168854112, 26.690765135], [142.168873022, 26.69070536], [142.168788223, 26.690711252], [142.168854112, 26.690765135]]]}}, {"id": "37915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184035837, 27.177813054], [142.184074449, 27.177724162], [142.183998612, 27.177795829], [142.184035837, 27.177813054]]]}}, {"id": "37916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156413061, 27.659971946], [142.156364163, 27.660045], [142.156418054, 27.660057495], [142.156413061, 27.659971946]]]}}, {"id": "37917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224512438, 27.035204829], [142.224551699, 27.035275559], [142.224581971, 27.035248135], [142.224512438, 27.035204829]]]}}, {"id": "37918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122891115, 26.713130829], [142.122963891, 26.713220829], [142.122976394, 26.713153054], [142.122891115, 26.713130829]]]}}, {"id": "37919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142336809, 26.676878027], [142.142332114, 26.676986973], [142.142376615, 26.676890081], [142.142336809, 26.676878027]]]}}, {"id": "37920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228677497, 26.562886946], [142.228638612, 26.562966387], [142.228691115, 26.563003333], [142.228677497, 26.562886946]]]}}, {"id": "37921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.101714163, 27.714515559], [142.101711115, 27.714610279], [142.101755279, 27.714567225], [142.101714163, 27.714515559]]]}}, {"id": "37922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229482827, 27.035176802], [142.229558366, 27.035251414], [142.229555305, 27.035187495], [142.229482827, 27.035176802]]]}}, {"id": "37923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162597173, 26.670782054], [142.162700246, 26.670778946], [142.162680169, 26.670720468], [142.162597173, 26.670782054]]]}}, {"id": "37924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183849689, 27.070211333], [142.183891777, 27.070292333], [142.183933256, 27.070249667], [142.183849689, 27.070211333]]]}}, {"id": "37925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195504423, 27.038846252], [142.195451582, 27.038945973], [142.195561193, 27.038859802], [142.195504423, 27.038846252]]]}}, {"id": "37926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129544449, 26.692571946], [142.129629728, 26.692522495], [142.129592776, 26.692499721], [142.129544449, 26.692571946]]]}}, {"id": "37927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231720337, 27.081214387], [142.231823969, 27.081103829], [142.231810778, 27.08106964], [142.231720337, 27.081214387]]]}}, {"id": "37928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234293995, 27.056479559], [142.23428834, 27.056371532], [142.234244086, 27.056421333], [142.234293995, 27.056479559]]]}}, {"id": "37929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216077108, 27.040640829], [142.216086109, 27.040760135], [142.216129663, 27.040725613], [142.216077108, 27.040640829]]]}}, {"id": "37930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165143722, 26.677856892], [142.165043722, 26.677911441], [142.165133722, 26.677902387], [142.165143722, 26.677856892]]]}}, {"id": "37931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151374721, 26.545731387], [142.151478885, 26.545748892], [142.151403333, 26.545672775], [142.151374721, 26.545731387]]]}}, {"id": "37932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123004501, 26.709458333], [142.123048106, 26.709531333], [142.123073061, 26.709456027], [142.123004501, 26.709458333]]]}}, {"id": "37933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195675551, 27.175543333], [142.195790272, 27.175561387], [142.195715279, 27.175494162], [142.195675551, 27.175543333]]]}}, {"id": "37934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181618638, 27.071753387], [142.18155808, 27.071833613], [142.181635616, 27.071830081], [142.181618638, 27.071753387]]]}}, {"id": "37935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163032776, 26.592972225], [142.163117782, 26.592932225], [142.163067497, 26.592897225], [142.163032776, 26.592972225]]]}}, {"id": "37936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189144163, 27.052024495], [142.189260311, 27.052091946], [142.189291245, 27.052031973], [142.189144163, 27.052024495]]]}}, {"id": "37937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226261673, 26.571748613], [142.226285837, 26.571865559], [142.226326667, 26.571786387], [142.226261673, 26.571748613]]]}}, {"id": "37938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103059442, 27.716345829], [142.103113891, 27.716261387], [142.103023061, 27.716312225], [142.103059442, 27.716345829]]]}}, {"id": "37939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141772944, 26.702380694], [142.141820752, 26.702452667], [142.141839222, 26.702355892], [142.141772944, 26.702380694]]]}}, {"id": "37940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144055551, 26.675236387], [142.144115837, 26.675141387], [142.144053061, 26.675142225], [142.144055551, 26.675236387]]]}}, {"id": "37941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.249373606, 27.091758054], [142.249331115, 27.091850559], [142.249384721, 27.091853333], [142.249373606, 27.091758054]]]}}, {"id": "37942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146086667, 26.576626946], [142.146114721, 26.576541108], [142.146066939, 26.576553892], [142.146086667, 26.576626946]]]}}, {"id": "37943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238057004, 27.051960892], [142.2379862, 27.05193664], [142.237996472, 27.051985279], [142.238057004, 27.051960892]]]}}, {"id": "37944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098542776, 27.716599441], [142.098612503, 27.716651387], [142.098606109, 27.716596108], [142.098542776, 27.716599441]]]}}, {"id": "37945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.215893891, 26.557146108], [142.215914163, 26.557230829], [142.215964721, 26.557179441], [142.215893891, 26.557146108]]]}}, {"id": "37946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172067782, 26.642037495], [142.171957224, 26.642004162], [142.171987497, 26.642071667], [142.172067782, 26.642037495]]]}}, {"id": "37947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198178612, 27.169554721], [142.198265279, 27.169642225], [142.198209442, 27.169541387], [142.198178612, 27.169554721]]]}}, {"id": "37948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197115279, 27.105355], [142.197036109, 27.105409721], [142.197117224, 27.105397775], [142.197115279, 27.105355]]]}}, {"id": "37949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133416615, 26.68663164], [142.133543748, 26.686651468], [142.133402918, 26.686588865], [142.133416615, 26.68663164]]]}}, {"id": "37950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138201946, 26.679106946], [142.138236667, 26.679030829], [142.138141946, 26.679031667], [142.138201946, 26.679106946]]]}}, {"id": "37951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2336193, 27.074299333], [142.233675473, 27.074405108], [142.233653061, 27.074288162], [142.2336193, 27.074299333]]]}}, {"id": "37952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173746498, 26.646237721], [142.173731245, 26.646333694], [142.173771414, 26.646255306], [142.173746498, 26.646237721]]]}}, {"id": "37953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13372083, 26.702177225], [142.133766939, 26.702099441], [142.133693606, 26.702105279], [142.13372083, 26.702177225]]]}}, {"id": "37954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182529559, 27.092323441], [142.182489274, 27.092231694], [142.18242061, 27.092302198], [142.182529559, 27.092323441]]]}}, {"id": "37955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16289061, 26.674499802], [142.162917471, 26.674594027], [142.162956835, 26.674584586], [142.16289061, 26.674499802]]]}}, {"id": "37956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290221077, 25.444235108], [141.290126913, 25.444271495], [141.290172477, 25.444305108], [141.290221077, 25.444235108]]]}}, {"id": "37957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149710558, 26.580772225], [142.149691946, 26.580896667], [142.149738612, 26.580882225], [142.149710558, 26.580772225]]]}}, {"id": "37958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219436135, 27.096357441], [142.219587173, 27.096334], [142.219408949, 27.096331225], [142.219436135, 27.096357441]]]}}, {"id": "37959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156711284, 26.630252306], [142.156620441, 26.630223333], [142.156601946, 26.630276081], [142.156711284, 26.630252306]]]}}, {"id": "37960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197985279, 27.170326108], [142.197993606, 27.170201108], [142.197944163, 27.170318613], [142.197985279, 27.170326108]]]}}, {"id": "37961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285954617, 24.745184676], [141.285893126, 24.745234937], [141.286027328, 24.74528018], [141.285954617, 24.745184676]]]}}, {"id": "37962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162851115, 26.589296387], [142.162931673, 26.589307775], [142.162887782, 26.589238613], [142.162851115, 26.589296387]]]}}, {"id": "37963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18546834, 27.090040279], [142.185432218, 27.089935829], [142.185405837, 27.089991108], [142.18546834, 27.090040279]]]}}, {"id": "37964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177370195, 26.602735225], [142.177426913, 26.602608333], [142.177354617, 26.602731559], [142.177370195, 26.602735225]]]}}, {"id": "37965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180661336, 26.630721694], [142.180666835, 26.630831], [142.180710246, 26.63072236], [142.180661336, 26.630721694]]]}}, {"id": "37966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236558054, 26.567302495], [142.236660272, 26.567309721], [142.236626667, 26.567258613], [142.236558054, 26.567302495]]]}}, {"id": "37967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13049869, 26.707998973], [142.130548249, 26.708083667], [142.130566031, 26.707993748], [142.13049869, 26.707998973]]]}}, {"id": "37968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12807428, 26.695235333], [142.128137276, 26.695326081], [142.12817642, 26.695271162], [142.12807428, 26.695235333]]]}}, {"id": "37969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095923891, 27.718832225], [142.095938612, 27.718921667], [142.09595834, 27.718902495], [142.095923891, 27.718832225]]]}}, {"id": "37970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134019144, 26.685018252], [142.134075668, 26.685072162], [142.13409869, 26.684995081], [142.134019144, 26.685018252]]]}}, {"id": "37971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174426226, 26.650149162], [142.174455305, 26.650236225], [142.174524527, 26.650185694], [142.174426226, 26.650149162]]]}}, {"id": "37972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166212503, 26.682859], [142.166269805, 26.682875892], [142.166303891, 26.682757081], [142.166212503, 26.682859]]]}}, {"id": "37973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14987489, 26.709250162], [142.149933087, 26.709346892], [142.149917834, 26.709214027], [142.14987489, 26.709250162]]]}}, {"id": "37974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20876856, 27.040049586], [142.208831479, 27.040112748], [142.208839805, 27.040044252], [142.20876856, 27.040049586]]]}}, {"id": "37975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285020636, 24.785948081], [141.28505655, 24.785824387], [141.284979715, 24.785945], [141.285020636, 24.785948081]]]}}, {"id": "37976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192117782, 27.105982775], [142.192055279, 27.106028333], [142.192124449, 27.106068892], [142.192117782, 27.105982775]]]}}, {"id": "37977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150225811, 26.694064054], [142.150301751, 26.694107198], [142.150312918, 26.694047694], [142.150225811, 26.694064054]]]}}, {"id": "37978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163065279, 26.674743135], [142.163162827, 26.674751252], [142.16306192, 26.674719054], [142.163065279, 26.674743135]]]}}, {"id": "37979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201132776, 26.552809162], [142.20118083, 26.552860559], [142.20122, 26.552759441], [142.201132776, 26.552809162]]]}}, {"id": "37980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191242503, 27.104765279], [142.191142218, 27.104790279], [142.19122917, 27.104825559], [142.191242503, 27.104765279]]]}}, {"id": "37981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225191725, 27.053353162], [142.225214553, 27.053440252], [142.225242438, 27.053424586], [142.225191725, 27.053353162]]]}}, {"id": "37982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201405837, 26.552864721], [142.201474721, 26.552806946], [142.201433333, 26.552765829], [142.201405837, 26.552864721]]]}}, {"id": "37983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122494501, 26.710833919], [142.122530467, 26.710905748], [142.122564086, 26.710846946], [142.122494501, 26.710833919]]]}}, {"id": "37984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127082503, 26.695397225], [142.127001673, 26.695333333], [142.127031115, 26.695393613], [142.127082503, 26.695397225]]]}}, {"id": "37985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181904721, 26.623844441], [142.181831388, 26.623798054], [142.18179917, 26.623857225], [142.181904721, 26.623844441]]]}}, {"id": "37986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160307497, 27.105565559], [142.160374721, 27.105632495], [142.160381388, 27.105577775], [142.160307497, 27.105565559]]]}}, {"id": "37987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095113061, 27.716495279], [142.095167782, 27.716588054], [142.095182503, 27.716501667], [142.095113061, 27.716495279]]]}}, {"id": "37988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157505551, 27.662347495], [142.157546109, 27.662449721], [142.157550272, 27.662378892], [142.157505551, 27.662347495]]]}}, {"id": "37989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198560558, 27.159558054], [142.198611388, 27.159485279], [142.198560558, 27.159478892], [142.198560558, 27.159558054]]]}}, {"id": "37990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174095837, 26.598209441], [142.174198612, 26.598237775], [142.174186667, 26.598188613], [142.174095837, 26.598209441]]]}}, {"id": "37991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12236083, 26.704580829], [142.122417497, 26.704511946], [142.122333891, 26.704565279], [142.12236083, 26.704580829]]]}}, {"id": "37992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202428612, 26.560538613], [142.202503061, 26.560560559], [142.202492776, 26.560493613], [142.202428612, 26.560538613]]]}}, {"id": "37993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272938029, 25.426404], [141.272873307, 25.426462883], [141.272953865, 25.426456775], [141.272938029, 25.426404]]]}}, {"id": "37994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132948975, 26.686103135], [142.133090947, 26.686111865], [142.132951803, 26.686051694], [142.132948975, 26.686103135]]]}}, {"id": "37995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20766917, 27.484138333], [142.207605006, 27.484213613], [142.207674721, 27.484196108], [142.20766917, 27.484138333]]]}}, {"id": "37996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199049728, 27.159637225], [142.199112218, 27.159584162], [142.199051946, 27.159553613], [142.199049728, 27.159637225]]]}}, {"id": "37997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231571673, 27.067976946], [142.23148834, 27.067958054], [142.23150834, 27.068005829], [142.231571673, 27.067976946]]]}}, {"id": "37998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15628917, 26.685344441], [142.156204721, 26.685365829], [142.15631834, 26.685388054], [142.15628917, 26.685344441]]]}}, {"id": "37999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146993839, 26.68973736], [142.146992335, 26.689824721], [142.147032776, 26.689778198], [142.146993839, 26.68973736]]]}}, {"id": "38000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205320272, 27.076368613], [142.205204449, 27.076394441], [142.20533834, 27.076415559], [142.205320272, 27.076368613]]]}}, {"id": "38001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182158885, 26.623352495], [142.18207834, 26.623387775], [142.182147224, 26.623421946], [142.182158885, 26.623352495]]]}}, {"id": "38002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184359196, 27.092098586], [142.184457393, 27.092152135], [142.184412114, 27.092088667], [142.184359196, 27.092098586]]]}}, {"id": "38003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237083606, 26.567039441], [142.237056394, 26.567126108], [142.237114163, 26.567132775], [142.237083606, 26.567039441]]]}}, {"id": "38004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103014721, 27.715996667], [142.103058054, 27.715900829], [142.102985279, 27.715976667], [142.103014721, 27.715996667]]]}}, {"id": "38005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232360558, 27.071703892], [142.232268612, 27.071692495], [142.232313606, 27.071748333], [142.232360558, 27.071703892]]]}}, {"id": "38006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159583333, 27.657260829], [142.159513891, 27.657179441], [142.159524721, 27.657276108], [142.159583333, 27.657260829]]]}}, {"id": "38007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172609637, 26.656605], [142.172669585, 26.656654306], [142.172681803, 26.656635054], [142.172609637, 26.656605]]]}}, {"id": "38008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149045473, 26.662696279], [142.149152724, 26.662751829], [142.149172361, 26.662695775], [142.149045473, 26.662696279]]]}}, {"id": "38009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.869182879, 27.243717297], [140.869053385, 27.243717784], [140.869184436, 27.243764658], [140.869182879, 27.243717297]]]}}, {"id": "38010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194319222, 27.040278865], [142.19422594, 27.040199279], [142.194250467, 27.040272279], [142.194319222, 27.040278865]]]}}, {"id": "38011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129458054, 26.690337775], [142.129358612, 26.690274441], [142.129352776, 26.690322775], [142.129458054, 26.690337775]]]}}, {"id": "38012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14869917, 27.677072775], [142.148646939, 27.676995279], [142.148612218, 27.677069721], [142.14869917, 27.677072775]]]}}, {"id": "38013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152839494, 26.642675586], [142.152889754, 26.642703225], [142.15289192, 26.642672441], [142.152839494, 26.642675586]]]}}, {"id": "38014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126435357, 26.701134468], [142.126548003, 26.701130306], [142.126510973, 26.701092694], [142.126435357, 26.701134468]]]}}, {"id": "38015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229464864, 27.035016441], [142.229443917, 27.034929198], [142.229402944, 27.035004973], [142.229464864, 27.035016441]]]}}, {"id": "38016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147667497, 26.70778], [142.14760083, 26.707700829], [142.147583891, 26.707759441], [142.147667497, 26.70778]]]}}, {"id": "38017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22242834, 27.094761775], [142.222449857, 27.094899279], [142.222522477, 27.094897], [142.22242834, 27.094761775]]]}}, {"id": "38018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205316252, 27.078282892], [142.205402724, 27.078433829], [142.205456783, 27.078441], [142.205316252, 27.078282892]]]}}, {"id": "38019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142305006, 26.671463333], [142.142317224, 26.671357495], [142.14225, 26.671380829], [142.142305006, 26.671463333]]]}}, {"id": "38020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190600973, 27.042389468], [142.19054655, 27.04251564], [142.190618418, 27.042388279], [142.190600973, 27.042389468]]]}}, {"id": "38021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207343606, 26.554291108], [142.207433606, 26.554295559], [142.207354163, 26.554252495], [142.207343606, 26.554291108]]]}}, {"id": "38022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210154721, 26.564782775], [142.210196109, 26.564696946], [142.210153891, 26.564703892], [142.210154721, 26.564782775]]]}}, {"id": "38023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20299, 26.561438054], [142.202973333, 26.561336946], [142.202933061, 26.561435559], [142.20299, 26.561438054]]]}}, {"id": "38024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162618664, 26.668376532], [142.162517393, 26.668356054], [142.162611582, 26.668400802], [142.162618664, 26.668376532]]]}}, {"id": "38025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095911673, 27.722593613], [142.09600834, 27.722582225], [142.095933606, 27.722556387], [142.095911673, 27.722593613]]]}}, {"id": "38026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.242777224, 27.095749441], [142.242842218, 27.095829162], [142.242816939, 27.095731667], [142.242777224, 27.095749441]]]}}, {"id": "38027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229868444, 27.081160027], [142.229909416, 27.081287495], [142.229970895, 27.081164279], [142.229868444, 27.081160027]]]}}, {"id": "38028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130530584, 26.690641892], [142.13048847, 26.690722081], [142.13057192, 26.690663973], [142.130530584, 26.690641892]]]}}, {"id": "38029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146017224, 26.574657775], [142.146082503, 26.57472], [142.146058054, 26.574615], [142.146017224, 26.574657775]]]}}, {"id": "38030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231380558, 27.114331667], [142.231353333, 27.114203613], [142.23133917, 27.114327225], [142.231380558, 27.114331667]]]}}, {"id": "38031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23326345, 27.07784064], [142.23328978, 27.077885973], [142.233388612, 27.077711973], [142.23326345, 27.07784064]]]}}, {"id": "38032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12258917, 26.711900829], [142.12249917, 26.711835279], [142.122568612, 26.711931667], [142.12258917, 26.711900829]]]}}, {"id": "38033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184084254, 27.055717441], [142.184097639, 27.055641865], [142.184068249, 27.055681613], [142.184084254, 27.055717441]]]}}, {"id": "38034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.247438885, 27.090849721], [142.247365006, 27.090925279], [142.247463061, 27.090902775], [142.247438885, 27.090849721]]]}}, {"id": "38035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216326667, 27.493602225], [142.216216394, 27.493596387], [142.216272503, 27.493657225], [142.216326667, 27.493602225]]]}}, {"id": "38036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178275525, 26.602896748], [142.178349494, 26.602931225], [142.178367173, 26.602864946], [142.178275525, 26.602896748]]]}}, {"id": "38037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.245018054, 27.095566387], [142.245069728, 27.095658892], [142.245088885, 27.095603333], [142.245018054, 27.095566387]]]}}, {"id": "38038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126305746, 26.701995613], [142.126383281, 26.702021721], [142.126366304, 26.70195664], [142.126305746, 26.701995613]]]}}, {"id": "38039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232619728, 26.565350829], [142.232702503, 26.565364441], [142.232659442, 26.565305829], [142.232619728, 26.565350829]]]}}, {"id": "38040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22692834, 26.562126387], [142.226993061, 26.562180559], [142.227017224, 26.562119721], [142.22692834, 26.562126387]]]}}, {"id": "38041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179384423, 26.608472468], [142.179500752, 26.608434054], [142.179440558, 26.608411108], [142.179384423, 26.608472468]]]}}, {"id": "38042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196324916, 27.039724054], [142.196435422, 27.039739892], [142.19633978, 27.039691721], [142.196324916, 27.039724054]]]}}, {"id": "38043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12714192, 26.695508414], [142.127223359, 26.695537387], [142.127230026, 26.695473586], [142.12714192, 26.695508414]]]}}, {"id": "38044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193916667, 27.106918613], [142.193816109, 27.106892225], [142.193847497, 27.106951667], [142.193916667, 27.106918613]]]}}, {"id": "38045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236346939, 26.567214162], [142.23642834, 26.567157225], [142.236328885, 26.567177495], [142.236346939, 26.567214162]]]}}, {"id": "38046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160099442, 26.563190559], [142.16001917, 26.563255559], [142.160093333, 26.563248333], [142.160099442, 26.563190559]]]}}, {"id": "38047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142626887, 26.677133081], [142.142696615, 26.677043225], [142.142662724, 26.677028613], [142.142626887, 26.677133081]]]}}, {"id": "38048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130334449, 27.679036667], [142.130401388, 27.678961946], [142.130309442, 27.678999162], [142.130334449, 27.679036667]]]}}, {"id": "38049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235034721, 27.097202775], [142.23513, 27.097204162], [142.23509917, 27.097142225], [142.235034721, 27.097202775]]]}}, {"id": "38050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150983943, 26.696371252], [142.151026472, 26.696471054], [142.151041829, 26.696452802], [142.150983943, 26.696371252]]]}}, {"id": "38051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12265834, 26.708833333], [142.122654449, 26.708754721], [142.122594163, 26.708802225], [142.12265834, 26.708833333]]]}}, {"id": "38052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234796939, 27.097595279], [142.234747782, 27.097515559], [142.234747782, 27.097622775], [142.234796939, 27.097595279]]]}}, {"id": "38053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196672776, 27.196585559], [142.196676939, 27.196681667], [142.196717224, 27.196680829], [142.196672776, 27.196585559]]]}}, {"id": "38054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131835551, 26.685842225], [142.131742503, 26.685867495], [142.131808612, 26.685918054], [142.131835551, 26.685842225]]]}}, {"id": "38055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226548755, 27.054644586], [142.226579728, 27.054746252], [142.226624163, 27.054602225], [142.226548755, 27.054644586]]]}}, {"id": "38056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232387004, 27.070285802], [142.232462918, 27.070196775], [142.23249153, 27.070136], [142.232387004, 27.070285802]]]}}, {"id": "38057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163078885, 26.589447775], [142.163116394, 26.589512225], [142.16312917, 26.589437495], [142.163078885, 26.589447775]]]}}, {"id": "38058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234117224, 27.109652495], [142.23414083, 27.109533892], [142.234083891, 27.109568892], [142.234117224, 27.109652495]]]}}, {"id": "38059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162059585, 26.688421721], [142.161990636, 26.688344252], [142.161976524, 26.688395], [142.162059585, 26.688421721]]]}}, {"id": "38060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235134721, 27.096703613], [142.23519917, 27.096640829], [142.235126109, 27.096673892], [142.235134721, 27.096703613]]]}}, {"id": "38061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128470272, 26.695177225], [142.128389442, 26.695238613], [142.128465279, 26.695231667], [142.128470272, 26.695177225]]]}}, {"id": "38062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147401946, 26.585525], [142.147460272, 26.585617775], [142.147461388, 26.585517775], [142.147401946, 26.585525]]]}}, {"id": "38063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191419857, 27.041442919], [142.191446887, 27.041558225], [142.191493839, 27.041546532], [142.191419857, 27.041442919]]]}}, {"id": "38064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209145279, 27.487444441], [142.209102776, 27.487321108], [142.209095006, 27.487423892], [142.209145279, 27.487444441]]]}}, {"id": "38065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234106913, 27.072271973], [142.233991141, 27.07230636], [142.234059857, 27.072378829], [142.234106913, 27.072271973]]]}}, {"id": "38066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217785694, 27.04142164], [142.217883995, 27.041487829], [142.217939585, 27.041454081], [142.217785694, 27.04142164]]]}}, {"id": "38067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146124721, 26.576813613], [142.14619917, 26.576846387], [142.146168054, 26.576750559], [142.146124721, 26.576813613]]]}}, {"id": "38068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188245837, 27.147014162], [142.188203333, 27.146931946], [142.188203333, 27.147007775], [142.188245837, 27.147014162]]]}}, {"id": "38069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126104578, 26.702113306], [142.126189079, 26.70208136], [142.126105032, 26.70204336], [142.126104578, 26.702113306]]]}}, {"id": "38070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14172083, 26.710084162], [142.14165917, 26.710142775], [142.141713061, 26.710146387], [142.14172083, 26.710084162]]]}}, {"id": "38071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096179728, 27.719508613], [142.096171946, 27.719392225], [142.096141673, 27.719492225], [142.096179728, 27.719508613]]]}}, {"id": "38072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203444578, 27.089820865], [142.203512387, 27.08972536], [142.203478586, 27.089712613], [142.203444578, 27.089820865]]]}}, {"id": "38073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206808054, 26.554429441], [142.206865551, 26.554345279], [142.206793606, 26.554391667], [142.206808054, 26.554429441]]]}}, {"id": "38074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189948521, 27.067725108], [142.18983917, 27.067742414], [142.18983939, 27.067809748], [142.189948521, 27.067725108]]]}}, {"id": "38075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203944721, 26.560525], [142.203971115, 26.560422225], [142.203926394, 26.560428054], [142.203944721, 26.560525]]]}}, {"id": "38076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232518885, 27.108903613], [142.232591115, 27.108985], [142.23261083, 27.108931667], [142.232518885, 27.108903613]]]}}, {"id": "38077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181624669, 26.614179694], [142.181666913, 26.614171613], [142.181595058, 26.614127468], [142.181624669, 26.614179694]]]}}, {"id": "38078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132806329, 26.685718225], [142.13285939, 26.685795532], [142.132876783, 26.685735919], [142.132806329, 26.685718225]]]}}, {"id": "38079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184229442, 27.118300559], [142.184307497, 27.118359441], [142.18429834, 27.118284162], [142.184229442, 27.118300559]]]}}, {"id": "38080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196621115, 27.196411108], [142.19672, 27.196466667], [142.196678885, 27.196393054], [142.196621115, 27.196411108]]]}}, {"id": "38081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216411946, 27.493441387], [142.216342218, 27.493517495], [142.21639917, 27.493511946], [142.216411946, 27.493441387]]]}}, {"id": "38082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099514163, 27.716844721], [142.099599442, 27.716842495], [142.099558612, 27.716798333], [142.099514163, 27.716844721]]]}}, {"id": "38083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171417471, 26.643065], [142.171491089, 26.643119162], [142.17152939, 26.643077775], [142.171417471, 26.643065]]]}}, {"id": "38084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165024747, 26.630772667], [142.165050895, 26.630852414], [142.165106667, 26.630744586], [142.165024747, 26.630772667]]]}}, {"id": "38085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205500856, 27.085528027], [142.2056, 27.085582135], [142.205537912, 27.085499721], [142.205500856, 27.085528027]]]}}, {"id": "38086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163820558, 26.687289775], [142.163736057, 26.687288802], [142.163814617, 26.687341892], [142.163820558, 26.687289775]]]}}, {"id": "38087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213874163, 26.565011667], [142.21378917, 26.564946667], [142.21375834, 26.564984162], [142.213874163, 26.565011667]]]}}, {"id": "38088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173965668, 26.64696036], [142.174026809, 26.647017613], [142.174019663, 26.646945333], [142.173965668, 26.64696036]]]}}, {"id": "38089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183794163, 27.162800829], [142.18382834, 27.162701108], [142.183761673, 27.162713333], [142.183794163, 27.162800829]]]}}, {"id": "38090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195193333, 27.19728], [142.195212218, 27.197172775], [142.195143333, 27.197185], [142.195193333, 27.19728]]]}}, {"id": "38091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200344449, 27.164582775], [142.200313891, 27.164487775], [142.200287497, 27.164578333], [142.200344449, 27.164582775]]]}}, {"id": "38092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174706278, 26.649206306], [142.174789144, 26.649267748], [142.174736252, 26.649175559], [142.174706278, 26.649206306]]]}}, {"id": "38093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224877562, 27.035683162], [142.224959339, 27.035751279], [142.22498345, 27.035705919], [142.224877562, 27.035683162]]]}}, {"id": "38094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.093858054, 27.717456108], [142.093790558, 27.717509162], [142.093854163, 27.717521387], [142.093858054, 27.717456108]]]}}, {"id": "38095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193721115, 27.040695586], [142.193617328, 27.040667306], [142.193629105, 27.040711865], [142.193721115, 27.040695586]]]}}, {"id": "38096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158038054, 27.657581108], [142.157974163, 27.657503892], [142.157955837, 27.657568892], [142.158038054, 27.657581108]]]}}, {"id": "38097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098568054, 27.717557225], [142.098628612, 27.717475279], [142.098546667, 27.717483054], [142.098568054, 27.717557225]]]}}, {"id": "38098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122296031, 26.709991495], [142.122331699, 26.710084802], [142.122353891, 26.710061667], [142.122296031, 26.709991495]]]}}, {"id": "38099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149922724, 26.648181225], [142.150040441, 26.648238694], [142.150043385, 26.648194081], [142.149922724, 26.648181225]]]}}, {"id": "38100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181491167, 26.617587054], [142.181435058, 26.617479802], [142.181468392, 26.617598559], [142.181491167, 26.617587054]]]}}, {"id": "38101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231463061, 27.070541667], [142.231523333, 27.070436108], [142.231502776, 27.070419162], [142.231463061, 27.070541667]]]}}, {"id": "38102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095659442, 27.720514721], [142.095743061, 27.720586387], [142.095730558, 27.720507775], [142.095659442, 27.720514721]]]}}, {"id": "38103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287435383, 24.807465964], [141.287422516, 24.807347459], [141.287386835, 24.807429712], [141.287435383, 24.807465964]]]}}, {"id": "38104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231807134, 27.062092468], [142.231732192, 27.062014892], [142.231730506, 27.062074532], [142.231807134, 27.062092468]]]}}, {"id": "38105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123681388, 26.596461108], [142.12360834, 26.596509162], [142.123665551, 26.596536387], [142.123681388, 26.596461108]]]}}, {"id": "38106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.467627082, 24.226551495], [141.467693411, 24.226605919], [141.467703359, 24.226549054], [141.467627082, 24.226551495]]]}}, {"id": "38107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173427004, 26.608745973], [142.173511167, 26.60868636], [142.1734162, 26.608703919], [142.173427004, 26.608745973]]]}}, {"id": "38108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.09641, 27.718763333], [142.096483606, 27.718757225], [142.096467497, 27.718700279], [142.09641, 27.718763333]]]}}, {"id": "38109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232926641, 27.074702586], [142.232805331, 27.074745829], [142.232892918, 27.074769333], [142.232926641, 27.074702586]]]}}, {"id": "38110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227901388, 27.115766108], [142.227906394, 27.115860829], [142.227965837, 27.115828892], [142.227901388, 27.115766108]]]}}, {"id": "38111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216432776, 26.559244721], [142.216362776, 26.559261667], [142.216423606, 26.559292495], [142.216432776, 26.559244721]]]}}, {"id": "38112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19024834, 27.132139162], [142.190302776, 27.132032495], [142.190229442, 27.132128333], [142.19024834, 27.132139162]]]}}, {"id": "38113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199926667, 26.549250279], [142.199988054, 26.549199721], [142.199935551, 26.549158054], [142.199926667, 26.549250279]]]}}, {"id": "38114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099525551, 27.716588054], [142.099604449, 27.716541946], [142.09956, 27.716513613], [142.099525551, 27.716588054]]]}}, {"id": "38115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237455837, 26.570771667], [142.237545551, 26.570842775], [142.237558612, 26.570810279], [142.237455837, 26.570771667]]]}}, {"id": "38116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.271629416, 25.431850387], [141.271608029, 25.431930387], [141.271684695, 25.43189955], [141.271629416, 25.431850387]]]}}, {"id": "38117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166749079, 26.68210764], [142.166685331, 26.68201736], [142.166659754, 26.682044306], [142.166749079, 26.68210764]]]}}, {"id": "38118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168699728, 27.038427775], [142.168617497, 27.038457775], [142.168648612, 27.038509441], [142.168699728, 27.038427775]]]}}, {"id": "38119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160347497, 26.562962495], [142.160419728, 26.562923054], [142.160355551, 26.562895829], [142.160347497, 26.562962495]]]}}, {"id": "38120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.119826109, 26.715971667], [142.119905551, 26.715966387], [142.119858885, 26.715895559], [142.119826109, 26.715971667]]]}}, {"id": "38121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177668612, 26.600042495], [142.177729728, 26.599973054], [142.177674163, 26.599963613], [142.177668612, 26.600042495]]]}}, {"id": "38122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172320246, 26.64358464], [142.172383411, 26.643627802], [142.17239131, 26.643543306], [142.172320246, 26.64358464]]]}}, {"id": "38123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148811946, 26.546179441], [142.148902218, 26.54622], [142.14884083, 26.546152225], [142.148811946, 26.546179441]]]}}, {"id": "38124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174888249, 26.598110468], [142.17497725, 26.598133559], [142.17494428, 26.598052468], [142.174888249, 26.598110468]]]}}, {"id": "38125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149988054, 26.547343054], [142.149912776, 26.547424441], [142.149948612, 26.547441667], [142.149988054, 26.547343054]]]}}, {"id": "38126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150694163, 26.647640279], [142.150727224, 26.647534162], [142.150690272, 26.647533613], [142.150694163, 26.647640279]]]}}, {"id": "38127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182490169, 26.620185198], [142.182479079, 26.620087], [142.182446693, 26.620122414], [142.182490169, 26.620185198]]]}}, {"id": "38128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193455279, 27.063592225], [142.193404163, 27.063512775], [142.193410558, 27.063605829], [142.193455279, 27.063592225]]]}}, {"id": "38129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191395162, 27.105372775], [142.191526355, 27.105417748], [142.19156847, 27.105392586], [142.191395162, 27.105372775]]]}}, {"id": "38130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139142283, 26.67967736], [142.139185616, 26.679782198], [142.1392062, 26.679772775], [142.139142283, 26.67967736]]]}}, {"id": "38131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233463333, 27.075228892], [142.233390272, 27.075170559], [142.233418054, 27.075260829], [142.233463333, 27.075228892]]]}}, {"id": "38132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181909196, 27.101946414], [142.18186144, 27.101866775], [142.18185917, 27.101950973], [142.181909196, 27.101946414]]]}}, {"id": "38133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285777886, 24.745056351], [141.28574153, 24.745122541], [141.285808119, 24.745094865], [141.285777886, 24.745056351]]]}}, {"id": "38134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192436589, 27.105894135], [142.192471362, 27.105830198], [142.192423774, 27.105845414], [142.192436589, 27.105894135]]]}}, {"id": "38135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201048885, 27.163670279], [142.201066394, 27.163563333], [142.201013061, 27.163661108], [142.201048885, 27.163670279]]]}}, {"id": "38136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197310558, 27.194045], [142.197285551, 27.194134721], [142.19733834, 27.194116108], [142.197310558, 27.194045]]]}}, {"id": "38137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.211581115, 26.564604441], [142.211660272, 26.564610829], [142.211624721, 26.564568892], [142.211581115, 26.564604441]]]}}, {"id": "38138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140960311, 26.678189667], [142.141061608, 26.678216919], [142.140995188, 26.678140694], [142.140960311, 26.678189667]]]}}, {"id": "38139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163156667, 26.593078333], [142.163202776, 26.593140559], [142.1632, 26.593075829], [142.163156667, 26.593078333]]]}}, {"id": "38140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156058054, 27.659496387], [142.156054721, 27.659605279], [142.156105551, 27.659584441], [142.156058054, 27.659496387]]]}}, {"id": "38141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288319689, 25.447353721], [141.288226083, 25.447398441], [141.288282192, 25.447422333], [141.288319689, 25.447353721]]]}}, {"id": "38142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152964721, 26.637747495], [142.152868885, 26.637749441], [142.152944449, 26.637807225], [142.152964721, 26.637747495]]]}}, {"id": "38143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176921388, 27.129046946], [142.176984163, 27.129110559], [142.176964449, 27.129041108], [142.176921388, 27.129046946]]]}}, {"id": "38144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231718171, 27.064468108], [142.231790052, 27.064562027], [142.231842387, 27.064526387], [142.231718171, 27.064468108]]]}}, {"id": "38145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21876917, 27.040994162], [142.218740272, 27.040898613], [142.218721388, 27.040941946], [142.21876917, 27.040994162]]]}}, {"id": "38146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224982023, 27.053308748], [142.225044968, 27.053379225], [142.225059922, 27.053338306], [142.224982023, 27.053308748]]]}}, {"id": "38147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189709442, 27.189069162], [142.189777782, 27.189018613], [142.189703606, 27.189032775], [142.189709442, 27.189069162]]]}}, {"id": "38148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149395331, 26.663978973], [142.149488106, 26.664015532], [142.149498275, 26.663957667], [142.149395331, 26.663978973]]]}}, {"id": "38149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236144449, 27.111189441], [142.236174449, 27.111139441], [142.236076109, 27.111092775], [142.236144449, 27.111189441]]]}}, {"id": "38150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235228054, 26.566947225], [142.23530834, 26.566923892], [142.23522917, 26.566885829], [142.235228054, 26.566947225]]]}}, {"id": "38151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15757834, 27.661686387], [142.157562503, 27.661601946], [142.157518885, 27.661677495], [142.15757834, 27.661686387]]]}}, {"id": "38152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207731946, 27.48589], [142.207641115, 27.485858892], [142.20768, 27.485915829], [142.207731946, 27.48589]]]}}, {"id": "38153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125753256, 26.713922748], [142.1257807, 26.714007559], [142.125828781, 26.713945613], [142.125753256, 26.713922748]]]}}, {"id": "38154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128118612, 26.699014135], [142.128156252, 26.699062495], [142.128175668, 26.699], [142.128118612, 26.699014135]]]}}, {"id": "38155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149068612, 26.662932225], [142.149042218, 26.662856387], [142.148994163, 26.662894721], [142.149068612, 26.662932225]]]}}, {"id": "38156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229654189, 27.035143108], [142.229743969, 27.035175027], [142.229694137, 27.03510064], [142.229654189, 27.035143108]]]}}, {"id": "38157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131525447, 26.704238586], [142.131640272, 26.70429236], [142.131679728, 26.70425], [142.131525447, 26.704238586]]]}}, {"id": "38158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232067951, 27.062570225], [142.2320907, 27.062503829], [142.232000752, 27.062555613], [142.232067951, 27.062570225]]]}}, {"id": "38159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240818054, 27.095135559], [142.240778612, 27.095268613], [142.240824449, 27.095281387], [142.240818054, 27.095135559]]]}}, {"id": "38160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14465083, 26.675833054], [142.144555279, 26.675851667], [142.144647224, 26.675871946], [142.14465083, 26.675833054]]]}}, {"id": "38161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147263333, 26.585494162], [142.147323891, 26.585556387], [142.147329728, 26.585481108], [142.147263333, 26.585494162]]]}}, {"id": "38162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186148392, 27.083958613], [142.18616847, 27.084031775], [142.18622489, 27.083931054], [142.186148392, 27.083958613]]]}}, {"id": "38163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156533061, 26.685505829], [142.156463333, 26.685437495], [142.156461388, 26.685495279], [142.156533061, 26.685505829]]]}}, {"id": "38164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292805525, 25.439170667], [141.292698301, 25.439201216], [141.292802477, 25.439201216], [141.292805525, 25.439170667]]]}}, {"id": "38165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143466057, 26.672400225], [142.143552049, 26.672397252], [142.143471946, 26.672363027], [142.143466057, 26.672400225]]]}}, {"id": "38166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174120272, 26.650617829], [142.174159364, 26.650686468], [142.174194449, 26.650647892], [142.174120272, 26.650617829]]]}}, {"id": "38167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201675188, 27.043863108], [142.201709053, 27.043923559], [142.201739857, 27.043896694], [142.201675188, 27.043863108]]]}}, {"id": "38168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184895006, 27.088428054], [142.184815837, 27.088398054], [142.184846109, 27.088454721], [142.184895006, 27.088428054]]]}}, {"id": "38169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095922776, 27.720250279], [142.095937224, 27.720158054], [142.095875551, 27.720202775], [142.095922776, 27.720250279]]]}}, {"id": "38170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17823834, 27.127964441], [142.178246939, 27.127854162], [142.178199442, 27.127903613], [142.17823834, 27.127964441]]]}}, {"id": "38171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140306226, 26.678221892], [142.140371751, 26.678231865], [142.140332361, 26.678149667], [142.140306226, 26.678221892]]]}}, {"id": "38172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187827004, 27.061579694], [142.18792572, 27.061525667], [142.187910726, 27.061487973], [142.187827004, 27.061579694]]]}}, {"id": "38173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226942503, 26.573442775], [142.226911115, 26.573526667], [142.226973891, 26.573517775], [142.226942503, 26.573442775]]]}}, {"id": "38174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202650856, 27.044334667], [142.202709027, 27.044389279], [142.202737977, 27.044342135], [142.202650856, 27.044334667]]]}}, {"id": "38175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151456161, 26.696090387], [142.151525863, 26.696121468], [142.151483722, 26.696024027], [142.151456161, 26.696090387]]]}}, {"id": "38176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133249442, 26.686286667], [142.133213891, 26.686208333], [142.133205837, 26.686295559], [142.133249442, 26.686286667]]]}}, {"id": "38177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16213275, 26.688222973], [142.162035694, 26.688229468], [142.162107082, 26.688271919], [142.16213275, 26.688222973]]]}}, {"id": "38178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208083891, 27.489087225], [142.207995551, 27.489101387], [142.208052776, 27.489164441], [142.208083891, 27.489087225]]]}}, {"id": "38179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149157782, 26.662773333], [142.149212607, 26.662841775], [142.149256083, 26.662800468], [142.149157782, 26.662773333]]]}}, {"id": "38180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.094664163, 27.717736387], [142.094733061, 27.717681667], [142.094691115, 27.717661667], [142.094664163, 27.717736387]]]}}, {"id": "38181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16631428, 26.683201414], [142.166374423, 26.683245946], [142.166385136, 26.683154946], [142.16631428, 26.683201414]]]}}, {"id": "38182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238386109, 27.093324441], [142.238467782, 27.093395559], [142.238424721, 27.093313613], [142.238386109, 27.093324441]]]}}, {"id": "38183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19438358, 27.040892694], [142.194410726, 27.040969198], [142.194470999, 27.040918027], [142.19438358, 27.040892694]]]}}, {"id": "38184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185999728, 26.659486], [142.185897471, 26.659559441], [142.185896719, 26.659591225], [142.185973969, 26.659591387], [142.185999728, 26.659486]]]}}, {"id": "38185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205009728, 26.554578613], [142.205104721, 26.554574721], [142.205085551, 26.554533613], [142.205009728, 26.554578613]]]}}, {"id": "38186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141178755, 26.704551559], [142.141175136, 26.704477279], [142.141106887, 26.704548559], [142.141178755, 26.704551559]]]}}, {"id": "38187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186474163, 27.070803054], [142.186421115, 27.070869162], [142.18647, 27.070900559], [142.186474163, 27.070803054]]]}}, {"id": "38188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24342, 27.092450279], [142.243508885, 27.092466108], [142.243510272, 27.092430559], [142.24342, 27.092450279]]]}}, {"id": "38189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181971388, 26.618793], [142.181984916, 26.618712198], [142.181939831, 26.618712252], [142.181971388, 26.618793]]]}}, {"id": "38190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15019856, 26.706989946], [142.150261141, 26.70704936], [142.150272438, 26.707009279], [142.15019856, 26.706989946]]]}}, {"id": "38191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193148612, 27.089361387], [142.193056394, 27.089380559], [142.193124721, 27.089415], [142.193148612, 27.089361387]]]}}, {"id": "38192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231155577, 27.060078721], [142.231254112, 27.059992279], [142.231120246, 27.060055306], [142.231155577, 27.060078721]]]}}, {"id": "38193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181894617, 27.040885748], [142.181980921, 27.040898198], [142.181980117, 27.040839054], [142.181894617, 27.040885748]]]}}, {"id": "38194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142855694, 26.671420865], [142.142822944, 26.671508532], [142.142890661, 26.671430559], [142.142855694, 26.671420865]]]}}, {"id": "38195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189156394, 27.069653], [142.189172633, 27.069782946], [142.189221025, 27.069780162], [142.189156394, 27.069653]]]}}, {"id": "38196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157326667, 27.659916667], [142.157395837, 27.659981108], [142.15740834, 27.659931667], [142.157326667, 27.659916667]]]}}, {"id": "38197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141215006, 27.671155279], [142.141310272, 27.671103333], [142.141240272, 27.671096946], [142.141215006, 27.671155279]]]}}, {"id": "38198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123365162, 26.705411387], [142.123417834, 26.705504108], [142.123444449, 26.705472495], [142.123365162, 26.705411387]]]}}, {"id": "38199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187168885, 27.118829721], [142.187266667, 27.118778054], [142.187215551, 27.118755279], [142.187168885, 27.118829721]]]}}, {"id": "38200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152079442, 26.696253333], [142.151994721, 26.696259721], [142.152038054, 26.696280829], [142.152079442, 26.696253333]]]}}, {"id": "38201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159928664, 26.687329414], [142.159937224, 26.687411279], [142.159957497, 26.687322721], [142.159928664, 26.687329414]]]}}, {"id": "38202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141659611, 26.669969802], [142.141703385, 26.670038], [142.141718029, 26.670019748], [142.141659611, 26.669969802]]]}}, {"id": "38203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152460532, 26.708115892], [142.152495616, 26.708200892], [142.152506031, 26.708094721], [142.152460532, 26.708115892]]]}}, {"id": "38204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.120016394, 26.714955559], [142.120080558, 26.714889441], [142.120041673, 26.714868054], [142.120016394, 26.714955559]]]}}, {"id": "38205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141664968, 26.709742135], [142.141586161, 26.709732667], [142.141626744, 26.709798135], [142.141664968, 26.709742135]]]}}, {"id": "38206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163210337, 26.665127108], [142.163255357, 26.665065306], [142.163211051, 26.665065532], [142.163210337, 26.665127108]]]}}, {"id": "38207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252547782, 27.089751667], [142.252465279, 27.089727225], [142.252532218, 27.089771387], [142.252547782, 27.089751667]]]}}, {"id": "38208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18159834, 27.095476667], [142.181614163, 27.095391946], [142.181552776, 27.095418892], [142.18159834, 27.095476667]]]}}, {"id": "38209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193648949, 27.040995532], [142.193689637, 27.041090054], [142.193730311, 27.041058775], [142.193648949, 27.040995532]]]}}, {"id": "38210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181559442, 27.09456], [142.18146917, 27.094515829], [142.181476667, 27.094558333], [142.181559442, 27.09456]]]}}, {"id": "38211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095818885, 27.720753333], [142.09587083, 27.720678892], [142.0958, 27.720715559], [142.095818885, 27.720753333]]]}}, {"id": "38212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150131946, 27.670200829], [142.150111673, 27.670287495], [142.150158612, 27.670253333], [142.150131946, 27.670200829]]]}}, {"id": "38213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144771388, 26.658021387], [142.144686939, 26.657985559], [142.144730558, 26.658046108], [142.144771388, 26.658021387]]]}}, {"id": "38214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229748145, 27.035044054], [142.22968572, 27.034981586], [142.229683865, 27.035056775], [142.229748145, 27.035044054]]]}}, {"id": "38215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236664695, 27.050251586], [142.23664511, 27.050135108], [142.236604916, 27.050252495], [142.236664695, 27.050251586]]]}}, {"id": "38216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176199728, 26.598713333], [142.176232218, 26.598653613], [142.176160272, 26.598643613], [142.176199728, 26.598713333]]]}}, {"id": "38217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182228781, 27.098272613], [142.182290921, 27.098273333], [142.18227, 27.098243027], [142.182228781, 27.098272613]]]}}, {"id": "38218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.109814163, 27.727987225], [142.109882776, 27.728022775], [142.109862776, 27.727951387], [142.109814163, 27.727987225]]]}}, {"id": "38219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098374721, 27.723819441], [142.098415837, 27.723902495], [142.098456939, 27.723859441], [142.098374721, 27.723819441]]]}}, {"id": "38220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240762996, 27.047161892], [142.240818392, 27.047099414], [142.240754838, 27.047071829], [142.240762996, 27.047161892]]]}}, {"id": "38221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19496083, 27.196477225], [142.195015279, 27.196427225], [142.194955006, 27.196420559], [142.19496083, 27.196477225]]]}}, {"id": "38222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202827497, 27.044062225], [142.202765837, 27.043999162], [142.202746939, 27.044065279], [142.202827497, 27.044062225]]]}}, {"id": "38223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.119981673, 26.716973333], [142.120063061, 26.716910279], [142.120008885, 26.716887495], [142.119981673, 26.716973333]]]}}, {"id": "38224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172804332, 26.63625864], [142.172732529, 26.636205027], [142.17270703, 26.636269694], [142.172804332, 26.63625864]]]}}, {"id": "38225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233150272, 27.077122775], [142.233177782, 27.077021667], [142.233101673, 27.077095], [142.233150272, 27.077122775]]]}}, {"id": "38226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160389728, 26.563625279], [142.160311673, 26.563596667], [142.160330558, 26.563653613], [142.160389728, 26.563625279]]]}}, {"id": "38227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191468885, 27.104991946], [142.191394449, 27.105026946], [142.191446109, 27.105051108], [142.191468885, 27.104991946]]]}}, {"id": "38228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161546939, 26.585611667], [142.161628054, 26.585626108], [142.161571946, 26.585574721], [142.161546939, 26.585611667]]]}}, {"id": "38229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141882555, 26.70285564], [142.14196345, 26.70284136], [142.141939585, 26.702803667], [142.141882555, 26.70285564]]]}}, {"id": "38230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19610808, 27.038672387], [142.196101556, 27.038575279], [142.196062776, 27.038580946], [142.19610808, 27.038672387]]]}}, {"id": "38231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141937782, 26.702330162], [142.141994812, 26.702370892], [142.142001089, 26.702306892], [142.141937782, 26.702330162]]]}}, {"id": "38232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141633774, 26.66566664], [142.141675162, 26.665733667], [142.1416962, 26.665684721], [142.141633774, 26.66566664]]]}}, {"id": "38233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171137808, 26.657519252], [142.171165422, 26.657588441], [142.171205772, 26.657506802], [142.171137808, 26.657519252]]]}}, {"id": "38234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128244163, 26.597633333], [142.128295837, 26.597711108], [142.128302218, 26.597644441], [142.128244163, 26.597633333]]]}}, {"id": "38235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181656109, 27.127516946], [142.181589728, 27.127491667], [142.181603061, 27.127528613], [142.181656109, 27.127516946]]]}}, {"id": "38236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18325, 27.092229721], [142.183224163, 27.092142775], [142.183194449, 27.092171387], [142.18325, 27.092229721]]]}}, {"id": "38237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224574578, 27.035387252], [142.224658664, 27.035445135], [142.224652283, 27.035376387], [142.224574578, 27.035387252]]]}}, {"id": "38238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184316809, 27.075133559], [142.184385746, 27.075182829], [142.184381997, 27.075112081], [142.184316809, 27.075133559]]]}}, {"id": "38239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229672555, 27.034507667], [142.229722503, 27.034576919], [142.229701479, 27.034494532], [142.229672555, 27.034507667]]]}}, {"id": "38240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153552218, 26.542671946], [142.153582218, 26.542764721], [142.153586667, 26.542669162], [142.153552218, 26.542671946]]]}}, {"id": "38241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187548612, 27.622563892], [142.187649442, 27.622565559], [142.187644721, 27.622538892], [142.187548612, 27.622563892]]]}}, {"id": "38242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218448612, 26.563719162], [142.21851, 26.563660559], [142.218422776, 26.56368], [142.218448612, 26.563719162]]]}}, {"id": "38243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176933359, 26.602177306], [142.176892918, 26.602132414], [142.176851362, 26.602200775], [142.176933359, 26.602177306]]]}}, {"id": "38244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285097471, 25.448591775], [141.284992477, 25.448576495], [141.284984968, 25.448601495], [141.285097471, 25.448591775]]]}}, {"id": "38245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232775551, 27.099249721], [142.232791388, 27.099165829], [142.232714449, 27.099212495], [142.232775551, 27.099249721]]]}}, {"id": "38246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204976394, 26.554455], [142.205062218, 26.554457495], [142.205052503, 26.554407775], [142.204976394, 26.554455]]]}}, {"id": "38247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19607214, 27.039161748], [142.196041167, 27.039088748], [142.196018366, 27.039178775], [142.19607214, 27.039161748]]]}}, {"id": "38248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148987497, 26.648827775], [142.148905006, 26.648775], [142.148935279, 26.648851387], [142.148987497, 26.648827775]]]}}, {"id": "38249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098302776, 27.717495279], [142.098396109, 27.717494162], [142.098387497, 27.717467775], [142.098302776, 27.717495279]]]}}, {"id": "38250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20828834, 26.554072225], [142.208329442, 26.553992775], [142.208272503, 26.554006108], [142.20828834, 26.554072225]]]}}, {"id": "38251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193611855, 27.040819468], [142.193680506, 27.040883748], [142.193670195, 27.040805333], [142.193611855, 27.040819468]]]}}, {"id": "38252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225183087, 27.053226919], [142.225275668, 27.053242559], [142.225240078, 27.053195414], [142.225183087, 27.053226919]]]}}, {"id": "38253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222602944, 27.094686225], [142.222609922, 27.094802559], [142.222631582, 27.094686162], [142.222602944, 27.094686225]]]}}, {"id": "38254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156281245, 26.698857495], [142.156364306, 26.698886027], [142.156321115, 26.698831919], [142.156281245, 26.698857495]]]}}, {"id": "38255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196663969, 27.039017387], [142.196715772, 27.039080135], [142.196703865, 27.039007252], [142.196663969, 27.039017387]]]}}, {"id": "38256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216653671, 27.040802694], [142.216598949, 27.040854387], [142.216718145, 27.040886252], [142.216653671, 27.040802694]]]}}, {"id": "38257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199253333, 27.183914162], [142.199354721, 27.183957495], [142.199366109, 27.183914162], [142.199253333, 27.183914162]]]}}, {"id": "38258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171796939, 26.594703613], [142.17189, 26.594717775], [142.171821115, 26.594669441], [142.171796939, 26.594703613]]]}}, {"id": "38259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216213061, 27.493763054], [142.216205006, 27.493848613], [142.216251115, 27.493828054], [142.216213061, 27.493763054]]]}}, {"id": "38260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147391725, 26.689786748], [142.147435253, 26.689889162], [142.147424643, 26.689762721], [142.147391725, 26.689786748]]]}}, {"id": "38261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153750558, 26.698081559], [142.153795811, 26.698160495], [142.153798833, 26.698096748], [142.153750558, 26.698081559]]]}}, {"id": "38262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201283411, 27.044496387], [142.201325188, 27.044413108], [142.201238716, 27.044484721], [142.201283411, 27.044496387]]]}}, {"id": "38263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17276083, 26.62763], [142.17268917, 26.627575829], [142.172716939, 26.627667225], [142.17276083, 26.62763]]]}}, {"id": "38264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225177665, 27.035352613], [142.225235331, 27.035408306], [142.225234501, 27.035349279], [142.225177665, 27.035352613]]]}}, {"id": "38265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186710337, 27.055646919], [142.186651803, 27.055556279], [142.186674137, 27.055649748], [142.186710337, 27.055646919]]]}}, {"id": "38266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158045279, 27.657333613], [142.158125551, 27.657346946], [142.158082218, 27.657298333], [142.158045279, 27.657333613]]]}}, {"id": "38267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123168612, 26.708667495], [142.123086939, 26.708684162], [142.123153606, 26.708706946], [142.123168612, 26.708667495]]]}}, {"id": "38268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14087083, 26.670958054], [142.140910558, 26.670866667], [142.140847782, 26.670873054], [142.14087083, 26.670958054]]]}}, {"id": "38269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162222607, 26.688243], [142.162138612, 26.688243441], [142.162202581, 26.688285532], [142.162222607, 26.688243]]]}}, {"id": "38270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236313606, 26.567377225], [142.236410272, 26.567397495], [142.236325279, 26.567354441], [142.236313606, 26.567377225]]]}}, {"id": "38271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189028911, 27.043948198], [142.189068638, 27.044008414], [142.189062555, 27.043931892], [142.189028911, 27.043948198]]]}}, {"id": "38272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122774747, 26.706832162], [142.122804773, 26.706914], [142.122847834, 26.706847721], [142.122774747, 26.706832162]]]}}, {"id": "38273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152835837, 27.671224721], [142.152910272, 27.671244162], [142.152908885, 27.671185], [142.152835837, 27.671224721]]]}}, {"id": "38274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174777691, 26.597777441], [142.174854358, 26.597752252], [142.174793191, 26.597729225], [142.174777691, 26.597777441]]]}}, {"id": "38275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216406913, 27.041005252], [142.216445357, 27.041091829], [142.216492114, 27.041080306], [142.216406913, 27.041005252]]]}}, {"id": "38276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095713333, 27.718498892], [142.095789728, 27.718485829], [142.095754163, 27.718442775], [142.095713333, 27.718498892]]]}}, {"id": "38277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.239947367, 27.045386468], [142.240023891, 27.045441468], [142.239976226, 27.045354559], [142.239947367, 27.045386468]]]}}, {"id": "38278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.27187358, 25.432954], [141.271811634, 25.433004829], [141.271859144, 25.433022883], [141.27187358, 25.432954]]]}}, {"id": "38279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183112672, 26.612461613], [142.183191505, 26.612408441], [142.183182918, 26.612373162], [142.183112672, 26.612461613]]]}}, {"id": "38280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16200594, 26.688513027], [142.161960026, 26.688441495], [142.161936498, 26.688500306], [142.16200594, 26.688513027]]]}}, {"id": "38281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143523307, 26.658080748], [142.14350939, 26.658137441], [142.143571751, 26.658111306], [142.143523307, 26.658080748]]]}}, {"id": "38282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234671115, 26.566954721], [142.234745551, 26.566951387], [142.23469, 26.566928054], [142.234671115, 26.566954721]]]}}, {"id": "38283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130252218, 27.678653892], [142.1303, 27.678594441], [142.130235006, 27.678568892], [142.130252218, 27.678653892]]]}}, {"id": "38284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.220128586, 27.10085864], [142.220169611, 27.100797748], [142.220099196, 27.100841559], [142.220128586, 27.10085864]]]}}, {"id": "38285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127178612, 26.696863613], [142.12717, 26.696787225], [142.12712917, 26.696836946], [142.127178612, 26.696863613]]]}}, {"id": "38286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181007224, 27.093772225], [142.180974449, 27.093715829], [142.180904449, 27.093760559], [142.181007224, 27.093772225]]]}}, {"id": "38287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232487004, 27.078096613], [142.232451414, 27.078199667], [142.232517977, 27.078104333], [142.232487004, 27.078096613]]]}}, {"id": "38288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13451144, 26.685570108], [142.13452061, 26.685657919], [142.134556329, 26.68561764], [142.13451144, 26.685570108]]]}}, {"id": "38289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151471388, 26.696235559], [142.151395837, 26.696188333], [142.151404721, 26.696283892], [142.151471388, 26.696235559]]]}}, {"id": "38290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152662218, 26.641164162], [142.152598885, 26.641123613], [142.152601673, 26.641193333], [142.152662218, 26.641164162]]]}}, {"id": "38291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141178885, 26.666694721], [142.14110917, 26.666741667], [142.141142776, 26.666761946], [142.141178885, 26.666694721]]]}}, {"id": "38292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233455551, 26.566476667], [142.233531115, 26.566527775], [142.233538612, 26.5665], [142.233455551, 26.566476667]]]}}, {"id": "38293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12219834, 26.708953333], [142.122116394, 26.708906108], [142.122125837, 26.708974441], [142.12219834, 26.708953333]]]}}, {"id": "38294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188049494, 27.087131054], [142.188039468, 27.087045414], [142.187990999, 27.087120946], [142.188049494, 27.087131054]]]}}, {"id": "38295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272065253, 25.429218162], [141.272021077, 25.429151495], [141.272001362, 25.429209], [141.272065253, 25.429218162]]]}}, {"id": "38296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233605422, 27.077378387], [142.233728807, 27.077314027], [142.23371655, 27.077291748], [142.233605422, 27.077378387]]]}}, {"id": "38297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.209607224, 26.565041667], [142.209710558, 26.565062775], [142.20969, 26.565017775], [142.209607224, 26.565041667]]]}}, {"id": "38298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160272477, 26.687065468], [142.160226861, 26.687146865], [142.160274942, 26.687117919], [142.160272477, 26.687065468]]]}}, {"id": "38299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121592776, 26.715564279], [142.121639883, 26.715619748], [142.121670195, 26.715591748], [142.121592776, 26.715564279]]]}}, {"id": "38300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272177198, 25.429205387], [141.272155811, 25.429110667], [141.272138586, 25.429229], [141.272177198, 25.429205387]]]}}, {"id": "38301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185393891, 27.178710279], [142.185464163, 27.178647495], [142.185424721, 27.178638054], [142.185393891, 27.178710279]]]}}, {"id": "38302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157564721, 27.661426108], [142.157603891, 27.661337495], [142.157546939, 27.661348613], [142.157564721, 27.661426108]]]}}, {"id": "38303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177282218, 26.600094162], [142.177198612, 26.600058892], [142.17724917, 26.600124721], [142.177282218, 26.600094162]]]}}, {"id": "38304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285636783, 24.790360748], [141.285531621, 24.790471198], [141.28567358, 24.790378622], [141.285636783, 24.790360748]]]}}, {"id": "38305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18441642, 27.074830054], [142.184375032, 27.074917027], [142.184427782, 27.074920225], [142.18441642, 27.074830054]]]}}, {"id": "38306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164040752, 26.677483387], [142.164060921, 26.677390306], [142.163981115, 26.677445198], [142.164040752, 26.677483387]]]}}, {"id": "38307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203308885, 27.119308054], [142.203402218, 27.119328613], [142.203345279, 27.119273054], [142.203308885, 27.119308054]]]}}, {"id": "38308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233464163, 26.565051387], [142.233430272, 26.565116108], [142.233471115, 26.565124162], [142.233464163, 26.565051387]]]}}, {"id": "38309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12328083, 26.705421667], [142.123272503, 26.705339721], [142.123243333, 26.705340829], [142.12328083, 26.705421667]]]}}, {"id": "38310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142657562, 26.708396495], [142.142712309, 26.708447559], [142.142734034, 26.708370892], [142.142657562, 26.708396495]]]}}, {"id": "38311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123634812, 26.717116721], [142.123734695, 26.717201225], [142.123763995, 26.717160387], [142.123634812, 26.717116721]]]}}, {"id": "38312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173266135, 26.597813495], [142.173327108, 26.597752135], [142.173258171, 26.597778225], [142.173266135, 26.597813495]]]}}, {"id": "38313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141146524, 26.702219748], [142.141216472, 26.702299559], [142.141229196, 26.702265333], [142.141146524, 26.702219748]]]}}, {"id": "38314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103779728, 27.717773054], [142.103706109, 27.717715], [142.103690558, 27.717770279], [142.103779728, 27.717773054]]]}}, {"id": "38315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188108885, 27.147498054], [142.188054449, 27.147422225], [142.188072503, 27.147512225], [142.188108885, 27.147498054]]]}}, {"id": "38316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229533411, 27.081784775], [142.229550117, 27.081899667], [142.229566355, 27.081765775], [142.229533411, 27.081784775]]]}}, {"id": "38317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208608885, 26.565509721], [142.208683333, 26.565568892], [142.208711673, 26.565535279], [142.208608885, 26.565509721]]]}}, {"id": "38318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148255837, 26.707707225], [142.14818917, 26.707718613], [142.148243061, 26.707754441], [142.148255837, 26.707707225]]]}}, {"id": "38319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185863061, 27.178489162], [142.185932218, 27.178453054], [142.185874721, 27.178415], [142.185863061, 27.178489162]]]}}, {"id": "38320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233083061, 26.565429162], [142.233178054, 26.565465559], [142.233106394, 26.565400279], [142.233083061, 26.565429162]]]}}, {"id": "38321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133310921, 26.686283333], [142.13338642, 26.686319162], [142.133399027, 26.686270414], [142.133310921, 26.686283333]]]}}, {"id": "38322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193812529, 27.040225495], [142.193924617, 27.040227225], [142.193931997, 27.040187414], [142.193812529, 27.040225495]]]}}, {"id": "38323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224617276, 27.042396973], [142.224599053, 27.042458919], [142.224724942, 27.042405027], [142.224617276, 27.042396973]]]}}, {"id": "38324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140279442, 26.667328721], [142.140311582, 26.667410027], [142.140366109, 26.667385613], [142.140279442, 26.667328721]]]}}, {"id": "38325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192002218, 27.106442495], [142.191910558, 27.106406108], [142.191966109, 27.106475829], [142.192002218, 27.106442495]]]}}, {"id": "38326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176189922, 26.616915829], [142.176268444, 26.616928027], [142.17626511, 26.616846865], [142.176189922, 26.616915829]]]}}, {"id": "38327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18603, 27.056105], [142.18603083, 27.056009721], [142.185981673, 27.056064721], [142.18603, 27.056105]]]}}, {"id": "38328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122903606, 26.709470279], [142.122865279, 26.709393333], [142.12283917, 26.70948], [142.122903606, 26.709470279]]]}}, {"id": "38329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131263606, 26.596099721], [142.131308885, 26.596025829], [142.131253333, 26.596048054], [142.131263606, 26.596099721]]]}}, {"id": "38330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139010973, 26.679190775], [142.139076031, 26.679237829], [142.139068301, 26.679155802], [142.139010973, 26.679190775]]]}}, {"id": "38331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181768275, 27.070625973], [142.181826005, 27.070590892], [142.181749637, 27.070568135], [142.181768275, 27.070625973]]]}}, {"id": "38332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147556109, 26.690023333], [142.147478612, 26.689975279], [142.147511946, 26.690044721], [142.147556109, 26.690023333]]]}}, {"id": "38333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184982218, 27.087508613], [142.184890558, 27.087513892], [142.184928054, 27.087558054], [142.184982218, 27.087508613]]]}}, {"id": "38334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150572088, 26.683963108], [142.150630337, 26.684013775], [142.150630752, 26.683949135], [142.150572088, 26.683963108]]]}}, {"id": "38335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187345668, 26.659661694], [142.187385746, 26.659721306], [142.187455914, 26.659625279], [142.187345668, 26.659661694]]]}}, {"id": "38336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22171642, 27.09433336], [142.221820026, 27.094347081], [142.221825447, 27.094336532], [142.22171642, 27.09433336]]]}}, {"id": "38337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157577497, 27.660556108], [142.157635279, 27.660617225], [142.157658885, 27.660568892], [142.157577497, 27.660556108]]]}}, {"id": "38338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219782192, 27.10062036], [142.219642218, 27.100721586], [142.219740584, 27.100687225], [142.219782192, 27.10062036]]]}}, {"id": "38339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19807917, 27.159688892], [142.198060272, 27.159596387], [142.198026667, 27.159656387], [142.19807917, 27.159688892]]]}}, {"id": "38340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232190558, 27.081323802], [142.232261193, 27.081305108], [142.232242477, 27.081273198], [142.232190558, 27.081323802]]]}}, {"id": "38341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212217224, 26.564645829], [142.212329728, 26.564617495], [142.212222776, 26.564602495], [142.212217224, 26.564645829]]]}}, {"id": "38342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163801608, 26.666007108], [142.163703061, 26.666005414], [142.163780558, 26.666031252], [142.163801608, 26.666007108]]]}}, {"id": "38343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2193593, 27.096775252], [142.219225616, 27.096849748], [142.219262166, 27.096870279], [142.2193593, 27.096775252]]]}}, {"id": "38344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185058249, 27.048696694], [142.185008755, 27.048634946], [142.184981388, 27.048672081], [142.185058249, 27.048696694]]]}}, {"id": "38345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.27277275, 25.426410108], [141.272676641, 25.426424279], [141.272705525, 25.426462883], [141.27277275, 25.426410108]]]}}, {"id": "38346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19765, 27.193794441], [142.197655837, 27.193870279], [142.19770083, 27.193858054], [142.19765, 27.193794441]]]}}, {"id": "38347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233358664, 27.075616892], [142.233403722, 27.075652387], [142.233413528, 27.075613279], [142.233358664, 27.075616892]]]}}, {"id": "38348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140712776, 26.708405829], [142.140622218, 26.708431946], [142.140751388, 26.708445829], [142.140712776, 26.708405829]]]}}, {"id": "38349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233901673, 27.109016946], [142.234003333, 27.109057225], [142.233902776, 27.108978892], [142.233901673, 27.109016946]]]}}, {"id": "38350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164400661, 26.660308468], [142.164492477, 26.660307919], [142.164401388, 26.660257387], [142.164400661, 26.660308468]]]}}, {"id": "38351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157244449, 27.659798333], [142.157242776, 27.659881667], [142.157275837, 27.659868613], [142.157244449, 27.659798333]]]}}, {"id": "38352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218566939, 26.561875279], [142.218633061, 26.561945829], [142.218590558, 26.561856108], [142.218566939, 26.561875279]]]}}, {"id": "38353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290468859, 25.442902333], [141.290469144, 25.443000108], [141.290514137, 25.442994279], [141.290468859, 25.442902333]]]}}, {"id": "38354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221942166, 27.094007973], [142.221992892, 27.094058892], [142.222037082, 27.094014973], [142.221942166, 27.094007973]]]}}, {"id": "38355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142537108, 26.677181198], [142.142510272, 26.677081946], [142.142474812, 26.677167081], [142.142537108, 26.677181198]]]}}, {"id": "38356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133073333, 26.686331468], [142.133189585, 26.686342198], [142.133073995, 26.686299892], [142.133073333, 26.686331468]]]}}, {"id": "38357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151117108, 26.696850586], [142.151204669, 26.696934721], [142.151150246, 26.696830892], [142.151117108, 26.696850586]]]}}, {"id": "38358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272373307, 25.427765946], [141.272391362, 25.427837054], [141.272431634, 25.427792333], [141.272373307, 25.427765946]]]}}, {"id": "38359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149893891, 26.546102225], [142.149871946, 26.546188892], [142.14992917, 26.546170559], [142.149893891, 26.546102225]]]}}, {"id": "38360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157595279, 27.660707775], [142.157650272, 27.660775559], [142.157654449, 27.660700279], [142.157595279, 27.660707775]]]}}, {"id": "38361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232940143, 27.074794973], [142.233013917, 27.074867252], [142.232977198, 27.074771], [142.232940143, 27.074794973]]]}}, {"id": "38362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182321829, 27.087655973], [142.182360026, 27.087583802], [142.182301829, 27.087644802], [142.182321829, 27.087655973]]]}}, {"id": "38363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186126109, 27.119715829], [142.186153061, 27.119660559], [142.186101115, 27.119683054], [142.186126109, 27.119715829]]]}}, {"id": "38364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228213995, 27.081716], [142.228140726, 27.081789135], [142.228251829, 27.081739027], [142.228213995, 27.081716]]]}}, {"id": "38365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194674423, 27.040514027], [142.194765136, 27.040517613], [142.194690052, 27.040458225], [142.194674423, 27.040514027]]]}}, {"id": "38366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16427834, 27.112703613], [142.164216939, 27.112765559], [142.16426917, 27.112769721], [142.16427834, 27.112703613]]]}}, {"id": "38367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20009, 27.183755279], [142.200157782, 27.183816946], [142.200187224, 27.183791108], [142.20009, 27.183755279]]]}}, {"id": "38368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099891946, 27.717056667], [142.099967224, 27.717023613], [142.099927782, 27.716995], [142.099891946, 27.717056667]]]}}, {"id": "38369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193803307, 27.040843946], [142.193886861, 27.040894748], [142.193909364, 27.040857892], [142.193803307, 27.040843946]]]}}, {"id": "38370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237297497, 27.050986306], [142.237237613, 27.050980559], [142.237297393, 27.051035225], [142.237297497, 27.050986306]]]}}, {"id": "38371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16659917, 26.592711108], [142.166568054, 26.592807225], [142.166626109, 26.592724721], [142.16659917, 26.592711108]]]}}, {"id": "38372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154594163, 26.554467495], [142.154608054, 26.554552495], [142.154632503, 26.554466667], [142.154594163, 26.554467495]]]}}, {"id": "38373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231129027, 27.061727306], [142.231217808, 27.061767775], [142.231220584, 27.061734919], [142.231129027, 27.061727306]]]}}, {"id": "38374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22059642, 27.036304162], [142.220670441, 27.03633564], [142.22065, 27.036287559], [142.22059642, 27.036304162]]]}}, {"id": "38375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18476917, 27.118555], [142.184831946, 27.118594162], [142.184816939, 27.118536108], [142.18476917, 27.118555]]]}}, {"id": "38376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196431167, 27.039095532], [142.196493671, 27.039165108], [142.196517419, 27.039132946], [142.196431167, 27.039095532]]]}}, {"id": "38377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201353671, 27.044558559], [142.20142869, 27.044573441], [142.201421025, 27.044519586], [142.201353671, 27.044558559]]]}}, {"id": "38378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157264721, 27.660159721], [142.15730917, 27.660224441], [142.157324449, 27.660207495], [142.157264721, 27.660159721]]]}}, {"id": "38379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226481115, 27.116370559], [142.226422776, 27.116301946], [142.226433333, 27.116383333], [142.226481115, 27.116370559]]]}}, {"id": "38380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182960856, 27.070713333], [142.183032309, 27.070757387], [142.183029248, 27.070739333], [142.182960856, 27.070713333]]]}}, {"id": "38381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19207594, 27.106273892], [142.192032387, 27.106218973], [142.192003774, 27.106242135], [142.19207594, 27.106273892]]]}}, {"id": "38382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1844507, 27.075075892], [142.18450856, 27.075128252], [142.184494137, 27.075054694], [142.1844507, 27.075075892]]]}}, {"id": "38383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234283891, 27.097990829], [142.234323891, 27.097913892], [142.234285551, 27.097915279], [142.234283891, 27.097990829]]]}}, {"id": "38384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216563606, 26.559217775], [142.216521388, 26.559286946], [142.216576394, 26.559302775], [142.216563606, 26.559217775]]]}}, {"id": "38385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149686615, 26.709621532], [142.149756719, 26.709671829], [142.149787302, 26.709606892], [142.149686615, 26.709621532]]]}}, {"id": "38386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161648392, 27.120583351], [142.161704215, 27.120532423], [142.161640726, 27.120527523], [142.161648392, 27.120583351]]]}}, {"id": "38387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124940272, 26.704387495], [142.125017782, 26.704336667], [142.124975551, 26.704313613], [142.124940272, 26.704387495]]]}}, {"id": "38388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213737782, 26.555487775], [142.213811388, 26.555549162], [142.213821388, 26.555524162], [142.213737782, 26.555487775]]]}}, {"id": "38389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19566345, 27.038997225], [142.195719805, 27.039062946], [142.195696355, 27.038973973], [142.19566345, 27.038997225]]]}}, {"id": "38390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231167782, 27.068199721], [142.231094449, 27.068167495], [142.231100558, 27.068220829], [142.231167782, 27.068199721]]]}}, {"id": "38391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14961, 26.647763613], [142.149586394, 26.647704441], [142.149558885, 26.647752495], [142.14961, 26.647763613]]]}}, {"id": "38392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176666109, 26.600721108], [142.176586667, 26.600788333], [142.176625551, 26.600803613], [142.176666109, 26.600721108]]]}}, {"id": "38393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284589157, 24.750244081], [141.284502179, 24.750186874], [141.284548638, 24.750291468], [141.284589157, 24.750244081]]]}}, {"id": "38394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285624073, 24.788350838], [141.285582542, 24.788245099], [141.285539027, 24.788298243], [141.285624073, 24.788350838]]]}}, {"id": "38395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225025914, 27.088663279], [142.225097782, 27.088596829], [142.225101997, 27.088538973], [142.225025914, 27.088663279]]]}}, {"id": "38396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180215694, 26.608752973], [142.1802162, 26.608676333], [142.180161141, 26.608722775], [142.180215694, 26.608752973]]]}}, {"id": "38397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223091855, 27.035850559], [142.223162361, 27.035938721], [142.22310856, 27.035838694], [142.223091855, 27.035850559]]]}}, {"id": "38398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134472776, 26.685494441], [142.134525006, 26.685416946], [142.134475279, 26.685414441], [142.134472776, 26.685494441]]]}}, {"id": "38399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22728083, 27.116345], [142.227231946, 27.116411387], [142.227285837, 27.116418054], [142.22728083, 27.116345]]]}}, {"id": "38400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186984163, 27.060651333], [142.187080506, 27.060625225], [142.187081725, 27.060575946], [142.186984163, 27.060651333]]]}}, {"id": "38401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230960532, 27.060043919], [142.230889728, 27.060076162], [142.23095642, 27.060094748], [142.230960532, 27.060043919]]]}}, {"id": "38402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21020083, 27.039038054], [142.21011834, 27.039043892], [142.210116109, 27.039095559], [142.21020083, 27.039038054]]]}}, {"id": "38403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191704475, 27.063768162], [142.191789364, 27.063778162], [142.191756524, 27.063734973], [142.191704475, 27.063768162]]]}}, {"id": "38404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157255551, 27.660023054], [142.157321673, 27.660080559], [142.157335279, 27.660051108], [142.157255551, 27.660023054]]]}}, {"id": "38405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158731479, 26.699992973], [142.158653139, 26.699971306], [142.158648495, 26.700019252], [142.158731479, 26.699992973]]]}}, {"id": "38406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15089655, 26.694119387], [142.150973022, 26.694124081], [142.150910363, 26.694073162], [142.15089655, 26.694119387]]]}}, {"id": "38407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143881751, 26.675711532], [142.143941725, 26.675716081], [142.143866005, 26.675652441], [142.143881751, 26.675711532]]]}}, {"id": "38408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193861141, 27.075724], [142.193882088, 27.075828306], [142.193910143, 27.075833252], [142.193861141, 27.075724]]]}}, {"id": "38409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181566031, 27.07263564], [142.181598418, 27.072710162], [142.181629442, 27.072627613], [142.181566031, 27.07263564]]]}}, {"id": "38410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23902083, 27.047878973], [142.239121219, 27.047826919], [142.239107198, 27.047771892], [142.23902083, 27.047878973]]]}}, {"id": "38411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154767224, 26.554350559], [142.15480834, 26.554423613], [142.154816394, 26.554359162], [142.154767224, 26.554350559]]]}}, {"id": "38412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100766667, 27.715214441], [142.100832776, 27.715145559], [142.100743606, 27.715175559], [142.100766667, 27.715214441]]]}}, {"id": "38413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162897497, 26.629887829], [142.162912944, 26.629801414], [142.162874812, 26.629812387], [142.162897497, 26.629887829]]]}}, {"id": "38414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141966057, 26.709246225], [142.142056031, 26.709257054], [142.14201703, 26.709187306], [142.141966057, 26.709246225]]]}}, {"id": "38415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184843061, 27.086305279], [142.184768612, 27.086301108], [142.184809728, 27.086335], [142.184843061, 27.086305279]]]}}, {"id": "38416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142308885, 26.709865], [142.142325006, 26.709793054], [142.142282776, 26.709827495], [142.142308885, 26.709865]]]}}, {"id": "38417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161180584, 26.633402108], [142.161279364, 26.633431775], [142.161204254, 26.633364081], [142.161180584, 26.633402108]]]}}, {"id": "38418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192696109, 27.042186667], [142.192606109, 27.042125279], [142.192587782, 27.042158613], [142.192696109, 27.042186667]]]}}, {"id": "38419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148139339, 26.649876892], [142.148207808, 26.649926721], [142.148220467, 26.649870027], [142.148139339, 26.649876892]]]}}, {"id": "38420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147817782, 26.662428054], [142.147721388, 26.662422495], [142.147798054, 26.662458892], [142.147817782, 26.662428054]]]}}, {"id": "38421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292629144, 25.439405946], [141.292572477, 25.439339279], [141.29257441, 25.439419279], [141.292629144, 25.439405946]]]}}, {"id": "38422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175072023, 26.620296775], [142.175159144, 26.620319775], [142.175094086, 26.620264441], [142.175072023, 26.620296775]]]}}, {"id": "38423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196992698, 27.038627387], [142.19700786, 27.038716892], [142.197035084, 27.038615135], [142.196992698, 27.038627387]]]}}, {"id": "38424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235193333, 27.096882225], [142.235208885, 27.096965], [142.235241946, 27.096957225], [142.235193333, 27.096882225]]]}}, {"id": "38425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150381115, 26.707070559], [142.150340272, 26.707007495], [142.150328885, 26.707051667], [142.150381115, 26.707070559]]]}}, {"id": "38426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222106278, 27.094488081], [142.222134773, 27.094558892], [142.222151388, 27.094502892], [142.222106278, 27.094488081]]]}}, {"id": "38427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174486109, 27.034229441], [142.174525551, 27.034294162], [142.174549728, 27.034231108], [142.174486109, 27.034229441]]]}}, {"id": "38428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150881997, 26.683757802], [142.150805032, 26.683821973], [142.150904643, 26.683779802], [142.150881997, 26.683757802]]]}}, {"id": "38429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161553865, 26.70062236], [142.161614942, 26.700680775], [142.161600311, 26.700568775], [142.161553865, 26.70062236]]]}}, {"id": "38430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19084345, 27.064282198], [142.190927639, 27.064226387], [142.190917224, 27.064211775], [142.19084345, 27.064282198]]]}}, {"id": "38431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172199728, 27.042579441], [142.172199728, 27.042510829], [142.172135006, 27.042539721], [142.172199728, 27.042579441]]]}}, {"id": "38432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128145837, 26.597518333], [142.128224163, 26.597507775], [142.128181115, 26.597470829], [142.128145837, 26.597518333]]]}}, {"id": "38433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153493191, 26.698144829], [142.153538664, 26.69819436], [142.153558197, 26.698144495], [142.153493191, 26.698144829]]]}}, {"id": "38434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172686394, 27.116300279], [142.172727782, 27.116223333], [142.172666394, 27.116226387], [142.172686394, 27.116300279]]]}}, {"id": "38435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214184449, 26.555935], [142.214158885, 26.556000559], [142.214224449, 26.556000829], [142.214184449, 26.555935]]]}}, {"id": "38436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164864306, 26.630798027], [142.164964137, 26.630801252], [142.164861219, 26.630758586], [142.164864306, 26.630798027]]]}}, {"id": "38437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139104449, 26.699835829], [142.139036394, 26.699786667], [142.139025006, 26.699823333], [142.139104449, 26.699835829]]]}}, {"id": "38438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181892918, 27.094555441], [142.181929883, 27.094662441], [142.181935888, 27.094564495], [142.181892918, 27.094555441]]]}}, {"id": "38439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157383891, 27.660110279], [142.157433891, 27.660198613], [142.157432503, 27.660128892], [142.157383891, 27.660110279]]]}}, {"id": "38440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23631, 27.113648333], [142.236413333, 27.113664721], [142.236402776, 27.113630829], [142.23631, 27.113648333]]]}}, {"id": "38441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186334449, 27.070336387], [142.186253333, 27.070341387], [142.186291115, 27.070403892], [142.186334449, 27.070336387]]]}}, {"id": "38442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152832776, 26.697123054], [142.152751673, 26.697155], [142.152808885, 26.697187225], [142.152832776, 26.697123054]]]}}, {"id": "38443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095466667, 27.719739721], [142.095394721, 27.719694721], [142.095434163, 27.719770559], [142.095466667, 27.719739721]]]}}, {"id": "38444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144493891, 27.670692495], [142.144569442, 27.670729441], [142.144581673, 27.670702775], [142.144493891, 27.670692495]]]}}, {"id": "38445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.243061115, 27.096501667], [142.243111115, 27.096421667], [142.243060272, 27.096421667], [142.243061115, 27.096501667]]]}}, {"id": "38446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17996, 26.631709162], [142.179913606, 26.631636667], [142.179896939, 26.631659721], [142.17996, 26.631709162]]]}}, {"id": "38447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172387782, 26.641447027], [142.172462088, 26.641504892], [142.172481829, 26.641478495], [142.172387782, 26.641447027]]]}}, {"id": "38448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126231946, 26.701628054], [142.126208885, 26.701554441], [142.126171388, 26.701595279], [142.126231946, 26.701628054]]]}}, {"id": "38449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170862776, 27.030089721], [142.170883891, 27.030155829], [142.170938054, 27.030111667], [142.170862776, 27.030089721]]]}}, {"id": "38450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1746838, 26.616151441], [142.174756304, 26.616070667], [142.174782088, 26.615990027], [142.1746838, 26.616151441]]]}}, {"id": "38451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181403022, 27.072274], [142.181407445, 27.072393865], [142.181452309, 27.072262829], [142.181403022, 27.072274]]]}}, {"id": "38452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186519196, 27.057469919], [142.186560973, 27.057557414], [142.186578054, 27.057461802], [142.186519196, 27.057469919]]]}}, {"id": "38453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205061673, 27.118329721], [142.205131946, 27.118271667], [142.20508, 27.118251946], [142.205061673, 27.118329721]]]}}, {"id": "38454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156598781, 26.630091135], [142.156644112, 26.630135748], [142.15666144, 26.630087081], [142.156598781, 26.630091135]]]}}, {"id": "38455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185595084, 27.627194721], [142.185529066, 27.627258775], [142.18560882, 27.627244216], [142.185595084, 27.627194721]]]}}, {"id": "38456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236632438, 27.087997892], [142.236556329, 27.088052892], [142.236646135, 27.088032252], [142.236632438, 27.087997892]]]}}, {"id": "38457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183888054, 27.144660559], [142.183840558, 27.144595829], [142.183810558, 27.144639441], [142.183888054, 27.144660559]]]}}, {"id": "38458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231247497, 27.114383613], [142.231263061, 27.114293613], [142.231220558, 27.114290279], [142.231247497, 27.114383613]]]}}, {"id": "38459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181365006, 27.092595829], [142.181283891, 27.092639441], [142.181341673, 27.092655279], [142.181365006, 27.092595829]]]}}, {"id": "38460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.099049442, 27.720748892], [142.099124163, 27.720752775], [142.099065837, 27.720711667], [142.099049442, 27.720748892]]]}}, {"id": "38461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173494968, 26.597942306], [142.173417471, 26.597894387], [142.173428249, 26.597978586], [142.173494968, 26.597942306]]]}}, {"id": "38462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226914721, 27.117224721], [142.226944449, 27.117299441], [142.226966109, 27.117267495], [142.226914721, 27.117224721]]]}}, {"id": "38463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199806939, 26.549028892], [142.199805551, 26.548955], [142.199748054, 26.548967225], [142.199806939, 26.549028892]]]}}, {"id": "38464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196519728, 27.039482333], [142.196584838, 27.03947864], [142.196535006, 27.039460387], [142.196519728, 27.039482333]]]}}, {"id": "38465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149022776, 26.54633], [142.149102776, 26.546333892], [142.149044449, 26.546305], [142.149022776, 26.54633]]]}}, {"id": "38466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231638197, 27.058609532], [142.231631089, 27.058544441], [142.231582672, 27.058576387], [142.231638197, 27.058609532]]]}}, {"id": "38467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130441829, 26.690888387], [142.130342827, 26.69097], [142.1304707, 26.690902], [142.130441829, 26.690888387]]]}}, {"id": "38468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185583333, 27.178340559], [142.185656667, 27.178341387], [142.185583333, 27.178293892], [142.185583333, 27.178340559]]]}}, {"id": "38469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.109606667, 27.728566108], [142.109573061, 27.728494721], [142.109553061, 27.728551108], [142.109606667, 27.728566108]]]}}, {"id": "38470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170613061, 26.657891054], [142.17063856, 26.657941468], [142.170667951, 26.657858135], [142.170613061, 26.657891054]]]}}, {"id": "38471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285533437, 24.785423559], [141.28551415, 24.785354757], [141.285465603, 24.785317333], [141.285533437, 24.785423559]]]}}, {"id": "38472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131903839, 26.685936775], [142.131979637, 26.685962252], [142.131921777, 26.685889279], [142.131903839, 26.685936775]]]}}, {"id": "38473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284705927, 24.750896658], [141.284676018, 24.750975243], [141.284688145, 24.750982703], [141.284705927, 24.750896658]]]}}, {"id": "38474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241760026, 27.046032946], [142.241679805, 27.045995441], [142.241676693, 27.046041027], [142.241760026, 27.046032946]]]}}, {"id": "38475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122453333, 26.711047973], [142.122503061, 26.711102532], [142.122484163, 26.711033865], [142.122453333, 26.711047973]]]}}, {"id": "38476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.103971115, 27.7182], [142.103956939, 27.718270559], [142.104009442, 27.718263333], [142.103971115, 27.7182]]]}}, {"id": "38477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205454163, 26.554400829], [142.20551917, 26.554455829], [142.205494721, 26.554383333], [142.205454163, 26.554400829]]]}}, {"id": "38478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.271868301, 25.429344], [141.271939689, 25.429369829], [141.271921362, 25.429322333], [141.271868301, 25.429344]]]}}, {"id": "38479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131075525, 26.704959748], [142.131136615, 26.705022775], [142.131159974, 26.704996054], [142.131075525, 26.704959748]]]}}, {"id": "38480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136162996, 26.700390279], [142.136253411, 26.700357892], [142.136243139, 26.700337694], [142.136162996, 26.700390279]]]}}, {"id": "38481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230077004, 27.054067414], [142.230152724, 27.053975135], [142.230045863, 27.054069198], [142.230077004, 27.054067414]]]}}, {"id": "38482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453065837, 24.237482225], [141.453091388, 24.237561108], [141.453128612, 24.237517225], [141.453065837, 24.237482225]]]}}, {"id": "38483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095978885, 27.719080279], [142.095961673, 27.719016108], [142.09592917, 27.719060279], [142.095978885, 27.719080279]]]}}, {"id": "38484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198288612, 27.159621108], [142.198217224, 27.159646946], [142.198262218, 27.159658054], [142.198288612, 27.159621108]]]}}, {"id": "38485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198573891, 27.197143054], [142.19863083, 27.197105829], [142.198556667, 27.197103892], [142.198573891, 27.197143054]]]}}, {"id": "38486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134388054, 26.685592775], [142.134337782, 26.685533892], [142.134294449, 26.685566667], [142.134388054, 26.685592775]]]}}, {"id": "38487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189315577, 27.104730892], [142.189320726, 27.104801027], [142.189336135, 27.104727532], [142.189315577, 27.104730892]]]}}, {"id": "38488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191899637, 27.042081919], [142.191940246, 27.042132414], [142.191917588, 27.042075586], [142.191899637, 27.042081919]]]}}, {"id": "38489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15394489, 26.63608336], [142.154012633, 26.636051162], [142.153996913, 26.636000721], [142.15394489, 26.63608336]]]}}, {"id": "38490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181584643, 26.610326586], [142.181584527, 26.610255559], [142.181527108, 26.610334775], [142.181584643, 26.610326586]]]}}, {"id": "38491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235265551, 27.110805829], [142.23532083, 27.110732775], [142.235287497, 27.110725829], [142.235265551, 27.110805829]]]}}, {"id": "38492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176774695, 26.605969027], [142.176725551, 26.605933721], [142.176720999, 26.605974054], [142.176774695, 26.605969027]]]}}, {"id": "38493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182358106, 27.087520802], [142.182310532, 27.087461198], [142.182203087, 27.087491829], [142.182358106, 27.087520802]]]}}, {"id": "38494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193880584, 27.040701414], [142.19387869, 27.040775802], [142.19394192, 27.040679865], [142.193880584, 27.040701414]]]}}, {"id": "38495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170383891, 27.045802225], [142.170469442, 27.045807775], [142.170437224, 27.045762225], [142.170383891, 27.045802225]]]}}, {"id": "38496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232209442, 27.078965559], [142.232140558, 27.078923333], [142.232152776, 27.07898], [142.232209442, 27.078965559]]]}}, {"id": "38497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136506667, 27.671275], [142.13647083, 27.671215559], [142.136455279, 27.671271108], [142.136506667, 27.671275]]]}}, {"id": "38498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131508885, 26.688026108], [142.131542218, 26.687929441], [142.131503891, 26.687929441], [142.131508885, 26.688026108]]]}}, {"id": "38499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161423995, 26.703952748], [142.161460752, 26.704016333], [142.161476329, 26.703933721], [142.161423995, 26.703952748]]]}}, {"id": "38500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272094695, 25.432399829], [141.272019974, 25.432425946], [141.272068859, 25.432428441], [141.272094695, 25.432399829]]]}}, {"id": "38501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216703333, 26.563459162], [142.216641946, 26.563416946], [142.216665006, 26.563483333], [142.216703333, 26.563459162]]]}}, {"id": "38502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288663022, 25.446879829], [141.288591077, 25.446872054], [141.288592477, 25.446933441], [141.288663022, 25.446879829]]]}}, {"id": "38503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207518885, 26.554145559], [142.207491115, 26.554068892], [142.20746834, 26.554142225], [142.207518885, 26.554145559]]]}}, {"id": "38504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23127083, 27.068059162], [142.231206394, 27.068021387], [142.231206394, 27.068060279], [142.23127083, 27.068059162]]]}}, {"id": "38505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170956394, 27.045276667], [142.171027224, 27.045265829], [142.170986109, 27.045203333], [142.170956394, 27.045276667]]]}}, {"id": "38506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341429961, 24.804659063], [141.341373152, 24.804628117], [141.341364903, 24.804709694], [141.341429961, 24.804659063]]]}}, {"id": "38507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148704449, 27.676594162], [142.148629442, 27.676550829], [142.148646939, 27.676611108], [142.148704449, 27.676594162]]]}}, {"id": "38508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122986394, 26.708397775], [142.123003333, 26.708310829], [142.12295083, 26.708369162], [142.122986394, 26.708397775]]]}}, {"id": "38509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232875006, 26.565426946], [142.232866939, 26.565512225], [142.23291083, 26.565511387], [142.232875006, 26.565426946]]]}}, {"id": "38510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201759559, 27.044249108], [142.201798054, 27.044313694], [142.201813191, 27.044260694], [142.201759559, 27.044249108]]]}}, {"id": "38511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122495279, 26.705710829], [142.122440558, 26.705646387], [142.122422776, 26.705679721], [142.122495279, 26.705710829]]]}}, {"id": "38512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226278885, 27.116728613], [142.226330272, 27.116664721], [142.226281388, 27.116668333], [142.226278885, 27.116728613]]]}}, {"id": "38513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237144812, 27.049561306], [142.237217588, 27.04961336], [142.237230947, 27.049591865], [142.237144812, 27.049561306]]]}}, {"id": "38514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167614137, 26.658002586], [142.167696615, 26.658075667], [142.16771786, 26.658048667], [142.167614137, 26.658002586]]]}}, {"id": "38515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132588495, 26.685912027], [142.132676226, 26.685900946], [142.13258917, 26.685868532], [142.132588495, 26.685912027]]]}}, {"id": "38516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237242918, 27.050828279], [142.237197756, 27.050773108], [142.237186978, 27.050825667], [142.237242918, 27.050828279]]]}}, {"id": "38517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187359689, 27.058764441], [142.187409689, 27.058758973], [142.187395032, 27.058729667], [142.187359689, 27.058764441]]]}}, {"id": "38518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144669728, 26.675969441], [142.14465834, 26.676055279], [142.144705279, 26.676026667], [142.144669728, 26.675969441]]]}}, {"id": "38519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122699857, 26.71036764], [142.122721751, 26.710458054], [142.122741556, 26.710377081], [142.122699857, 26.71036764]]]}}, {"id": "38520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173694254, 26.646826468], [142.173762581, 26.64685736], [142.173709611, 26.646770054], [142.173694254, 26.646826468]]]}}, {"id": "38521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129281855, 26.693622252], [142.129360804, 26.69365964], [142.12934428, 26.693619387], [142.129281855, 26.693622252]]]}}, {"id": "38522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122290441, 26.709015306], [142.122208223, 26.709005441], [142.122241336, 26.709047306], [142.122290441, 26.709015306]]]}}, {"id": "38523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125053891, 26.704258333], [142.125009728, 26.704183892], [142.124984449, 26.704232775], [142.125053891, 26.704258333]]]}}, {"id": "38524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193156939, 27.08988], [142.193100272, 27.089932495], [142.193179728, 27.089936667], [142.193156939, 27.08988]]]}}, {"id": "38525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144592166, 26.675536252], [142.144644553, 26.675572108], [142.144633671, 26.675536946], [142.144592166, 26.675536252]]]}}, {"id": "38526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230888612, 27.0808], [142.230842218, 27.080737775], [142.230816667, 27.080788054], [142.230888612, 27.0808]]]}}, {"id": "38527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184212529, 27.075004162], [142.184250973, 27.075081198], [142.184267134, 27.075035775], [142.184212529, 27.075004162]]]}}, {"id": "38528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218641946, 26.563916108], [142.218663891, 26.563852495], [142.218599728, 26.563838892], [142.218641946, 26.563916108]]]}}, {"id": "38529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122212503, 26.710046946], [142.1222, 26.709960279], [142.122169442, 26.710055829], [142.122212503, 26.710046946]]]}}, {"id": "38530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231278612, 27.069551946], [142.231203606, 27.069510559], [142.231223061, 27.069568054], [142.231278612, 27.069551946]]]}}, {"id": "38531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125956498, 26.702250559], [142.126028197, 26.702271694], [142.125967302, 26.702195667], [142.125956498, 26.702250559]]]}}, {"id": "38532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216423969, 27.040704306], [142.216354527, 27.040664333], [142.216376226, 27.040726946], [142.216423969, 27.040704306]]]}}, {"id": "38533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238082776, 26.570476108], [142.23816083, 26.570470829], [142.23809917, 26.57043], [142.238082776, 26.570476108]]]}}, {"id": "38534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207860272, 27.486536387], [142.207929442, 27.486477225], [142.207853891, 27.486468613], [142.207860272, 27.486536387]]]}}, {"id": "38535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140931699, 26.670935721], [142.140995136, 26.670972667], [142.14098572, 26.67091464], [142.140931699, 26.670935721]]]}}, {"id": "38536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145915837, 26.691585559], [142.145895837, 26.69171], [142.145910558, 26.691710279], [142.145915837, 26.691585559]]]}}, {"id": "38537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289517198, 25.445658441], [141.289449689, 25.445620387], [141.289449689, 25.445676775], [141.289517198, 25.445658441]]]}}, {"id": "38538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241067497, 27.093943333], [142.24107834, 27.094043613], [142.24110917, 27.094042775], [142.241067497, 27.093943333]]]}}, {"id": "38539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187940026, 27.071142162], [142.187892023, 27.071185748], [142.187960973, 27.071187081], [142.187940026, 27.071142162]]]}}, {"id": "38540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196612827, 27.039694495], [142.196662581, 27.039779441], [142.196689053, 27.039701973], [142.196612827, 27.039694495]]]}}, {"id": "38541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201293087, 27.04438536], [142.201260246, 27.044348946], [142.201185577, 27.044413775], [142.201293087, 27.04438536]]]}}, {"id": "38542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290349144, 25.442948162], [141.290286083, 25.442902883], [141.290318029, 25.44296455], [141.290349144, 25.442948162]]]}}, {"id": "38543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222030532, 27.093764135], [142.222081777, 27.093814694], [142.222112049, 27.093774667], [142.222030532, 27.093764135]]]}}, {"id": "38544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131427224, 26.595898613], [142.131485837, 26.595968613], [142.131483061, 26.595906108], [142.131427224, 26.595898613]]]}}, {"id": "38545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141738249, 26.667281414], [142.141802724, 26.667259532], [142.141732309, 26.667253441], [142.141738249, 26.667281414]]]}}, {"id": "38546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152457951, 26.69749136], [142.152541115, 26.69746936], [142.152619364, 26.697435333], [142.152457951, 26.69749136]]]}}, {"id": "38547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157621115, 27.662370829], [142.157696394, 27.662401667], [142.157673333, 27.662345279], [142.157621115, 27.662370829]]]}}, {"id": "38548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186975551, 27.116055829], [142.187051946, 27.116017495], [142.187005006, 27.115997225], [142.186975551, 27.116055829]]]}}, {"id": "38549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272377471, 25.433503721], [141.272360246, 25.433589829], [141.272391634, 25.433578162], [141.272377471, 25.433503721]]]}}, {"id": "38550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142720558, 26.671400279], [142.142780272, 26.671338054], [142.14276083, 26.671332225], [142.142720558, 26.671400279]]]}}, {"id": "38551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184127562, 27.055814387], [142.184146693, 27.055744333], [142.184078664, 27.055760135], [142.184127562, 27.055814387]]]}}, {"id": "38552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138813969, 26.678149802], [142.138876939, 26.678125], [142.138867328, 26.678076802], [142.138813969, 26.678149802]]]}}, {"id": "38553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221380441, 27.095736225], [142.221434306, 27.095738748], [142.221435447, 27.095710306], [142.221380441, 27.095736225]]]}}, {"id": "38554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178872776, 27.043843892], [142.178948885, 27.04384], [142.178890558, 27.043795829], [142.178872776, 27.043843892]]]}}, {"id": "38555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231151388, 27.059996946], [142.231124163, 27.059920279], [142.231095006, 27.059970559], [142.231151388, 27.059996946]]]}}, {"id": "38556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228045499, 27.082020162], [142.228131829, 27.081971748], [142.228044643, 27.081986946], [142.228045499, 27.082020162]]]}}, {"id": "38557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181430726, 26.616577892], [142.181516057, 26.616499613], [142.181411608, 26.61655364], [142.181430726, 26.616577892]]]}}, {"id": "38558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23225275, 27.07182636], [142.23231834, 27.07179864], [142.232232088, 27.071786694], [142.23225275, 27.07182636]]]}}, {"id": "38559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184324721, 27.087726946], [142.184262218, 27.087789162], [142.184331673, 27.087784721], [142.184324721, 27.087726946]]]}}, {"id": "38560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127809442, 26.695239721], [142.127748885, 26.695211108], [142.12774, 26.69526], [142.127809442, 26.695239721]]]}}, {"id": "38561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234103217, 27.075776586], [142.234061608, 27.075846865], [142.234146161, 27.075780027], [142.234103217, 27.075776586]]]}}, {"id": "38562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.243138885, 27.095487775], [142.243100272, 27.095415], [142.243089728, 27.095482775], [142.243138885, 27.095487775]]]}}, {"id": "38563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236757497, 27.083259252], [142.236688911, 27.083294748], [142.23673428, 27.083344333], [142.236757497, 27.083259252]]]}}, {"id": "38564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177192802, 26.619440532], [142.177241115, 26.619376198], [142.17713489, 26.619392027], [142.177192802, 26.619440532]]]}}, {"id": "38565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22303406, 27.093117387], [142.222983891, 27.093192306], [142.223060441, 27.093151468], [142.22303406, 27.093117387]]]}}, {"id": "38566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226931673, 27.117040279], [142.227005006, 27.117008333], [142.22694834, 27.116970829], [142.226931673, 27.117040279]]]}}, {"id": "38567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234867497, 27.09744], [142.234938054, 27.097471667], [142.234905837, 27.097400279], [142.234867497, 27.09744]]]}}, {"id": "38568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218528612, 27.097352775], [142.218452776, 27.097368613], [142.218510272, 27.0974], [142.218528612, 27.097352775]]]}}, {"id": "38569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189510584, 27.068395495], [142.189585616, 27.068404973], [142.189519663, 27.068333946], [142.189510584, 27.068395495]]]}}, {"id": "38570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166694384, 26.684651586], [142.166777691, 26.684652946], [142.166705888, 26.684613946], [142.166694384, 26.684651586]]]}}, {"id": "38571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205945279, 27.077978613], [142.205886939, 27.077906946], [142.205913333, 27.077992775], [142.205945279, 27.077978613]]]}}, {"id": "38572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147310078, 26.65018464], [142.147218911, 26.650214252], [142.14729786, 26.65021064], [142.147310078, 26.65018464]]]}}, {"id": "38573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236583191, 27.083614252], [142.236625694, 27.083681081], [142.236623969, 27.083587027], [142.236583191, 27.083614252]]]}}, {"id": "38574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224999689, 27.051344973], [142.225071089, 27.051303973], [142.225010389, 27.05130336], [142.224999689, 27.051344973]]]}}, {"id": "38575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131355577, 26.70649836], [142.131435227, 26.706556054], [142.131471699, 26.706543108], [142.131355577, 26.70649836]]]}}, {"id": "38576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231482503, 27.068022829], [142.231419144, 27.067953162], [142.231436252, 27.068032108], [142.231482503, 27.068022829]]]}}, {"id": "38577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156130558, 26.698873333], [142.156078885, 26.698940279], [142.156157224, 26.698927225], [142.156130558, 26.698873333]]]}}, {"id": "38578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230769442, 27.081046387], [142.230698054, 27.081063892], [142.230739728, 27.081099441], [142.230769442, 27.081046387]]]}}, {"id": "38579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140892503, 27.672781387], [142.14091834, 27.672845829], [142.140955279, 27.672818333], [142.140892503, 27.672781387]]]}}, {"id": "38580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185984449, 27.054405829], [142.185926394, 27.054451667], [142.185984449, 27.054482225], [142.185984449, 27.054405829]]]}}, {"id": "38581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217299053, 27.039859667], [142.217378781, 27.039854387], [142.217309105, 27.039793865], [142.217299053, 27.039859667]]]}}, {"id": "38582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183202503, 27.165249162], [142.183267224, 27.165256946], [142.183263891, 27.165209721], [142.183202503, 27.165249162]]]}}, {"id": "38583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132211829, 26.703617027], [142.132261141, 26.703594613], [142.132191673, 26.703562721], [142.132211829, 26.703617027]]]}}, {"id": "38584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192028029, 27.106379198], [142.19196834, 27.106324946], [142.191957004, 27.106363946], [142.192028029, 27.106379198]]]}}, {"id": "38585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143287756, 26.671285829], [142.143345162, 26.671331], [142.143364137, 26.671311586], [142.143287756, 26.671285829]]]}}, {"id": "38586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191820272, 27.105048892], [142.191837224, 27.105115829], [142.191888054, 27.105088333], [142.191820272, 27.105048892]]]}}, {"id": "38587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124603606, 26.704823613], [142.124626109, 26.704765829], [142.124561115, 26.704806667], [142.124603606, 26.704823613]]]}}, {"id": "38588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210284163, 27.040097225], [142.210207224, 27.040085829], [142.210238054, 27.040136387], [142.210284163, 27.040097225]]]}}, {"id": "38589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096958885, 27.718912225], [142.097031115, 27.718926387], [142.097021673, 27.718878054], [142.096958885, 27.718912225]]]}}, {"id": "38590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177895837, 26.600105829], [142.177815837, 26.600057775], [142.177881388, 26.600128054], [142.177895837, 26.600105829]]]}}, {"id": "38591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272019144, 25.429677613], [141.27201441, 25.429764829], [141.272047743, 25.42974955], [141.272019144, 25.429677613]]]}}, {"id": "38592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285740195, 24.797483117], [141.2856907, 24.797404063], [141.28569454, 24.797494], [141.285740195, 24.797483117]]]}}, {"id": "38593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229707173, 27.036955495], [142.229769468, 27.037010468], [142.229784358, 27.036943829], [142.229707173, 27.036955495]]]}}, {"id": "38594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204661946, 27.118422775], [142.204731673, 27.118428333], [142.204685006, 27.118396108], [142.204661946, 27.118422775]]]}}, {"id": "38595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186201414, 27.039813081], [142.186265914, 27.039869865], [142.186234643, 27.039795252], [142.186201414, 27.039813081]]]}}, {"id": "38596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12800856, 26.699445333], [142.128084747, 26.699476586], [142.128029689, 26.699396468], [142.12800856, 26.699445333]]]}}, {"id": "38597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233629442, 27.074869162], [142.23356917, 27.074932775], [142.233630558, 27.074904721], [142.233629442, 27.074869162]]]}}, {"id": "38598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198611388, 27.197336108], [142.198636667, 27.197277225], [142.198578612, 27.197303333], [142.198611388, 27.197336108]]]}}, {"id": "38599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100048885, 27.716955829], [142.100099728, 27.717015], [142.100099728, 27.716959441], [142.100048885, 27.716955829]]]}}, {"id": "38600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235843061, 27.109867495], [142.235926939, 27.109834441], [142.235875551, 27.109810829], [142.235843061, 27.109867495]]]}}, {"id": "38601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184875305, 27.04827336], [142.184870169, 27.04833636], [142.184966913, 27.048273775], [142.184875305, 27.04827336]]]}}, {"id": "38602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290251362, 25.444028721], [141.290303022, 25.444074279], [141.290286355, 25.444011495], [141.290251362, 25.444028721]]]}}, {"id": "38603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141280778, 26.677999775], [142.14132083, 26.677962108], [142.141288171, 26.677889198], [142.141280778, 26.677999775]]]}}, {"id": "38604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226184449, 27.116605279], [142.226178054, 27.116525], [142.226150272, 27.116558613], [142.226184449, 27.116605279]]]}}, {"id": "38605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181586939, 27.094054892], [142.181631505, 27.093985532], [142.181569248, 27.094029919], [142.181586939, 27.094054892]]]}}, {"id": "38606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231147977, 27.069646748], [142.231214838, 27.069601892], [142.231164812, 27.069589054], [142.231147977, 27.069646748]]]}}, {"id": "38607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168469416, 26.685882468], [142.168436861, 26.68595436], [142.168487665, 26.685932279], [142.168469416, 26.685882468]]]}}, {"id": "38608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235992503, 27.110083613], [142.236070272, 27.110116667], [142.236035551, 27.110053613], [142.235992503, 27.110083613]]]}}, {"id": "38609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174354384, 26.653366667], [142.174409805, 26.653424108], [142.174422283, 26.653365495], [142.174354384, 26.653366667]]]}}, {"id": "38610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233217782, 27.076330829], [142.233154721, 27.076282495], [142.233165837, 27.076365559], [142.233217782, 27.076330829]]]}}, {"id": "38611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185377224, 27.059512775], [142.185338885, 27.05944], [142.185307497, 27.059507775], [142.185377224, 27.059512775]]]}}, {"id": "38612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140705837, 26.706300279], [142.140713606, 26.706230829], [142.14066, 26.706286387], [142.140705837, 26.706300279]]]}}, {"id": "38613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194152023, 27.040713667], [142.194207639, 27.04074736], [142.194224617, 27.040708973], [142.194152023, 27.040713667]]]}}, {"id": "38614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14059703, 26.678556946], [142.140668171, 26.678562279], [142.140667198, 26.678502162], [142.14059703, 26.678556946]]]}}, {"id": "38615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23213834, 27.11451], [142.232105837, 27.114588613], [142.232131673, 27.114587495], [142.23213834, 27.11451]]]}}, {"id": "38616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193459027, 27.040099892], [142.193440973, 27.040033586], [142.193409274, 27.040072532], [142.193459027, 27.040099892]]]}}, {"id": "38617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24651083, 27.090224441], [142.24655917, 27.090273892], [142.246580272, 27.090221387], [142.24651083, 27.090224441]]]}}, {"id": "38618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181593333, 27.099763892], [142.181513606, 27.099724721], [142.181533333, 27.099771946], [142.181593333, 27.099763892]]]}}, {"id": "38619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216253359, 27.040679468], [142.216183113, 27.040672081], [142.216231193, 27.040727081], [142.216253359, 27.040679468]]]}}, {"id": "38620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230333502, 27.053883973], [142.230349053, 27.053798], [142.230308003, 27.053837613], [142.230333502, 27.053883973]]]}}, {"id": "38621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095545279, 27.718493054], [142.095617497, 27.718483333], [142.095594163, 27.718452495], [142.095545279, 27.718493054]]]}}, {"id": "38622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233795006, 27.075509441], [142.233718885, 27.075498892], [142.233742503, 27.075563054], [142.233795006, 27.075509441]]]}}, {"id": "38623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156822438, 26.630237198], [142.156767782, 26.630287802], [142.15682642, 26.630290802], [142.156822438, 26.630237198]]]}}, {"id": "38624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234417756, 27.056457054], [142.234416083, 27.056383414], [142.234390856, 27.056426865], [142.234417756, 27.056457054]]]}}, {"id": "38625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237909857, 27.087135667], [142.237816835, 27.087113081], [142.237837004, 27.08715736], [142.237909857, 27.087135667]]]}}, {"id": "38626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21703917, 27.040966108], [142.216983606, 27.040915279], [142.21698083, 27.040964162], [142.21703917, 27.040966108]]]}}, {"id": "38627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173409248, 26.597767468], [142.173466809, 26.597773468], [142.173452114, 26.597750279], [142.173409248, 26.597767468]]]}}, {"id": "38628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231146667, 27.068581667], [142.23107834, 27.068621667], [142.231130558, 27.068635], [142.231146667, 27.068581667]]]}}, {"id": "38629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186279585, 27.042344081], [142.186268612, 27.04241964], [142.186337082, 27.042379027], [142.186279585, 27.042344081]]]}}, {"id": "38630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134575966, 26.685496667], [142.134665914, 26.685495054], [142.134606472, 26.685461802], [142.134575966, 26.685496667]]]}}, {"id": "38631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186342503, 27.056987495], [142.186282503, 27.056937775], [142.186325279, 27.057001108], [142.186342503, 27.056987495]]]}}, {"id": "38632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.471233061, 24.231092225], [141.471224163, 24.231181387], [141.471261673, 24.231174162], [141.471233061, 24.231092225]]]}}, {"id": "38633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143335383, 26.664793081], [142.143314968, 26.664863694], [142.143396809, 26.664825865], [142.143335383, 26.664793081]]]}}, {"id": "38634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233385837, 27.097855559], [142.233379728, 27.097781387], [142.233350558, 27.097848613], [142.233385837, 27.097855559]]]}}, {"id": "38635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14947428, 26.663735559], [142.149532503, 26.663760225], [142.149507108, 26.663713135], [142.14947428, 26.663735559]]]}}, {"id": "38636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231962503, 27.061510829], [142.231908612, 27.061457225], [142.231915837, 27.061533613], [142.231962503, 27.061510829]]]}}, {"id": "38637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244814721, 27.095815559], [142.244878885, 27.095791946], [142.244836667, 27.095768333], [142.244814721, 27.095815559]]]}}, {"id": "38638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233536744, 27.075620198], [142.233640999, 27.07562564], [142.233645837, 27.075614054], [142.233536744, 27.075620198]]]}}, {"id": "38639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159175006, 26.700777225], [142.159101115, 26.700804441], [142.159166939, 26.700818054], [142.159175006, 26.700777225]]]}}, {"id": "38640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186336667, 27.119652225], [142.186276667, 27.119615], [142.186285006, 27.119682225], [142.186336667, 27.119652225]]]}}, {"id": "38641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248044449, 27.090776946], [142.24808917, 27.090846108], [142.248140558, 27.090815279], [142.248044449, 27.090776946]]]}}, {"id": "38642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289241077, 25.445642054], [141.289301362, 25.445710387], [141.289304695, 25.445667333], [141.289241077, 25.445642054]]]}}, {"id": "38643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150559027, 26.647830225], [142.150659948, 26.647818027], [142.150592192, 26.647769279], [142.150559027, 26.647830225]]]}}, {"id": "38644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186012218, 27.058300559], [142.18607917, 27.058301387], [142.186059442, 27.058253613], [142.186012218, 27.058300559]]]}}, {"id": "38645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177279805, 26.654216135], [142.177305136, 26.654288865], [142.177335383, 26.654221946], [142.177279805, 26.654216135]]]}}, {"id": "38646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285066641, 24.785633126], [141.285064903, 24.785729541], [141.28510262, 24.785722586], [141.285066641, 24.785633126]]]}}, {"id": "38647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136353891, 26.682342162], [142.13640869, 26.682395919], [142.136406641, 26.682340775], [142.136353891, 26.682342162]]]}}, {"id": "38648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195125914, 27.04233364], [142.194990947, 27.042274694], [142.194976446, 27.042285108], [142.195125914, 27.04233364]]]}}, {"id": "38649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231568885, 27.066047495], [142.231507224, 27.066010279], [142.231522776, 27.066074721], [142.231568885, 27.066047495]]]}}, {"id": "38650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193846939, 27.040306495], [142.193876252, 27.040353919], [142.193902049, 27.040290613], [142.193846939, 27.040306495]]]}}, {"id": "38651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288751077, 25.446380667], [141.28868275, 25.446357333], [141.288703307, 25.446410387], [141.288751077, 25.446380667]]]}}, {"id": "38652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244756667, 27.091409441], [142.244811673, 27.091351108], [142.244771388, 27.091331387], [142.244756667, 27.091409441]]]}}, {"id": "38653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141075279, 27.672470279], [142.141080272, 27.672406946], [142.141027497, 27.672444162], [142.141075279, 27.672470279]]]}}, {"id": "38654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176398054, 26.59868], [142.176418612, 26.598617225], [142.176355551, 26.59863], [142.176398054, 26.59868]]]}}, {"id": "38655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182439689, 26.611969559], [142.182526329, 26.611960694], [142.182459611, 26.611935586], [142.182439689, 26.611969559]]]}}, {"id": "38656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236810078, 27.050116946], [142.236748145, 27.050046387], [142.236780856, 27.050124054], [142.236810078, 27.050116946]]]}}, {"id": "38657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232574163, 27.114435279], [142.232618885, 27.114377775], [142.23256083, 27.114387775], [142.232574163, 27.114435279]]]}}, {"id": "38658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122943891, 26.705866946], [142.122906109, 26.705794721], [142.122887497, 26.705847495], [142.122943891, 26.705866946]]]}}, {"id": "38659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095104449, 27.718739162], [142.095174721, 27.718698613], [142.095127497, 27.718693333], [142.095104449, 27.718739162]]]}}, {"id": "38660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173717276, 26.637888775], [142.173788911, 26.637905198], [142.173777276, 26.637850694], [142.173717276, 26.637888775]]]}}, {"id": "38661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14129022, 26.70236564], [142.141332192, 26.702416054], [142.141378859, 26.702368162], [142.14129022, 26.70236564]]]}}, {"id": "38662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237197224, 27.049478892], [142.237182503, 27.049550829], [142.237235837, 27.049546667], [142.237197224, 27.049478892]]]}}, {"id": "38663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14261297, 26.708329865], [142.142547756, 26.708412252], [142.14256847, 26.708445081], [142.14261297, 26.708329865]]]}}, {"id": "38664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128212776, 26.696596721], [142.1282862, 26.696563559], [142.128250506, 26.696542198], [142.128212776, 26.696596721]]]}}, {"id": "38665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203493359, 27.090133081], [142.20356917, 27.090168162], [142.203533061, 27.090112721], [142.203493359, 27.090133081]]]}}, {"id": "38666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203256939, 27.105491667], [142.203208054, 27.105542775], [142.203276109, 27.105545279], [142.203256939, 27.105491667]]]}}, {"id": "38667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173665551, 26.645004108], [142.173594332, 26.645060162], [142.173670272, 26.645070532], [142.173665551, 26.645004108]]]}}, {"id": "38668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181758521, 27.040866054], [142.181725279, 27.04094464], [142.181776135, 27.040918748], [142.181758521, 27.040866054]]]}}, {"id": "38669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151682218, 26.696887225], [142.151615837, 26.696867775], [142.151629728, 26.696915829], [142.151682218, 26.696887225]]]}}, {"id": "38670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206876667, 27.103905559], [142.206801946, 27.103890279], [142.206850558, 27.103923613], [142.206876667, 27.103905559]]]}}, {"id": "38671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217182218, 27.04121], [142.21713834, 27.041285279], [142.217195279, 27.041261667], [142.217182218, 27.04121]]]}}, {"id": "38672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234551479, 27.056424973], [142.234664254, 27.056417829], [142.234693191, 27.056370748], [142.234551479, 27.056424973]]]}}, {"id": "38673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155158638, 26.68484636], [142.155224812, 26.684886198], [142.155254721, 26.684848694], [142.155158638, 26.68484636]]]}}, {"id": "38674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187507886, 27.059250027], [142.187561777, 27.059279468], [142.187550506, 27.059236613], [142.187507886, 27.059250027]]]}}, {"id": "38675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193766498, 27.041072721], [142.193887108, 27.041100613], [142.193756394, 27.041051892], [142.193766498, 27.041072721]]]}}, {"id": "38676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231318612, 27.061655694], [142.231373943, 27.061698387], [142.231367134, 27.061626559], [142.231318612, 27.061655694]]]}}, {"id": "38677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186082049, 27.054470775], [142.186142412, 27.054520441], [142.186192866, 27.054485892], [142.186082049, 27.054470775]]]}}, {"id": "38678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142937782, 26.66900136], [142.143000311, 26.669031802], [142.142990078, 26.668982252], [142.142937782, 26.66900136]]]}}, {"id": "38679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.471113606, 24.242253613], [141.471051115, 24.242283613], [141.471126667, 24.242316946], [141.471113606, 24.242253613]]]}}, {"id": "38680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218475837, 26.562236387], [142.218476939, 26.562161108], [142.218446939, 26.562201387], [142.218475837, 26.562236387]]]}}, {"id": "38681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203459585, 27.043716333], [142.203514838, 27.043775279], [142.203508664, 27.043716802], [142.203459585, 27.043716333]]]}}, {"id": "38682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21373083, 26.555620279], [142.213806939, 26.555656108], [142.213806939, 26.555626387], [142.21373083, 26.555620279]]]}}, {"id": "38683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20108834, 27.044423333], [142.201037224, 27.04438], [142.201011115, 27.044430559], [142.20108834, 27.044423333]]]}}, {"id": "38684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140857977, 26.678168802], [142.140794449, 26.67821564], [142.140864163, 26.678207252], [142.140857977, 26.678168802]]]}}, {"id": "38685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233731193, 27.075794532], [142.233770195, 27.075828495], [142.23383022, 27.075747892], [142.233731193, 27.075794532]]]}}, {"id": "38686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142516109, 26.587215559], [142.142593891, 26.587195829], [142.142535006, 26.587178054], [142.142516109, 26.587215559]]]}}, {"id": "38687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218683333, 27.041305829], [142.218631115, 27.041243054], [142.218646109, 27.041302495], [142.218683333, 27.041305829]]]}}, {"id": "38688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153015499, 26.708496919], [142.153045746, 26.708558081], [142.153068223, 26.708528279], [142.153015499, 26.708496919]]]}}, {"id": "38689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.272140804, 25.429030946], [141.272079974, 25.428985667], [141.272088029, 25.429025108], [141.272140804, 25.429030946]]]}}, {"id": "38690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141529611, 26.665986721], [142.141588911, 26.666028441], [142.141639754, 26.666008], [142.141529611, 26.665986721]]]}}, {"id": "38691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234746394, 27.071443892], [142.234742776, 27.071509441], [142.234779442, 27.071489162], [142.234746394, 27.071443892]]]}}, {"id": "38692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142343281, 26.671496721], [142.142397782, 26.671529973], [142.142386446, 26.671461027], [142.142343281, 26.671496721]]]}}, {"id": "38693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.095938612, 27.720580829], [142.096000272, 27.720528892], [142.095938612, 27.720534441], [142.095938612, 27.720580829]]]}}, {"id": "38694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128030272, 26.699729919], [142.128098392, 26.699720279], [142.1280462, 26.699687108], [142.128030272, 26.699729919]]]}}, {"id": "38695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.102893061, 27.71608], [142.102844163, 27.716025279], [142.102845551, 27.716098613], [142.102893061, 27.71608]]]}}, {"id": "38696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18705834, 27.087337495], [142.18701917, 27.087382495], [142.187086667, 27.087391387], [142.18705834, 27.087337495]]]}}, {"id": "38697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188263061, 27.105528333], [142.188212503, 27.105577495], [142.188266667, 27.105585829], [142.188263061, 27.105528333]]]}}, {"id": "38698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204881673, 27.085157333], [142.205048275, 27.085118748], [142.20505358, 27.085105468], [142.204881673, 27.085157333]]]}}, {"id": "38699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152218755, 26.707311198], [142.152214864, 26.707402441], [142.152282335, 26.707358162], [142.152218755, 26.707311198]]]}}, {"id": "38700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166792802, 26.659114495], [142.166815473, 26.659168081], [142.166868755, 26.659111613], [142.166792802, 26.659114495]]]}}, {"id": "38701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196015772, 27.039269946], [142.196043281, 27.03920464], [142.19599856, 27.039218333], [142.196015772, 27.039269946]]]}}, {"id": "38702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126333839, 26.701661892], [142.126321751, 26.70173564], [142.126363943, 26.701727919], [142.126333839, 26.701661892]]]}}, {"id": "38703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378803398, 24.780847541], [141.378889053, 24.780843468], [141.378796861, 24.780809685], [141.378803398, 24.780847541]]]}}, {"id": "38704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166033696, 26.680122532], [142.16598358, 26.680061586], [142.165984773, 26.680126198], [142.166033696, 26.680122532]]]}}, {"id": "38705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182649728, 27.087576946], [142.182585551, 27.087600559], [142.182624163, 27.087624162], [142.182649728, 27.087576946]]]}}, {"id": "38706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.246135279, 27.090208892], [142.246114163, 27.090289721], [142.24615, 27.090278613], [142.246135279, 27.090208892]]]}}, {"id": "38707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191634384, 27.063757532], [142.19165847, 27.063821495], [142.191686135, 27.063777495], [142.191634384, 27.063757532]]]}}, {"id": "38708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.098698885, 27.720766387], [142.098751673, 27.720710559], [142.098693333, 27.720716387], [142.098698885, 27.720766387]]]}}, {"id": "38709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140691388, 26.707435829], [142.140627497, 26.707394441], [142.140643061, 26.707446667], [142.140691388, 26.707435829]]]}}, {"id": "38710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194033995, 27.040888667], [142.194023891, 27.040814946], [142.193991699, 27.040850198], [142.194033995, 27.040888667]]]}}, {"id": "38711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186620921, 27.087667387], [142.186564812, 27.087717198], [142.186633969, 27.087704721], [142.186620921, 27.087667387]]]}}, {"id": "38712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178062218, 27.127971108], [142.178091388, 27.127916108], [142.178031946, 27.127914162], [142.178062218, 27.127971108]]]}}, {"id": "38713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218549611, 27.041355559], [142.218572944, 27.041428559], [142.218597471, 27.041390973], [142.218549611, 27.041355559]]]}}, {"id": "38714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1812638, 26.615365694], [142.181241608, 26.615290973], [142.18124061, 26.615364198], [142.1812638, 26.615365694]]]}}, {"id": "38715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189565279, 27.104717775], [142.189557782, 27.104647225], [142.189530272, 27.104694721], [142.189565279, 27.104717775]]]}}, {"id": "38716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196553969, 27.038714919], [142.1965938, 27.038780667], [142.19657847, 27.03871236], [142.196553969, 27.038714919]]]}}, {"id": "38717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181758145, 27.08784036], [142.18167869, 27.087849225], [142.181692633, 27.087879252], [142.181758145, 27.08784036]]]}}, {"id": "38718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1968938, 27.044702973], [142.196966083, 27.044749892], [142.196943891, 27.04469], [142.1968938, 27.044702973]]]}}, {"id": "38719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187835551, 27.105579441], [142.187764163, 27.105613054], [142.187832776, 27.105613054], [142.187835551, 27.105579441]]]}}, {"id": "38720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176973307, 26.655893054], [142.177013113, 26.655973802], [142.177024643, 26.655887414], [142.176973307, 26.655893054]]]}}, {"id": "38721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288853307, 25.446794], [141.288815811, 25.446734829], [141.288791077, 25.446794829], [141.288853307, 25.446794]]]}}, {"id": "38722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156057056, 26.698795081], [142.15607275, 26.698872613], [142.1560938, 26.698775559], [142.156057056, 26.698795081]]]}}, {"id": "38723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240883061, 27.047510559], [142.240822503, 27.047471946], [142.24084917, 27.047534441], [142.240883061, 27.047510559]]]}}, {"id": "38724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143352503, 26.671861108], [142.143353606, 26.671772495], [142.143312776, 26.671852225], [142.143352503, 26.671861108]]]}}, {"id": "38725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166362698, 26.679943252], [142.166319689, 26.680010279], [142.166359468, 26.680004279], [142.166362698, 26.679943252]]]}}, {"id": "38726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129023359, 26.688321252], [142.129072166, 26.688379441], [142.12909022, 26.688357586], [142.129023359, 26.688321252]]]}}, {"id": "38727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219331115, 27.495459441], [142.21931, 27.495545], [142.219348612, 27.495524162], [142.219331115, 27.495459441]]]}}, {"id": "38728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172465863, 26.643491387], [142.172529689, 26.643518667], [142.17256406, 26.643464559], [142.172465863, 26.643491387]]]}}, {"id": "38729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287857652, 24.805541009], [141.287860104, 24.805458234], [141.28782738, 24.805507189], [141.287857652, 24.805541009]]]}}, {"id": "38730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235493891, 27.085860559], [142.235436394, 27.085908892], [142.235493891, 27.085933892], [142.235493891, 27.085860559]]]}}, {"id": "38731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152248054, 26.707269162], [142.152261115, 26.707192775], [142.152212776, 26.707235829], [142.152248054, 26.707269162]]]}}, {"id": "38732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131043917, 26.704661198], [142.131113969, 26.704655162], [142.131076939, 26.704609441], [142.131043917, 26.704661198]]]}}, {"id": "38733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236519053, 27.083028973], [142.236549831, 27.08309136], [142.236596161, 27.08301936], [142.236519053, 27.083028973]]]}}, {"id": "38734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132025447, 26.702858081], [142.132066005, 26.702822667], [142.132020584, 26.70282264], [142.132025447, 26.702858081]]]}}, {"id": "38735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143278612, 26.674120279], [142.143311414, 26.674158135], [142.143352335, 26.674093027], [142.143278612, 26.674120279]]]}}, {"id": "38736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126235914, 26.702262667], [142.126294968, 26.702234279], [142.126233061, 26.702222586], [142.126235914, 26.702262667]]]}}, {"id": "38737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152529728, 26.556184162], [142.152576394, 26.556235559], [142.152591946, 26.556200829], [142.152529728, 26.556184162]]]}}, {"id": "38738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.271524695, 25.430671216], [141.271456355, 25.430723441], [141.271531634, 25.430708441], [141.271524695, 25.430671216]]]}}, {"id": "38739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131972944, 26.687309225], [142.132028054, 26.687352973], [142.132011803, 26.687292495], [142.131972944, 26.687309225]]]}}, {"id": "38740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181640558, 27.072777495], [142.181578054, 27.072768613], [142.181622218, 27.072815829], [142.181640558, 27.072777495]]]}}, {"id": "38741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172585279, 27.115851108], [142.172522218, 27.115886667], [142.172557224, 27.115913333], [142.172585279, 27.115851108]]]}}, {"id": "38742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238003022, 27.052039865], [142.237906783, 27.052090667], [142.238021388, 27.052046532], [142.238003022, 27.052039865]]]}}, {"id": "38743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218393891, 26.562074721], [142.218464721, 26.562047775], [142.218432218, 26.562019162], [142.218393891, 26.562074721]]]}}, {"id": "38744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161995863, 26.687198468], [142.162075837, 26.687197387], [142.162041699, 26.687151468], [142.161995863, 26.687198468]]]}}, {"id": "38745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191644617, 27.068003135], [142.191561245, 27.067955333], [142.191517562, 27.067984198], [142.191644617, 27.068003135]]]}}, {"id": "38746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185444721, 27.091104721], [142.185391115, 27.091075559], [142.185398612, 27.091120279], [142.185444721, 27.091104721]]]}}, {"id": "38747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196673359, 27.105703775], [142.196675668, 27.105644306], [142.196632529, 27.105651135], [142.196673359, 27.105703775]]]}}, {"id": "38748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194578833, 27.040848559], [142.194601751, 27.040915946], [142.194621894, 27.040850027], [142.194578833, 27.040848559]]]}}, {"id": "38749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223472023, 27.091694252], [142.223522477, 27.091756], [142.223536083, 27.09170264], [142.223472023, 27.091694252]]]}}, {"id": "38750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.88393035, 27.237004117], [140.883948482, 27.237077333], [140.883991764, 27.237003595], [140.88393035, 27.237004117]]]}}, {"id": "38751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231506083, 27.070577081], [142.231576252, 27.070569829], [142.231556083, 27.070519135], [142.231506083, 27.070577081]]]}}, {"id": "38752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121360506, 26.710911279], [142.121433671, 26.71091336], [142.121418223, 26.710857414], [142.121360506, 26.710911279]]]}}, {"id": "38753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201902218, 27.044034721], [142.201938612, 27.044105559], [142.201951946, 27.044053892], [142.201902218, 27.044034721]]]}}, {"id": "38754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184355279, 27.087570559], [142.184291673, 27.087631667], [142.184317497, 27.087649721], [142.184355279, 27.087570559]]]}}, {"id": "38755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241071673, 27.047024613], [142.241075279, 27.047114135], [142.241117198, 27.047061198], [142.241071673, 27.047024613]]]}}, {"id": "38756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284895499, 24.786059252], [141.284797704, 24.786073505], [141.284900324, 24.786078054], [141.284895499, 24.786059252]]]}}, {"id": "38757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225006939, 27.035523468], [142.225085422, 27.035493108], [142.224996083, 27.035486225], [142.225006939, 27.035523468]]]}}, {"id": "38758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252377782, 27.089548333], [142.252307782, 27.089568054], [142.252365279, 27.089593613], [142.252377782, 27.089548333]]]}}, {"id": "38759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234218054, 27.098044441], [142.234182776, 27.097975829], [142.234171946, 27.098047225], [142.234218054, 27.098044441]]]}}, {"id": "38760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189456278, 27.043564919], [142.189483256, 27.043485721], [142.189433774, 27.043502135], [142.189456278, 27.043564919]]]}}, {"id": "38761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205881388, 27.043934441], [142.205809442, 27.043901946], [142.205857782, 27.043949441], [142.205881388, 27.043934441]]]}}, {"id": "38762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228084773, 27.081451468], [142.228081167, 27.081310586], [142.228059831, 27.081476081], [142.228084773, 27.081451468]]]}}, {"id": "38763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.243009728, 27.092541946], [142.24300083, 27.092455829], [142.242965279, 27.092494162], [142.243009728, 27.092541946]]]}}, {"id": "38764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164420856, 26.630233306], [142.164352387, 26.630235198], [142.164385888, 26.630283802], [142.164420856, 26.630233306]]]}}, {"id": "38765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181857224, 27.096512225], [142.181803891, 27.096461667], [142.181788612, 27.096493892], [142.181857224, 27.096512225]]]}}, {"id": "38766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185741388, 27.055343892], [142.185683061, 27.055381946], [142.185743891, 27.055373613], [142.185741388, 27.055343892]]]}}, {"id": "38767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230118418, 27.081172532], [142.230079728, 27.081233135], [142.230135577, 27.081179532], [142.230118418, 27.081172532]]]}}, {"id": "38768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287798301, 25.447524829], [141.287830532, 25.447591495], [141.287861362, 25.447567883], [141.287798301, 25.447524829]]]}}, {"id": "38769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129872438, 26.691057081], [142.129949416, 26.691037135], [142.129931089, 26.691008802], [142.129872438, 26.691057081]]]}}, {"id": "38770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141273061, 27.672650279], [142.14132834, 27.672607775], [142.141273061, 27.672614441], [142.141273061, 27.672650279]]]}}, {"id": "38771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174581089, 26.651037973], [142.174625058, 26.651098027], [142.174673256, 26.651080198], [142.174581089, 26.651037973]]]}}, {"id": "38772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137449442, 26.700981108], [142.137395837, 26.700933613], [142.137387224, 26.700966667], [142.137449442, 26.700981108]]]}}, {"id": "38773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182732218, 27.087755829], [142.182660272, 27.087778054], [142.182676109, 27.087813054], [142.182732218, 27.087755829]]]}}, {"id": "38774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122018885, 26.70519], [142.121943606, 26.705186387], [142.122001673, 26.705222225], [142.122018885, 26.70519]]]}}, {"id": "38775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453517497, 24.242796946], [141.453461115, 24.242747225], [141.453461946, 24.242813613], [141.453517497, 24.242796946]]]}}, {"id": "38776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222273061, 27.094429441], [142.222198054, 27.094437495], [142.22224834, 27.09447], [142.222273061, 27.094429441]]]}}, {"id": "38777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223005227, 27.093212135], [142.223078301, 27.093254441], [142.223086498, 27.093214252], [142.223005227, 27.093212135]]]}}, {"id": "38778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.100202503, 27.716948054], [142.100221388, 27.717019162], [142.100236939, 27.716957775], [142.100202503, 27.716948054]]]}}, {"id": "38779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22297358, 27.092620081], [142.223020195, 27.092622279], [142.223003528, 27.092570946], [142.22297358, 27.092620081]]]}}, {"id": "38780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218837056, 27.037495775], [142.218804384, 27.037434559], [142.218787665, 27.03749], [142.218837056, 27.037495775]]]}}, {"id": "38781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233513333, 27.097737495], [142.233573061, 27.097718333], [142.233534721, 27.097679721], [142.233513333, 27.097737495]]]}}, {"id": "38782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142129442, 26.587415279], [142.14220083, 26.587426387], [142.142149442, 26.587373613], [142.142129442, 26.587415279]]]}}, {"id": "38783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13384917, 26.684701495], [142.133911699, 26.684741892], [142.133908145, 26.684692135], [142.13384917, 26.684701495]]]}}, {"id": "38784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284592166, 24.750994973], [141.284556874, 24.750942261], [141.28452738, 24.750982838], [141.284592166, 24.750994973]]]}}, {"id": "38785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127177419, 26.711714559], [142.12719655, 26.711765441], [142.127211284, 26.711721946], [142.127177419, 26.711714559]]]}}, {"id": "38786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191394864, 27.074642108], [142.191414747, 27.07470664], [142.191435253, 27.074678721], [142.191394864, 27.074642108]]]}}, {"id": "38787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12927, 26.693525279], [142.129208054, 26.693463333], [142.129188612, 26.693488333], [142.12927, 26.693525279]]]}}, {"id": "38788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142563191, 26.708556198], [142.142640311, 26.708585162], [142.142678859, 26.708548414], [142.142563191, 26.708556198]]]}}, {"id": "38789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194522827, 27.041278919], [142.194573917, 27.041326027], [142.194548418, 27.041260919], [142.194522827, 27.041278919]]]}}, {"id": "38790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234071894, 27.072101441], [142.23412131, 27.072161198], [142.234161167, 27.072119333], [142.234071894, 27.072101441]]]}}, {"id": "38791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152410311, 26.707908892], [142.152492503, 26.70789236], [142.152411777, 26.707882802], [142.152410311, 26.707908892]]]}}, {"id": "38792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147300558, 26.691955279], [142.147251946, 26.691914441], [142.14726917, 26.691976108], [142.147300558, 26.691955279]]]}}, {"id": "38793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186093606, 27.057943892], [142.186073891, 27.057847775], [142.186065551, 27.057949721], [142.186093606, 27.057943892]]]}}, {"id": "38794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125911388, 26.701865559], [142.125867497, 26.701790829], [142.125853333, 26.701798333], [142.125911388, 26.701865559]]]}}, {"id": "38795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18221192, 26.659762162], [142.182215525, 26.659696613], [142.182176135, 26.659746306], [142.18221192, 26.659762162]]]}}, {"id": "38796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122549948, 26.705722865], [142.122598833, 26.705768225], [142.122617198, 26.705734973], [142.122549948, 26.705722865]]]}}, {"id": "38797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184415006, 27.056199441], [142.18436, 27.056257225], [142.184420272, 27.056252495], [142.184415006, 27.056199441]]]}}, {"id": "38798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140371284, 26.678412279], [142.140318859, 26.678363694], [142.140307445, 26.678381748], [142.140371284, 26.678412279]]]}}, {"id": "38799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232734942, 27.071807694], [142.232714942, 27.071891135], [142.232751894, 27.071813441], [142.232734942, 27.071807694]]]}}, {"id": "38800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17254083, 27.030057225], [142.172543891, 27.029980829], [142.172490272, 27.030014721], [142.17254083, 27.030057225]]]}}, {"id": "38801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174705279, 26.650862252], [142.174719728, 26.650926054], [142.174759079, 26.650916613], [142.174705279, 26.650862252]]]}}, {"id": "38802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189366744, 27.054544919], [142.189449637, 27.054498225], [142.189428716, 27.054474802], [142.189366744, 27.054544919]]]}}, {"id": "38803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185333891, 27.047905829], [142.18531917, 27.047975829], [142.185361388, 27.047948613], [142.185333891, 27.047905829]]]}}, {"id": "38804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230861582, 27.060064306], [142.230815525, 27.060119162], [142.230866083, 27.060104198], [142.230861582, 27.060064306]]]}}, {"id": "38805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195572944, 27.038887333], [142.195627951, 27.038928667], [142.195628586, 27.03889636], [142.195572944, 27.038887333]]]}}, {"id": "38806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181291971, 26.616095441], [142.181347562, 26.61605664], [142.181285383, 26.616057721], [142.181291971, 26.616095441]]]}}, {"id": "38807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161776693, 26.700433279], [142.161804695, 26.700472333], [142.161850311, 26.700405306], [142.161776693, 26.700433279]]]}}, {"id": "38808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284792088, 24.787260225], [141.28486166, 24.787302631], [141.284859429, 24.787277973], [141.284792088, 24.787260225]]]}}, {"id": "38809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186905357, 26.655166919], [142.186837004, 26.655191198], [142.186922088, 26.655202559], [142.186905357, 26.655166919]]]}}, {"id": "38810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194781388, 27.040417775], [142.19471, 27.040421108], [142.194780272, 27.040465829], [142.194781388, 27.040417775]]]}}, {"id": "38811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144753165, 26.676032081], [142.144798444, 26.676093495], [142.144809196, 26.676083468], [142.144753165, 26.676032081]]]}}, {"id": "38812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146815058, 26.690133973], [142.146903502, 26.690131081], [142.146829611, 26.690107414], [142.146815058, 26.690133973]]]}}, {"id": "38813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168580532, 26.658135027], [142.168639611, 26.658212829], [142.168677782, 26.658200892], [142.168580532, 26.658135027]]]}}, {"id": "38814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217924721, 27.041311108], [142.21789834, 27.041245559], [142.217877497, 27.041296108], [142.217924721, 27.041311108]]]}}, {"id": "38815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187669611, 27.061451387], [142.187708521, 27.061506027], [142.187737134, 27.061432865], [142.187669611, 27.061451387]]]}}, {"id": "38816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184715811, 27.070728198], [142.1847907, 27.070765441], [142.184782049, 27.070729441], [142.184715811, 27.070728198]]]}}, {"id": "38817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285991414, 24.789499622], [141.285918833, 24.789464063], [141.285934942, 24.789501333], [141.285991414, 24.789499622]]]}}, {"id": "38818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196658781, 27.039510135], [142.19672061, 27.039484775], [142.196653943, 27.039459775], [142.196658781, 27.039510135]]]}}, {"id": "38819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.454135837, 24.239734162], [141.45414834, 24.239662495], [141.454111115, 24.239714441], [141.454135837, 24.239734162]]]}}, {"id": "38820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157741777, 26.686327333], [142.157809585, 26.686322387], [142.15777275, 26.686277829], [142.157741777, 26.686327333]]]}}, {"id": "38821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224362581, 27.090480306], [142.224426031, 27.090448252], [142.224396304, 27.090405252], [142.224362581, 27.090480306]]]}}, {"id": "38822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190969442, 27.042125279], [142.190914721, 27.042100279], [142.190905551, 27.042145], [142.190969442, 27.042125279]]]}}, {"id": "38823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168033645, 26.631711495], [142.167977419, 26.631726441], [142.168080117, 26.631758559], [142.168033645, 26.631711495]]]}}, {"id": "38824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165351025, 26.679754414], [142.165308807, 26.679808892], [142.165362438, 26.679808387], [142.165351025, 26.679754414]]]}}, {"id": "38825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147256394, 26.690328333], [142.147212218, 26.690274721], [142.147200558, 26.690320279], [142.147256394, 26.690328333]]]}}, {"id": "38826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164954137, 26.660415441], [142.165024034, 26.660378973], [142.164923722, 26.660359054], [142.164954137, 26.660415441]]]}}, {"id": "38827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196703061, 27.039593333], [142.19669834, 27.039663892], [142.196725279, 27.039666667], [142.196703061, 27.039593333]]]}}, {"id": "38828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167955357, 26.658332252], [142.168002503, 26.658413721], [142.168041362, 26.658397973], [142.167955357, 26.658332252]]]}}, {"id": "38829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228459728, 27.115054162], [142.228514163, 27.114990829], [142.22849917, 27.114976946], [142.228459728, 27.115054162]]]}}, {"id": "38830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235676939, 27.084025], [142.23559834, 27.084058892], [142.235645837, 27.084076108], [142.235676939, 27.084025]]]}}, {"id": "38831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196206005, 27.039397586], [142.196257951, 27.039419694], [142.196242335, 27.039359973], [142.196206005, 27.039397586]]]}}, {"id": "38832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191767717, 27.074873748], [142.191704449, 27.074908054], [142.191762944, 27.074921054], [142.191767717, 27.074873748]]]}}, {"id": "38833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216476083, 27.100601946], [142.216553359, 27.100618802], [142.216548949, 27.100580081], [142.216476083, 27.100601946]]]}}, {"id": "38834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165202633, 26.679214108], [142.165262283, 26.679256802], [142.165262192, 26.679197775], [142.165202633, 26.679214108]]]}}, {"id": "38835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141426109, 27.672650279], [142.141426109, 27.672581667], [142.141382218, 27.672621946], [142.141426109, 27.672650279]]]}}, {"id": "38836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191654669, 27.074740135], [142.191591388, 27.07477436], [142.191649922, 27.07478736], [142.191654669, 27.074740135]]]}}, {"id": "38837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231180441, 27.061487775], [142.231124306, 27.061448973], [142.231146615, 27.061509135], [142.231180441, 27.061487775]]]}}, {"id": "38838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147542387, 26.690143694], [142.147607977, 26.690180892], [142.147599974, 26.690138667], [142.147542387, 26.690143694]]]}}, {"id": "38839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231796109, 27.062010279], [142.231781388, 27.061936387], [142.231758885, 27.061978892], [142.231796109, 27.062010279]]]}}, {"id": "38840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207418366, 27.041841027], [142.207473671, 27.041877495], [142.207471167, 27.041832108], [142.207418366, 27.041841027]]]}}, {"id": "38841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18886786, 27.068287054], [142.188931777, 27.068329054], [142.188957912, 27.068293279], [142.18886786, 27.068287054]]]}}, {"id": "38842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453114449, 24.241910279], [141.453058885, 24.241877775], [141.45306834, 24.241907495], [141.453114449, 24.241910279]]]}}, {"id": "38843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234905837, 27.097228892], [142.234876667, 27.097290279], [142.234938054, 27.0973], [142.234905837, 27.097228892]]]}}, {"id": "38844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140658054, 27.672582775], [142.140721946, 27.672613333], [142.140692503, 27.672559721], [142.140658054, 27.672582775]]]}}, {"id": "38845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149121829, 26.662939252], [142.149171997, 26.66295664], [142.149176252, 26.662910054], [142.149121829, 26.662939252]]]}}, {"id": "38846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165138392, 26.679045559], [142.1650693, 26.679078495], [142.165132529, 26.679091973], [142.165138392, 26.679045559]]]}}, {"id": "38847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225010804, 27.088324198], [142.2249793, 27.088258829], [142.224961634, 27.088290721], [142.225010804, 27.088324198]]]}}, {"id": "38848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230908885, 27.059995829], [142.230862503, 27.059942775], [142.230836109, 27.059989162], [142.230908885, 27.059995829]]]}}, {"id": "38849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18178917, 27.093518333], [142.181761556, 27.093582892], [142.181803256, 27.093555946], [142.18178917, 27.093518333]]]}}, {"id": "38850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222528054, 27.093228946], [142.222522827, 27.093292495], [142.222602283, 27.093229721], [142.222528054, 27.093228946]]]}}, {"id": "38851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171031505, 26.65791636], [142.171099494, 26.657902279], [142.171063281, 26.657878495], [142.171031505, 26.65791636]]]}}, {"id": "38852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182507224, 27.087766667], [142.182435006, 27.087783054], [142.182477497, 27.087806667], [142.182507224, 27.087766667]]]}}, {"id": "38853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189713087, 27.042716495], [142.189767639, 27.042671586], [142.18971131, 27.04267264], [142.189713087, 27.042716495]]]}}, {"id": "38854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22981725, 27.037007586], [142.229922283, 27.037063], [142.229832802, 27.036980387], [142.22981725, 27.037007586]]]}}, {"id": "38855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285306757, 24.785548054], [141.285243152, 24.78549864], [141.285305149, 24.78556818], [141.285306757, 24.785548054]]]}}, {"id": "38856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126848301, 26.712401667], [142.126866446, 26.712449829], [142.126878586, 26.712407225], [142.126848301, 26.712401667]]]}}, {"id": "38857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193714812, 27.041023135], [142.193688781, 27.040951892], [142.193652918, 27.040965829], [142.193714812, 27.041023135]]]}}, {"id": "38858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149018054, 26.663250829], [142.14900834, 26.663186108], [142.148973333, 26.663243333], [142.149018054, 26.663250829]]]}}, {"id": "38859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133912218, 26.685067775], [142.13393834, 26.684998613], [142.133893061, 26.685027775], [142.133912218, 26.685067775]]]}}, {"id": "38860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202683554, 27.098059946], [142.20279642, 27.098289667], [142.202812244, 27.098282135], [142.202683554, 27.098059946]]]}}, {"id": "38861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237344449, 27.051212252], [142.237229754, 27.051221081], [142.23723061, 27.051257279], [142.237344449, 27.051212252]]]}}, {"id": "38862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175050467, 26.598213081], [142.175029248, 26.598136468], [142.175002387, 26.598161694], [142.175050467, 26.598213081]]]}}, {"id": "38863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287415746, 24.807165144], [141.287377873, 24.807214261], [141.287417652, 24.807247045], [141.287415746, 24.807165144]]]}}, {"id": "38864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140891388, 27.67261], [142.140893891, 27.672541108], [142.140854449, 27.672563054], [142.140891388, 27.67261]]]}}, {"id": "38865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149337497, 26.6942], [142.149298054, 26.694133054], [142.149303606, 26.694208613], [142.149337497, 26.6942]]]}}, {"id": "38866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.271819416, 25.429064], [141.271747743, 25.429035108], [141.271767471, 25.429072613], [141.271819416, 25.429064]]]}}, {"id": "38867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192296394, 27.105959441], [142.192273891, 27.106018333], [142.192305551, 27.106004162], [142.192296394, 27.105959441]]]}}, {"id": "38868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231234812, 27.066610081], [142.231297886, 27.066542559], [142.231291699, 27.066524414], [142.231234812, 27.066610081]]]}}, {"id": "38869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12589083, 26.700938333], [142.125827782, 26.70099], [142.12589, 26.700994162], [142.12589083, 26.700938333]]]}}, {"id": "38870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.200118612, 27.104959162], [142.200119728, 27.10501], [142.200178612, 27.104992225], [142.200118612, 27.104959162]]]}}, {"id": "38871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237496329, 27.051197802], [142.237440584, 27.05114764], [142.237459053, 27.051212495], [142.237496329, 27.051197802]]]}}, {"id": "38872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129487497, 26.690889162], [142.129504163, 26.690821946], [142.129469728, 26.690820279], [142.129487497, 26.690889162]]]}}, {"id": "38873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166713022, 26.683372081], [142.166766835, 26.683407694], [142.166745642, 26.68334164], [142.166713022, 26.683372081]]]}}, {"id": "38874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141014163, 27.672568333], [142.140972218, 27.672512775], [142.140956394, 27.672546667], [142.141014163, 27.672568333]]]}}, {"id": "38875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162810389, 26.668668027], [142.162814137, 26.668616387], [142.162776783, 26.668643694], [142.162810389, 26.668668027]]]}}, {"id": "38876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232004449, 27.06442], [142.23195917, 27.064461667], [142.232005837, 27.064474162], [142.232004449, 27.06442]]]}}, {"id": "38877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181764942, 26.619886252], [142.181760195, 26.619810162], [142.181730272, 26.619876919], [142.181764942, 26.619886252]]]}}, {"id": "38878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146732049, 26.688249198], [142.146797302, 26.688275027], [142.146807912, 26.688249919], [142.146732049, 26.688249198]]]}}, {"id": "38879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171992776, 27.042660829], [142.172062218, 27.042642495], [142.172010558, 27.042610559], [142.171992776, 27.042660829]]]}}, {"id": "38880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216772218, 27.041395135], [142.216842309, 27.041462], [142.216803022, 27.041373414], [142.216772218, 27.041395135]]]}}, {"id": "38881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153593022, 26.698192667], [142.153670947, 26.698200802], [142.153605357, 26.698160532], [142.153593022, 26.698192667]]]}}, {"id": "38882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192474747, 27.041873802], [142.192506083, 27.041930081], [142.192500752, 27.041872333], [142.192474747, 27.041873802]]]}}, {"id": "38883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.242456939, 27.093142775], [142.24252917, 27.09312], [142.242474163, 27.093104721], [142.242456939, 27.093142775]]]}}, {"id": "38884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18191083, 27.087801387], [142.181952503, 27.087880279], [142.181966939, 27.087838613], [142.18191083, 27.087801387]]]}}, {"id": "38885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184983061, 27.086213892], [142.184918885, 27.086187495], [142.184957497, 27.086226946], [142.184983061, 27.086213892]]]}}, {"id": "38886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223412503, 27.124524721], [142.223431388, 27.124458333], [142.223376109, 27.124489721], [142.223412503, 27.124524721]]]}}, {"id": "38887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141041115, 27.672785829], [142.141098612, 27.672738892], [142.141032503, 27.672751946], [142.141041115, 27.672785829]]]}}, {"id": "38888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187510272, 27.087291667], [142.187442503, 27.087316108], [142.187467224, 27.087332495], [142.187510272, 27.087291667]]]}}, {"id": "38889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238221997, 27.048412135], [142.238191673, 27.048472027], [142.238246057, 27.048444495], [142.238221997, 27.048412135]]]}}, {"id": "38890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221922607, 27.094522225], [142.221949105, 27.094560081], [142.221995694, 27.094508559], [142.221922607, 27.094522225]]]}}, {"id": "38891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197118885, 27.038913333], [142.197076109, 27.038957225], [142.197134721, 27.038957225], [142.197118885, 27.038913333]]]}}, {"id": "38892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167513839, 26.65831564], [142.167490078, 26.658362333], [142.167515227, 26.658375559], [142.167513839, 26.65831564]]]}}, {"id": "38893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149671115, 27.670216946], [142.149724163, 27.670264721], [142.149712776, 27.670218054], [142.149671115, 27.670216946]]]}}, {"id": "38894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182206667, 27.127193892], [142.182150558, 27.127139162], [142.182158885, 27.127192225], [142.182206667, 27.127193892]]]}}, {"id": "38895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20610917, 27.077771667], [142.206035279, 27.077781108], [142.206092503, 27.077808333], [142.20610917, 27.077771667]]]}}, {"id": "38896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187181894, 27.060605586], [142.187164669, 27.060683865], [142.187220195, 27.060666198], [142.187181894, 27.060605586]]]}}, {"id": "38897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186886667, 27.060823892], [142.186835279, 27.060791667], [142.186856667, 27.060846667], [142.186886667, 27.060823892]]]}}, {"id": "38898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129895162, 26.691865081], [142.129970778, 26.691890027], [142.129911725, 26.691825721], [142.129895162, 26.691865081]]]}}, {"id": "38899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231578054, 27.081195829], [142.231526394, 27.081246667], [142.231566109, 27.081266387], [142.231578054, 27.081195829]]]}}, {"id": "38900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129985616, 26.688770802], [142.129961855, 26.688823613], [142.1299993, 26.688780721], [142.129985616, 26.688770802]]]}}, {"id": "38901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143545888, 26.671955586], [142.143605668, 26.671952279], [142.143564695, 26.67189564], [142.143545888, 26.671955586]]]}}, {"id": "38902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130023722, 26.707469198], [142.130031634, 26.707540414], [142.130062412, 26.707470054], [142.130023722, 26.707469198]]]}}, {"id": "38903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284934527, 24.785910207], [141.284982361, 24.785845072], [141.284965564, 24.785825306], [141.284934527, 24.785910207]]]}}, {"id": "38904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231720195, 27.061630748], [142.23168917, 27.06169264], [142.231726809, 27.061699802], [142.231720195, 27.061630748]]]}}, {"id": "38905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187665694, 27.059814919], [142.187627082, 27.059755748], [142.187611855, 27.059822829], [142.187665694, 27.059814919]]]}}, {"id": "38906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143965914, 26.657841027], [142.144019053, 26.657843865], [142.144046719, 26.657801586], [142.143965914, 26.657841027]]]}}, {"id": "38907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165894254, 26.659988108], [142.165941505, 26.660024], [142.165918197, 26.659954775], [142.165894254, 26.659988108]]]}}, {"id": "38908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183360558, 27.164749162], [142.183415006, 27.164723892], [142.183365837, 27.164702225], [142.183360558, 27.164749162]]]}}, {"id": "38909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184161388, 26.65985064], [142.184209585, 26.65982936], [142.184158392, 26.659801441], [142.184161388, 26.65985064]]]}}, {"id": "38910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145807782, 26.691266387], [142.145777224, 26.691213613], [142.145755837, 26.691280829], [142.145807782, 26.691266387]]]}}, {"id": "38911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229648612, 27.08202], [142.22959834, 27.082065279], [142.229644449, 27.082080279], [142.229648612, 27.08202]]]}}, {"id": "38912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121322218, 26.710832225], [142.121375837, 26.710858333], [142.12138083, 26.710824721], [142.121322218, 26.710832225]]]}}, {"id": "38913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167027224, 27.114765], [142.167076394, 27.114814721], [142.167082218, 27.114787775], [142.167027224, 27.114765]]]}}, {"id": "38914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285791388, 24.789475369], [141.285778054, 24.789421045], [141.285731958, 24.789491333], [141.285791388, 24.789475369]]]}}, {"id": "38915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248623606, 27.091206667], [142.248678885, 27.091176387], [142.248635279, 27.091176946], [142.248623606, 27.091206667]]]}}, {"id": "38916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149634358, 26.694324892], [142.149700467, 26.694308225], [142.1496462, 26.694295468], [142.149634358, 26.694324892]]]}}, {"id": "38917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184547782, 27.117851108], [142.18461, 27.117803613], [142.18456834, 27.117804162], [142.184547782, 27.117851108]]]}}, {"id": "38918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164189728, 27.115568333], [142.164185837, 27.115642775], [142.164233891, 27.115626387], [142.164189728, 27.115568333]]]}}, {"id": "38919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122616744, 26.712178468], [142.122683281, 26.712165586], [142.122661829, 26.712117495], [142.122616744, 26.712178468]]]}}, {"id": "38920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204882503, 27.118499441], [142.204863891, 27.118438613], [142.204843606, 27.118494721], [142.204882503, 27.118499441]]]}}, {"id": "38921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183075006, 27.092863613], [142.183033891, 27.092823892], [142.183032218, 27.092877225], [142.183075006, 27.092863613]]]}}, {"id": "38922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185325279, 27.144598613], [142.185398612, 27.144573333], [142.185346109, 27.144555559], [142.185325279, 27.144598613]]]}}, {"id": "38923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138842503, 26.699749721], [142.138762776, 26.699732495], [142.138760272, 26.699763892], [142.138842503, 26.699749721]]]}}, {"id": "38924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17452511, 26.648907108], [142.174590804, 26.648921667], [142.174552166, 26.648870892], [142.17452511, 26.648907108]]]}}, {"id": "38925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146219494, 26.653038532], [142.146172166, 26.65309264], [142.146234034, 26.653078414], [142.146219494, 26.653038532]]]}}, {"id": "38926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189168275, 27.054508559], [142.189216135, 27.054551162], [142.189215473, 27.054508027], [142.189168275, 27.054508559]]]}}, {"id": "38927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167420026, 26.65806364], [142.167452438, 26.658113252], [142.167469559, 26.658066027], [142.167420026, 26.65806364]]]}}, {"id": "38928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183896524, 26.654806721], [142.183851025, 26.654750162], [142.183862724, 26.654832108], [142.183896524, 26.654806721]]]}}, {"id": "38929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181174112, 26.616113081], [142.181249494, 26.616097748], [142.181240532, 26.616072306], [142.181174112, 26.616113081]]]}}, {"id": "38930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183996005, 27.070465027], [142.184054643, 27.070493306], [142.184049079, 27.070436441], [142.183996005, 27.070465027]]]}}, {"id": "38931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163305837, 26.675552721], [142.163375357, 26.675538802], [142.163282892, 26.675522135], [142.163305837, 26.675552721]]]}}, {"id": "38932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126865136, 26.712166333], [142.12681, 26.712120441], [142.126810661, 26.712170973], [142.126865136, 26.712166333]]]}}, {"id": "38933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287525162, 24.804600495], [141.287563165, 24.804543441], [141.28754668, 24.804536856], [141.287525162, 24.804600495]]]}}, {"id": "38934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140366887, 26.678518441], [142.140328521, 26.678468306], [142.140314916, 26.678506946], [142.140366887, 26.678518441]]]}}, {"id": "38935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218635694, 27.041355613], [142.218650921, 27.041413162], [142.218713256, 27.041373198], [142.218635694, 27.041355613]]]}}, {"id": "38936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23139275, 27.070955279], [142.231444332, 27.070995441], [142.23140856, 27.070945775], [142.23139275, 27.070955279]]]}}, {"id": "38937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201874163, 27.044224441], [142.201796394, 27.044217225], [142.20183917, 27.044254441], [142.201874163, 27.044224441]]]}}, {"id": "38938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169102218, 27.043952495], [142.16916834, 27.043953054], [142.169125006, 27.043909162], [142.169102218, 27.043952495]]]}}, {"id": "38939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236982581, 27.049647586], [142.236977173, 27.049708441], [142.237035305, 27.049648775], [142.236982581, 27.049647586]]]}}, {"id": "38940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167393865, 26.658359829], [142.167450026, 26.658372667], [142.167420143, 26.658335694], [142.167393865, 26.658359829]]]}}, {"id": "38941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158847665, 26.686602027], [142.158915863, 26.686585532], [142.158854254, 26.686560495], [142.158847665, 26.686602027]]]}}, {"id": "38942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.145610999, 26.658626802], [142.145637808, 26.658681027], [142.145652335, 26.658651306], [142.145610999, 26.658626802]]]}}, {"id": "38943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170378029, 26.658262946], [142.170444228, 26.658319198], [142.170394864, 26.658224198], [142.170378029, 26.658262946]]]}}, {"id": "38944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218952503, 26.564067775], [142.218905006, 26.564012775], [142.218898054, 26.564059162], [142.218952503, 26.564067775]]]}}, {"id": "38945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226925006, 27.117631667], [142.226952218, 27.117568613], [142.226935006, 27.117569162], [142.226925006, 27.117631667]]]}}, {"id": "38946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172085357, 26.656876081], [142.17213275, 26.656927279], [142.172112944, 26.656849414], [142.172085357, 26.656876081]]]}}, {"id": "38947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19378834, 27.040920829], [142.193738054, 27.040952775], [142.193808885, 27.040961667], [142.19378834, 27.040920829]]]}}, {"id": "38948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125227912, 26.703727081], [142.12529061, 26.703707802], [142.125267665, 26.703678667], [142.125227912, 26.703727081]]]}}, {"id": "38949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127148106, 26.700996721], [142.127224189, 26.700993586], [142.127160558, 26.700964225], [142.127148106, 26.700996721]]]}}, {"id": "38950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12834725, 26.696976802], [142.128282918, 26.696957559], [142.128278145, 26.69699436], [142.12834725, 26.696976802]]]}}, {"id": "38951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155555837, 26.698723054], [142.15551, 26.698766387], [142.155571388, 26.698766387], [142.155555837, 26.698723054]]]}}, {"id": "38952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230751388, 27.080645], [142.23070083, 27.080696108], [142.230747497, 27.080678333], [142.230751388, 27.080645]]]}}, {"id": "38953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181370558, 27.092323054], [142.181307224, 27.092348892], [142.181367224, 27.092369721], [142.181370558, 27.092323054]]]}}, {"id": "38954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187815694, 27.044434135], [142.187866939, 27.044458], [142.187920169, 27.044403946], [142.187815694, 27.044434135]]]}}, {"id": "38955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123176394, 26.705413054], [142.123142503, 26.705347225], [142.123120272, 26.705372225], [142.123176394, 26.705413054]]]}}, {"id": "38956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188495422, 27.049220775], [142.188489001, 27.049292081], [142.188510441, 27.049283306], [142.188495422, 27.049220775]]]}}, {"id": "38957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185107912, 27.048380198], [142.185139364, 27.048437468], [142.185142503, 27.048379252], [142.185107912, 27.048380198]]]}}, {"id": "38958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235732218, 27.096850559], [142.235774163, 27.096766667], [142.235723606, 27.096791108], [142.235732218, 27.096850559]]]}}, {"id": "38959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230493333, 27.059555279], [142.230434721, 27.059568892], [142.230444721, 27.059596387], [142.230493333, 27.059555279]]]}}, {"id": "38960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234833606, 27.097401667], [142.234767782, 27.097374162], [142.234772218, 27.097411108], [142.234833606, 27.097401667]]]}}, {"id": "38961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165072866, 26.679038694], [142.165075694, 26.678971973], [142.165029922, 26.679003441], [142.165072866, 26.679038694]]]}}, {"id": "38962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162296031, 26.667429135], [142.162265136, 26.667383387], [142.162213256, 26.667420279], [142.162296031, 26.667429135]]]}}, {"id": "38963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182485577, 27.092135946], [142.18243834, 27.092221586], [142.182506472, 27.092142054], [142.182485577, 27.092135946]]]}}, {"id": "38964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165307808, 26.679541198], [142.1652893, 26.679606468], [142.165338003, 26.679575441], [142.165307808, 26.679541198]]]}}, {"id": "38965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20538275, 27.085446775], [142.205444812, 27.085476748], [142.205427276, 27.085433], [142.20538275, 27.085446775]]]}}, {"id": "38966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138821115, 26.707099441], [142.138772218, 26.707150279], [142.138809728, 26.707157225], [142.138821115, 26.707099441]]]}}, {"id": "38967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142800143, 26.70836036], [142.142821362, 26.708302559], [142.14278153, 26.708347748], [142.142800143, 26.70836036]]]}}, {"id": "38968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194132218, 27.040335829], [142.194067224, 27.040350279], [142.194114163, 27.040400829], [142.194132218, 27.040335829]]]}}, {"id": "38969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248957497, 27.091343892], [142.248921673, 27.091289441], [142.248911946, 27.091316946], [142.248957497, 27.091343892]]]}}, {"id": "38970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17437856, 26.653611532], [142.174439585, 26.653641694], [142.174424838, 26.65358836], [142.17437856, 26.653611532]]]}}, {"id": "38971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34134166, 24.804053333], [141.341365045, 24.804122414], [141.341377497, 24.804048252], [141.34134166, 24.804053333]]]}}, {"id": "38972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191509196, 27.041688829], [142.191525525, 27.041756414], [142.191548392, 27.041743306], [142.191509196, 27.041688829]]]}}, {"id": "38973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172181725, 26.643641387], [142.1722307, 26.643671865], [142.172232244, 26.64363736], [142.172181725, 26.643641387]]]}}, {"id": "38974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225290752, 27.05383436], [142.225285888, 27.053769198], [142.225237108, 27.053771892], [142.225290752, 27.05383436]]]}}, {"id": "38975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152872218, 26.641614162], [142.152819442, 26.641571387], [142.152824449, 26.641631108], [142.152872218, 26.641614162]]]}}, {"id": "38976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203954306, 27.084791694], [142.20399131, 27.084733613], [142.203906278, 27.084772279], [142.203954306, 27.084791694]]]}}, {"id": "38977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181464721, 27.095324721], [142.181402218, 27.095302225], [142.181406939, 27.095339162], [142.181464721, 27.095324721]]]}}, {"id": "38978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180534643, 26.626094694], [142.180589857, 26.626089946], [142.180577834, 26.626027027], [142.180534643, 26.626094694]]]}}, {"id": "38979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185477224, 27.090930279], [142.185447224, 27.090876108], [142.185425551, 27.090920559], [142.185477224, 27.090930279]]]}}, {"id": "38980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233936861, 27.072426865], [142.233957134, 27.072487946], [142.233980636, 27.072434198], [142.233936861, 27.072426865]]]}}, {"id": "38981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231081946, 27.059393613], [142.231022503, 27.059388892], [142.231040272, 27.059446946], [142.231081946, 27.059393613]]]}}, {"id": "38982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232814449, 27.114617775], [142.232757782, 27.114590829], [142.232775837, 27.114625279], [142.232814449, 27.114617775]]]}}, {"id": "38983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128209196, 26.697432108], [142.128149637, 26.697480559], [142.128226589, 26.697443919], [142.128209196, 26.697432108]]]}}, {"id": "38984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218750246, 27.101216054], [142.218816472, 27.101146081], [142.218722309, 27.101218], [142.218750246, 27.101216054]]]}}, {"id": "38985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149135577, 26.649167162], [142.149204189, 26.649172802], [142.149137717, 26.649111468], [142.149135577, 26.649167162]]]}}, {"id": "38986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166762866, 26.682394027], [142.166731115, 26.682330252], [142.16672214, 26.68237864], [142.166762866, 26.682394027]]]}}, {"id": "38987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.215304163, 27.100421946], [142.21523834, 27.100384441], [142.215243333, 27.100416387], [142.215304163, 27.100421946]]]}}, {"id": "38988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187652477, 27.059570973], [142.187710363, 27.059517], [142.187699689, 27.059473613], [142.187652477, 27.059570973]]]}}, {"id": "38989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181135837, 27.096529441], [142.181083606, 27.096594162], [142.181143333, 27.096551667], [142.181135837, 27.096529441]]]}}, {"id": "38990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191013385, 27.042361748], [142.191065837, 27.042379108], [142.191068755, 27.042304198], [142.191013385, 27.042361748]]]}}, {"id": "38991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186019442, 27.144501667], [142.186040272, 27.144437495], [142.185982776, 27.144456108], [142.186019442, 27.144501667]]]}}, {"id": "38992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130504501, 26.689350721], [142.130430921, 26.689426135], [142.130534137, 26.689355919], [142.130504501, 26.689350721]]]}}, {"id": "38993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123787523, 26.703221333], [142.123718664, 26.703207946], [142.123733865, 26.703239441], [142.123787523, 26.703221333]]]}}, {"id": "38994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148650947, 26.650974108], [142.148721751, 26.650969721], [142.148662944, 26.650931135], [142.148650947, 26.650974108]]]}}, {"id": "38995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193080558, 27.040711721], [142.193141025, 27.040699721], [142.19313192, 27.040679252], [142.193080558, 27.040711721]]]}}, {"id": "38996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131665811, 26.706229198], [142.131752672, 26.706240108], [142.131670415, 26.706206252], [142.131665811, 26.706229198]]]}}, {"id": "38997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.211528949, 27.038586892], [142.211589585, 27.038571919], [142.211525551, 27.038550694], [142.211528949, 27.038586892]]]}}, {"id": "38998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16537358, 26.679869387], [142.16543345, 26.679910387], [142.165420506, 26.679860586], [142.16537358, 26.679869387]]]}}, {"id": "38999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207063333, 27.042505], [142.207068612, 27.042458613], [142.207026939, 27.042489162], [142.207063333, 27.042505]]]}}, {"id": "39000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203164449, 27.043505829], [142.203153333, 27.043561946], [142.203206109, 27.043541946], [142.203164449, 27.043505829]]]}}, {"id": "39001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231470558, 27.065551135], [142.231514553, 27.065520667], [142.231498106, 27.065468775], [142.231470558, 27.065551135]]]}}, {"id": "39002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185513891, 27.104748613], [142.185471673, 27.104809441], [142.185521946, 27.104778892], [142.185513891, 27.104748613]]]}}, {"id": "39003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180035551, 26.656038252], [142.18005834, 26.656090829], [142.180084838, 26.656072108], [142.180035551, 26.656038252]]]}}, {"id": "39004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150213061, 26.694021946], [142.150221946, 26.693966108], [142.150169442, 26.693993333], [142.150213061, 26.694021946]]]}}, {"id": "39005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28909358, 25.447513162], [141.289059416, 25.447444279], [141.289052477, 25.447498162], [141.28909358, 25.447513162]]]}}, {"id": "39006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224505473, 27.089927721], [142.224514475, 27.089995586], [142.224537756, 27.089926748], [142.224505473, 27.089927721]]]}}, {"id": "39007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182385279, 26.622117495], [142.182376978, 26.622185468], [142.182416809, 26.622173333], [142.182385279, 26.622117495]]]}}, {"id": "39008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143418612, 26.672277495], [142.143348612, 26.672251667], [142.143363061, 26.672299162], [142.143418612, 26.672277495]]]}}, {"id": "39009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229554721, 27.081557495], [142.229556109, 27.081620279], [142.229585551, 27.081568892], [142.229554721, 27.081557495]]]}}, {"id": "39010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235498003, 27.084913892], [142.235433502, 27.084877802], [142.235432049, 27.084907865], [142.235498003, 27.084913892]]]}}, {"id": "39011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129257886, 26.694531586], [142.129223256, 26.694487829], [142.129206835, 26.694525225], [142.129257886, 26.694531586]]]}}, {"id": "39012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153663061, 26.697926108], [142.153613606, 26.697944721], [142.153661115, 26.697971387], [142.153663061, 26.697926108]]]}}, {"id": "39013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181939468, 27.072377387], [142.181942088, 27.072430441], [142.181979831, 27.072401613], [142.181939468, 27.072377387]]]}}, {"id": "39014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231911115, 27.080957775], [142.231850272, 27.080990829], [142.231911115, 27.081011387], [142.231911115, 27.080957775]]]}}, {"id": "39015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234212503, 27.075678108], [142.234219468, 27.075729441], [142.234247588, 27.075674532], [142.234212503, 27.075678108]]]}}, {"id": "39016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186142218, 26.659711387], [142.186215914, 26.659683225], [142.186198418, 26.659659054], [142.186142218, 26.659711387]]]}}, {"id": "39017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233706887, 27.078363829], [142.233595577, 27.078371054], [142.233593113, 27.078390027], [142.233706887, 27.078363829]]]}}, {"id": "39018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187830661, 27.05894], [142.187835888, 27.059043613], [142.187862114, 27.058986081], [142.187830661, 27.05894]]]}}, {"id": "39019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184268885, 27.056328892], [142.184207497, 27.056354441], [142.18425834, 27.056368892], [142.184268885, 27.056328892]]]}}, {"id": "39020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175758275, 26.620121892], [142.175793502, 26.620177279], [142.175789274, 26.620110586], [142.175758275, 26.620121892]]]}}, {"id": "39021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125314137, 26.703178829], [142.125369001, 26.703251532], [142.125341556, 26.703166613], [142.125314137, 26.703178829]]]}}, {"id": "39022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171011673, 27.042466108], [142.171010558, 27.042411946], [142.170981673, 27.042432225], [142.171011673, 27.042466108]]]}}, {"id": "39023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122684721, 26.711159162], [142.122612776, 26.711166667], [142.122659728, 26.711193333], [142.122684721, 26.711159162]]]}}, {"id": "39024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20303, 27.085946162], [142.203095058, 27.085944081], [142.203028444, 27.085918279], [142.20303, 27.085946162]]]}}, {"id": "39025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285494669, 24.789066333], [141.285556628, 24.789041802], [141.285526732, 24.789010604], [141.285494669, 24.789066333]]]}}, {"id": "39026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171729728, 26.642972387], [142.171794812, 26.642973387], [142.171739222, 26.642938694], [142.171729728, 26.642972387]]]}}, {"id": "39027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133917056, 26.701177], [142.133960636, 26.701240387], [142.133969105, 26.701187495], [142.133917056, 26.701177]]]}}, {"id": "39028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136145058, 26.683510387], [142.13620917, 26.683517441], [142.136158392, 26.683479495], [142.136145058, 26.683510387]]]}}, {"id": "39029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15229511, 26.643000667], [142.152337367, 26.642972559], [142.152282918, 26.642959694], [142.15229511, 26.643000667]]]}}, {"id": "39030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16224489, 26.66663136], [142.162287445, 26.666682946], [142.162314747, 26.666656802], [142.16224489, 26.66663136]]]}}, {"id": "39031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164960272, 27.118723054], [142.164996667, 27.118779162], [142.164991388, 27.118713054], [142.164960272, 27.118723054]]]}}, {"id": "39032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192972412, 27.041414721], [142.192899974, 27.041446495], [142.192965525, 27.041456054], [142.192972412, 27.041414721]]]}}, {"id": "39033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286422218, 24.806694018], [141.286470233, 24.806738027], [141.286480454, 24.806681198], [141.286422218, 24.806694018]]]}}, {"id": "39034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24828083, 27.093632495], [142.248241115, 27.093563892], [142.24825, 27.093646946], [142.24828083, 27.093632495]]]}}, {"id": "39035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182152166, 26.62329636], [142.182204228, 26.62332736], [142.182208275, 26.623279694], [142.182152166, 26.62329636]]]}}, {"id": "39036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171472088, 26.657501333], [142.171545305, 26.657546748], [142.171473061, 26.657466586], [142.171472088, 26.657501333]]]}}, {"id": "39037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216962503, 27.041059162], [142.216892503, 27.041064441], [142.21692083, 27.041099162], [142.216962503, 27.041059162]]]}}, {"id": "39038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184702218, 27.087396946], [142.184645837, 27.087442225], [142.184696394, 27.087441108], [142.184702218, 27.087396946]]]}}, {"id": "39039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193510363, 27.039952865], [142.193492724, 27.039891252], [142.193462996, 27.039957919], [142.193510363, 27.039952865]]]}}, {"id": "39040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182340363, 26.611959108], [142.182384553, 26.612027387], [142.182395888, 26.612022135], [142.182340363, 26.611959108]]]}}, {"id": "39041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14408489, 26.675297027], [142.14412834, 26.675323802], [142.144137224, 26.675284333], [142.14408489, 26.675297027]]]}}, {"id": "39042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176517588, 26.600826748], [142.17659297, 26.600802387], [142.176568106, 26.600775333], [142.176517588, 26.600826748]]]}}, {"id": "39043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187894864, 27.044522829], [142.1879807, 27.044552532], [142.187984747, 27.044507387], [142.187894864, 27.044522829]]]}}, {"id": "39044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144186278, 26.671156919], [142.144139248, 26.671221162], [142.144191115, 26.671165586], [142.144186278, 26.671156919]]]}}, {"id": "39045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143914228, 26.671415892], [142.143982996, 26.671455721], [142.143938521, 26.671394468], [142.143914228, 26.671415892]]]}}, {"id": "39046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139111803, 26.679830279], [142.139184864, 26.679819306], [142.139112776, 26.679803586], [142.139111803, 26.679830279]]]}}, {"id": "39047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181638418, 27.072501414], [142.181674773, 27.072549946], [142.181695499, 27.072516775], [142.181638418, 27.072501414]]]}}, {"id": "39048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190509754, 27.042796667], [142.190545422, 27.042851586], [142.190593087, 27.042781748], [142.190509754, 27.042796667]]]}}, {"id": "39049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201864643, 27.086741667], [142.201926641, 27.086776865], [142.201928975, 27.086741225], [142.201864643, 27.086741667]]]}}, {"id": "39050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22740917, 27.119252775], [142.227417224, 27.119188892], [142.227379442, 27.119246946], [142.22740917, 27.119252775]]]}}, {"id": "39051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22681, 27.116824721], [142.226731388, 27.116832775], [142.226808612, 27.116847495], [142.22681, 27.116824721]]]}}, {"id": "39052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.155773606, 26.698787775], [142.155733891, 26.698836387], [142.155792776, 26.698839721], [142.155773606, 26.698787775]]]}}, {"id": "39053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191101388, 27.042274441], [142.191045551, 27.042248054], [142.191043606, 27.042273054], [142.191101388, 27.042274441]]]}}, {"id": "39054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193868716, 27.04137864], [142.193873165, 27.041434586], [142.193919805, 27.041412225], [142.193868716, 27.04137864]]]}}, {"id": "39055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12276917, 26.705675279], [142.122730558, 26.705614721], [142.122712218, 26.705651946], [142.12276917, 26.705675279]]]}}, {"id": "39056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235920272, 27.083698054], [142.235874163, 27.083683054], [142.235877224, 27.083723892], [142.235920272, 27.083698054]]]}}, {"id": "39057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216769611, 27.041284135], [142.216832698, 27.041225162], [142.216801089, 27.041200946], [142.216769611, 27.041284135]]]}}, {"id": "39058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21783917, 27.04106], [142.217781673, 27.041062225], [142.217805551, 27.041093054], [142.21783917, 27.04106]]]}}, {"id": "39059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22134655, 27.095477775], [142.221378664, 27.095546225], [142.221386005, 27.095437559], [142.22134655, 27.095477775]]]}}, {"id": "39060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21956594, 27.096988135], [142.219599533, 27.097036279], [142.219621025, 27.096996252], [142.21956594, 27.096988135]]]}}, {"id": "39061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184178495, 27.048616279], [142.184281556, 27.048568748], [142.1841707, 27.048595162], [142.184178495, 27.048616279]]]}}, {"id": "39062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241082555, 27.047119919], [142.241183839, 27.047154387], [142.241169196, 27.04709764], [142.241082555, 27.047119919]]]}}, {"id": "39063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181826744, 26.619795468], [142.181821025, 26.619730387], [142.181783139, 26.619775667], [142.181826744, 26.619795468]]]}}, {"id": "39064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235109416, 27.083045865], [142.235080052, 27.082991027], [142.235050195, 27.083031973], [142.235109416, 27.083045865]]]}}, {"id": "39065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171609442, 27.119663333], [142.17155083, 27.119702495], [142.171595837, 27.119710559], [142.171609442, 27.119663333]]]}}, {"id": "39066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134615525, 26.699491946], [142.134554501, 26.699476829], [142.134563307, 26.699513027], [142.134615525, 26.699491946]]]}}, {"id": "39067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121238444, 26.711717775], [142.121309585, 26.711710946], [142.121264527, 26.711680559], [142.121238444, 26.711717775]]]}}, {"id": "39068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172722555, 26.636450027], [142.172780636, 26.636468721], [142.172753139, 26.636411081], [142.172722555, 26.636450027]]]}}, {"id": "39069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166002672, 26.679987721], [142.166044449, 26.680046694], [142.166059339, 26.679995306], [142.166002672, 26.679987721]]]}}, {"id": "39070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146235006, 26.652910333], [142.146270246, 26.652964919], [142.146291388, 26.652931306], [142.146235006, 26.652910333]]]}}, {"id": "39071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172859468, 26.636652667], [142.172872698, 26.636709802], [142.17289808, 26.636694054], [142.172859468, 26.636652667]]]}}, {"id": "39072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190790169, 27.042557], [142.190843995, 27.04257436], [142.190838664, 27.042512721], [142.190790169, 27.042557]]]}}, {"id": "39073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123496109, 26.705385279], [142.123480272, 26.705338892], [142.123441388, 26.705378892], [142.123496109, 26.705385279]]]}}, {"id": "39074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128539222, 26.710439], [142.128424773, 26.710446775], [142.128549001, 26.710452081], [142.128539222, 26.710439]]]}}, {"id": "39075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15300834, 26.641534721], [142.152946667, 26.641510829], [142.152969442, 26.641555279], [142.15300834, 26.641534721]]]}}, {"id": "39076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18100083, 27.099986108], [142.181013333, 27.099905279], [142.180997782, 27.099898892], [142.18100083, 27.099986108]]]}}, {"id": "39077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163271362, 26.665725748], [142.163211556, 26.665701613], [142.163182049, 26.665734414], [142.163271362, 26.665725748]]]}}, {"id": "39078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177120895, 26.600076829], [142.177190506, 26.600094892], [142.177193891, 26.600075829], [142.177120895, 26.600076829]]]}}, {"id": "39079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148385914, 26.651572748], [142.148390973, 26.651605613], [142.148419728, 26.651544387], [142.148385914, 26.651572748]]]}}, {"id": "39080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240565006, 27.047348694], [142.240575772, 27.047294441], [142.240544137, 27.047340892], [142.240565006, 27.047348694]]]}}, {"id": "39081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177678418, 26.654669586], [142.177735577, 26.654678333], [142.177696667, 26.654644081], [142.177678418, 26.654669586]]]}}, {"id": "39082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122557224, 26.709366387], [142.122492776, 26.70934], [142.122535837, 26.709392775], [142.122557224, 26.709366387]]]}}, {"id": "39083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.340868936, 24.804867045], [141.340762503, 24.804943856], [141.340910493, 24.804882667], [141.340868936, 24.804867045]]]}}, {"id": "39084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185982023, 27.048469748], [142.18604153, 27.048485468], [142.185994384, 27.048435973], [142.185982023, 27.048469748]]]}}, {"id": "39085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185040272, 27.090980829], [142.184989728, 27.09102], [142.185026667, 27.091038892], [142.185040272, 27.090980829]]]}}, {"id": "39086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241262218, 27.047851108], [142.24121917, 27.047786667], [142.241209442, 27.04783], [142.241262218, 27.047851108]]]}}, {"id": "39087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19338834, 27.040650559], [142.193336939, 27.040706108], [142.193380272, 27.040702775], [142.19338834, 27.040650559]]]}}, {"id": "39088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226656109, 27.110828613], [142.226637224, 27.110761108], [142.226617497, 27.110827775], [142.226656109, 27.110828613]]]}}, {"id": "39089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141940726, 26.677861748], [142.141887834, 26.677823802], [142.141866394, 26.677857667], [142.141940726, 26.677861748]]]}}, {"id": "39090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161841388, 27.115321667], [142.161896109, 27.115288613], [142.16185083, 27.115269441], [142.161841388, 27.115321667]]]}}, {"id": "39091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224867886, 27.089011667], [142.224933087, 27.089036559], [142.224931777, 27.088993225], [142.224867886, 27.089011667]]]}}, {"id": "39092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22944083, 27.055871946], [142.229437782, 27.055929721], [142.229475279, 27.055922225], [142.22944083, 27.055871946]]]}}, {"id": "39093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182495084, 27.070607441], [142.182542412, 27.07064764], [142.182548301, 27.070606919], [142.182495084, 27.070607441]]]}}, {"id": "39094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185908054, 27.118327775], [142.185844721, 27.118320559], [142.185871946, 27.118357775], [142.185908054, 27.118327775]]]}}, {"id": "39095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197038223, 27.044857667], [142.197079663, 27.044921306], [142.197098612, 27.044864613], [142.197038223, 27.044857667]]]}}, {"id": "39096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287453165, 24.807210919], [141.28749061, 24.807270405], [141.28749738, 24.807175739], [141.287453165, 24.807210919]]]}}, {"id": "39097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175455188, 26.654698865], [142.175542996, 26.654713198], [142.175456355, 26.654672973], [142.175455188, 26.654698865]]]}}, {"id": "39098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170901115, 27.045093613], [142.170964163, 27.045080829], [142.170917782, 27.045049162], [142.170901115, 27.045093613]]]}}, {"id": "39099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469102503, 24.242730829], [141.469063606, 24.242774162], [141.469101388, 24.242783333], [141.469102503, 24.242730829]]]}}, {"id": "39100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.243298054, 27.092528054], [142.24325917, 27.092470279], [142.243250558, 27.092510829], [142.243298054, 27.092528054]]]}}, {"id": "39101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122825811, 26.711336225], [142.122886693, 26.711324532], [142.122822361, 26.711312586], [142.122825811, 26.711336225]]]}}, {"id": "39102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19362153, 27.039828694], [142.193650169, 27.039775333], [142.193603943, 27.039794892], [142.19362153, 27.039828694]]]}}, {"id": "39103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.242149442, 27.093502775], [142.24212083, 27.093442225], [142.242104721, 27.093485279], [142.242149442, 27.093502775]]]}}, {"id": "39104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236298885, 27.083483892], [142.236223606, 27.083462225], [142.236233606, 27.083486946], [142.236298885, 27.083483892]]]}}, {"id": "39105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195942724, 27.038755225], [142.195892555, 27.038718829], [142.195905331, 27.038760586], [142.195942724, 27.038755225]]]}}, {"id": "39106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130422607, 26.690607495], [142.130419974, 26.690674865], [142.130452581, 26.690618865], [142.130422607, 26.690607495]]]}}, {"id": "39107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122692503, 26.706890559], [142.122653606, 26.706832495], [142.122637782, 26.706872775], [142.122692503, 26.706890559]]]}}, {"id": "39108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241058612, 27.04726], [142.240982218, 27.047246946], [142.240972218, 27.047263054], [142.241058612, 27.04726]]]}}, {"id": "39109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18852917, 27.116068613], [142.188536667, 27.116138892], [142.188557782, 27.116135], [142.18852917, 27.116068613]]]}}, {"id": "39110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197041725, 27.038315919], [142.197092944, 27.03832136], [142.197095473, 27.038271532], [142.197041725, 27.038315919]]]}}, {"id": "39111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193315746, 27.040546414], [142.193246978, 27.040537027], [142.193280921, 27.040576775], [142.193315746, 27.040546414]]]}}, {"id": "39112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285401997, 24.744870928], [141.285482036, 24.744894604], [141.285442983, 24.744843856], [141.285401997, 24.744870928]]]}}, {"id": "39113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172555694, 26.65641336], [142.172618612, 26.656420225], [142.172614721, 26.656383414], [142.172555694, 26.65641336]]]}}, {"id": "39114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17267834, 27.116398333], [142.17272917, 27.116368333], [142.172671946, 27.116372225], [142.17267834, 27.116398333]]]}}, {"id": "39115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186882503, 27.116148054], [142.186944163, 27.116151108], [142.186901946, 27.116105279], [142.186882503, 27.116148054]]]}}, {"id": "39116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126407782, 26.701006387], [142.126348885, 26.701030559], [142.126411946, 26.701045], [142.126407782, 26.701006387]]]}}, {"id": "39117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175609494, 26.612803252], [142.175655058, 26.612839748], [142.175672581, 26.612804892], [142.175609494, 26.612803252]]]}}, {"id": "39118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156330921, 26.707927919], [142.156391219, 26.707922973], [142.156344306, 26.707877532], [142.156330921, 26.707927919]]]}}, {"id": "39119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202260272, 27.044199162], [142.202224163, 27.04424], [142.202287224, 27.044247225], [142.202260272, 27.044199162]]]}}, {"id": "39120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189982192, 27.043170135], [142.190022114, 27.043121081], [142.190060752, 27.043076892], [142.19001, 27.043101054], [142.189982192, 27.043170135]]]}}, {"id": "39121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205215331, 27.076407306], [142.205253022, 27.076463306], [142.205272088, 27.076453775], [142.205215331, 27.076407306]]]}}, {"id": "39122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174543917, 26.649117775], [142.17460939, 26.649104865], [142.174570246, 26.649070441], [142.174543917, 26.649117775]]]}}, {"id": "39123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172371388, 27.116297495], [142.172398054, 27.116244162], [142.172351673, 27.11625], [142.172371388, 27.116297495]]]}}, {"id": "39124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231150143, 27.061903829], [142.231172503, 27.061935748], [142.231212192, 27.061929441], [142.231150143, 27.061903829]]]}}, {"id": "39125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164952996, 26.660320108], [142.165009053, 26.660319495], [142.165005668, 26.660272306], [142.164952996, 26.660320108]]]}}, {"id": "39126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174037562, 26.652244108], [142.174080311, 26.652282135], [142.174058223, 26.652232252], [142.174037562, 26.652244108]]]}}, {"id": "39127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222118171, 27.093712829], [142.222080558, 27.093654135], [142.222050752, 27.093678559], [142.222118171, 27.093712829]]]}}, {"id": "39128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233487471, 27.077487721], [142.233535499, 27.077459279], [142.23352489, 27.077447468], [142.233487471, 27.077487721]]]}}, {"id": "39129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141147782, 27.672706108], [142.14114917, 27.672654721], [142.141111115, 27.672673333], [142.141147782, 27.672706108]]]}}, {"id": "39130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179684721, 27.045282225], [142.179642776, 27.045316667], [142.179672776, 27.045320559], [142.179684721, 27.045282225]]]}}, {"id": "39131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18574917, 27.178494441], [142.185761946, 27.178430829], [142.185716394, 27.178452775], [142.18574917, 27.178494441]]]}}, {"id": "39132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130950169, 26.686903], [142.130978223, 26.686937559], [142.131001699, 26.686890694], [142.130950169, 26.686903]]]}}, {"id": "39133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229833696, 27.037454414], [142.229894527, 27.037488], [142.229893554, 27.037452613], [142.229833696, 27.037454414]]]}}, {"id": "39134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225397951, 27.047997306], [142.225436252, 27.048046721], [142.22544786, 27.048001748], [142.225397951, 27.047997306]]]}}, {"id": "39135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126505032, 26.701720027], [142.126583022, 26.701719054], [142.126563191, 26.701695532], [142.126505032, 26.701720027]]]}}, {"id": "39136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172701115, 27.11652], [142.172646939, 27.116485559], [142.17267834, 27.116535829], [142.172701115, 27.11652]]]}}, {"id": "39137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172773839, 26.63655664], [142.172713113, 26.636577306], [142.172750117, 26.636598748], [142.172773839, 26.63655664]]]}}, {"id": "39138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229519728, 27.114899162], [142.229553061, 27.114846946], [142.229505006, 27.114850829], [142.229519728, 27.114899162]]]}}, {"id": "39139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234230052, 27.056267468], [142.234180026, 27.056205802], [142.234182581, 27.056270252], [142.234230052, 27.056267468]]]}}, {"id": "39140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153986252, 26.698473135], [142.154061608, 26.698464667], [142.154022049, 26.698427135], [142.153986252, 26.698473135]]]}}, {"id": "39141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223953645, 27.090772865], [142.223992244, 27.090818468], [142.223992607, 27.090747333], [142.223953645, 27.090772865]]]}}, {"id": "39142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171023139, 26.65783036], [142.171086783, 26.657807532], [142.171031115, 26.657797586], [142.171023139, 26.65783036]]]}}, {"id": "39143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218814838, 27.041318054], [142.218841634, 27.041365586], [142.218872581, 27.041308865], [142.218814838, 27.041318054]]]}}, {"id": "39144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227774449, 27.115641667], [142.227745837, 27.115584721], [142.227729442, 27.115626387], [142.227774449, 27.115641667]]]}}, {"id": "39145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23216834, 27.062261387], [142.232103061, 27.062257225], [142.232110558, 27.062284721], [142.23216834, 27.062261387]]]}}, {"id": "39146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129689079, 26.692671306], [142.129752283, 26.692662135], [142.129715473, 26.692633919], [142.129689079, 26.692671306]]]}}, {"id": "39147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230366394, 27.053643333], [142.23029083, 27.053656108], [142.230296394, 27.053668613], [142.230366394, 27.053643333]]]}}, {"id": "39148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.220233645, 27.100641495], [142.220175188, 27.100620108], [142.220187328, 27.100681559], [142.220233645, 27.100641495]]]}}, {"id": "39149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229755279, 27.115436946], [142.229813333, 27.115444162], [142.229756109, 27.115419441], [142.229755279, 27.115436946]]]}}, {"id": "39150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18469917, 27.091920829], [142.184633606, 27.091931387], [142.184675279, 27.091951946], [142.18469917, 27.091920829]]]}}, {"id": "39151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193429857, 27.041028694], [142.193497108, 27.041039775], [142.193474163, 27.040998468], [142.193429857, 27.041028694]]]}}, {"id": "39152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224941089, 27.042228946], [142.225051582, 27.042235081], [142.225071608, 27.042221414], [142.224941089, 27.042228946]]]}}, {"id": "39153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190139728, 27.067656108], [142.190136394, 27.067714721], [142.190166667, 27.067695279], [142.190139728, 27.067656108]]]}}, {"id": "39154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236532827, 27.050295495], [142.236589196, 27.050302892], [142.236590389, 27.050291613], [142.236532827, 27.050295495]]]}}, {"id": "39155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232792335, 27.076157667], [142.232738106, 27.076116225], [142.232736667, 27.076151252], [142.232792335, 27.076157667]]]}}, {"id": "39156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165150078, 26.660228], [142.165202866, 26.660251225], [142.165198781, 26.660219198], [142.165150078, 26.660228]]]}}, {"id": "39157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216680363, 27.041311532], [142.216724086, 27.041365414], [142.216771971, 27.041311108], [142.216680363, 27.041311532]]]}}, {"id": "39158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163925331, 26.629813802], [142.163895473, 26.629782613], [142.163893839, 26.629830162], [142.163925331, 26.629813802]]]}}, {"id": "39159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19351917, 27.040906387], [142.193565837, 27.040965], [142.193557782, 27.040904721], [142.19351917, 27.040906387]]]}}, {"id": "39160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18039917, 26.629359495], [142.18033856, 26.629334586], [142.180344773, 26.629382495], [142.18039917, 26.629359495]]]}}, {"id": "39161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231996109, 27.114482495], [142.231939442, 27.114521667], [142.231988612, 27.114534441], [142.231996109, 27.114482495]]]}}, {"id": "39162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230873606, 27.06085], [142.230811673, 27.060870559], [142.230848054, 27.060886667], [142.230873606, 27.06085]]]}}, {"id": "39163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24794, 27.090784441], [142.247873333, 27.090768613], [142.247855006, 27.090811667], [142.24794, 27.090784441]]]}}, {"id": "39164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285466615, 24.804716622], [141.285400337, 24.804735802], [141.285440026, 24.804765243], [141.285466615, 24.804716622]]]}}, {"id": "39165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236196394, 27.088655865], [142.236152218, 27.088704414], [142.236193969, 27.088709027], [142.236196394, 27.088655865]]]}}, {"id": "39166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229045551, 27.115057495], [142.22898917, 27.115043054], [142.229001946, 27.115075], [142.229045551, 27.115057495]]]}}, {"id": "39167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244837224, 27.091895279], [142.244800272, 27.091845559], [142.244805006, 27.091903613], [142.244837224, 27.091895279]]]}}, {"id": "39168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217888885, 27.040747775], [142.217825837, 27.040739162], [142.217836667, 27.040778333], [142.217888885, 27.040747775]]]}}, {"id": "39169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182264163, 27.101894721], [142.182215837, 27.101933613], [142.182269728, 27.101939441], [142.182264163, 27.101894721]]]}}, {"id": "39170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187852218, 27.105441108], [142.187786394, 27.105479162], [142.18784, 27.105484441], [142.187852218, 27.105441108]]]}}, {"id": "39171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147121388, 26.687024721], [142.147182438, 26.687000748], [142.147121141, 26.686993414], [142.147121388, 26.687024721]]]}}, {"id": "39172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18336572, 27.092551973], [142.183416861, 27.092618333], [142.183398755, 27.092526829], [142.18336572, 27.092551973]]]}}, {"id": "39173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138854475, 26.699790946], [142.138906472, 26.699762027], [142.138856329, 26.699751135], [142.138854475, 26.699790946]]]}}, {"id": "39174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130847056, 26.688646613], [142.130894643, 26.688624441], [142.13086869, 26.688609586], [142.130847056, 26.688646613]]]}}, {"id": "39175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285438729, 24.804559216], [141.28538904, 24.804566387], [141.285395201, 24.804614171], [141.285438729, 24.804559216]]]}}, {"id": "39176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182701284, 27.070802946], [142.182738664, 27.070847027], [142.18275978, 27.07082], [142.182701284, 27.070802946]]]}}, {"id": "39177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231435837, 27.109576667], [142.231366939, 27.109566387], [142.231421388, 27.109607495], [142.231435837, 27.109576667]]]}}, {"id": "39178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235366667, 27.096646946], [142.23532083, 27.096600559], [142.235335551, 27.096650279], [142.235366667, 27.096646946]]]}}, {"id": "39179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130014695, 26.691979333], [142.130077588, 26.691958054], [142.130035253, 26.691941865], [142.130014695, 26.691979333]]]}}, {"id": "39180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178187639, 26.604168306], [142.178158418, 26.604108973], [142.178156304, 26.604158892], [142.178187639, 26.604168306]]]}}, {"id": "39181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184486394, 27.1179], [142.184528612, 27.117950559], [142.184554721, 27.117916667], [142.184486394, 27.1179]]]}}, {"id": "39182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167583139, 26.658592829], [142.167625006, 26.658631054], [142.167625227, 26.658582775], [142.167583139, 26.658592829]]]}}, {"id": "39183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186722776, 27.087319441], [142.186750272, 27.087374441], [142.186753891, 27.087311387], [142.186722776, 27.087319441]]]}}, {"id": "39184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164315227, 26.687274333], [142.164386693, 26.687285532], [142.164329857, 26.687242721], [142.164315227, 26.687274333]]]}}, {"id": "39185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235930804, 27.084292387], [142.235982918, 27.084276414], [142.235971362, 27.084258108], [142.235930804, 27.084292387]]]}}, {"id": "39186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.462239559, 24.245585982], [141.46218179, 24.245553928], [141.462209248, 24.24559182], [141.462239559, 24.245585982]]]}}, {"id": "39187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199440026, 27.045503586], [142.1994, 27.045551225], [142.199462244, 27.045520441], [142.199440026, 27.045503586]]]}}, {"id": "39188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229808885, 27.115368054], [142.22985917, 27.115337495], [142.2298, 27.115336667], [142.229808885, 27.115368054]]]}}, {"id": "39189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141544838, 26.703779613], [142.141609105, 26.70383236], [142.141624838, 26.703801027], [142.141544838, 26.703779613]]]}}, {"id": "39190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138280726, 26.67911964], [142.138345914, 26.679125081], [142.138296252, 26.679093468], [142.138280726, 26.67911964]]]}}, {"id": "39191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12513297, 26.703669748], [142.125205837, 26.703667973], [142.125200389, 26.70365236], [142.12513297, 26.703669748]]]}}, {"id": "39192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453720272, 24.237446946], [141.453699442, 24.237491667], [141.453765837, 24.237483333], [141.453720272, 24.237446946]]]}}, {"id": "39193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233221608, 27.076768252], [142.233168106, 27.076735306], [142.233159105, 27.076770532], [142.233221608, 27.076768252]]]}}, {"id": "39194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217465006, 27.041261946], [142.217423606, 27.041212495], [142.217422776, 27.041259721], [142.217465006, 27.041261946]]]}}, {"id": "39195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152141582, 26.64341036], [142.152191855, 26.643462829], [142.152173087, 26.643396775], [142.152141582, 26.64341036]]]}}, {"id": "39196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235074163, 27.110530559], [142.235111115, 27.110456108], [142.23508834, 27.110453054], [142.235074163, 27.110530559]]]}}, {"id": "39197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181523061, 27.072500135], [142.18157083, 27.072551892], [142.181577224, 27.072512162], [142.181523061, 27.072500135]]]}}, {"id": "39198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235843528, 27.049524333], [142.235916524, 27.049528973], [142.235846835, 27.04950436], [142.235843528, 27.049524333]]]}}, {"id": "39199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151795006, 26.69701], [142.151740558, 26.697021387], [142.151774163, 26.697041946], [142.151795006, 26.69701]]]}}, {"id": "39200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207781115, 27.040545], [142.207735006, 27.040584162], [142.207773061, 27.040596667], [142.207781115, 27.040545]]]}}, {"id": "39201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23388834, 27.075693892], [142.233859442, 27.075747495], [142.233912776, 27.075723613], [142.23388834, 27.075693892]]]}}, {"id": "39202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231208612, 27.068428333], [142.231172776, 27.068478333], [142.231221115, 27.068455], [142.231208612, 27.068428333]]]}}, {"id": "39203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164943061, 27.118640829], [142.165003061, 27.118604441], [142.164976109, 27.118601387], [142.164943061, 27.118640829]]]}}, {"id": "39204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203074449, 27.105526667], [142.203035279, 27.105572775], [142.203084163, 27.105577775], [142.203074449, 27.105526667]]]}}, {"id": "39205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189326641, 27.067886054], [142.1893662, 27.067968694], [142.189390804, 27.067966027], [142.189326641, 27.067886054]]]}}, {"id": "39206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188129442, 27.044061387], [142.188069728, 27.044047495], [142.188079728, 27.044087495], [142.188129442, 27.044061387]]]}}, {"id": "39207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181627224, 27.07259], [142.181671388, 27.072569162], [142.181631946, 27.072551667], [142.181627224, 27.07259]]]}}, {"id": "39208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227873891, 27.115690829], [142.227822218, 27.115710829], [142.227868612, 27.115716946], [142.227873891, 27.115690829]]]}}, {"id": "39209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185236394, 27.104500279], [142.185196394, 27.104527495], [142.185237497, 27.104549441], [142.185236394, 27.104500279]]]}}, {"id": "39210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189477523, 27.104723441], [142.189551167, 27.104727495], [142.189484747, 27.104693667], [142.189477523, 27.104723441]]]}}, {"id": "39211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232459611, 27.062432468], [142.232435032, 27.062484586], [142.232474747, 27.062477387], [142.232459611, 27.062432468]]]}}, {"id": "39212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218801115, 27.037664252], [142.218757834, 27.037599054], [142.218751388, 27.037646721], [142.218801115, 27.037664252]]]}}, {"id": "39213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.245958054, 27.090227775], [142.246002776, 27.090194721], [142.245952776, 27.090192225], [142.245958054, 27.090227775]]]}}, {"id": "39214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233087497, 27.076251946], [142.233032503, 27.076217225], [142.233061673, 27.076274441], [142.233087497, 27.076251946]]]}}, {"id": "39215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172426887, 26.641207333], [142.17248511, 26.641189306], [142.172470389, 26.641157559], [142.172426887, 26.641207333]]]}}, {"id": "39216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238143891, 27.048359441], [142.238076939, 27.048355829], [142.238112503, 27.048398054], [142.238143891, 27.048359441]]]}}, {"id": "39217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232247782, 27.070496694], [142.232305331, 27.070479559], [142.232289559, 27.070460892], [142.232247782, 27.070496694]]]}}, {"id": "39218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217721673, 27.041212775], [142.217658612, 27.041223892], [142.217690558, 27.041249721], [142.217721673, 27.041212775]]]}}, {"id": "39219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229640052, 27.081657441], [142.229681115, 27.081666225], [142.229674475, 27.081619919], [142.229640052, 27.081657441]]]}}, {"id": "39220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134033528, 26.701015667], [142.134069663, 26.700975027], [142.13404, 26.700965306], [142.134033528, 26.701015667]]]}}, {"id": "39221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152381634, 26.637506054], [142.152448171, 26.637525135], [142.152447523, 26.637500306], [142.152381634, 26.637506054]]]}}, {"id": "39222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129492218, 26.691683613], [142.129545837, 26.691648054], [142.129519442, 26.691632225], [142.129492218, 26.691683613]]]}}, {"id": "39223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197421115, 27.044541108], [142.197403061, 27.044605559], [142.197445551, 27.044578333], [142.197421115, 27.044541108]]]}}, {"id": "39224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129628392, 26.69062864], [142.129651362, 26.690676198], [142.129669883, 26.690637721], [142.129628392, 26.69062864]]]}}, {"id": "39225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159474112, 26.686984495], [142.159482892, 26.686933495], [142.159430169, 26.686962162], [142.159474112, 26.686984495]]]}}, {"id": "39226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.243374721, 27.092362775], [142.243379728, 27.092296946], [142.243345551, 27.092361387], [142.243374721, 27.092362775]]]}}, {"id": "39227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122728885, 26.711283613], [142.122664163, 26.711298613], [142.122712776, 26.711323333], [142.122728885, 26.711283613]]]}}, {"id": "39228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232636394, 27.074169198], [142.232662114, 27.074232946], [142.232663411, 27.074170865], [142.232636394, 27.074169198]]]}}, {"id": "39229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122707471, 26.714100892], [142.122765577, 26.714126027], [142.122784358, 26.714100919], [142.122707471, 26.714100892]]]}}, {"id": "39230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.208565279, 26.565732495], [142.208530558, 26.565784441], [142.208562503, 26.565792495], [142.208565279, 26.565732495]]]}}, {"id": "39231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156444163, 26.630205027], [142.156505305, 26.63018736], [142.156448145, 26.63018236], [142.156444163, 26.630205027]]]}}, {"id": "39232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231939144, 27.061607198], [142.231881556, 27.061600613], [142.231872672, 27.061647468], [142.231939144, 27.061607198]]]}}, {"id": "39233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181348366, 26.616130559], [142.181350584, 26.616187613], [142.181374864, 26.616177748], [142.181348366, 26.616130559]]]}}, {"id": "39234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172917951, 26.636740532], [142.172993281, 26.636739532], [142.17292939, 26.636726054], [142.172917951, 26.636740532]]]}}, {"id": "39235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227375279, 27.118501108], [142.227322776, 27.118498892], [142.22734834, 27.118524162], [142.227375279, 27.118501108]]]}}, {"id": "39236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18851083, 26.65662], [142.188470558, 26.656570559], [142.188485006, 26.656641108], [142.18851083, 26.65662]]]}}, {"id": "39237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125050558, 26.703622775], [142.125025837, 26.703571387], [142.125010272, 26.703598613], [142.125050558, 26.703622775]]]}}, {"id": "39238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28419013, 24.750538937], [141.284137601, 24.750577955], [141.284220869, 24.750574829], [141.28419013, 24.750538937]]]}}, {"id": "39239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175447588, 26.602169135], [142.175478859, 26.602138306], [142.175421141, 26.602156333], [142.175447588, 26.602169135]]]}}, {"id": "39240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133096226, 26.68615164], [142.133130726, 26.686178775], [142.133145227, 26.686120919], [142.133096226, 26.68615164]]]}}, {"id": "39241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174263969, 26.616296829], [142.174244306, 26.616236919], [142.174222023, 26.616249225], [142.174263969, 26.616296829]]]}}, {"id": "39242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193633502, 27.075864387], [142.193657004, 27.075924667], [142.193682918, 27.075869198], [142.193633502, 27.075864387]]]}}, {"id": "39243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132820311, 26.685993054], [142.132866278, 26.686018], [142.132865811, 26.685976468], [142.132820311, 26.685993054]]]}}, {"id": "39244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206712996, 27.080240495], [142.206755188, 27.080206613], [142.20671594, 27.080196441], [142.206712996, 27.080240495]]]}}, {"id": "39245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194587367, 27.04116464], [142.194606589, 27.041213613], [142.194636226, 27.041150306], [142.194587367, 27.04116464]]]}}, {"id": "39246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.471539442, 24.241947495], [141.471470272, 24.241937495], [141.471486667, 24.241954441], [141.471539442, 24.241947495]]]}}, {"id": "39247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182483333, 27.102357225], [142.182435837, 27.102326387], [142.18243834, 27.102370559], [142.182483333, 27.102357225]]]}}, {"id": "39248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216561414, 27.041156559], [142.216581115, 27.041224306], [142.216611608, 27.041161613], [142.216561414, 27.041156559]]]}}, {"id": "39249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192808418, 27.040834027], [142.192784449, 27.040777748], [142.19277275, 27.040842027], [142.192808418, 27.040834027]]]}}, {"id": "39250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217821025, 27.101548468], [142.217761479, 27.101621387], [142.217830415, 27.101550802], [142.217821025, 27.101548468]]]}}, {"id": "39251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186979416, 26.655114468], [142.186960921, 26.655172613], [142.187011971, 26.655127946], [142.186979416, 26.655114468]]]}}, {"id": "39252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21789192, 27.101539775], [142.217831777, 27.101523081], [142.217841414, 27.101556559], [142.21789192, 27.101539775]]]}}, {"id": "39253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228101505, 27.082084333], [142.228142244, 27.082046919], [142.228105837, 27.082038748], [142.228101505, 27.082084333]]]}}, {"id": "39254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235624306, 27.082186198], [142.235665058, 27.082148667], [142.235628638, 27.082140532], [142.235624306, 27.082186198]]]}}, {"id": "39255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224773917, 27.042396721], [142.22487297, 27.042336721], [142.224741336, 27.042390468], [142.224773917, 27.042396721]]]}}, {"id": "39256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183145279, 27.092338613], [142.183122776, 27.092392775], [142.183158885, 27.092381108], [142.183145279, 27.092338613]]]}}, {"id": "39257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131693891, 26.688356108], [142.131643891, 26.688321946], [142.131661946, 26.688378054], [142.131693891, 26.688356108]]]}}, {"id": "39258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143240856, 26.671800279], [142.143290506, 26.671815306], [142.143281699, 26.671768306], [142.143240856, 26.671800279]]]}}, {"id": "39259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143078054, 26.666171387], [142.143036394, 26.666126667], [142.143032218, 26.666178054], [142.143078054, 26.666171387]]]}}, {"id": "39260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231293606, 27.069118054], [142.231253891, 27.069145], [142.231285006, 27.069149721], [142.231293606, 27.069118054]]]}}, {"id": "39261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238104721, 27.048554721], [142.238073061, 27.048503054], [142.238070558, 27.048524721], [142.238104721, 27.048554721]]]}}, {"id": "39262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236229805, 27.084689279], [142.236159559, 27.084695802], [142.236218171, 27.084716108], [142.236229805, 27.084689279]]]}}, {"id": "39263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217872218, 27.040887495], [142.217832503, 27.040858333], [142.217831388, 27.040899721], [142.217872218, 27.040887495]]]}}, {"id": "39264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172486939, 27.116455829], [142.172461115, 27.116392495], [142.172457782, 27.116448333], [142.172486939, 27.116455829]]]}}, {"id": "39265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182055473, 27.074534225], [142.182121634, 27.074544775], [142.182075811, 27.074510721], [142.182055473, 27.074534225]]]}}, {"id": "39266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233317224, 27.076952495], [142.23327083, 27.076988333], [142.233322776, 27.076995559], [142.233317224, 27.076952495]]]}}, {"id": "39267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205586939, 27.077791108], [142.205556939, 27.077833054], [142.205600558, 27.077831667], [142.205586939, 27.077791108]]]}}, {"id": "39268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288688301, 25.446698162], [141.288664137, 25.446758441], [141.288699416, 25.446764], [141.288688301, 25.446698162]]]}}, {"id": "39269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20377, 27.119082225], [142.203794721, 27.119033054], [142.203747224, 27.119029721], [142.20377, 27.119082225]]]}}, {"id": "39270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285599507, 24.789910964], [141.285651803, 24.789880342], [141.285514955, 24.789910838], [141.285599507, 24.789910964]]]}}, {"id": "39271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.473375006, 24.239108892], [141.473351946, 24.239170279], [141.473389442, 24.239175829], [141.473375006, 24.239108892]]]}}, {"id": "39272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378975979, 24.780266468], [141.379011453, 24.780214793], [141.378958664, 24.780230919], [141.378975979, 24.780266468]]]}}, {"id": "39273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229736615, 27.054382081], [142.229799339, 27.054386225], [142.229787782, 27.054363225], [142.229736615, 27.054382081]]]}}, {"id": "39274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143084163, 26.669187054], [142.143142555, 26.669185198], [142.143119611, 26.669153279], [142.143084163, 26.669187054]]]}}, {"id": "39275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141659248, 26.665943], [142.141725058, 26.665942387], [142.141702698, 26.665907829], [142.141659248, 26.665943]]]}}, {"id": "39276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185631115, 27.116906387], [142.185696667, 27.116891667], [142.185671673, 27.116867775], [142.185631115, 27.116906387]]]}}, {"id": "39277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126771556, 26.701444946], [142.12680847, 26.701395802], [142.126772477, 26.701378333], [142.126771556, 26.701444946]]]}}, {"id": "39278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151350389, 26.706750865], [142.15140572, 26.706801892], [142.15141939, 26.706791054], [142.151350389, 26.706750865]]]}}, {"id": "39279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186156641, 27.05427636], [142.186099948, 27.054252414], [142.186087082, 27.054272559], [142.186156641, 27.05427636]]]}}, {"id": "39280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143908612, 26.671315279], [142.143867224, 26.671285829], [142.143852218, 26.671331387], [142.143908612, 26.671315279]]]}}, {"id": "39281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216888885, 27.040938054], [142.216843606, 27.040932775], [142.216858885, 27.040978613], [142.216888885, 27.040938054]]]}}, {"id": "39282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230296939, 27.059607495], [142.230318612, 27.059667225], [142.230343891, 27.059639721], [142.230296939, 27.059607495]]]}}, {"id": "39283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227228054, 27.110155279], [142.227204721, 27.110093054], [142.22718, 27.110113892], [142.227228054, 27.110155279]]]}}, {"id": "39284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238760272, 27.048073613], [142.238712503, 27.048122225], [142.238776667, 27.048110559], [142.238760272, 27.048073613]]]}}, {"id": "39285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223862633, 27.084871162], [142.223915136, 27.084855027], [142.223899883, 27.084833559], [142.223862633, 27.084871162]]]}}, {"id": "39286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195068418, 27.042477946], [142.195132023, 27.042487892], [142.195083995, 27.042455], [142.195068418, 27.042477946]]]}}, {"id": "39287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17256917, 27.029464721], [142.17260834, 27.029502775], [142.17263917, 27.029472495], [142.17256917, 27.029464721]]]}}, {"id": "39288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190708885, 27.042649162], [142.190761673, 27.042682775], [142.190742776, 27.042627775], [142.190708885, 27.042649162]]]}}, {"id": "39289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229606472, 27.035309], [142.229642802, 27.035343414], [142.229677302, 27.03530436], [142.229606472, 27.035309]]]}}, {"id": "39290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182085499, 26.619008387], [142.182026667, 26.619009559], [142.182062166, 26.619047694], [142.182085499, 26.619008387]]]}}, {"id": "39291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151846835, 26.696428829], [142.151885357, 26.696457946], [142.15191083, 26.696426775], [142.151846835, 26.696428829]]]}}, {"id": "39292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210075551, 27.039980559], [142.210032776, 27.040041667], [142.210060558, 27.040049441], [142.210075551, 27.039980559]]]}}, {"id": "39293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225045331, 27.039246468], [142.225098366, 27.039201613], [142.225075551, 27.039188468], [142.225045331, 27.039246468]]]}}, {"id": "39294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23208917, 27.064195559], [142.232028612, 27.064234721], [142.232082776, 27.064226667], [142.23208917, 27.064195559]]]}}, {"id": "39295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129836329, 26.688884586], [142.129889053, 26.688853108], [142.129829663, 26.688865721], [142.129836329, 26.688884586]]]}}, {"id": "39296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144283671, 26.673423694], [142.144350973, 26.673417748], [142.144303411, 26.673380694], [142.144283671, 26.673423694]]]}}, {"id": "39297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472527549, 24.241939838], [141.472484436, 24.241976901], [141.472527017, 24.241987775], [141.472527549, 24.241939838]]]}}, {"id": "39298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172395616, 26.64138564], [142.172459494, 26.641400829], [142.172449805, 26.641366532], [142.172395616, 26.64138564]]]}}, {"id": "39299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22218655, 27.094539829], [142.222270143, 27.094521306], [142.222266355, 27.094497387], [142.22218655, 27.094539829]]]}}, {"id": "39300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138192503, 26.679751387], [142.138145837, 26.679734721], [142.138155006, 26.679766108], [142.138192503, 26.679751387]]]}}, {"id": "39301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171960026, 26.62825836], [142.17193572, 26.628206586], [142.171915499, 26.628238919], [142.171960026, 26.62825836]]]}}, {"id": "39302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123216939, 26.707603054], [142.123172218, 26.707634721], [142.123204163, 26.70764], [142.123216939, 26.707603054]]]}}, {"id": "39303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129965279, 26.690953081], [142.130027276, 26.690944829], [142.130015188, 26.690922892], [142.129965279, 26.690953081]]]}}, {"id": "39304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204857497, 27.076692865], [142.20481572, 27.076737054], [142.204879533, 27.076725865], [142.204857497, 27.076692865]]]}}, {"id": "39305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181822218, 27.071747775], [142.181765006, 27.071717225], [142.181788612, 27.071755559], [142.181822218, 27.071747775]]]}}, {"id": "39306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182239442, 27.087601387], [142.182189728, 27.087587775], [142.182218612, 27.087623613], [142.182239442, 27.087601387]]]}}, {"id": "39307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284778106, 24.750499577], [141.284728495, 24.750494649], [141.284745227, 24.750526324], [141.284778106, 24.750499577]]]}}, {"id": "39308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173089053, 26.637315108], [142.17311489, 26.637390613], [142.173097471, 26.637298027], [142.173089053, 26.637315108]]]}}, {"id": "39309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17269083, 27.116620559], [142.172739728, 27.116618613], [142.172695837, 27.116596387], [142.17269083, 27.116620559]]]}}, {"id": "39310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193923891, 27.040788054], [142.193867224, 27.040821667], [142.193896939, 27.04084], [142.193923891, 27.040788054]]]}}, {"id": "39311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224475888, 27.035524775], [142.224530973, 27.035548892], [142.224542802, 27.035524865], [142.224475888, 27.035524775]]]}}, {"id": "39312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231522776, 27.070289441], [142.231465279, 27.07029], [142.231489728, 27.070324162], [142.231522776, 27.070289441]]]}}, {"id": "39313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137630389, 26.68042836], [142.137693528, 26.680450414], [142.137651167, 26.680407054], [142.137630389, 26.68042836]]]}}, {"id": "39314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174386887, 26.653539306], [142.174421167, 26.653489162], [142.174386278, 26.653474694], [142.174386887, 26.653539306]]]}}, {"id": "39315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231721946, 27.061555559], [142.231688612, 27.061514441], [142.231686667, 27.061556387], [142.231721946, 27.061555559]]]}}, {"id": "39316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223445914, 27.091994495], [142.223476135, 27.092040559], [142.223494669, 27.091971387], [142.223445914, 27.091994495]]]}}, {"id": "39317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184596939, 27.11841], [142.184652776, 27.118444441], [142.184652776, 27.118402775], [142.184596939, 27.11841]]]}}, {"id": "39318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237285422, 27.049030532], [142.23722869, 27.048997586], [142.237252477, 27.049047387], [142.237285422, 27.049030532]]]}}, {"id": "39319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165244228, 26.679484108], [142.165274358, 26.679542468], [142.165287951, 26.679490027], [142.165244228, 26.679484108]]]}}, {"id": "39320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182493217, 27.070704279], [142.182514773, 27.070753721], [142.18253061, 27.070695108], [142.182493217, 27.070704279]]]}}, {"id": "39321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129315551, 26.691105559], [142.129317782, 26.691056108], [142.129272218, 26.691071387], [142.129315551, 26.691105559]]]}}, {"id": "39322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162123411, 26.700371775], [142.162185694, 26.700421162], [142.16220655, 26.700396333], [142.162123411, 26.700371775]]]}}, {"id": "39323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285705447, 24.745622261], [141.285647691, 24.745591559], [141.285672711, 24.745660468], [141.285705447, 24.745622261]]]}}, {"id": "39324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285750999, 24.788652622], [141.285803178, 24.788626685], [141.285762737, 24.788589297], [141.285750999, 24.788652622]]]}}, {"id": "39325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189539689, 27.068073333], [142.189561284, 27.068132532], [142.189593476, 27.068105495], [142.189539689, 27.068073333]]]}}, {"id": "39326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203258249, 27.043805414], [142.203319637, 27.043801802], [142.203268171, 27.043778973], [142.203258249, 27.043805414]]]}}, {"id": "39327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125899494, 26.700937559], [142.125963774, 26.700919441], [142.125934695, 26.700885333], [142.125899494, 26.700937559]]]}}, {"id": "39328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218701388, 27.041036667], [142.218635006, 27.041057495], [142.218693891, 27.041063613], [142.218701388, 27.041036667]]]}}, {"id": "39329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223135006, 27.110323892], [142.223099728, 27.110264721], [142.22309834, 27.110305559], [142.223135006, 27.110323892]]]}}, {"id": "39330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193796978, 27.040556865], [142.193843554, 27.040506865], [142.193782114, 27.040527721], [142.193796978, 27.040556865]]]}}, {"id": "39331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230225006, 27.114895279], [142.230289728, 27.114930829], [142.230286394, 27.114894721], [142.230225006, 27.114895279]]]}}, {"id": "39332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128657173, 26.693739892], [142.128717665, 26.693741198], [142.128705357, 26.693706162], [142.128657173, 26.693739892]]]}}, {"id": "39333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124023891, 26.705212495], [142.123996109, 26.705161667], [142.123985837, 26.705193613], [142.124023891, 26.705212495]]]}}, {"id": "39334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231314086, 27.066769081], [142.231270143, 27.066824108], [142.231306887, 27.066807], [142.231314086, 27.066769081]]]}}, {"id": "39335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172421362, 26.641539865], [142.17247061, 26.641560586], [142.172477302, 26.641536748], [142.172421362, 26.641539865]]]}}, {"id": "39336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218500558, 26.561332225], [142.218550558, 26.561293892], [142.218511673, 26.561280829], [142.218500558, 26.561332225]]]}}, {"id": "39337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175363256, 26.65474764], [142.175409274, 26.654703532], [142.175380026, 26.654687946], [142.175363256, 26.65474764]]]}}, {"id": "39338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181580117, 27.093883252], [142.181647782, 27.093877108], [142.181610804, 27.093846108], [142.181580117, 27.093883252]]]}}, {"id": "39339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164491193, 26.660247], [142.1645662, 26.660294829], [142.16458214, 26.660263225], [142.164491193, 26.660247]]]}}, {"id": "39340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12642834, 26.701506721], [142.126452283, 26.70145364], [142.12641022, 26.701489586], [142.12642834, 26.701506721]]]}}, {"id": "39341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222440026, 27.093277919], [142.222486589, 27.093318], [142.222495616, 27.093295252], [142.222440026, 27.093277919]]]}}, {"id": "39342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186406109, 27.119588333], [142.186385279, 27.119534721], [142.186366109, 27.119574162], [142.186406109, 27.119588333]]]}}, {"id": "39343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231301388, 27.109694441], [142.231226939, 27.109690559], [142.231226939, 27.109723892], [142.231301388, 27.109694441]]]}}, {"id": "39344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152214747, 26.643365495], [142.152258911, 26.643354252], [142.152216693, 26.643335613], [142.152214747, 26.643365495]]]}}, {"id": "39345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177797613, 26.599994108], [142.177759585, 26.600072414], [142.177822335, 26.599997495], [142.177797613, 26.599994108]]]}}, {"id": "39346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.096211946, 27.718906387], [142.096263333, 27.718958054], [142.09626083, 27.718918613], [142.096211946, 27.718906387]]]}}, {"id": "39347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135505966, 26.685088162], [142.135564137, 26.685095586], [142.135543307, 26.685063306], [142.135505966, 26.685088162]]]}}, {"id": "39348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181951946, 27.127554721], [142.181920558, 27.127513333], [142.181902503, 27.127538333], [142.181951946, 27.127554721]]]}}, {"id": "39349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196712776, 27.038684721], [142.196761946, 27.038717495], [142.196761946, 27.038676387], [142.196712776, 27.038684721]]]}}, {"id": "39350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225634695, 27.045152802], [142.22569725, 27.045131775], [142.225638029, 27.045111198], [142.225634695, 27.045152802]]]}}, {"id": "39351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185315837, 27.104722495], [142.185275006, 27.104768333], [142.185317224, 27.104773613], [142.185315837, 27.104722495]]]}}, {"id": "39352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12997144, 26.707801054], [142.130032438, 26.707794865], [142.130005966, 26.707767081], [142.12997144, 26.707801054]]]}}, {"id": "39353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469595837, 24.227846387], [141.469568612, 24.227897495], [141.469620558, 24.227895279], [141.469595837, 24.227846387]]]}}, {"id": "39354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13884834, 26.679088054], [142.138796109, 26.679073054], [142.138815006, 26.679107775], [142.13884834, 26.679088054]]]}}, {"id": "39355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231845837, 27.069812495], [142.23180917, 27.06977], [142.23180834, 27.069825279], [142.231845837, 27.069812495]]]}}, {"id": "39356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378432127, 24.780000946], [141.378381634, 24.779954604], [141.378330791, 24.779977144], [141.378432127, 24.780000946]]]}}, {"id": "39357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236337497, 27.112223613], [142.236341946, 27.112277495], [142.236362218, 27.112267775], [142.236337497, 27.112223613]]]}}, {"id": "39358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162644306, 26.670589108], [142.162596446, 26.670562613], [142.162618911, 26.670605919], [142.162644306, 26.670589108]]]}}, {"id": "39359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228231115, 27.110075559], [142.228291388, 27.110040279], [142.228216394, 27.110046667], [142.228231115, 27.110075559]]]}}, {"id": "39360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236019364, 27.084063054], [142.236052218, 27.084102081], [142.236071699, 27.084061532], [142.236019364, 27.084063054]]]}}, {"id": "39361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20563917, 27.077941667], [142.205583606, 27.077958892], [142.20564917, 27.077979721], [142.20563917, 27.077941667]]]}}, {"id": "39362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24119, 27.047923613], [142.24114, 27.047915], [142.241162776, 27.047950279], [142.24119, 27.047923613]]]}}, {"id": "39363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196141336, 27.039250919], [142.196150117, 27.039193135], [142.196117717, 27.03922864], [142.196141336, 27.039250919]]]}}, {"id": "39364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191597367, 27.041967694], [142.191620506, 27.042007198], [142.191655447, 27.041983252], [142.191597367, 27.041967694]]]}}, {"id": "39365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227321388, 27.119288892], [142.2273, 27.119237225], [142.227285006, 27.119290279], [142.227321388, 27.119288892]]]}}, {"id": "39366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194944358, 27.041158198], [142.194999364, 27.041129667], [142.194985422, 27.041123279], [142.194944358, 27.041158198]]]}}, {"id": "39367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203060856, 27.086786532], [142.203140999, 27.086770973], [142.203047328, 27.086776252], [142.203060856, 27.086786532]]]}}, {"id": "39368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217027497, 27.041144162], [142.217073606, 27.041189162], [142.217069728, 27.041133613], [142.217027497, 27.041144162]]]}}, {"id": "39369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[140.888735966, 27.242438739], [140.88867585, 27.24247309], [140.88875227, 27.242463414], [140.888735966, 27.242438739]]]}}, {"id": "39370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.24539917, 27.090617495], [142.245371673, 27.090563054], [142.245366667, 27.090623054], [142.24539917, 27.090617495]]]}}, {"id": "39371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176885577, 26.605655586], [142.176933774, 26.605644892], [142.17692297, 26.605604802], [142.176885577, 26.605655586]]]}}, {"id": "39372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190687834, 27.104579108], [142.19065131, 27.104624829], [142.1907, 27.104623252], [142.190687834, 27.104579108]]]}}, {"id": "39373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204447782, 27.118706667], [142.204507782, 27.118701108], [142.20445834, 27.118678054], [142.204447782, 27.118706667]]]}}, {"id": "39374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182117756, 27.071894802], [142.182114527, 27.071956919], [142.182155966, 27.071949559], [142.182117756, 27.071894802]]]}}, {"id": "39375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122102503, 26.705286946], [142.12204917, 26.705313333], [142.122088885, 26.705329721], [142.122102503, 26.705286946]]]}}, {"id": "39376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181551115, 27.100037198], [142.18160856, 27.100008252], [142.181575863, 27.099994748], [142.181551115, 27.100037198]]]}}, {"id": "39377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171166394, 27.045067495], [142.17119083, 27.045013892], [142.171156394, 27.045011946], [142.171166394, 27.045067495]]]}}, {"id": "39378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216734553, 27.041193468], [142.216800441, 27.041180721], [142.2168007, 27.041156081], [142.216734553, 27.041193468]]]}}, {"id": "39379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181650584, 26.616602162], [142.181711362, 26.616611559], [142.181707782, 26.616572946], [142.181650584, 26.616602162]]]}}, {"id": "39380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171711556, 26.642172306], [142.17173345, 26.642231586], [142.171740999, 26.642180946], [142.171711556, 26.642172306]]]}}, {"id": "39381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205728612, 27.077911667], [142.20568834, 27.077930829], [142.205728612, 27.077961946], [142.205728612, 27.077911667]]]}}, {"id": "39382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223711634, 27.090881279], [142.223654423, 27.090862613], [142.223658223, 27.090901414], [142.223711634, 27.090881279]]]}}, {"id": "39383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285689702, 24.788045901], [141.285648327, 24.787983054], [141.285688067, 24.788073432], [141.285689702, 24.788045901]]]}}, {"id": "39384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132956446, 26.685809225], [142.133014527, 26.685807559], [142.132974306, 26.685774829], [142.132956446, 26.685809225]]]}}, {"id": "39385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13744834, 26.700132495], [142.137465006, 26.700191667], [142.137485551, 26.700157495], [142.13744834, 26.700132495]]]}}, {"id": "39386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19343489, 27.04078064], [142.193499248, 27.040761613], [142.193501699, 27.040717198], [142.19343489, 27.04078064]]]}}, {"id": "39387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285623074, 24.788697964], [141.285651401, 24.788741883], [141.285661492, 24.78870609], [141.285623074, 24.788697964]]]}}, {"id": "39388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189742477, 27.088867414], [142.189781284, 27.088909252], [142.189768392, 27.088867919], [142.189742477, 27.088867414]]]}}, {"id": "39389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149656667, 26.708836946], [142.149657224, 26.708773333], [142.149626667, 26.708787775], [142.149656667, 26.708836946]]]}}, {"id": "39390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186678885, 27.057198892], [142.186618885, 27.057236667], [142.186683333, 27.057207775], [142.186678885, 27.057198892]]]}}, {"id": "39391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186123333, 27.039831613], [142.186176226, 27.039874865], [142.186143774, 27.039815694], [142.186123333, 27.039831613]]]}}, {"id": "39392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227313606, 27.115506108], [142.22728, 27.115459721], [142.227273061, 27.115508054], [142.227313606, 27.115506108]]]}}, {"id": "39393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229244721, 27.114823613], [142.229184721, 27.114791108], [142.229234449, 27.114843054], [142.229244721, 27.114823613]]]}}, {"id": "39394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123296252, 26.702639829], [142.123340441, 26.702603252], [142.123286355, 26.702593441], [142.123296252, 26.702639829]]]}}, {"id": "39395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.457712503, 24.224874162], [141.457736394, 24.224829162], [141.457687224, 24.224811946], [141.457712503, 24.224874162]]]}}, {"id": "39396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20739214, 27.041562532], [142.207419533, 27.041601748], [142.207430726, 27.041546865], [142.20739214, 27.041562532]]]}}, {"id": "39397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226951115, 27.110613613], [142.226929442, 27.110571946], [142.226893606, 27.110617495], [142.226951115, 27.110613613]]]}}, {"id": "39398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139166031, 26.67904036], [142.139218029, 26.679015559], [142.139176524, 26.679011279], [142.139166031, 26.67904036]]]}}, {"id": "39399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.249543891, 27.091563054], [142.249496394, 27.091606387], [142.249532218, 27.091611667], [142.249543891, 27.091563054]]]}}, {"id": "39400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206864475, 27.080850613], [142.206904137, 27.080819946], [142.206867523, 27.080815387], [142.206864475, 27.080850613]]]}}, {"id": "39401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142902529, 26.708253468], [142.142946861, 26.708271198], [142.142948521, 26.708249198], [142.142902529, 26.708253468]]]}}, {"id": "39402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181683061, 27.071711387], [142.181619728, 27.071735559], [142.18166834, 27.071741946], [142.181683061, 27.071711387]]]}}, {"id": "39403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230251115, 27.059506946], [142.230278054, 27.059551946], [142.230287224, 27.059522225], [142.230251115, 27.059506946]]]}}, {"id": "39404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17317786, 26.639723748], [142.173236835, 26.639735613], [142.173211894, 26.639699892], [142.17317786, 26.639723748]]]}}, {"id": "39405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160010973, 26.701426], [142.160050026, 26.701400054], [142.160005058, 26.701375108], [142.160010973, 26.701426]]]}}, {"id": "39406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231708612, 27.062224162], [142.231706939, 27.062278613], [142.23173917, 27.062262775], [142.231708612, 27.062224162]]]}}, {"id": "39407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.247925279, 27.092251108], [142.247933606, 27.092188333], [142.247896939, 27.092232225], [142.247925279, 27.092251108]]]}}, {"id": "39408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238350272, 27.048083333], [142.238308054, 27.048119162], [142.238342776, 27.048123054], [142.238350272, 27.048083333]]]}}, {"id": "39409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174799494, 26.598378586], [142.174740026, 26.598362054], [142.174785162, 26.598395198], [142.174799494, 26.598378586]]]}}, {"id": "39410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23119083, 27.069301108], [142.231227224, 27.06935], [142.23124, 27.069304162], [142.23119083, 27.069301108]]]}}, {"id": "39411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147240856, 26.690084414], [142.147275668, 26.690118054], [142.147294942, 26.690092054], [142.147240856, 26.690084414]]]}}, {"id": "39412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164742192, 26.630545802], [142.164748911, 26.630608694], [142.164778418, 26.630591054], [142.164742192, 26.630545802]]]}}, {"id": "39413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233453969, 27.080933802], [142.233520532, 27.080879721], [142.23351808, 27.080871054], [142.233453969, 27.080933802]]]}}, {"id": "39414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174594228, 26.600126333], [142.174575668, 26.600076081], [142.174554669, 26.600131441], [142.174594228, 26.600126333]]]}}, {"id": "39415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231651946, 27.067499721], [142.231635837, 27.067439162], [142.231623061, 27.067490279], [142.231651946, 27.067499721]]]}}, {"id": "39416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17328834, 26.608539054], [142.173318612, 26.608508973], [142.173283917, 26.608475532], [142.17328834, 26.608539054]]]}}, {"id": "39417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149173307, 26.663425279], [142.149194034, 26.663375333], [142.149152827, 26.663373387], [142.149173307, 26.663425279]]]}}, {"id": "39418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206901141, 27.042707802], [142.20694406, 27.04268736], [142.206905305, 27.042662414], [142.206901141, 27.042707802]]]}}, {"id": "39419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190385551, 27.067827775], [142.190322776, 27.067859162], [142.190361673, 27.067863613], [142.190385551, 27.067827775]]]}}, {"id": "39420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191282698, 27.041867586], [142.191248054, 27.041834135], [142.191248716, 27.041870775], [142.191282698, 27.041867586]]]}}, {"id": "39421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12580083, 26.700790829], [142.125822503, 26.700840279], [142.125842218, 26.700817495], [142.12580083, 26.700790829]]]}}, {"id": "39422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176849442, 26.655956946], [142.17686642, 26.656021108], [142.176863891, 26.655954027], [142.176849442, 26.655956946]]]}}, {"id": "39423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222445227, 27.094020279], [142.222396135, 27.093990387], [142.222393385, 27.094031468], [142.222445227, 27.094020279]]]}}, {"id": "39424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140253476, 26.666969495], [142.140313061, 26.666962414], [142.140276135, 26.666932919], [142.140253476, 26.666969495]]]}}, {"id": "39425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.220190584, 27.100744108], [142.220237588, 27.100693306], [142.220153256, 27.100734135], [142.220190584, 27.100744108]]]}}, {"id": "39426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453336667, 24.232208892], [141.453275551, 24.232216946], [141.453278054, 24.232243054], [141.453336667, 24.232208892]]]}}, {"id": "39427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14399917, 26.671018892], [142.143964449, 26.671069721], [142.144003061, 26.671069721], [142.14399917, 26.671018892]]]}}, {"id": "39428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202972023, 27.044286829], [142.20302489, 27.044308054], [142.203029974, 27.044281775], [142.202972023, 27.044286829]]]}}, {"id": "39429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287642944, 24.807665486], [141.287700973, 24.807653847], [141.28767, 24.80762264], [141.287642944, 24.807665486]]]}}, {"id": "39430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128598885, 26.693605], [142.128574163, 26.693569162], [142.128564449, 26.693602775], [142.128598885, 26.693605]]]}}, {"id": "39431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199634306, 27.045453027], [142.199689468, 27.045474081], [142.199669339, 27.045430252], [142.199634306, 27.045453027]]]}}, {"id": "39432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125931362, 26.714021694], [142.125985499, 26.714073919], [142.126002918, 26.714016306], [142.125931362, 26.714021694]]]}}, {"id": "39433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122659831, 26.711939414], [142.122694838, 26.711972333], [142.12270847, 26.711943613], [142.122659831, 26.711939414]]]}}, {"id": "39434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151122218, 26.696711387], [142.151087497, 26.696751387], [142.151106394, 26.696767495], [142.151122218, 26.696711387]]]}}, {"id": "39435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21930192, 27.096928613], [142.219353217, 27.09696264], [142.219374137, 27.096932748], [142.21930192, 27.096928613]]]}}, {"id": "39436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194613061, 27.040820829], [142.194577497, 27.040784721], [142.194574721, 27.040827495], [142.194613061, 27.040820829]]]}}, {"id": "39437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197044163, 27.038552748], [142.197095227, 27.03853536], [142.1970562, 27.038516108], [142.197044163, 27.038552748]]]}}, {"id": "39438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176475772, 26.617089135], [142.176520026, 26.617123865], [142.176507393, 26.617070613], [142.176475772, 26.617089135]]]}}, {"id": "39439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232416861, 27.072347252], [142.232374034, 27.072360135], [142.232375473, 27.072370613], [142.232416861, 27.072347252]]]}}, {"id": "39440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235679728, 27.096961108], [142.235737224, 27.096927225], [142.235675837, 27.096938613], [142.235679728, 27.096961108]]]}}, {"id": "39441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141176031, 26.666778586], [142.1412, 26.666822252], [142.141224137, 26.666757973], [142.141176031, 26.666778586]]]}}, {"id": "39442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179792776, 27.045257775], [142.17978834, 27.045312225], [142.179831115, 27.045286108], [142.179792776, 27.045257775]]]}}, {"id": "39443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181734137, 27.094098027], [142.181799831, 27.094125748], [142.18184834, 27.094119279], [142.181769611, 27.094078586], [142.181734137, 27.094098027]]]}}, {"id": "39444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23229, 27.070371108], [142.232246109, 27.070362495], [142.232271115, 27.070388613], [142.23229, 27.070371108]]]}}, {"id": "39445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186120246, 27.089872667], [142.186067691, 27.089856306], [142.186064838, 27.089900198], [142.186120246, 27.089872667]]]}}, {"id": "39446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188986939, 27.043826667], [142.18895083, 27.043864441], [142.188999442, 27.043855], [142.188986939, 27.043826667]]]}}, {"id": "39447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14413083, 26.670591667], [142.144081115, 26.670562775], [142.144096667, 26.670610279], [142.14413083, 26.670591667]]]}}, {"id": "39448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184437224, 27.091420279], [142.184428612, 27.091368613], [142.184401673, 27.091416946], [142.184437224, 27.091420279]]]}}, {"id": "39449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.081161245, 20.425585135], [136.081129442, 20.425629], [136.081162361, 20.425633721], [136.081161245, 20.425585135]]]}}, {"id": "39450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233813865, 27.074374829], [142.233870441, 27.074341865], [142.23380511, 27.074343973], [142.233813865, 27.074374829]]]}}, {"id": "39451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213580584, 27.039471387], [142.213639079, 27.039501532], [142.213650752, 27.039482108], [142.213580584, 27.039471387]]]}}, {"id": "39452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222659001, 27.036487748], [142.222723865, 27.036472748], [142.222722827, 27.036452162], [142.222659001, 27.036487748]]]}}, {"id": "39453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287087198, 25.447829], [141.287053307, 25.447873162], [141.287101362, 25.447861495], [141.287087198, 25.447829]]]}}, {"id": "39454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1527562, 26.637980532], [142.15281655, 26.637961252], [142.152740921, 26.637961586], [142.1527562, 26.637980532]]]}}, {"id": "39455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173522529, 26.644935775], [142.17356642, 26.644989135], [142.173536667, 26.644925919], [142.173522529, 26.644935775]]]}}, {"id": "39456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234472892, 27.071723306], [142.23451939, 27.071683613], [142.234514112, 27.071671252], [142.234472892, 27.071723306]]]}}, {"id": "39457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207365447, 27.042068027], [142.207414812, 27.042049441], [142.207362698, 27.042042468], [142.207365447, 27.042068027]]]}}, {"id": "39458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172788444, 26.643727946], [142.172803696, 26.64377064], [142.172826304, 26.643726721], [142.172788444, 26.643727946]]]}}, {"id": "39459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231169689, 27.068290775], [142.231131725, 27.068255198], [142.231123645, 27.068300532], [142.231169689, 27.068290775]]]}}, {"id": "39460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234545279, 27.076695559], [142.234511115, 27.076658892], [142.234494163, 27.076716108], [142.234545279, 27.076695559]]]}}, {"id": "39461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143457224, 26.672368333], [142.143400558, 26.672371667], [142.143418612, 26.672415], [142.143457224, 26.672368333]]]}}, {"id": "39462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166553502, 26.680413829], [142.166609442, 26.680410613], [142.166586083, 26.680374802], [142.166553502, 26.680413829]]]}}, {"id": "39463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191872672, 27.075101613], [142.191916887, 27.075141613], [142.191917419, 27.075099748], [142.191872672, 27.075101613]]]}}, {"id": "39464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248347782, 27.093178333], [142.2483, 27.093144441], [142.2483, 27.093190559], [142.248347782, 27.093178333]]]}}, {"id": "39465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174126005, 26.598330586], [142.174115383, 26.598278694], [142.174093606, 26.598295495], [142.174126005, 26.598330586]]]}}, {"id": "39466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128454864, 26.697215721], [142.128420726, 26.697259333], [142.128477082, 26.697237919], [142.128454864, 26.697215721]]]}}, {"id": "39467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199914254, 27.045409054], [142.199967951, 27.045401198], [142.199933528, 27.045376252], [142.199914254, 27.045409054]]]}}, {"id": "39468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129776394, 26.691487892], [142.129824189, 26.691476559], [142.12982406, 26.691446973], [142.129776394, 26.691487892]]]}}, {"id": "39469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188765006, 27.043926108], [142.188717224, 27.043912775], [142.188722218, 27.043947775], [142.188765006, 27.043926108]]]}}, {"id": "39470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284700674, 24.750433396], [141.284657769, 24.750467225], [141.28468904, 24.750479018], [141.284700674, 24.750433396]]]}}, {"id": "39471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136755642, 26.700146468], [142.136796031, 26.700127919], [142.136760143, 26.700119108], [142.136755642, 26.700146468]]]}}, {"id": "39472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127832023, 26.695353252], [142.127884812, 26.695368198], [142.127897224, 26.695335613], [142.127832023, 26.695353252]]]}}, {"id": "39473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17444856, 26.653396162], [142.174482866, 26.653437027], [142.174464578, 26.653374306], [142.17444856, 26.653396162]]]}}, {"id": "39474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123079974, 26.708413027], [142.123121608, 26.708442694], [142.123135058, 26.708418586], [142.123079974, 26.708413027]]]}}, {"id": "39475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167382361, 26.685186027], [142.1674307, 26.685177495], [142.167383411, 26.685138829], [142.167382361, 26.685186027]]]}}, {"id": "39476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176585837, 26.609300532], [142.176645058, 26.609285468], [142.176588586, 26.609272], [142.176585837, 26.609300532]]]}}, {"id": "39477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232287834, 27.062677892], [142.232228664, 27.062733495], [142.232302088, 27.062701333], [142.232287834, 27.062677892]]]}}, {"id": "39478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.452996109, 24.234421667], [141.453043333, 24.234465], [141.453012218, 24.234413892], [141.452996109, 24.234421667]]]}}, {"id": "39479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237228859, 27.049168721], [142.237174034, 27.049132721], [142.237167445, 27.049163225], [142.237228859, 27.049168721]]]}}, {"id": "39480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123570506, 26.705423748], [142.123627419, 26.705443108], [142.123590389, 26.705403252], [142.123570506, 26.705423748]]]}}, {"id": "39481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203311946, 27.044343829], [142.203372088, 27.044329946], [142.203315888, 27.044305829], [142.203311946, 27.044343829]]]}}, {"id": "39482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223619442, 27.044990829], [142.223594163, 27.045036946], [142.223645837, 27.045026946], [142.223619442, 27.044990829]]]}}, {"id": "39483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121845499, 26.705410532], [142.121905447, 26.705434667], [142.121892335, 26.705393775], [142.121845499, 26.705410532]]]}}, {"id": "39484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285087108, 24.803095333], [141.285023035, 24.803143694], [141.285040519, 24.803146757], [141.285087108, 24.803095333]]]}}, {"id": "39485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180568223, 26.609048225], [142.180533411, 26.609006919], [142.180524137, 26.609052613], [142.180568223, 26.609048225]]]}}, {"id": "39486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22429847, 27.090901279], [142.224250532, 27.090932054], [142.224295136, 27.090944802], [142.22429847, 27.090901279]]]}}, {"id": "39487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207558612, 27.082941829], [142.207611582, 27.082905027], [142.207574968, 27.082898225], [142.207558612, 27.082941829]]]}}, {"id": "39488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186182607, 27.088922279], [142.186208029, 27.088986667], [142.186218495, 27.088916802], [142.186182607, 27.088922279]]]}}, {"id": "39489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285106809, 24.785527054], [141.285092348, 24.785600027], [141.285126783, 24.785596937], [141.285106809, 24.785527054]]]}}, {"id": "39490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163280856, 26.665630225], [142.163219274, 26.665629135], [142.163269468, 26.665673108], [142.163280856, 26.665630225]]]}}, {"id": "39491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205742503, 27.043865559], [142.205699728, 27.043891946], [142.20573834, 27.043907225], [142.205742503, 27.043865559]]]}}, {"id": "39492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240999728, 27.047368613], [142.240945551, 27.047376946], [142.240976667, 27.04741], [142.240999728, 27.047368613]]]}}, {"id": "39493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194187497, 27.040815], [142.194238223, 27.040826829], [142.19422083, 27.040797333], [142.194187497, 27.040815]]]}}, {"id": "39494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172347756, 26.641615973], [142.17240358, 26.641619973], [142.172375227, 26.64158164], [142.172347756, 26.641615973]]]}}, {"id": "39495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17400808, 26.646651721], [142.174018807, 26.646711081], [142.174032918, 26.646661252], [142.17400808, 26.646651721]]]}}, {"id": "39496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193253891, 27.088947225], [142.193291115, 27.088995559], [142.193293606, 27.088943054], [142.193253891, 27.088947225]]]}}, {"id": "39497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231122503, 27.109826108], [142.231069442, 27.109786387], [142.231062503, 27.109804441], [142.231122503, 27.109826108]]]}}, {"id": "39498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123675279, 26.704911946], [142.123642218, 26.704864162], [142.123627782, 26.704908054], [142.123675279, 26.704911946]]]}}, {"id": "39499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286609844, 24.785032532], [141.286557471, 24.785059279], [141.286605344, 24.785059414], [141.286609844, 24.785032532]]]}}, {"id": "39500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232738612, 27.072413054], [142.232725279, 27.072476667], [142.232761388, 27.072469441], [142.232738612, 27.072413054]]]}}, {"id": "39501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.47327834, 24.239068333], [141.473250272, 24.239108333], [141.473285551, 24.239106108], [141.47327834, 24.239068333]]]}}, {"id": "39502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196981284, 27.038441667], [142.197037134, 27.038451054], [142.196993528, 27.038413387], [142.196981284, 27.038441667]]]}}, {"id": "39503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177993281, 26.654697252], [142.178022361, 26.65472664], [142.17802192, 26.654694225], [142.177993281, 26.654697252]]]}}, {"id": "39504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194171115, 27.040259108], [142.19415214, 27.04030464], [142.194197588, 27.040299865], [142.194171115, 27.040259108]]]}}, {"id": "39505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138262218, 26.679503892], [142.138212776, 26.679519441], [142.138261388, 26.679545829], [142.138262218, 26.679503892]]]}}, {"id": "39506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169122477, 26.658316973], [142.169101362, 26.658368279], [142.169153502, 26.658363694], [142.169122477, 26.658316973]]]}}, {"id": "39507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189172827, 27.054144802], [142.189187328, 27.054083027], [142.189145577, 27.054125613], [142.189172827, 27.054144802]]]}}, {"id": "39508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285727354, 24.788707577], [141.285787549, 24.788729171], [141.285786654, 24.78871409], [141.285727354, 24.788707577]]]}}, {"id": "39509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164019144, 26.677678387], [142.164065305, 26.677644667], [142.16401345, 26.677630468], [142.164019144, 26.677678387]]]}}, {"id": "39510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144437471, 26.675246306], [142.144479805, 26.675266586], [142.144481777, 26.67523136], [142.144437471, 26.675246306]]]}}, {"id": "39511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174676835, 26.649336135], [142.174737951, 26.649353748], [142.174691971, 26.649314081], [142.174676835, 26.649336135]]]}}, {"id": "39512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285788716, 24.797420964], [141.285825577, 24.797390351], [141.285767484, 24.797379874], [141.285788716, 24.797420964]]]}}, {"id": "39513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217073411, 27.041454054], [142.217123281, 27.041486829], [142.21713917, 27.041461], [142.217073411, 27.041454054]]]}}, {"id": "39514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19112406, 27.042236775], [142.191167782, 27.042280586], [142.191175668, 27.042228027], [142.19112406, 27.042236775]]]}}, {"id": "39515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18932703, 27.053397532], [142.189298223, 27.053363441], [142.189248003, 27.053400414], [142.18932703, 27.053397532]]]}}, {"id": "39516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237935668, 27.052166694], [142.237939001, 27.052118775], [142.237901089, 27.052169108], [142.237935668, 27.052166694]]]}}, {"id": "39517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129801141, 26.690985829], [142.129861777, 26.690954559], [142.129841051, 26.69093336], [142.129801141, 26.690985829]]]}}, {"id": "39518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22406917, 27.045406108], [142.224047782, 27.045455829], [142.224081115, 27.045450559], [142.22406917, 27.045406108]]]}}, {"id": "39519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192501388, 27.075489748], [142.192553671, 27.07552064], [142.192564617, 27.075502387], [142.192501388, 27.075489748]]]}}, {"id": "39520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181765642, 26.623253802], [142.181812633, 26.623254559], [142.181783943, 26.623201613], [142.181765642, 26.623253802]]]}}, {"id": "39521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223788755, 27.084873721], [142.223735383, 27.084867306], [142.223721141, 27.084904892], [142.223788755, 27.084873721]]]}}, {"id": "39522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206952088, 27.081612892], [142.207004695, 27.081596279], [142.206966719, 27.081576946], [142.206952088, 27.081612892]]]}}, {"id": "39523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174276783, 26.653072694], [142.174310311, 26.653111829], [142.174323839, 26.653089252], [142.174276783, 26.653072694]]]}}, {"id": "39524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121420973, 26.715714802], [142.121460052, 26.715712694], [142.12143489, 26.715652495], [142.121420973, 26.715714802]]]}}, {"id": "39525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193716667, 27.040755829], [142.193725551, 27.040816108], [142.193737224, 27.040793613], [142.193716667, 27.040755829]]]}}, {"id": "39526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472821388, 24.237708613], [141.472863891, 24.237759721], [141.472853061, 24.237723054], [141.472821388, 24.237708613]]]}}, {"id": "39527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128825837, 26.692927225], [142.128768612, 26.69293], [142.128813606, 26.692958054], [142.128825837, 26.692927225]]]}}, {"id": "39528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177711479, 26.656030333], [142.1777438, 26.656082027], [142.177740389, 26.656017108], [142.177711479, 26.656030333]]]}}, {"id": "39529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129967393, 26.707416532], [142.13002808, 26.707403306], [142.129977419, 26.707387279], [142.129967393, 26.707416532]]]}}, {"id": "39530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217483333, 27.040784441], [142.217419442, 27.040785279], [142.217423061, 27.040809441], [142.217483333, 27.040784441]]]}}, {"id": "39531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219178301, 27.096939802], [142.21926703, 27.096927225], [142.219161608, 27.096911135], [142.219178301, 27.096939802]]]}}, {"id": "39532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207426057, 27.041695892], [142.207481829, 27.041711225], [142.207486446, 27.041699495], [142.207426057, 27.041695892]]]}}, {"id": "39533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166268054, 26.683201306], [142.16621358, 26.683191694], [142.166233645, 26.683228694], [142.166268054, 26.683201306]]]}}, {"id": "39534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173612361, 26.637907414], [142.173663022, 26.637880721], [142.173622827, 26.637866865], [142.173612361, 26.637907414]]]}}, {"id": "39535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173757224, 26.63799], [142.173807886, 26.637963306], [142.173767588, 26.637949468], [142.173757224, 26.63799]]]}}, {"id": "39536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131919611, 26.688285387], [142.131962529, 26.688291586], [142.131962387, 26.688263694], [142.131919611, 26.688285387]]]}}, {"id": "39537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236247224, 27.04955036], [142.236295136, 27.049573108], [142.236296498, 27.049545414], [142.236247224, 27.04955036]]]}}, {"id": "39538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188295966, 27.105232198], [142.188300921, 27.105289333], [142.188323528, 27.105245333], [142.188295966, 27.105232198]]]}}, {"id": "39539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181741219, 27.101227441], [142.181774864, 27.101193667], [142.18174869, 27.101177973], [142.181741219, 27.101227441]]]}}, {"id": "39540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186468885, 27.056944162], [142.186415837, 27.056939162], [142.186434163, 27.056970559], [142.186468885, 27.056944162]]]}}, {"id": "39541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187777328, 27.105386054], [142.187742049, 27.105334946], [142.1877493, 27.105396387], [142.187777328, 27.105386054]]]}}, {"id": "39542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.169944384, 26.658416829], [142.169919883, 26.658369829], [142.169903774, 26.658411279], [142.169944384, 26.658416829]]]}}, {"id": "39543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163270584, 26.675333865], [142.163223502, 26.675373], [142.16327061, 26.675363387], [142.163270584, 26.675333865]]]}}, {"id": "39544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177244617, 26.655949586], [142.177276109, 26.655982225], [142.177280169, 26.655940775], [142.177244617, 26.655949586]]]}}, {"id": "39545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219031634, 27.041411054], [142.219095499, 27.041386306], [142.219033671, 27.041368532], [142.219031634, 27.041411054]]]}}, {"id": "39546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183214449, 27.092419441], [142.183218612, 27.092475], [142.183245837, 27.092469162], [142.183214449, 27.092419441]]]}}, {"id": "39547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164674423, 26.630484225], [142.164666641, 26.630441], [142.164633333, 26.630475252], [142.164674423, 26.630484225]]]}}, {"id": "39548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224108029, 27.09137536], [142.224142438, 27.091346775], [142.224099559, 27.091332054], [142.224108029, 27.09137536]]]}}, {"id": "39549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166503969, 26.684516495], [142.166529053, 26.684551333], [142.166544695, 26.684531802], [142.166503969, 26.684516495]]]}}, {"id": "39550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164625888, 26.630388333], [142.16459, 26.630434775], [142.164633645, 26.630410162], [142.164625888, 26.630388333]]]}}, {"id": "39551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187557173, 27.060091694], [142.187615888, 27.060065532], [142.187565084, 27.060063081], [142.187557173, 27.060091694]]]}}, {"id": "39552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240598106, 27.047557054], [142.240579559, 27.047501468], [142.240546252, 27.047528081], [142.240598106, 27.047557054]]]}}, {"id": "39553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150539222, 26.647745946], [142.150461051, 26.647729054], [142.150531193, 26.647762748], [142.150539222, 26.647745946]]]}}, {"id": "39554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202938418, 27.079210225], [142.202983865, 27.079199135], [142.202955422, 27.079184721], [142.202938418, 27.079210225]]]}}, {"id": "39555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230111479, 27.060087829], [142.230089079, 27.060032162], [142.23007642, 27.060096279], [142.230111479, 27.060087829]]]}}, {"id": "39556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14900275, 26.663147081], [142.14905358, 26.663133946], [142.148997497, 26.663115054], [142.14900275, 26.663147081]]]}}, {"id": "39557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188760246, 27.068317802], [142.188822672, 27.068331279], [142.188813943, 27.068301135], [142.188760246, 27.068317802]]]}}, {"id": "39558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126063061, 26.714033135], [142.12610511, 26.714074081], [142.12610786, 26.714014495], [142.126063061, 26.714033135]]]}}, {"id": "39559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174330532, 26.650165], [142.174394773, 26.650147306], [142.174350169, 26.650128946], [142.174330532, 26.650165]]]}}, {"id": "39560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123084163, 26.705729721], [142.123048054, 26.705690829], [142.123038054, 26.705713054], [142.123084163, 26.705729721]]]}}, {"id": "39561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234454721, 27.076668892], [142.234418054, 27.076631387], [142.23441834, 27.076680559], [142.234454721, 27.076668892]]]}}, {"id": "39562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284630649, 24.750300072], [141.284603774, 24.750246495], [141.284586602, 24.750308532], [141.284630649, 24.750300072]]]}}, {"id": "39563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185397691, 27.048485225], [142.185428418, 27.048522829], [142.185438833, 27.048487613], [142.185397691, 27.048485225]]]}}, {"id": "39564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162419974, 26.671088414], [142.162355694, 26.671110613], [142.162385058, 26.671126279], [142.162419974, 26.671088414]]]}}, {"id": "39565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142885279, 26.671543054], [142.142847782, 26.671502775], [142.142842218, 26.671545559], [142.142885279, 26.671543054]]]}}, {"id": "39566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231954553, 27.078555108], [142.231970752, 27.078494775], [142.231916939, 27.078557775], [142.231954553, 27.078555108]]]}}, {"id": "39567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152676278, 26.641322081], [142.152716809, 26.641273559], [142.152688249, 26.641259495], [142.152676278, 26.641322081]]]}}, {"id": "39568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122880584, 26.71160264], [142.122942529, 26.711638694], [142.122951829, 26.711612495], [142.122880584, 26.71160264]]]}}, {"id": "39569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222115966, 27.036664414], [142.222151505, 27.036643162], [142.222080389, 27.036619973], [142.222115966, 27.036664414]]]}}, {"id": "39570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.245273606, 27.091056667], [142.245305279, 27.091004441], [142.245264163, 27.091017775], [142.245273606, 27.091056667]]]}}, {"id": "39571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205104306, 27.043921973], [142.205155837, 27.043940225], [142.205159831, 27.043917306], [142.205104306, 27.043921973]]]}}, {"id": "39572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12181214, 26.711253694], [142.121892049, 26.711275559], [142.121907808, 26.711258306], [142.12181214, 26.711253694]]]}}, {"id": "39573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12248275, 26.710729495], [142.122535694, 26.710717198], [142.122495162, 26.710693306], [142.12248275, 26.710729495]]]}}, {"id": "39574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172836161, 26.636390387], [142.172882335, 26.636367054], [142.172843333, 26.636343441], [142.172836161, 26.636390387]]]}}, {"id": "39575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231373165, 27.071243225], [142.23142, 27.071274108], [142.231402944, 27.071211225], [142.231373165, 27.071243225]]]}}, {"id": "39576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143598859, 26.672063586], [142.143637977, 26.672080973], [142.143606161, 26.672036667], [142.143598859, 26.672063586]]]}}, {"id": "39577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141749922, 26.667434586], [142.141803554, 26.667430829], [142.141779611, 26.667399279], [142.141749922, 26.667434586]]]}}, {"id": "39578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.464657224, 24.244199441], [141.464580558, 24.244206667], [141.464580558, 24.244235279], [141.464657224, 24.244199441]]]}}, {"id": "39579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176744578, 26.601778135], [142.176719805, 26.601744225], [142.176698495, 26.601780802], [142.176744578, 26.601778135]]]}}, {"id": "39580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172470726, 26.644190829], [142.172525253, 26.644175694], [142.172495772, 26.64415164], [142.172470726, 26.644190829]]]}}, {"id": "39581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193310661, 27.040758441], [142.193364332, 27.040791748], [142.193338859, 27.040734306], [142.193310661, 27.040758441]]]}}, {"id": "39582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182395006, 27.096132495], [142.182453606, 27.096155], [142.182455006, 27.096126108], [142.182395006, 27.096132495]]]}}, {"id": "39583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172661556, 26.644434694], [142.172710921, 26.644400414], [142.172685966, 26.644375081], [142.172661556, 26.644434694]]]}}, {"id": "39584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222822192, 27.092452802], [142.222886005, 27.092432946], [142.222882309, 27.092409387], [142.222822192, 27.092452802]]]}}, {"id": "39585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177688249, 26.655960495], [142.177759585, 26.655956892], [142.177692438, 26.655942162], [142.177688249, 26.655960495]]]}}, {"id": "39586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285249313, 24.787305387], [141.285278807, 24.78725082], [141.285240934, 24.787266162], [141.285249313, 24.787305387]]]}}, {"id": "39587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193167691, 27.041080667], [142.193208444, 27.041110495], [142.1931962, 27.041071414], [142.193167691, 27.041080667]]]}}, {"id": "39588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149621115, 26.694231946], [142.149590558, 26.694189721], [142.149583333, 26.694224441], [142.149621115, 26.694231946]]]}}, {"id": "39589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196605305, 27.039660468], [142.196660947, 27.039653919], [142.196635188, 27.039628495], [142.196605305, 27.039660468]]]}}, {"id": "39590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18677428, 27.060786468], [142.186833943, 27.060765441], [142.186785032, 27.060755946], [142.18677428, 27.060786468]]]}}, {"id": "39591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173759728, 27.116551946], [142.173751115, 27.116500279], [142.173724163, 27.11654], [142.173759728, 27.116551946]]]}}, {"id": "39592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16277847, 26.674428], [142.162759922, 26.674384973], [142.162723113, 26.674422667], [142.16277847, 26.674428]]]}}, {"id": "39593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233727977, 27.072441108], [142.233782607, 27.072442], [142.233752503, 27.072411919], [142.233727977, 27.072441108]]]}}, {"id": "39594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21741917, 27.040098306], [142.217458223, 27.040060775], [142.217408275, 27.040044252], [142.21741917, 27.040098306]]]}}, {"id": "39595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177639922, 26.654518892], [142.177636589, 26.654572586], [142.177682724, 26.654522802], [142.177639922, 26.654518892]]]}}, {"id": "39596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230899442, 27.060949162], [142.230858612, 27.060977495], [142.2309, 27.060988892], [142.230899442, 27.060949162]]]}}, {"id": "39597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228334721, 27.115101108], [142.228367224, 27.115055279], [142.228322503, 27.115067495], [142.228334721, 27.115101108]]]}}, {"id": "39598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152323528, 26.643071108], [142.152376939, 26.643054279], [142.152338444, 26.643039892], [142.152323528, 26.643071108]]]}}, {"id": "39599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144633502, 26.676358586], [142.144682944, 26.676362775], [142.144657886, 26.676329135], [142.144633502, 26.676358586]]]}}, {"id": "39600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21754131, 27.041544054], [142.217595577, 27.041519135], [142.217560389, 27.041508108], [142.21754131, 27.041544054]]]}}, {"id": "39601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225066744, 27.042058333], [142.225110558, 27.042039748], [142.22508703, 27.04201136], [142.225066744, 27.042058333]]]}}, {"id": "39602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237286978, 27.053941], [142.237235447, 27.053977387], [142.237250584, 27.053996829], [142.237286978, 27.053941]]]}}, {"id": "39603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162516744, 26.670747946], [142.162485966, 26.670790667], [142.162524358, 26.670801279], [142.162516744, 26.670747946]]]}}, {"id": "39604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189645227, 27.042753613], [142.189609468, 27.042722333], [142.18959511, 27.042750532], [142.189645227, 27.042753613]]]}}, {"id": "39605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181856667, 27.098345198], [142.181897639, 27.098356081], [142.181892724, 27.098316721], [142.181856667, 27.098345198]]]}}, {"id": "39606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162660389, 26.666343306], [142.162617665, 26.666383892], [142.162635668, 26.666396387], [142.162660389, 26.666343306]]]}}, {"id": "39607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234976394, 27.076762495], [142.23493834, 27.076721108], [142.234924721, 27.076747775], [142.234976394, 27.076762495]]]}}, {"id": "39608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144089442, 26.670531946], [142.14403917, 26.670508333], [142.144047497, 26.670541387], [142.144089442, 26.670531946]]]}}, {"id": "39609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131375279, 26.687322225], [142.131331946, 26.687322225], [142.131355279, 26.687353333], [142.131375279, 26.687322225]]]}}, {"id": "39610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252260272, 27.089608333], [142.252253333, 27.089666667], [142.252273891, 27.089669721], [142.252260272, 27.089608333]]]}}, {"id": "39611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224007224, 27.091200054], [142.22406144, 27.091180027], [142.224003333, 27.091169], [142.224007224, 27.091200054]]]}}, {"id": "39612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195164747, 27.038505748], [142.195159079, 27.038541865], [142.195234669, 27.038480559], [142.195164747, 27.038505748]]]}}, {"id": "39613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187745253, 27.105449468], [142.187760999, 27.105513973], [142.187787717, 27.105505279], [142.187745253, 27.105449468]]]}}, {"id": "39614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231065694, 27.068309919], [142.231118418, 27.068313162], [142.231111855, 27.068301721], [142.231065694, 27.068309919]]]}}, {"id": "39615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186773606, 27.116121946], [142.186838612, 27.116130829], [142.186836109, 27.116111108], [142.186773606, 27.116121946]]]}}, {"id": "39616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14324, 26.671767225], [142.143191115, 26.671731387], [142.143198054, 26.671771667], [142.14324, 26.671767225]]]}}, {"id": "39617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222410558, 27.036533892], [142.222373606, 27.036500279], [142.222373606, 27.036523333], [142.222410558, 27.036533892]]]}}, {"id": "39618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181701751, 26.623246829], [142.181744358, 26.62325464], [142.181724617, 26.623213613], [142.181701751, 26.623246829]]]}}, {"id": "39619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124195551, 26.705121387], [142.12417, 26.705081387], [142.124145837, 26.705133054], [142.124195551, 26.705121387]]]}}, {"id": "39620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180430532, 26.624323135], [142.18037511, 26.624281495], [142.180420895, 26.624330468], [142.180430532, 26.624323135]]]}}, {"id": "39621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284971699, 24.803160694], [141.284921738, 24.803198369], [141.284973554, 24.80318336], [141.284971699, 24.803160694]]]}}, {"id": "39622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128546109, 26.696250441], [142.128510389, 26.696296613], [142.128563022, 26.696272198], [142.128546109, 26.696250441]]]}}, {"id": "39623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152184086, 26.647516559], [142.152172698, 26.647568748], [142.152204669, 26.647521306], [142.152184086, 26.647516559]]]}}, {"id": "39624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207224163, 27.042292225], [142.207197782, 27.042233054], [142.20718834, 27.042273613], [142.207224163, 27.042292225]]]}}, {"id": "39625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147194721, 26.689999162], [142.147151388, 26.689974441], [142.147153333, 26.690009441], [142.147194721, 26.689999162]]]}}, {"id": "39626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233125616, 27.076467946], [142.233128911, 27.076413694], [142.233102283, 27.076451027], [142.233125616, 27.076467946]]]}}, {"id": "39627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21630428, 27.040784721], [142.216333256, 27.040812306], [142.216338029, 27.040782054], [142.21630428, 27.040784721]]]}}, {"id": "39628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18434572, 27.04854536], [142.184384475, 27.048515802], [142.184335162, 27.048506135], [142.18434572, 27.04854536]]]}}, {"id": "39629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149690532, 26.647829613], [142.149737912, 26.647816468], [142.149691505, 26.647808667], [142.149690532, 26.647829613]]]}}, {"id": "39630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17050144, 26.657952559], [142.170553256, 26.65794564], [142.170507886, 26.657908225], [142.17050144, 26.657952559]]]}}, {"id": "39631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196744449, 27.038957225], [142.196774449, 27.038995559], [142.196782503, 27.038963054], [142.196744449, 27.038957225]]]}}, {"id": "39632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453867497, 24.226629162], [141.453803333, 24.226656387], [141.453820558, 24.226676667], [141.453867497, 24.226629162]]]}}, {"id": "39633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234525616, 27.075930495], [142.234576913, 27.075932306], [142.234541997, 27.075907162], [142.234525616, 27.075930495]]]}}, {"id": "39634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236276109, 27.083535279], [142.236242503, 27.083567495], [142.236282503, 27.083559162], [142.236276109, 27.083535279]]]}}, {"id": "39635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183973606, 27.056548054], [142.183952503, 27.056499721], [142.18394834, 27.056548613], [142.183973606, 27.056548054]]]}}, {"id": "39636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125305357, 26.703329865], [142.125346083, 26.703345162], [142.125333359, 26.703294162], [142.125305357, 26.703329865]]]}}, {"id": "39637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226433995, 27.040871775], [142.226518495, 27.040875333], [142.2264907, 27.040838829], [142.226433995, 27.040871775]]]}}, {"id": "39638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186926939, 27.116014721], [142.186947224, 27.115966667], [142.186905837, 27.115976108], [142.186926939, 27.116014721]]]}}, {"id": "39639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191201777, 27.105347414], [142.191217134, 27.105311387], [142.191164449, 27.105334559], [142.191201777, 27.105347414]]]}}, {"id": "39640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174638716, 26.650967946], [142.174686005, 26.650938198], [142.174637471, 26.650938892], [142.174638716, 26.650967946]]]}}, {"id": "39641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202744721, 27.044175559], [142.202715551, 27.044221667], [142.202754721, 27.044211667], [142.202744721, 27.044175559]]]}}, {"id": "39642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149002218, 26.663067775], [142.14895083, 26.663059162], [142.148982503, 26.663091387], [142.149002218, 26.663067775]]]}}, {"id": "39643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132017665, 26.703186667], [142.13207786, 26.703168559], [142.132029494, 26.703156054], [142.132017665, 26.703186667]]]}}, {"id": "39644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122512827, 26.711154333], [142.122536472, 26.711167495], [142.122574475, 26.711086495], [142.122512827, 26.711154333]]]}}, {"id": "39645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.452993891, 24.229027495], [141.452942776, 24.229058333], [141.452961388, 24.229066946], [141.452993891, 24.229027495]]]}}, {"id": "39646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216591634, 27.041303162], [142.216653943, 27.041308306], [142.216605499, 27.04128564], [142.216591634, 27.041303162]]]}}, {"id": "39647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162343865, 26.667860162], [142.162295006, 26.667908162], [142.162336913, 26.66791164], [142.162343865, 26.667860162]]]}}, {"id": "39648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130952218, 26.70497836], [142.131014747, 26.704974865], [142.130952218, 26.704972225], [142.130952218, 26.70497836]]]}}, {"id": "39649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225453165, 27.047738], [142.225455227, 27.047702441], [142.225419663, 27.047716387], [142.225453165, 27.047738]]]}}, {"id": "39650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194403307, 27.041057748], [142.194458949, 27.041046306], [142.194425136, 27.041027027], [142.194403307, 27.041057748]]]}}, {"id": "39651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162689416, 26.670656387], [142.1626493, 26.670629279], [142.162648054, 26.670668613], [142.162689416, 26.670656387]]]}}, {"id": "39652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123118638, 26.713154586], [142.12316214, 26.713142162], [142.123131777, 26.713133], [142.123118638, 26.713154586]]]}}, {"id": "39653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160227471, 26.701528027], [142.160256161, 26.701561748], [142.160267471, 26.701521748], [142.160227471, 26.701528027]]]}}, {"id": "39654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217101388, 27.041314108], [142.217123087, 27.041283135], [142.217081946, 27.041269829], [142.217101388, 27.041314108]]]}}, {"id": "39655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140534747, 26.678418441], [142.140564254, 26.678371559], [142.140551051, 26.678362919], [142.140534747, 26.678418441]]]}}, {"id": "39656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181920947, 27.099366198], [142.181917198, 27.099284802], [142.181895422, 27.099284721], [142.181920947, 27.099366198]]]}}, {"id": "39657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230805772, 27.061028], [142.230751219, 27.061065441], [142.23080511, 27.061047027], [142.230805772, 27.061028]]]}}, {"id": "39658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217385811, 27.041565775], [142.217442335, 27.041557748], [142.217414384, 27.041532865], [142.217385811, 27.041565775]]]}}, {"id": "39659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.161049079, 26.701358108], [142.161107056, 26.701335946], [142.161071634, 26.701314054], [142.161049079, 26.701358108]]]}}, {"id": "39660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240918885, 27.047291946], [142.240885279, 27.04733], [142.240932776, 27.047324162], [142.240918885, 27.047291946]]]}}, {"id": "39661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186337445, 27.043870441], [142.18638489, 27.04386164], [142.186360532, 27.04381564], [142.186337445, 27.043870441]]]}}, {"id": "39662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187624721, 27.044505829], [142.187594721, 27.044531667], [142.187643606, 27.044548054], [142.187624721, 27.044505829]]]}}, {"id": "39663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232187691, 27.081409027], [142.232229611, 27.081435865], [142.232239559, 27.081417973], [142.232187691, 27.081409027]]]}}, {"id": "39664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285767134, 24.797510694], [141.28573345, 24.797537252], [141.285784112, 24.797567378], [141.285767134, 24.797510694]]]}}, {"id": "39665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227514163, 27.115817225], [142.227464449, 27.115785], [142.227480558, 27.115834721], [142.227514163, 27.115817225]]]}}, {"id": "39666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233529585, 27.078490586], [142.233566835, 27.078467586], [142.233527782, 27.078441586], [142.233529585, 27.078490586]]]}}, {"id": "39667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231945279, 27.062332225], [142.231907782, 27.062366667], [142.231947497, 27.062375559], [142.231945279, 27.062332225]]]}}, {"id": "39668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140680558, 26.707628333], [142.140651388, 26.707671946], [142.140681388, 26.707658054], [142.140680558, 26.707628333]]]}}, {"id": "39669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228966667, 27.115120829], [142.228940272, 27.115163613], [142.228982218, 27.115155829], [142.228966667, 27.115120829]]]}}, {"id": "39670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225507302, 27.039272279], [142.225552776, 27.039275973], [142.225538521, 27.039247946], [142.225507302, 27.039272279]]]}}, {"id": "39671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176851699, 26.654484667], [142.176901803, 26.654485946], [142.176863411, 26.654468387], [142.176851699, 26.654484667]]]}}, {"id": "39672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128807808, 26.688382306], [142.128834086, 26.688334252], [142.128789196, 26.688373468], [142.128807808, 26.688382306]]]}}, {"id": "39673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231894449, 27.057583946], [142.231841388, 27.05761436], [142.231897639, 27.057609225], [142.231894449, 27.057583946]]]}}, {"id": "39674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130847782, 26.688555279], [142.130815551, 26.688526108], [142.130816109, 26.688563613], [142.130847782, 26.688555279]]]}}, {"id": "39675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163753061, 26.687418892], [142.163703606, 26.687399721], [142.163713061, 26.687433054], [142.163753061, 26.687418892]]]}}, {"id": "39676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229370272, 27.034949333], [142.229304617, 27.034971198], [142.229345473, 27.034984225], [142.229370272, 27.034949333]]]}}, {"id": "39677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227544449, 27.115665], [142.227510558, 27.115631387], [142.227522503, 27.115676946], [142.227544449, 27.115665]]]}}, {"id": "39678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174605863, 26.649970865], [142.174575577, 26.649939946], [142.174562724, 26.649998721], [142.174605863, 26.649970865]]]}}, {"id": "39679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17147022, 26.643339333], [142.171495577, 26.643295532], [142.171479079, 26.643289225], [142.17147022, 26.643339333]]]}}, {"id": "39680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326468534, 24.814179333], [141.326400246, 24.814148685], [141.326391362, 24.81416445], [141.326468534, 24.814179333]]]}}, {"id": "39681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162824475, 26.67024436], [142.162877691, 26.670218748], [142.162823113, 26.670206279], [142.162824475, 26.67024436]]]}}, {"id": "39682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225354721, 27.053813946], [142.225341829, 27.053764135], [142.225312387, 27.053769333], [142.225354721, 27.053813946]]]}}, {"id": "39683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453949442, 24.226492775], [141.453964163, 24.226533613], [141.453974163, 24.226495], [141.453949442, 24.226492775]]]}}, {"id": "39684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182321556, 27.074528279], [142.182336615, 27.074552252], [142.182372309, 27.074557279], [142.182321556, 27.074528279]]]}}, {"id": "39685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144087782, 26.67113], [142.144033061, 26.671111387], [142.144046394, 26.671139162], [142.144087782, 26.67113]]]}}, {"id": "39686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178379001, 26.604288495], [142.17836214, 26.604229559], [142.178355837, 26.604296468], [142.178379001, 26.604288495]]]}}, {"id": "39687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173869442, 27.116448613], [142.173822218, 27.116436667], [142.173842503, 27.116459721], [142.173869442, 27.116448613]]]}}, {"id": "39688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17755725, 26.602660441], [142.177532698, 26.602628694], [142.177516394, 26.602679532], [142.17755725, 26.602660441]]]}}, {"id": "39689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174568781, 26.608309027], [142.174559468, 26.608258135], [142.174532387, 26.608293748], [142.174568781, 26.608309027]]]}}, {"id": "39690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172093411, 26.643700081], [142.172146472, 26.643709135], [142.172112581, 26.643685081], [142.172093411, 26.643700081]]]}}, {"id": "39691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136308301, 26.700783613], [142.136264423, 26.700741946], [142.136306719, 26.700824667], [142.136308301, 26.700783613]]]}}, {"id": "39692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149208418, 26.648947946], [142.149259222, 26.648927225], [142.149221634, 26.648917135], [142.149208418, 26.648947946]]]}}, {"id": "39693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222299611, 27.094035306], [142.22234083, 27.094021613], [142.222297445, 27.093999027], [142.222299611, 27.094035306]]]}}, {"id": "39694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186144189, 27.055035081], [142.18616856, 27.055026198], [142.186093217, 27.054997252], [142.186144189, 27.055035081]]]}}, {"id": "39695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378548132, 24.779443387], [141.378607821, 24.779491577], [141.378592153, 24.779441586], [141.378548132, 24.779443387]]]}}, {"id": "39696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18109, 27.093833333], [142.181041673, 27.093852775], [142.181069728, 27.093866667], [142.18109, 27.093833333]]]}}, {"id": "39697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236825253, 27.050140586], [142.236794228, 27.050201108], [142.236834643, 27.050148694], [142.236825253, 27.050140586]]]}}, {"id": "39698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.158985006, 26.700771225], [142.159038755, 26.700777306], [142.159040246, 26.700763829], [142.158985006, 26.700771225]]]}}, {"id": "39699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170422827, 26.657931973], [142.170478223, 26.65794664], [142.170465914, 26.657915333], [142.170422827, 26.657931973]]]}}, {"id": "39700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193353307, 27.040170441], [142.193377419, 27.040126], [142.193345473, 27.040125586], [142.193353307, 27.040170441]]]}}, {"id": "39701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231211894, 27.061578694], [142.231263256, 27.061596775], [142.231258444, 27.061570865], [142.231211894, 27.061578694]]]}}, {"id": "39702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195990078, 27.038402775], [142.196012192, 27.038362306], [142.195977419, 27.03836164], [142.195990078, 27.038402775]]]}}, {"id": "39703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.242097224, 27.046907225], [142.242111115, 27.046951667], [142.242142776, 27.046928892], [142.242097224, 27.046907225]]]}}, {"id": "39704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237499637, 27.051958414], [142.237526783, 27.051927946], [142.237488392, 27.051936495], [142.237499637, 27.051958414]]]}}, {"id": "39705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129886109, 26.690823333], [142.129871673, 26.690777225], [142.129852503, 26.690809721], [142.129886109, 26.690823333]]]}}, {"id": "39706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174967639, 26.647821694], [142.174980272, 26.647877198], [142.175013943, 26.647828495], [142.174967639, 26.647821694]]]}}, {"id": "39707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232619442, 27.072380559], [142.232586109, 27.072419441], [142.232635006, 27.072434721], [142.232619442, 27.072380559]]]}}, {"id": "39708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164902529, 26.630574865], [142.164971894, 26.630608721], [142.164977691, 26.630601667], [142.164902529, 26.630574865]]]}}, {"id": "39709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182665746, 26.612359198], [142.182635253, 26.612325829], [142.18261, 26.612355667], [142.182665746, 26.612359198]]]}}, {"id": "39710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235903333, 27.112147775], [142.235864449, 27.112122225], [142.23588834, 27.112158054], [142.235903333, 27.112147775]]]}}, {"id": "39711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147950052, 26.661467946], [142.147965668, 26.661502667], [142.147994916, 26.661447306], [142.147950052, 26.661467946]]]}}, {"id": "39712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228828054, 27.115082225], [142.228866667, 27.115124441], [142.228881115, 27.115096667], [142.228828054, 27.115082225]]]}}, {"id": "39713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190869922, 27.064131775], [142.190914358, 27.06413064], [142.190897782, 27.064101162], [142.190869922, 27.064131775]]]}}, {"id": "39714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14301, 26.671863892], [142.142963061, 26.671834162], [142.142971115, 26.671870829], [142.14301, 26.671863892]]]}}, {"id": "39715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216943061, 27.041426748], [142.217002529, 27.04143936], [142.21698786, 27.041409054], [142.216943061, 27.041426748]]]}}, {"id": "39716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186403943, 27.05538836], [142.186397523, 27.055345946], [142.186365888, 27.055348892], [142.186403943, 27.05538836]]]}}, {"id": "39717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.248063061, 27.093352495], [142.24810083, 27.093396108], [142.248104449, 27.093370279], [142.248063061, 27.093352495]]]}}, {"id": "39718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174146783, 26.65054936], [142.17409061, 26.650527054], [142.174119883, 26.650568441], [142.174146783, 26.65054936]]]}}, {"id": "39719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174156641, 26.651476441], [142.174203671, 26.651493919], [142.174178495, 26.651449613], [142.174156641, 26.651476441]]]}}, {"id": "39720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195003307, 27.042431279], [142.194948249, 27.042407973], [142.194990363, 27.042453775], [142.195003307, 27.042431279]]]}}, {"id": "39721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137148885, 26.699914162], [142.137088612, 26.699945], [142.137121946, 26.699955], [142.137148885, 26.699914162]]]}}, {"id": "39722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150990337, 26.647735279], [142.150952335, 26.647713279], [142.150942724, 26.647752387], [142.150990337, 26.647735279]]]}}, {"id": "39723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.226177224, 27.116835829], [142.22616083, 27.116795829], [142.226132503, 27.116832775], [142.226177224, 27.116835829]]]}}, {"id": "39724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341282944, 24.804890081], [141.341288521, 24.80495791], [141.341303476, 24.804954721], [141.341282944, 24.804890081]]]}}, {"id": "39725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142701673, 26.671594441], [142.142673606, 26.671555], [142.142655006, 26.671606108], [142.142701673, 26.671594441]]]}}, {"id": "39726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173520584, 26.60800064], [142.173568911, 26.608021973], [142.173550778, 26.607990829], [142.173520584, 26.60800064]]]}}, {"id": "39727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122906978, 26.711383892], [142.122927445, 26.711436495], [142.122946446, 26.711355532], [142.122906978, 26.711383892]]]}}, {"id": "39728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181882114, 27.072325919], [142.181920584, 27.072351333], [142.181916978, 27.072303586], [142.181882114, 27.072325919]]]}}, {"id": "39729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132996252, 26.685904054], [142.133041167, 26.685886054], [142.133005253, 26.685868495], [142.132996252, 26.685904054]]]}}, {"id": "39730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234845551, 27.077446829], [142.234898716, 27.077412333], [142.234878444, 27.077401279], [142.234845551, 27.077446829]]]}}, {"id": "39731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164697471, 26.66027636], [142.164644306, 26.660322829], [142.164714695, 26.660296667], [142.164697471, 26.66027636]]]}}, {"id": "39732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162601673, 26.670621829], [142.162559196, 26.670640198], [142.162594189, 26.670668225], [142.162601673, 26.670621829]]]}}, {"id": "39733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241957782, 27.046908054], [142.241920558, 27.046937495], [142.241971388, 27.046926108], [142.241957782, 27.046908054]]]}}, {"id": "39734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180477665, 26.629469081], [142.180435551, 26.629501081], [142.180481051, 26.629504], [142.180477665, 26.629469081]]]}}, {"id": "39735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231963606, 27.063988892], [142.231967782, 27.064047495], [142.231992776, 27.064030829], [142.231963606, 27.063988892]]]}}, {"id": "39736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139038638, 26.679802829], [142.139095616, 26.679800414], [142.139030246, 26.679773135], [142.139038638, 26.679802829]]]}}, {"id": "39737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191059559, 27.042065468], [142.191109974, 27.042068721], [142.191112633, 27.042042108], [142.191059559, 27.042065468]]]}}, {"id": "39738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22354083, 27.045168892], [142.223558885, 27.045223054], [142.22356917, 27.045170829], [142.22354083, 27.045168892]]]}}, {"id": "39739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244923606, 27.091807495], [142.24488, 27.091796667], [142.244897497, 27.091835559], [142.244923606, 27.091807495]]]}}, {"id": "39740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131196589, 26.704648865], [142.131225162, 26.704601081], [142.131187665, 26.704601586], [142.131196589, 26.704648865]]]}}, {"id": "39741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183295837, 27.092613802], [142.183314475, 27.092542468], [142.183275863, 27.092604892], [142.183295837, 27.092613802]]]}}, {"id": "39742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185631751, 27.048049613], [142.185698106, 27.048054586], [142.185678885, 27.048013532], [142.185631751, 27.048049613]]]}}, {"id": "39743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144859922, 26.658097], [142.144909663, 26.658118775], [142.144915279, 26.658101441], [142.144859922, 26.658097]]]}}, {"id": "39744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378576887, 24.780858423], [141.378595019, 24.780830784], [141.378563256, 24.780816297], [141.378576887, 24.780858423]]]}}, {"id": "39745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123106005, 26.708143306], [142.123160584, 26.708147333], [142.123115642, 26.708128225], [142.123106005, 26.708143306]]]}}, {"id": "39746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182445577, 27.086735162], [142.182406913, 27.086711306], [142.182394864, 27.086739748], [142.182445577, 27.086735162]]]}}, {"id": "39747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285496641, 24.80520573], [141.285458975, 24.805168622], [141.285457639, 24.805196063], [141.285496641, 24.80520573]]]}}, {"id": "39748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164558054, 26.687064162], [142.164583333, 26.687111387], [142.164585551, 26.687069721], [142.164558054, 26.687064162]]]}}, {"id": "39749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284968431, 24.785378153], [141.284984306, 24.78533264], [141.284939235, 24.785311748], [141.284968431, 24.785378153]]]}}, {"id": "39750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143203061, 26.671894162], [142.143171115, 26.671931667], [142.143197224, 26.671946946], [142.143203061, 26.671894162]]]}}, {"id": "39751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223801479, 27.091034306], [142.223750778, 27.091045495], [142.223783385, 27.091063495], [142.223801479, 27.091034306]]]}}, {"id": "39752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199429883, 27.096057721], [142.199441167, 27.096002559], [142.1994207, 27.096055559], [142.199429883, 27.096057721]]]}}, {"id": "39753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193751141, 27.106723694], [142.193709196, 27.106670946], [142.193723606, 27.106726613], [142.193751141, 27.106723694]]]}}, {"id": "39754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197511946, 27.044774441], [142.197510272, 27.044822495], [142.197546939, 27.044812495], [142.197511946, 27.044774441]]]}}, {"id": "39755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184846667, 27.091205279], [142.184805837, 27.091197775], [142.184817782, 27.091223054], [142.184846667, 27.091205279]]]}}, {"id": "39756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231160856, 27.06162664], [142.231202633, 27.061637225], [142.231176304, 27.061586802], [142.231160856, 27.06162664]]]}}, {"id": "39757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182815227, 27.103115495], [142.182863307, 27.103098559], [142.18282594, 27.103077865], [142.182815227, 27.103115495]]]}}, {"id": "39758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287982931, 24.806776568], [141.287961064, 24.806727171], [141.287977224, 24.806790081], [141.287982931, 24.806776568]]]}}, {"id": "39759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131784968, 26.688371], [142.13182703, 26.688349468], [142.131776783, 26.688341027], [142.131784968, 26.688371]]]}}, {"id": "39760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285747899, 24.789817063], [141.285739235, 24.789775036], [141.285705798, 24.789810991], [141.285747899, 24.789817063]]]}}, {"id": "39761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2181307, 27.040722865], [142.218174812, 27.040753135], [142.21818061, 27.040729387], [142.2181307, 27.040722865]]]}}, {"id": "39762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.454181115, 24.238965829], [141.454126394, 24.238964162], [141.45414917, 24.238999441], [141.454181115, 24.238965829]]]}}, {"id": "39763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148519053, 26.651520721], [142.148566109, 26.651481027], [142.14853214, 26.651472333], [142.148519053, 26.651520721]]]}}, {"id": "39764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186391829, 27.042566973], [142.186340026, 27.042576252], [142.186369611, 27.042597586], [142.186391829, 27.042566973]]]}}, {"id": "39765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213232166, 27.039444198], [142.213283022, 27.039478162], [142.213284916, 27.039454865], [142.213232166, 27.039444198]]]}}, {"id": "39766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182123891, 27.095396252], [142.182076939, 27.095361559], [142.182087613, 27.095402333], [142.182123891, 27.095396252]]]}}, {"id": "39767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.247289442, 27.090972495], [142.247302503, 27.091026946], [142.247326667, 27.091000829], [142.247289442, 27.090972495]]]}}, {"id": "39768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287997406, 24.806425171], [141.288015318, 24.806370991], [141.287984034, 24.806392514], [141.287997406, 24.806425171]]]}}, {"id": "39769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232976589, 27.075834135], [142.233014112, 27.075890748], [142.232986031, 27.075823306], [142.232976589, 27.075834135]]]}}, {"id": "39770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12624655, 26.702442559], [142.126295914, 26.702458586], [142.12629489, 26.702433198], [142.12624655, 26.702442559]]]}}, {"id": "39771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125082698, 26.704459414], [142.125126783, 26.704441333], [142.125086252, 26.704412919], [142.125082698, 26.704459414]]]}}, {"id": "39772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.466438054, 24.243803054], [141.466456667, 24.243835279], [141.466459728, 24.243803054], [141.466438054, 24.243803054]]]}}, {"id": "39773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.201893606, 27.087871387], [142.201945279, 27.087890333], [142.20194572, 27.087870225], [142.201893606, 27.087871387]]]}}, {"id": "39774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193912218, 27.040460829], [142.19392083, 27.040515], [142.19394, 27.040485], [142.193912218, 27.040460829]]]}}, {"id": "39775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184007912, 27.092629306], [142.184054747, 27.092601694], [142.184013696, 27.092595441], [142.184007912, 27.092629306]]]}}, {"id": "39776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230282892, 27.059905495], [142.230248975, 27.059938667], [142.230292529, 27.059940495], [142.230282892, 27.059905495]]]}}, {"id": "39777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181659533, 26.619649441], [142.181717562, 26.619642775], [142.181685084, 26.619616198], [142.181659533, 26.619649441]]]}}, {"id": "39778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143563606, 26.671864721], [142.14351083, 26.671855829], [142.143519728, 26.671875279], [142.143563606, 26.671864721]]]}}, {"id": "39779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[136.069761284, 20.425224586], [136.069745551, 20.425262892], [136.069786278, 20.425265559], [136.069761284, 20.425224586]]]}}, {"id": "39780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218904475, 27.041428667], [142.21893642, 27.041379613], [142.218896031, 27.041392586], [142.218904475, 27.041428667]]]}}, {"id": "39781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203492166, 27.094104694], [142.203527588, 27.094066], [142.203476394, 27.094076802], [142.203492166, 27.094104694]]]}}, {"id": "39782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284741453, 24.750322811], [141.284697121, 24.750346973], [141.284718807, 24.750356649], [141.284741453, 24.750322811]]]}}, {"id": "39783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187867834, 27.044563495], [142.187848911, 27.044526892], [142.187821556, 27.044569892], [142.187867834, 27.044563495]]]}}, {"id": "39784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187944332, 27.048247919], [142.187996005, 27.048231414], [142.187944475, 27.048217586], [142.187944332, 27.048247919]]]}}, {"id": "39785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286121064, 24.80644855], [141.286129741, 24.806383766], [141.286097886, 24.806384883], [141.286121064, 24.80644855]]]}}, {"id": "39786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206963061, 27.079128162], [142.207017302, 27.079134775], [142.206991141, 27.079103586], [142.206963061, 27.079128162]]]}}, {"id": "39787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123046446, 26.713037919], [142.123070246, 26.713038162], [142.123035331, 26.713000667], [142.123046446, 26.713037919]]]}}, {"id": "39788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236377912, 27.083242667], [142.236418275, 27.083250252], [142.236442724, 27.083216108], [142.236377912, 27.083242667]]]}}, {"id": "39789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193186394, 27.041037495], [142.193227497, 27.041050559], [142.193230272, 27.041015], [142.193186394, 27.041037495]]]}}, {"id": "39790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154913865, 26.708906748], [142.154935422, 26.708875027], [142.15489856, 26.708885081], [142.154913865, 26.708906748]]]}}, {"id": "39791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23119358, 27.068187946], [142.231254112, 27.068160225], [142.23118939, 27.068160775], [142.23119358, 27.068187946]]]}}, {"id": "39792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.247155837, 27.090939441], [142.247195279, 27.090966667], [142.247192776, 27.090946667], [142.247155837, 27.090939441]]]}}, {"id": "39793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184144449, 27.092555829], [142.184094721, 27.092556946], [142.184102218, 27.092590279], [142.184144449, 27.092555829]]]}}, {"id": "39794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191704864, 27.074795414], [142.191768807, 27.074806973], [142.191731051, 27.074774973], [142.191704864, 27.074795414]]]}}, {"id": "39795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173636783, 26.644637135], [142.173679027, 26.644605667], [142.173629416, 26.644605721], [142.173636783, 26.644637135]]]}}, {"id": "39796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23202869, 27.081119468], [142.232026329, 27.081057468], [142.232000636, 27.081109306], [142.23202869, 27.081119468]]]}}, {"id": "39797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19237, 27.106100279], [142.192358612, 27.106143892], [142.192390272, 27.106129721], [142.19237, 27.106100279]]]}}, {"id": "39798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202953606, 27.044464748], [142.202987951, 27.044438694], [142.202944773, 27.044431559], [142.202953606, 27.044464748]]]}}, {"id": "39799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285441829, 24.796873829], [141.28549978, 24.796911207], [141.285445733, 24.796867252], [141.285441829, 24.796873829]]]}}, {"id": "39800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225236667, 27.047955775], [142.225262892, 27.047900946], [142.225235253, 27.047896108], [142.225236667, 27.047955775]]]}}, {"id": "39801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.244868054, 27.091719721], [142.244857782, 27.091673333], [142.244828054, 27.091692225], [142.244868054, 27.091719721]]]}}, {"id": "39802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453303606, 24.23512], [141.453303061, 24.23507], [141.453267497, 24.235070829], [141.453303606, 24.23512]]]}}, {"id": "39803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235701673, 27.111123054], [142.235728054, 27.111073892], [142.235685279, 27.111105279], [142.235701673, 27.111123054]]]}}, {"id": "39804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191724864, 27.067938694], [142.191770441, 27.067940532], [142.191766783, 27.067916613], [142.191724864, 27.067938694]]]}}, {"id": "39805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197059728, 27.044423054], [142.197008612, 27.044453613], [142.197063061, 27.044450559], [142.197059728, 27.044423054]]]}}, {"id": "39806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162298781, 26.667594027], [142.162318638, 26.667639865], [142.162355383, 26.667631532], [142.162298781, 26.667594027]]]}}, {"id": "39807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.238603891, 27.047929441], [142.238592776, 27.047977225], [142.238625551, 27.047961667], [142.238603891, 27.047929441]]]}}, {"id": "39808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217764163, 27.098945829], [142.217779728, 27.098992225], [142.217794721, 27.098965829], [142.217764163, 27.098945829]]]}}, {"id": "39809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207545279, 27.040986946], [142.207502503, 27.041025559], [142.207519442, 27.041033613], [142.207545279, 27.040986946]]]}}, {"id": "39810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123026005, 26.707284802], [142.123067613, 26.707299468], [142.123055837, 26.707269775], [142.123026005, 26.707284802]]]}}, {"id": "39811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174155837, 26.651492775], [142.174105551, 26.651508333], [142.174138612, 26.651525279], [142.174155837, 26.651492775]]]}}, {"id": "39812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186301362, 27.105101279], [142.186241673, 27.105115973], [142.1863, 27.105135225], [142.186301362, 27.105101279]]]}}, {"id": "39813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167767056, 26.65809436], [142.16780869, 26.658123919], [142.167809079, 26.658105333], [142.167767056, 26.65809436]]]}}, {"id": "39814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21854725, 27.041280387], [142.218589533, 27.041294586], [142.218582088, 27.041260387], [142.21854725, 27.041280387]]]}}, {"id": "39815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.121342776, 26.703710829], [142.121310272, 26.703676946], [142.121282218, 26.703706946], [142.121342776, 26.703710829]]]}}, {"id": "39816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144085422, 26.67685164], [142.144120636, 26.676877667], [142.144125914, 26.676840225], [142.144085422, 26.67685164]]]}}, {"id": "39817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453761388, 24.226490559], [141.453756394, 24.226440559], [141.453736667, 24.226486108], [141.453761388, 24.226490559]]]}}, {"id": "39818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18229808, 27.074674414], [142.182340895, 27.074698559], [142.182337613, 27.074665441], [142.18229808, 27.074674414]]]}}, {"id": "39819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186188885, 27.05512664], [142.186196978, 27.05507464], [142.186168521, 27.055073775], [142.186188885, 27.05512664]]]}}, {"id": "39820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218253139, 27.040655441], [142.218289754, 27.040626333], [142.218253891, 27.040625748], [142.218253139, 27.040655441]]]}}, {"id": "39821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171652335, 26.642272559], [142.171686472, 26.64232136], [142.171689442, 26.642291225], [142.171652335, 26.642272559]]]}}, {"id": "39822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.468968054, 24.227250829], [141.469000272, 24.2272], [141.468965006, 24.227201108], [141.468968054, 24.227250829]]]}}, {"id": "39823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469887224, 24.229529441], [141.46985917, 24.229566946], [141.469888054, 24.229567775], [141.469887224, 24.229529441]]]}}, {"id": "39824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143239274, 26.669165414], [142.143237613, 26.669116775], [142.143211115, 26.669144252], [142.143239274, 26.669165414]]]}}, {"id": "39825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285160311, 24.790393144], [141.285081453, 24.790401793], [141.285086226, 24.790414], [141.285160311, 24.790393144]]]}}, {"id": "39826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167478145, 26.658426775], [142.167511829, 26.658451667], [142.167522607, 26.658411667], [142.167478145, 26.658426775]]]}}, {"id": "39827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188735914, 27.105059667], [142.188687912, 27.105012802], [142.188717886, 27.105076468], [142.188735914, 27.105059667]]]}}, {"id": "39828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13748345, 26.700333225], [142.137503113, 26.700287081], [142.137476978, 26.70029136], [142.13748345, 26.700333225]]]}}, {"id": "39829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235760272, 27.111231387], [142.235756667, 27.111173613], [142.235737497, 27.111192775], [142.235760272, 27.111231387]]]}}, {"id": "39830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19136083, 27.042285198], [142.191409339, 27.042304973], [142.191391855, 27.042275054], [142.19136083, 27.042285198]]]}}, {"id": "39831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14276917, 26.665998054], [142.142726667, 26.665981387], [142.142736939, 26.666010279], [142.14276917, 26.665998054]]]}}, {"id": "39832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223224942, 27.091687333], [142.223171582, 27.091718468], [142.223237808, 27.091705081], [142.223224942, 27.091687333]]]}}, {"id": "39833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22308083, 27.110160279], [142.223120272, 27.110125829], [142.223076667, 27.110126387], [142.22308083, 27.110160279]]]}}, {"id": "39834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159640337, 26.687296532], [142.159685136, 26.687285919], [142.159679974, 26.68726464], [142.159640337, 26.687296532]]]}}, {"id": "39835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130906861, 26.688575252], [142.130955863, 26.688559586], [142.130934254, 26.688542721], [142.130906861, 26.688575252]]]}}, {"id": "39836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.466636109, 24.243487495], [141.466650558, 24.243435559], [141.466615551, 24.243453613], [141.466636109, 24.243487495]]]}}, {"id": "39837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231117134, 27.06129636], [142.231100246, 27.061359027], [142.231121336, 27.061370279], [142.231117134, 27.06129636]]]}}, {"id": "39838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453307224, 24.228250829], [141.453301388, 24.228293892], [141.453336939, 24.228268054], [141.453307224, 24.228250829]]]}}, {"id": "39839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189528003, 27.088751559], [142.18946917, 27.088733306], [142.189518145, 27.088761387], [142.189528003, 27.088751559]]]}}, {"id": "39840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131201855, 26.704958198], [142.131257523, 26.704969333], [142.131260752, 26.704954613], [142.131201855, 26.704958198]]]}}, {"id": "39841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142114916, 26.665994892], [142.142159001, 26.665971198], [142.14211358, 26.665973495], [142.142114916, 26.665994892]]]}}, {"id": "39842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185342023, 27.091619559], [142.185386641, 27.091649279], [142.185392049, 27.091631387], [142.185342023, 27.091619559]]]}}, {"id": "39843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19374192, 27.040436162], [142.193783359, 27.040441775], [142.193774137, 27.040409225], [142.19374192, 27.040436162]]]}}, {"id": "39844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149067977, 26.663318694], [142.149109494, 26.663343748], [142.149116005, 26.663313054], [142.149067977, 26.663318694]]]}}, {"id": "39845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181830363, 27.100787775], [142.181848145, 27.100743279], [142.181811855, 27.100758468], [142.181830363, 27.100787775]]]}}, {"id": "39846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170969468, 26.657891252], [142.171022192, 26.657873775], [142.170992438, 26.657861532], [142.170969468, 26.657891252]]]}}, {"id": "39847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14419808, 26.671037586], [142.144234838, 26.671009108], [142.144198833, 26.671002919], [142.14419808, 26.671037586]]]}}, {"id": "39848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138887834, 26.679141802], [142.138925837, 26.679162613], [142.138922776, 26.679131225], [142.138887834, 26.679141802]]]}}, {"id": "39849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217417951, 27.041448829], [142.217464669, 27.041477108], [142.217458366, 27.041440748], [142.217417951, 27.041448829]]]}}, {"id": "39850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179902944, 26.608977306], [142.179869585, 26.608952892], [142.179861803, 26.608982865], [142.179902944, 26.608977306]]]}}, {"id": "39851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217348612, 27.039937495], [142.217395253, 27.039927135], [142.217361946, 27.039897586], [142.217348612, 27.039937495]]]}}, {"id": "39852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285507315, 24.748981712], [141.285461362, 24.748960009], [141.285450765, 24.748998414], [141.285507315, 24.748981712]]]}}, {"id": "39853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184946887, 27.086133414], [142.184985253, 27.086103306], [142.184941699, 27.086110495], [142.184946887, 27.086133414]]]}}, {"id": "39854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152758911, 26.637824468], [142.152743165, 26.637776108], [142.152723943, 26.637807], [142.152758911, 26.637824468]]]}}, {"id": "39855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203570895, 27.090509441], [142.203528781, 27.090483694], [142.203509442, 27.090498892], [142.203570895, 27.090509441]]]}}, {"id": "39856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152231634, 26.706344027], [142.152289948, 26.706350721], [142.152277224, 26.706308414], [142.152231634, 26.706344027]]]}}, {"id": "39857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192403606, 27.067741108], [142.192361388, 27.067768613], [142.192396667, 27.067775279], [142.192403606, 27.067741108]]]}}, {"id": "39858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173952438, 26.652489802], [142.17398786, 26.65246964], [142.173932387, 26.652456973], [142.173952438, 26.652489802]]]}}, {"id": "39859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136372555, 26.700564387], [142.136402892, 26.700565252], [142.136389805, 26.700542333], [142.136372555, 26.700564387]]]}}, {"id": "39860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162581634, 26.671032198], [142.162531997, 26.671019694], [142.162538586, 26.671052919], [142.162581634, 26.671032198]]]}}, {"id": "39861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193314527, 27.040247306], [142.193333696, 27.040201694], [142.193295837, 27.040214387], [142.193314527, 27.040247306]]]}}, {"id": "39862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225239831, 27.043982892], [142.225196355, 27.04396536], [142.225198444, 27.043995495], [142.225239831, 27.043982892]]]}}, {"id": "39863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219442283, 27.041352], [142.21949131, 27.041323586], [142.219438586, 27.041322694], [142.219442283, 27.041352]]]}}, {"id": "39864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185304721, 27.091309162], [142.18527834, 27.091280829], [142.185268612, 27.091307495], [142.185304721, 27.091309162]]]}}, {"id": "39865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.133378171, 26.702715108], [142.133417808, 26.702748387], [142.133384189, 26.702710054], [142.133378171, 26.702715108]]]}}, {"id": "39866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231162283, 27.081236892], [142.231150078, 27.081187252], [142.231137173, 27.081231694], [142.231162283, 27.081236892]]]}}, {"id": "39867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166204643, 26.683683468], [142.166238664, 26.68365336], [142.166205577, 26.683641946], [142.166204643, 26.683683468]]]}}, {"id": "39868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22943, 27.05574], [142.229467782, 27.055781946], [142.229473061, 27.055753892], [142.22943, 27.05574]]]}}, {"id": "39869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214451971, 27.101102], [142.214513943, 27.101076559], [142.21450572, 27.101050198], [142.214451971, 27.101102]]]}}, {"id": "39870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205195837, 27.077658892], [142.205158612, 27.077696946], [142.205196939, 27.077684721], [142.205195837, 27.077658892]]]}}, {"id": "39871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191146394, 27.105104721], [142.191177497, 27.105138892], [142.191195006, 27.105120279], [142.191146394, 27.105104721]]]}}, {"id": "39872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185588366, 27.048384694], [142.185560636, 27.048329775], [142.185568223, 27.048388802], [142.185588366, 27.048384694]]]}}, {"id": "39873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163708392, 26.676438162], [142.163743943, 26.676427946], [142.163722918, 26.676397892], [142.163708392, 26.676438162]]]}}, {"id": "39874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.464913606, 24.244220559], [141.464962503, 24.244208333], [141.464924721, 24.244208333], [141.464913606, 24.244220559]]]}}, {"id": "39875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186336083, 27.042994414], [142.18634275, 27.042938], [142.186312438, 27.042958333], [142.186336083, 27.042994414]]]}}, {"id": "39876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13094834, 26.687151135], [142.130994423, 26.687125], [142.130965162, 26.687115387], [142.13094834, 26.687151135]]]}}, {"id": "39877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182139533, 27.101572], [142.182197108, 27.101572441], [142.18216144, 27.101534414], [142.182139533, 27.101572]]]}}, {"id": "39878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217376394, 27.040149721], [142.217403061, 27.040197775], [142.217404449, 27.040146108], [142.217376394, 27.040149721]]]}}, {"id": "39879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186162166, 27.105089468], [142.186218859, 27.105041559], [142.186155383, 27.105085946], [142.186162166, 27.105089468]]]}}, {"id": "39880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.455373333, 24.225266667], [141.455410272, 24.225221108], [141.455368885, 24.225244162], [141.455373333, 24.225266667]]]}}, {"id": "39881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213869144, 27.039148919], [142.213918949, 27.039154973], [142.213899027, 27.039120532], [142.213869144, 27.039148919]]]}}, {"id": "39882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202189857, 27.044304198], [142.202230558, 27.044343667], [142.202231608, 27.044314414], [142.202189857, 27.044304198]]]}}, {"id": "39883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219280272, 27.041342775], [142.219233333, 27.041351387], [142.219282503, 27.041370829], [142.219280272, 27.041342775]]]}}, {"id": "39884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162921556, 26.668787775], [142.162911025, 26.668724775], [142.162882309, 26.66873636], [142.162921556, 26.668787775]]]}}, {"id": "39885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217956719, 27.041452414], [142.217998495, 27.041427559], [142.217957056, 27.041423279], [142.217956719, 27.041452414]]]}}, {"id": "39886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203177523, 27.091086586], [142.203219831, 27.091049586], [142.203177886, 27.091053081], [142.203177523, 27.091086586]]]}}, {"id": "39887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191645279, 27.063708865], [142.191689974, 27.063726225], [142.191661894, 27.063697667], [142.191645279, 27.063708865]]]}}, {"id": "39888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.454241673, 24.226267775], [141.454162503, 24.226263333], [141.454229442, 24.226288333], [141.454241673, 24.226267775]]]}}, {"id": "39889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225164475, 27.088373252], [142.22520144, 27.088407387], [142.22520847, 27.08838564], [142.225164475, 27.088373252]]]}}, {"id": "39890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.136663217, 26.700097802], [142.136715279, 26.700096054], [142.136702892, 26.700074667], [142.136663217, 26.700097802]]]}}, {"id": "39891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163109442, 26.675216613], [142.163070921, 26.675249333], [142.163106667, 26.675250198], [142.163109442, 26.675216613]]]}}, {"id": "39892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149724449, 26.708714441], [142.149701673, 26.708679162], [142.149698885, 26.708721108], [142.149724449, 26.708714441]]]}}, {"id": "39893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129440558, 26.693121108], [142.129394721, 26.693123333], [142.129423606, 26.693155829], [142.129440558, 26.693121108]]]}}, {"id": "39894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193766498, 27.04113464], [142.193806861, 27.041161559], [142.193799274, 27.041133946], [142.193766498, 27.04113464]]]}}, {"id": "39895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202004384, 27.087850441], [142.202044942, 27.087869532], [142.202043995, 27.087835054], [142.202004384, 27.087850441]]]}}, {"id": "39896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225336083, 27.039131468], [142.22534192, 27.039168279], [142.225364034, 27.039135829], [142.225336083, 27.039131468]]]}}, {"id": "39897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284925707, 24.802074108], [141.28491, 24.802020405], [141.284879559, 24.802068207], [141.284925707, 24.802074108]]]}}, {"id": "39898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17495808, 26.597818306], [142.174911414, 26.597821532], [142.174939857, 26.597855135], [142.17495808, 26.597818306]]]}}, {"id": "39899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183099079, 27.092733387], [142.183147588, 27.092728081], [142.183137562, 27.09270364], [142.183099079, 27.092733387]]]}}, {"id": "39900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181446472, 27.048089721], [142.181485032, 27.048052495], [142.181446355, 27.048017081], [142.181446472, 27.048089721]]]}}, {"id": "39901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217537082, 27.041339081], [142.217555136, 27.041300054], [142.217526031, 27.041306532], [142.217537082, 27.041339081]]]}}, {"id": "39902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191000026, 27.042081694], [142.190996109, 27.042030252], [142.190964942, 27.042074081], [142.191000026, 27.042081694]]]}}, {"id": "39903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378745668, 24.780923676], [141.378697834, 24.780896486], [141.378710817, 24.780931117], [141.378745668, 24.780923676]]]}}, {"id": "39904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1319, 26.687264441], [142.131855279, 26.687278613], [142.131858612, 26.687304721], [142.1319, 26.687264441]]]}}, {"id": "39905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222235863, 27.094120252], [142.222278366, 27.094100333], [142.222221362, 27.094088865], [142.222235863, 27.094120252]]]}}, {"id": "39906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.454463061, 24.225857225], [141.45443, 24.225826108], [141.454422776, 24.225867775], [141.454463061, 24.225857225]]]}}, {"id": "39907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173349196, 26.65605936], [142.173405357, 26.656066694], [142.173362114, 26.656038135], [142.173349196, 26.65605936]]]}}, {"id": "39908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230107717, 27.081067829], [142.230076524, 27.08105136], [142.230094643, 27.081080946], [142.230107717, 27.081067829]]]}}, {"id": "39909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217626615, 27.041566225], [142.217666887, 27.041587], [142.217661284, 27.041559225], [142.217626615, 27.041566225]]]}}, {"id": "39910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143006394, 26.666068333], [142.142957497, 26.666051387], [142.142980272, 26.666084162], [142.143006394, 26.666068333]]]}}, {"id": "39911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17661917, 26.654583054], [142.176579728, 26.654554441], [142.176596667, 26.654589162], [142.17661917, 26.654583054]]]}}, {"id": "39912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224520337, 27.084185252], [142.22449703, 27.084231135], [142.224524578, 27.084243919], [142.224520337, 27.084185252]]]}}, {"id": "39913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184354384, 27.048795279], [142.184400973, 27.048802892], [142.184416783, 27.048784108], [142.184354384, 27.048795279]]]}}, {"id": "39914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205009339, 27.085331], [142.205033256, 27.085288441], [142.204996083, 27.085310694], [142.205009339, 27.085331]]]}}, {"id": "39915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22457214, 27.090036441], [142.224628301, 27.090038], [142.224576939, 27.090014333], [142.22457214, 27.090036441]]]}}, {"id": "39916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152254254, 26.643243252], [142.152291894, 26.643217919], [142.152264358, 26.643208559], [142.152254254, 26.643243252]]]}}, {"id": "39917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.459180558, 24.224705], [141.459233333, 24.22468], [141.45916917, 24.224684721], [141.459180558, 24.224705]]]}}, {"id": "39918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156788171, 26.685647802], [142.156821751, 26.685680802], [142.156827523, 26.685645162], [142.156788171, 26.685647802]]]}}, {"id": "39919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175667717, 26.654810252], [142.175717717, 26.654794667], [142.175659754, 26.654784559], [142.175667717, 26.654810252]]]}}, {"id": "39920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128847302, 26.69303964], [142.128887419, 26.693061081], [142.128880661, 26.693029586], [142.128847302, 26.69303964]]]}}, {"id": "39921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122739922, 26.710525829], [142.122763359, 26.710561], [142.1227762, 26.710519027], [142.122739922, 26.710525829]]]}}, {"id": "39922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218027497, 27.041473532], [142.218070506, 27.041444586], [142.218023217, 27.041445387], [142.218027497, 27.041473532]]]}}, {"id": "39923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17339428, 26.644617559], [142.173440246, 26.644600559], [142.173398859, 26.644590027], [142.17339428, 26.644617559]]]}}, {"id": "39924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148602776, 26.709325], [142.14858, 26.709277495], [142.148572218, 26.709311667], [142.148602776, 26.709325]]]}}, {"id": "39925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453902218, 24.226826667], [141.453897224, 24.226783613], [141.453865006, 24.226826667], [141.453902218, 24.226826667]]]}}, {"id": "39926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202134189, 27.088153721], [142.20217917, 27.088140468], [142.202142335, 27.08812436], [142.202134189, 27.088153721]]]}}, {"id": "39927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18181, 27.101591667], [142.181775837, 27.101614162], [142.181804449, 27.101630279], [142.18181, 27.101591667]]]}}, {"id": "39928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225166693, 27.087963748], [142.225171634, 27.088016892], [142.225183333, 27.087966495], [142.225166693, 27.087963748]]]}}, {"id": "39929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186018029, 27.084268162], [142.186061971, 27.084259559], [142.186027328, 27.084236946], [142.186018029, 27.084268162]]]}}, {"id": "39930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233829805, 27.074964279], [142.23377869, 27.074966252], [142.233821245, 27.074980892], [142.233829805, 27.074964279]]]}}, {"id": "39931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122933969, 26.712935495], [142.122980584, 26.712923721], [142.122956939, 26.712900802], [142.122933969, 26.712935495]]]}}, {"id": "39932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292680623, 24.748832559], [141.29268917, 24.748789441], [141.292668171, 24.748798279], [141.292680623, 24.748832559]]]}}, {"id": "39933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286026978, 24.785187748], [141.286015097, 24.785240775], [141.28605, 24.78520718], [141.286026978, 24.785187748]]]}}, {"id": "39934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205269637, 27.085405532], [142.205306161, 27.08542], [142.205303165, 27.085379946], [142.205269637, 27.085405532]]]}}, {"id": "39935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219119274, 27.041331468], [142.219160661, 27.041307586], [142.219120337, 27.041308387], [142.219119274, 27.041331468]]]}}, {"id": "39936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144365499, 26.676093946], [142.14439786, 26.676086135], [142.144366161, 26.676064973], [142.144365499, 26.676093946]]]}}, {"id": "39937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224008418, 27.090785495], [142.224050636, 27.090766027], [142.224037393, 27.090749081], [142.224008418, 27.090785495]]]}}, {"id": "39938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.344105888, 24.800268288], [141.344095551, 24.800315189], [141.344137471, 24.800337315], [141.344105888, 24.800268288]]]}}, {"id": "39939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140503333, 26.708018613], [142.140494163, 26.708068333], [142.14052083, 26.708044721], [142.140503333, 26.708018613]]]}}, {"id": "39940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.241785837, 27.094093054], [142.241821388, 27.094059721], [142.241791946, 27.094052225], [142.241785837, 27.094093054]]]}}, {"id": "39941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129829728, 26.690735559], [142.129795279, 26.690699162], [142.129806939, 26.690740829], [142.129829728, 26.690735559]]]}}, {"id": "39942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285393372, 24.785273378], [141.285354838, 24.785301541], [141.285378314, 24.785330279], [141.285393372, 24.785273378]]]}}, {"id": "39943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176506252, 26.600957027], [142.176489805, 26.600917054], [142.176478833, 26.600952802], [142.176506252, 26.600957027]]]}}, {"id": "39944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194520246, 27.041009667], [142.19456, 27.041020973], [142.19455511, 27.040989495], [142.194520246, 27.041009667]]]}}, {"id": "39945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304359922, 24.756148099], [141.30435978, 24.756101333], [141.304326498, 24.756130252], [141.304359922, 24.756148099]]]}}, {"id": "39946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191263917, 27.064734441], [142.191267834, 27.064783441], [142.191290195, 27.064771135], [142.191263917, 27.064734441]]]}}, {"id": "39947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186191829, 27.084677162], [142.186236809, 27.084672333], [142.18621297, 27.084656198], [142.186191829, 27.084677162]]]}}, {"id": "39948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185993865, 27.083433694], [142.186039559, 27.083450225], [142.186025084, 27.083419919], [142.185993865, 27.083433694]]]}}, {"id": "39949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187858612, 27.044368892], [142.187828885, 27.044409441], [142.187867497, 27.044394162], [142.187858612, 27.044368892]]]}}, {"id": "39950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165916226, 26.680039892], [142.165861855, 26.680040414], [142.165902892, 26.680061108], [142.165916226, 26.680039892]]]}}, {"id": "39951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140913061, 26.705195279], [142.140874163, 26.705225], [142.140905279, 26.705235279], [142.140913061, 26.705195279]]]}}, {"id": "39952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165780143, 26.680009559], [142.165725863, 26.680010054], [142.165739663, 26.680031081], [142.165780143, 26.680009559]]]}}, {"id": "39953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165764669, 26.679945027], [142.165710415, 26.679945532], [142.165724189, 26.679966468], [142.165764669, 26.679945027]]]}}, {"id": "39954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22926978, 27.081306865], [142.229319805, 27.081306946], [142.229307471, 27.081288279], [142.22926978, 27.081306865]]]}}, {"id": "39955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34133882, 24.804218541], [141.341367665, 24.804185982], [141.341329715, 24.804199], [141.34133882, 24.804218541]]]}}, {"id": "39956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193857613, 27.040414694], [142.193902724, 27.040398306], [142.193878301, 27.040381559], [142.193857613, 27.040414694]]]}}, {"id": "39957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236808755, 27.050016865], [142.236867082, 27.050040694], [142.236885642, 27.050002559], [142.236808755, 27.050016865]]]}}, {"id": "39958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173029805, 26.637586414], [142.173074695, 26.637574162], [142.173040415, 26.637558333], [142.173029805, 26.637586414]]]}}, {"id": "39959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222142218, 27.093838333], [142.222182335, 27.093826], [142.222161803, 27.093800054], [142.222142218, 27.093838333]]]}}, {"id": "39960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202739754, 27.04448736], [142.202789831, 27.044484946], [142.202793917, 27.044452973], [142.202739754, 27.04448736]]]}}, {"id": "39961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189798885, 27.067853613], [142.189808612, 27.067897775], [142.189839442, 27.067862775], [142.189798885, 27.067853613]]]}}, {"id": "39962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198646109, 27.045336108], [142.19860834, 27.045348892], [142.19865, 27.04536], [142.198646109, 27.045336108]]]}}, {"id": "39963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195083696, 27.041516775], [142.195127108, 27.041515081], [142.195101284, 27.041485694], [142.195083696, 27.041516775]]]}}, {"id": "39964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284923022, 24.784655414], [141.284967717, 24.784672775], [141.284963372, 24.784654342], [141.284923022, 24.784655414]]]}}, {"id": "39965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453192503, 24.230103613], [141.453186667, 24.230061946], [141.453155279, 24.230096108], [141.453192503, 24.230103613]]]}}, {"id": "39966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14666153, 26.656509225], [142.146699805, 26.656524721], [142.146707497, 26.656497081], [142.14666153, 26.656509225]]]}}, {"id": "39967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18410428, 27.070513081], [142.184144034, 27.070541919], [142.184150752, 27.070509613], [142.18410428, 27.070513081]]]}}, {"id": "39968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181766252, 27.073495802], [142.181723995, 27.073500468], [142.181747665, 27.073534279], [142.181766252, 27.073495802]]]}}, {"id": "39969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141140999, 26.678235973], [142.141109144, 26.678221721], [142.141109248, 26.678228333], [142.141140999, 26.678235973]]]}}, {"id": "39970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193529831, 27.063579919], [142.193528975, 27.063540946], [142.193506744, 27.063577613], [142.193529831, 27.063579919]]]}}, {"id": "39971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218199196, 27.041490135], [142.218248366, 27.041474081], [142.218206913, 27.041458441], [142.218199196, 27.041490135]]]}}, {"id": "39972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231739663, 27.081350559], [142.231712996, 27.081316306], [142.231708612, 27.081347162], [142.231739663, 27.081350559]]]}}, {"id": "39973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174279494, 26.648972135], [142.174316693, 26.648988613], [142.174322477, 26.648967919], [142.174279494, 26.648972135]]]}}, {"id": "39974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252319728, 27.089806667], [142.25236, 27.089776946], [142.252317224, 27.089767495], [142.252319728, 27.089806667]]]}}, {"id": "39975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21807214, 27.041413081], [142.218117276, 27.041396135], [142.21807703, 27.041387694], [142.21807214, 27.041413081]]]}}, {"id": "39976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232218197, 27.070184829], [142.232210052, 27.070139], [142.232192412, 27.070187946], [142.232218197, 27.070184829]]]}}, {"id": "39977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191181025, 27.042132162], [142.191227445, 27.042147198], [142.191185551, 27.042113667], [142.191181025, 27.042132162]]]}}, {"id": "39978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172198807, 26.643834441], [142.172222023, 26.643787027], [142.172191777, 26.643785], [142.172198807, 26.643834441]]]}}, {"id": "39979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129207134, 26.694712495], [142.129260078, 26.694718054], [142.129261894, 26.694696306], [142.129207134, 26.694712495]]]}}, {"id": "39980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.120979144, 26.715536559], [142.120934812, 26.715533775], [142.120967613, 26.715561108], [142.120979144, 26.715536559]]]}}, {"id": "39981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194763969, 27.041352306], [142.194790246, 27.041392973], [142.194782529, 27.041355162], [142.194763969, 27.041352306]]]}}, {"id": "39982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173164384, 26.637712892], [142.173186641, 26.637677667], [142.173151803, 26.637684468], [142.173164384, 26.637712892]]]}}, {"id": "39983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453156939, 24.229671387], [141.453123333, 24.229696946], [141.453162776, 24.229693892], [141.453156939, 24.229671387]]]}}, {"id": "39984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17342642, 26.607884468], [142.173424449, 26.607844135], [142.173389248, 26.607871081], [142.17342642, 26.607884468]]]}}, {"id": "39985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231779339, 27.070339613], [142.231753113, 27.070376495], [142.231783839, 27.070363441], [142.231779339, 27.070339613]]]}}, {"id": "39986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180995253, 27.072627532], [142.181043865, 27.072632252], [142.181009728, 27.072602775], [142.180995253, 27.072627532]]]}}, {"id": "39987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142864449, 26.671350829], [142.142823333, 26.671334721], [142.142837497, 26.671360829], [142.142864449, 26.671350829]]]}}, {"id": "39988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286406226, 24.799983667], [141.28637808, 24.799942], [141.286356576, 24.799983432], [141.286406226, 24.799983667]]]}}, {"id": "39989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13516808, 26.685552162], [142.135201115, 26.685536973], [142.135156083, 26.685526532], [142.13516808, 26.685552162]]]}}, {"id": "39990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216520026, 27.040966162], [142.216555863, 27.040946252], [142.216516161, 27.040950027], [142.216520026, 27.040966162]]]}}, {"id": "39991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469723606, 24.242494441], [141.469670272, 24.242494441], [141.469671115, 24.242516667], [141.469723606, 24.242494441]]]}}, {"id": "39992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130172555, 26.691105279], [142.130200117, 26.691122387], [142.130226809, 26.691085802], [142.130172555, 26.691105279]]]}}, {"id": "39993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207254475, 27.082928919], [142.207250804, 27.082953306], [142.207282166, 27.082899919], [142.207254475, 27.082928919]]]}}, {"id": "39994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231529416, 27.081345667], [142.231516524, 27.081302532], [142.231503606, 27.081338667], [142.231529416, 27.081345667]]]}}, {"id": "39995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17491, 26.59821336], [142.174874695, 26.598184414], [142.174862802, 26.598210162], [142.17491, 26.59821336]]]}}, {"id": "39996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192042503, 27.105209441], [142.192029442, 27.105245], [142.192060272, 27.105242225], [142.192042503, 27.105209441]]]}}, {"id": "39997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203378145, 27.09049364], [142.20342022, 27.090457135], [142.203389663, 27.090455279], [142.203378145, 27.09049364]]]}}, {"id": "39998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163797951, 26.676797495], [142.163840804, 26.676779225], [142.163811751, 26.676768495], [142.163797951, 26.676797495]]]}}, {"id": "39999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225237224, 27.043885495], [142.225271505, 27.043844559], [142.225253671, 27.043838919], [142.225237224, 27.043885495]]]}}, {"id": "40000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.139505914, 26.700821027], [142.139490506, 26.700773468], [142.139465084, 26.700784333], [142.139505914, 26.700821027]]]}}, {"id": "40001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173707224, 26.607974225], [142.173736498, 26.607951721], [142.173704163, 26.60795436], [142.173707224, 26.607974225]]]}}, {"id": "40002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218288975, 27.041422387], [142.218340272, 27.041411027], [142.218263865, 27.041404748], [142.218288975, 27.041422387]]]}}, {"id": "40003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240604617, 27.047240495], [142.240566278, 27.047276495], [142.240622698, 27.047266919], [142.240604617, 27.047240495]]]}}, {"id": "40004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18290917, 27.070803387], [142.182913087, 27.070847333], [142.182930169, 27.070812829], [142.18290917, 27.070803387]]]}}, {"id": "40005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.467937497, 24.226940559], [141.467969442, 24.226913054], [141.467916939, 24.226914721], [141.467937497, 24.226940559]]]}}, {"id": "40006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191261997, 27.042257802], [142.191296109, 27.042294586], [142.191304527, 27.042263252], [142.191261997, 27.042257802]]]}}, {"id": "40007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1831662, 27.10342436], [142.1831862, 27.103385973], [142.183149805, 27.10339], [142.1831662, 27.10342436]]]}}, {"id": "40008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12284786, 26.706779946], [142.12287834, 26.706802667], [142.122882335, 26.706776667], [142.12284786, 26.706779946]]]}}, {"id": "40009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23171083, 27.066448333], [142.23168917, 27.066412225], [142.231687224, 27.066454441], [142.23171083, 27.066448333]]]}}, {"id": "40010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.252183333, 27.089578613], [142.252141946, 27.089554441], [142.252137224, 27.089578613], [142.252183333, 27.089578613]]]}}, {"id": "40011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212607082, 27.039844081], [142.212650337, 27.039846108], [142.212633554, 27.039820135], [142.212607082, 27.039844081]]]}}, {"id": "40012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.130004163, 26.692485279], [142.129964449, 26.692503054], [142.129992776, 26.692525279], [142.130004163, 26.692485279]]]}}, {"id": "40013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231453139, 27.066442027], [142.23142214, 27.066416252], [142.231416744, 27.066446586], [142.231453139, 27.066442027]]]}}, {"id": "40014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212349339, 27.040579], [142.2123762, 27.040549081], [142.21234847, 27.040549306], [142.212349339, 27.040579]]]}}, {"id": "40015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304823813, 24.756219414], [141.304843385, 24.756255432], [141.304873684, 24.756230748], [141.304823813, 24.756219414]]]}}, {"id": "40016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186530052, 27.105323468], [142.1864962, 27.105280279], [142.186515253, 27.105332946], [142.186530052, 27.105323468]]]}}, {"id": "40017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231765006, 27.064251586], [142.231725525, 27.06421564], [142.231728418, 27.064256252], [142.231765006, 27.064251586]]]}}, {"id": "40018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17954358, 26.655762667], [142.179580921, 26.65574464], [142.179542724, 26.655730333], [142.17954358, 26.655762667]]]}}, {"id": "40019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144671608, 26.673992865], [142.14467655, 26.673937252], [142.144657588, 26.673932946], [142.144671608, 26.673992865]]]}}, {"id": "40020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285760389, 24.789725036], [141.285772348, 24.789762288], [141.285807211, 24.78973591], [141.285760389, 24.789725036]]]}}, {"id": "40021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18937083, 27.104693054], [142.189328885, 27.104710279], [142.189346939, 27.104727225], [142.18937083, 27.104693054]]]}}, {"id": "40022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138332555, 26.679611721], [142.138364968, 26.679585054], [142.138322555, 26.679585081], [142.138332555, 26.679611721]]]}}, {"id": "40023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163227082, 26.675277135], [142.163193165, 26.675304081], [142.163221894, 26.675300973], [142.163227082, 26.675277135]]]}}, {"id": "40024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174411946, 27.034488892], [142.174438612, 27.034492495], [142.174456394, 27.034429721], [142.174411946, 27.034488892]]]}}, {"id": "40025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203218003, 27.08680064], [142.20326153, 27.086776919], [142.203212918, 27.086779802], [142.203218003, 27.08680064]]]}}, {"id": "40026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231319728, 27.066677081], [142.231354773, 27.066698973], [142.231371751, 27.066677198], [142.231319728, 27.066677081]]]}}, {"id": "40027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146860999, 26.689980919], [142.146909442, 26.689985667], [142.146907588, 26.68996236], [142.146860999, 26.689980919]]]}}, {"id": "40028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176590921, 26.654694387], [142.176640856, 26.654691973], [142.176638716, 26.654683586], [142.176590921, 26.654694387]]]}}, {"id": "40029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191023774, 27.074194495], [142.191055188, 27.074228387], [142.19105978, 27.074197775], [142.191023774, 27.074194495]]]}}, {"id": "40030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173099585, 26.637497613], [142.173151115, 26.637503135], [142.173122438, 26.63747564], [142.173099585, 26.637497613]]]}}, {"id": "40031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231073528, 27.068446279], [142.23111572, 27.068415532], [142.231084643, 27.068406441], [142.231073528, 27.068446279]]]}}, {"id": "40032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.140901089, 26.671047748], [142.140956109, 26.671031198], [142.14090869, 26.671022387], [142.140901089, 26.671047748]]]}}, {"id": "40033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207076135, 27.078614802], [142.207132023, 27.078629162], [142.207081167, 27.078599892], [142.207076135, 27.078614802]]]}}, {"id": "40034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233395772, 27.074395108], [142.233406861, 27.074350495], [142.233374501, 27.074394414], [142.233395772, 27.074395108]]]}}, {"id": "40035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216795811, 27.041338775], [142.216839144, 27.041329973], [142.216808145, 27.041307892], [142.216795811, 27.041338775]]]}}, {"id": "40036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1334807, 26.702802946], [142.133522283, 26.702801198], [142.133463671, 26.702768559], [142.1334807, 26.702802946]]]}}, {"id": "40037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213312866, 27.039409892], [142.213337782, 27.03937536], [142.213298911, 27.039393387], [142.213312866, 27.039409892]]]}}, {"id": "40038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28460725, 24.751072865], [141.284644228, 24.75105345], [141.284560182, 24.751055486], [141.28460725, 24.751072865]]]}}, {"id": "40039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122310726, 26.708984054], [142.122355642, 26.708976441], [142.122348781, 26.708962], [142.122310726, 26.708984054]]]}}, {"id": "40040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218279857, 27.041141721], [142.218332023, 27.04111436], [142.218275305, 27.041127441], [142.218279857, 27.041141721]]]}}, {"id": "40041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230346304, 27.080575279], [142.230370078, 27.080517919], [142.230354332, 27.080513613], [142.230346304, 27.080575279]]]}}, {"id": "40042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187252698, 27.060390135], [142.187286809, 27.060408973], [142.187281115, 27.060378108], [142.187252698, 27.060390135]]]}}, {"id": "40043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182227639, 27.093822279], [142.1822062, 27.093784694], [142.182187393, 27.093810775], [142.182227639, 27.093822279]]]}}, {"id": "40044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163891946, 26.676765973], [142.16392725, 26.676798694], [142.163920467, 26.676758441], [142.163891946, 26.676765973]]]}}, {"id": "40045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162785746, 26.670636865], [142.162744254, 26.670625721], [142.162714358, 26.670664468], [142.162785746, 26.670636865]]]}}, {"id": "40046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188593217, 27.105130441], [142.188550467, 27.105140532], [142.188592049, 27.105160865], [142.188593217, 27.105130441]]]}}, {"id": "40047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12974834, 26.691322225], [142.129716939, 26.691293054], [142.12970834, 26.691320829], [142.12974834, 26.691322225]]]}}, {"id": "40048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203857082, 27.085612279], [142.203838054, 27.085569532], [142.203815006, 27.085597721], [142.203857082, 27.085612279]]]}}, {"id": "40049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191226394, 27.042063333], [142.191251946, 27.042101387], [142.191249442, 27.042061667], [142.191226394, 27.042063333]]]}}, {"id": "40050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.458630778, 24.224539613], [141.45859297, 24.224566973], [141.458622477, 24.224571225], [141.458630778, 24.224539613]]]}}, {"id": "40051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203050272, 27.044355135], [142.203100558, 27.044343333], [142.203085084, 27.044319973], [142.203050272, 27.044355135]]]}}, {"id": "40052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164228171, 26.687242387], [142.164238249, 26.687205], [142.164201219, 26.68723464], [142.164228171, 26.687242387]]]}}, {"id": "40053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229061582, 27.081369387], [142.229105811, 27.081345468], [142.229060726, 27.081339252], [142.229061582, 27.081369387]]]}}, {"id": "40054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168817108, 26.658259748], [142.168849196, 26.658224252], [142.168811245, 26.658238559], [142.168817108, 26.658259748]]]}}, {"id": "40055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236125447, 27.049503279], [142.236162892, 27.049476135], [142.236120726, 27.04946836], [142.236125447, 27.049503279]]]}}, {"id": "40056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230974773, 27.068173135], [142.231019831, 27.068166387], [142.23101061, 27.068149333], [142.230974773, 27.068173135]]]}}, {"id": "40057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181656083, 26.617860333], [142.181612387, 26.617855252], [142.181628495, 26.61787636], [142.181656083, 26.617860333]]]}}, {"id": "40058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144161115, 26.670894162], [142.144121673, 26.670927225], [142.144154163, 26.670928333], [142.144161115, 26.670894162]]]}}, {"id": "40059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195267782, 27.042648721], [142.195309274, 27.042629333], [142.195280143, 27.042617468], [142.195267782, 27.042648721]]]}}, {"id": "40060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146838586, 26.686208613], [142.146872387, 26.686179946], [142.146839027, 26.686172667], [142.146838586, 26.686208613]]]}}, {"id": "40061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167524163, 26.631189919], [142.167516719, 26.631240279], [142.167543839, 26.631234225], [142.167524163, 26.631189919]]]}}, {"id": "40062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164692866, 26.660413387], [142.164736329, 26.660397081], [142.1646893, 26.660389387], [142.164692866, 26.660413387]]]}}, {"id": "40063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.457931946, 24.224825559], [141.457892218, 24.224793892], [141.457872503, 24.224805279], [141.457931946, 24.224825559]]]}}, {"id": "40064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186311751, 27.05437336], [142.186297588, 27.054341775], [142.186275422, 27.054356441], [142.186311751, 27.05437336]]]}}, {"id": "40065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184593307, 27.091953865], [142.184574695, 27.091914613], [142.184558392, 27.091936586], [142.184593307, 27.091953865]]]}}, {"id": "40066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125918807, 26.702148946], [142.125951829, 26.702124559], [142.125913748, 26.702123135], [142.125918807, 26.702148946]]]}}, {"id": "40067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23575847, 27.084912027], [142.235809533, 27.084883135], [142.235773645, 27.084880135], [142.23575847, 27.084912027]]]}}, {"id": "40068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151950752, 26.683768667], [142.1519938, 26.683746306], [142.151947198, 26.683739333], [142.151950752, 26.683768667]]]}}, {"id": "40069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285749909, 24.784992225], [141.285813684, 24.785011946], [141.285766511, 24.784976595], [141.285749909, 24.784992225]]]}}, {"id": "40070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190332503, 27.042959559], [142.190376355, 27.042968054], [142.190389079, 27.042922279], [142.190332503, 27.042959559]]]}}, {"id": "40071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122914034, 26.711681135], [142.12294808, 26.71165664], [142.122907367, 26.711649919], [142.122914034, 26.711681135]]]}}, {"id": "40072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223220999, 27.091880387], [142.223179222, 27.091867279], [142.223179883, 27.091896532], [142.223220999, 27.091880387]]]}}, {"id": "40073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14887725, 26.685268829], [142.148925084, 26.685252973], [142.148854721, 26.685244306], [142.14887725, 26.685268829]]]}}, {"id": "40074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1475007, 26.660457919], [142.147537445, 26.660445586], [142.147503671, 26.66043264], [142.1475007, 26.660457919]]]}}, {"id": "40075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240541479, 27.047231495], [142.240496744, 27.047203694], [142.24052275, 27.047241721], [142.240541479, 27.047231495]]]}}, {"id": "40076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232598716, 27.072538387], [142.232623606, 27.072573198], [142.232637808, 27.072561414], [142.232598716, 27.072538387]]]}}, {"id": "40077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293554202, 24.750107405], [141.29356642, 24.750062315], [141.293532088, 24.750065586], [141.293554202, 24.750107405]]]}}, {"id": "40078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195825668, 27.038563387], [142.195802633, 27.038537252], [142.195800778, 27.038559559], [142.195825668, 27.038563387]]]}}, {"id": "40079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182183748, 27.098478559], [142.182162607, 27.098451775], [142.182163476, 27.098479306], [142.182183748, 27.098478559]]]}}, {"id": "40080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129046057, 26.688297586], [142.129094553, 26.688276054], [142.129048521, 26.688271586], [142.129046057, 26.688297586]]]}}, {"id": "40081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146104578, 26.653031333], [142.146125331, 26.653072108], [142.146134034, 26.653039333], [142.146104578, 26.653031333]]]}}, {"id": "40082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171786589, 26.642701892], [142.171806109, 26.642667468], [142.171767471, 26.642683865], [142.171786589, 26.642701892]]]}}, {"id": "40083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285927847, 24.806024568], [141.285877432, 24.806019541], [141.285882425, 24.806045658], [141.285927847, 24.806024568]]]}}, {"id": "40084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205521284, 27.077983559], [142.205568521, 27.077959387], [142.2055262, 27.077960802], [142.205521284, 27.077983559]]]}}, {"id": "40085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174587224, 26.649803081], [142.17462345, 26.649774135], [142.174583359, 26.649767532], [142.174587224, 26.649803081]]]}}, {"id": "40086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284075875, 24.798462396], [141.284038418, 24.798425108], [141.284035499, 24.798450369], [141.284075875, 24.798462396]]]}}, {"id": "40087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189353748, 27.054249613], [142.189355253, 27.054175775], [142.189344384, 27.05425864], [142.189353748, 27.054249613]]]}}, {"id": "40088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21651939, 27.041259613], [142.216565551, 27.041261613], [142.216551894, 27.041243108], [142.21651939, 27.041259613]]]}}, {"id": "40089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13401917, 26.700070198], [142.134066887, 26.700053892], [142.134019248, 26.700046721], [142.13401917, 26.700070198]]]}}, {"id": "40090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164056861, 26.677772306], [142.164103748, 26.677755279], [142.164059105, 26.677738802], [142.164056861, 26.677772306]]]}}, {"id": "40091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122763139, 26.711181919], [142.122803061, 26.711196775], [142.122804721, 26.711174135], [142.122763139, 26.711181919]]]}}, {"id": "40092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2858262, 24.785328622], [141.28586655, 24.785312018], [141.285843333, 24.785307486], [141.2858262, 24.785328622]]]}}, {"id": "40093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2127662, 27.039927252], [142.212757328, 27.039881333], [142.212745616, 27.039917613], [142.2127662, 27.039927252]]]}}, {"id": "40094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285461089, 24.804766342], [141.285487121, 24.804797342], [141.285492374, 24.804759631], [141.285461089, 24.804766342]]]}}, {"id": "40095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162547082, 26.671099559], [142.162510389, 26.671086252], [142.162515279, 26.671123162], [142.162547082, 26.671099559]]]}}, {"id": "40096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171893359, 26.657467694], [142.171924449, 26.657490054], [142.171908612, 26.657458387], [142.171893359, 26.657467694]]]}}, {"id": "40097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233402023, 27.081259532], [142.233427056, 27.081226], [142.233394501, 27.081228865], [142.233402023, 27.081259532]]]}}, {"id": "40098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18615214, 27.039753135], [142.18617153, 27.039787586], [142.186177912, 27.039750667], [142.18615214, 27.039753135]]]}}, {"id": "40099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341455603, 24.804221847], [141.34148537, 24.804185775], [141.341435824, 24.804204613], [141.341455603, 24.804221847]]]}}, {"id": "40100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284386576, 24.750744991], [141.284352231, 24.750699865], [141.284375266, 24.750752613], [141.284386576, 24.750744991]]]}}, {"id": "40101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186107082, 27.054367865], [142.18610939, 27.054411532], [142.186140272, 27.054386865], [142.186107082, 27.054367865]]]}}, {"id": "40102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287502153, 24.807170162], [141.287515162, 24.807128694], [141.287489507, 24.80713318], [141.287502153, 24.807170162]]]}}, {"id": "40103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.210323891, 27.040162495], [142.210361388, 27.040196946], [142.210349442, 27.040158613], [142.210323891, 27.040162495]]]}}, {"id": "40104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129525253, 26.693257721], [142.12956214, 26.693272225], [142.129565032, 26.693256135], [142.129525253, 26.693257721]]]}}, {"id": "40105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173462581, 26.598167829], [142.173428171, 26.598129054], [142.173412114, 26.598137027], [142.173462581, 26.598167829]]]}}, {"id": "40106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182076226, 27.094162748], [142.182083722, 27.094197495], [142.182100752, 27.094175279], [142.182076226, 27.094162748]]]}}, {"id": "40107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184824137, 27.086182135], [142.184864669, 27.08617836], [142.184854669, 27.08615764], [142.184824137, 27.086182135]]]}}, {"id": "40108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194090584, 27.040439919], [142.194131193, 27.040426694], [142.194102438, 27.040412108], [142.194090584, 27.040439919]]]}}, {"id": "40109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122522114, 26.70647936], [142.122505058, 26.706505027], [142.12254, 26.706488198], [142.122522114, 26.70647936]]]}}, {"id": "40110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379063632, 24.779287441], [141.379094202, 24.779242973], [141.379042374, 24.779245468], [141.379063632, 24.779287441]]]}}, {"id": "40111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128211855, 26.697851667], [142.128241634, 26.697878081], [142.128242607, 26.697834306], [142.128211855, 26.697851667]]]}}, {"id": "40112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236225694, 27.050870613], [142.236271699, 27.050849225], [142.236253645, 27.050836333], [142.236225694, 27.050870613]]]}}, {"id": "40113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146373943, 26.656542027], [142.146429001, 26.656549559], [142.146434306, 26.656534559], [142.146373943, 26.656542027]]]}}, {"id": "40114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191521388, 27.042222252], [142.191562672, 27.042247198], [142.191560506, 27.042219027], [142.191521388, 27.042222252]]]}}, {"id": "40115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18368345, 27.07059], [142.183703165, 27.070626613], [142.183716744, 27.070603054], [142.18368345, 27.07059]]]}}, {"id": "40116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184823671, 27.086438279], [142.184791336, 27.086412054], [142.184799689, 27.086466559], [142.184823671, 27.086438279]]]}}, {"id": "40117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.454716667, 24.225582775], [141.454683606, 24.225623054], [141.454768612, 24.225570559], [141.454716667, 24.225582775]]]}}, {"id": "40118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186065668, 26.659827829], [142.186107224, 26.659802613], [142.186102049, 26.659779946], [142.186065668, 26.659827829]]]}}, {"id": "40119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171902335, 26.657091829], [142.171955863, 26.657070108], [142.171914864, 26.657063108], [142.171902335, 26.657091829]]]}}, {"id": "40120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217346446, 27.041534892], [142.217384163, 27.041502586], [142.217336835, 27.041521081], [142.217346446, 27.041534892]]]}}, {"id": "40121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285651647, 24.797176099], [141.285637276, 24.797217378], [141.28565022, 24.797218432], [141.285651647, 24.797176099]]]}}, {"id": "40122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174196693, 26.635775225], [142.174246978, 26.635817027], [142.174205837, 26.635767081], [142.174196693, 26.635775225]]]}}, {"id": "40123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123511946, 26.705203613], [142.123478885, 26.705170279], [142.123467224, 26.705190829], [142.123511946, 26.705203613]]]}}, {"id": "40124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218364942, 27.040830279], [142.218352892, 27.040798892], [142.218329611, 27.040800468], [142.218364942, 27.040830279]]]}}, {"id": "40125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152874358, 26.641707108], [142.152924578, 26.641704532], [142.152914916, 26.641678721], [142.152874358, 26.641707108]]]}}, {"id": "40126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144002361, 26.676862162], [142.144045642, 26.676850135], [142.144006719, 26.676828973], [142.144002361, 26.676862162]]]}}, {"id": "40127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197055422, 27.044488198], [142.197011751, 27.044470387], [142.196988807, 27.044492081], [142.197055422, 27.044488198]]]}}, {"id": "40128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147052438, 26.68521964], [142.147092607, 26.685199387], [142.147063943, 26.685187775], [142.147052438, 26.68521964]]]}}, {"id": "40129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14192345, 26.670144108], [142.1419438, 26.670114027], [142.141902023, 26.670119748], [142.14192345, 26.670144108]]]}}, {"id": "40130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233797588, 27.077908613], [142.233759222, 27.077880613], [142.233758755, 27.077901279], [142.233797588, 27.077908613]]]}}, {"id": "40131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287947134, 24.807572766], [141.287981958, 24.807552532], [141.287962451, 24.807540703], [141.287947134, 24.807572766]]]}}, {"id": "40132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233510052, 27.078314333], [142.233463865, 27.078309802], [142.23348642, 27.078335225], [142.233510052, 27.078314333]]]}}, {"id": "40133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144521167, 26.675158468], [142.14456725, 26.675133694], [142.144521829, 26.675139441], [142.144521167, 26.675158468]]]}}, {"id": "40134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236214553, 27.054992946], [142.236190636, 27.055028829], [142.236236978, 27.055006108], [142.236214553, 27.054992946]]]}}, {"id": "40135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284323839, 24.799443946], [141.284301297, 24.799407279], [141.284288379, 24.799435838], [141.284323839, 24.799443946]]]}}, {"id": "40136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.157039663, 26.699652865], [142.157076693, 26.699622225], [142.157055383, 26.699609054], [142.157039663, 26.699652865]]]}}, {"id": "40137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287246265, 24.802588595], [141.287295006, 24.802592351], [141.287265811, 24.802561604], [141.287246265, 24.802588595]]]}}, {"id": "40138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206211167, 27.07776736], [142.206261025, 27.077795], [142.206267665, 27.077782441], [142.206211167, 27.07776736]]]}}, {"id": "40139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203175227, 27.043935414], [142.203216719, 27.043921027], [142.203201388, 27.043907225], [142.203175227, 27.043935414]]]}}, {"id": "40140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229986783, 27.081047721], [142.230009637, 27.081080919], [142.23001655, 27.081007414], [142.229986783, 27.081047721]]]}}, {"id": "40141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181822892, 26.621159081], [142.181790143, 26.621143946], [142.181789079, 26.621186559], [142.181822892, 26.621159081]]]}}, {"id": "40142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212343554, 27.040399027], [142.212363139, 27.040365414], [142.212319079, 27.040369279], [142.212343554, 27.040399027]]]}}, {"id": "40143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17861572, 26.655540414], [142.178653722, 26.655559892], [142.178660337, 26.655541559], [142.17861572, 26.655540414]]]}}, {"id": "40144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285851764, 24.78951827], [141.285810674, 24.789544982], [141.285817017, 24.78955855], [141.285851764, 24.78951827]]]}}, {"id": "40145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171597419, 26.643500108], [142.171580389, 26.643457892], [142.171565253, 26.643472919], [142.171597419, 26.643500108]]]}}, {"id": "40146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176453333, 26.616866495], [142.176487588, 26.616856532], [142.176461336, 26.616843198], [142.176453333, 26.616866495]]]}}, {"id": "40147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182535473, 27.096278054], [142.182575357, 27.096264387], [142.182530584, 27.096259748], [142.182535473, 27.096278054]]]}}, {"id": "40148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186381362, 27.089407495], [142.186416913, 27.089380468], [142.186390778, 27.089373198], [142.186381362, 27.089407495]]]}}, {"id": "40149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189423359, 27.105134748], [142.189451141, 27.105101667], [142.189391414, 27.10509064], [142.189423359, 27.105134748]]]}}, {"id": "40150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285545499, 24.805137081], [141.285509494, 24.805105036], [141.285500259, 24.805127928], [141.285545499, 24.805137081]]]}}, {"id": "40151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284805914, 24.78721136], [141.284844812, 24.787188802], [141.284816031, 24.787171775], [141.284805914, 24.78721136]]]}}, {"id": "40152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.465070558, 24.244142225], [141.465124163, 24.244134162], [141.46510917, 24.244119441], [141.465070558, 24.244142225]]]}}, {"id": "40153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194665227, 27.041195387], [142.194702866, 27.041166721], [142.194683281, 27.041152135], [142.194665227, 27.041195387]]]}}, {"id": "40154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194863191, 27.042245081], [142.194896226, 27.042225], [142.194861634, 27.042226135], [142.194863191, 27.042245081]]]}}, {"id": "40155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170309857, 26.658018225], [142.170355888, 26.658027198], [142.17034703, 26.658009613], [142.170309857, 26.658018225]]]}}, {"id": "40156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231441673, 27.066621946], [142.23140834, 27.066650279], [142.231433061, 27.06666], [142.231441673, 27.066621946]]]}}, {"id": "40157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186411362, 27.089920027], [142.186443476, 27.089887946], [142.186411414, 27.089893586], [142.186411362, 27.089920027]]]}}, {"id": "40158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472446667, 24.235871108], [141.47241917, 24.235903333], [141.472454449, 24.235892225], [141.472446667, 24.235871108]]]}}, {"id": "40159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171549805, 26.642414865], [142.171586835, 26.642390613], [142.171557276, 26.642383252], [142.171549805, 26.642414865]]]}}, {"id": "40160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186261245, 27.043811081], [142.186299001, 27.043796054], [142.186271751, 27.043776135], [142.186261245, 27.043811081]]]}}, {"id": "40161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.164367782, 26.687191387], [142.164345551, 26.687234721], [142.16437083, 26.687234721], [142.164367782, 26.687191387]]]}}, {"id": "40162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284261427, 24.750638045], [141.284308119, 24.750616324], [141.284273502, 24.750601811], [141.284261427, 24.750638045]]]}}, {"id": "40163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233894086, 27.074949162], [142.233857886, 27.074947081], [142.233866161, 27.07495636], [142.233894086, 27.074949162]]]}}, {"id": "40164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231762776, 27.070720892], [142.231735616, 27.070748919], [142.231772023, 27.070755721], [142.231762776, 27.070720892]]]}}, {"id": "40165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181999442, 27.094121667], [142.181963606, 27.094160279], [142.181998054, 27.094156387], [142.181999442, 27.094121667]]]}}, {"id": "40166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175687497, 26.654875946], [142.175720026, 26.654856135], [142.175686978, 26.654847333], [142.175687497, 26.654875946]]]}}, {"id": "40167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237165966, 27.051240333], [142.237127276, 27.051253865], [142.237148392, 27.051266279], [142.237165966, 27.051240333]]]}}, {"id": "40168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194309105, 27.040910135], [142.194344838, 27.040878946], [142.194328495, 27.040865613], [142.194309105, 27.040910135]]]}}, {"id": "40169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174687173, 26.599449054], [142.174729974, 26.599471027], [142.174705422, 26.599433532], [142.174687173, 26.599449054]]]}}, {"id": "40170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472703891, 24.237434721], [141.472661388, 24.237426946], [141.472679728, 24.237465829], [141.472703891, 24.237434721]]]}}, {"id": "40171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.207314916, 27.082952225], [142.207344617, 27.082981694], [142.207360195, 27.082955667], [142.207314916, 27.082952225]]]}}, {"id": "40172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225999468, 27.039205135], [142.226026226, 27.039178919], [142.225990363, 27.039190721], [142.225999468, 27.039205135]]]}}, {"id": "40173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18681061, 27.057144532], [142.18684917, 27.057110081], [142.186804916, 27.057123387], [142.18681061, 27.057144532]]]}}, {"id": "40174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165687808, 26.660140441], [142.165729105, 26.660145919], [142.1657338, 26.660130027], [142.165687808, 26.660140441]]]}}, {"id": "40175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162243333, 26.671424306], [142.162211219, 26.671383721], [142.162211051, 26.671418306], [142.162243333, 26.671424306]]]}}, {"id": "40176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162920311, 26.665992694], [142.162962361, 26.666025586], [142.162958301, 26.66600664], [142.162920311, 26.665992694]]]}}, {"id": "40177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18869869, 27.067983586], [142.188729001, 27.067954919], [142.188689274, 27.067956865], [142.18869869, 27.067983586]]]}}, {"id": "40178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293518171, 24.749782036], [141.293530765, 24.749811613], [141.293531673, 24.749755288], [141.293518171, 24.749782036]]]}}, {"id": "40179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182144747, 27.093447919], [142.18219214, 27.093448387], [142.182179974, 27.093415387], [142.182144747, 27.093447919]]]}}, {"id": "40180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189811115, 27.068530829], [142.189830272, 27.068569162], [142.18985, 27.068557225], [142.189811115, 27.068530829]]]}}, {"id": "40181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.318932827, 24.813253856], [141.318933645, 24.813212604], [141.318905798, 24.813223486], [141.318932827, 24.813253856]]]}}, {"id": "40182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181837471, 27.094514162], [142.181890558, 27.094529532], [142.181887302, 27.094513829], [142.181837471, 27.094514162]]]}}, {"id": "40183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213390999, 27.039375279], [142.213431803, 27.039359694], [142.213410389, 27.039334441], [142.213390999, 27.039375279]]]}}, {"id": "40184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195764306, 27.038636054], [142.19574834, 27.038600775], [142.195729222, 27.03862636], [142.195764306, 27.038636054]]]}}, {"id": "40185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28463786, 24.800839216], [141.284647004, 24.800865351], [141.284679481, 24.800843117], [141.28463786, 24.800839216]]]}}, {"id": "40186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184514358, 27.070594333], [142.184542827, 27.070620198], [142.18455297, 27.070603225], [142.184514358, 27.070594333]]]}}, {"id": "40187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234527756, 27.056410829], [142.234504617, 27.056443829], [142.234533722, 27.056432495], [142.234527756, 27.056410829]]]}}, {"id": "40188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180197302, 26.629998919], [142.18023786, 26.629999946], [142.180215227, 26.629974721], [142.180197302, 26.629998919]]]}}, {"id": "40189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.975360208, 24.291118559], [153.975417834, 24.291130991], [153.975366991, 24.291090595], [153.975360208, 24.291118559]]]}}, {"id": "40190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163895357, 26.677052387], [142.163914617, 26.677090279], [142.163924916, 26.677062279], [142.163895357, 26.677052387]]]}}, {"id": "40191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194067276, 27.040075225], [142.194031219, 27.040096387], [142.194069754, 27.040097775], [142.194067276, 27.040075225]]]}}, {"id": "40192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203605305, 27.085837225], [142.203639416, 27.085859559], [142.20362847, 27.085833559], [142.203605305, 27.085837225]]]}}, {"id": "40193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219192283, 27.100913441], [142.21920345, 27.100889054], [142.219137056, 27.100926279], [142.219192283, 27.100913441]]]}}, {"id": "40194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172993865, 26.636934306], [142.173035136, 26.636914306], [142.173021336, 26.636900414], [142.172993865, 26.636934306]]]}}, {"id": "40195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195704384, 27.038718081], [142.19567358, 27.038687892], [142.195677056, 27.038720108], [142.195704384, 27.038718081]]]}}, {"id": "40196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202566744, 27.079205613], [142.202611414, 27.079205532], [142.202568418, 27.079187441], [142.202566744, 27.079205613]]]}}, {"id": "40197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194318223, 27.04081236], [142.194359559, 27.04081936], [142.194345914, 27.040795559], [142.194318223, 27.04081236]]]}}, {"id": "40198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186362529, 27.089480802], [142.186382335, 27.089445225], [142.186340467, 27.089441748], [142.186362529, 27.089480802]]]}}, {"id": "40199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214328885, 27.039264829], [142.214363217, 27.039244108], [142.214328145, 27.03923964], [142.214328885, 27.039264829]]]}}, {"id": "40200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124596031, 26.704969721], [142.124609144, 26.705011252], [142.124631115, 26.704987225], [142.124596031, 26.704969721]]]}}, {"id": "40201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223913839, 27.091445694], [142.223939857, 27.091452694], [142.223948029, 27.091394829], [142.223913839, 27.091445694]]]}}, {"id": "40202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222309585, 27.093922468], [142.22235594, 27.093913559], [142.222328586, 27.093895441], [142.222309585, 27.093922468]]]}}, {"id": "40203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230725551, 27.080783333], [142.230741777, 27.080738162], [142.230709442, 27.080754387], [142.230725551, 27.080783333]]]}}, {"id": "40204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12219297, 26.714676108], [142.122247328, 26.714657468], [142.122191751, 26.714659495], [142.12219297, 26.714676108]]]}}, {"id": "40205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146832607, 26.687826198], [142.146864228, 26.687805946], [142.146837691, 26.687797135], [142.146832607, 26.687826198]]]}}, {"id": "40206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177211699, 26.602568252], [142.177211829, 26.602530081], [142.177189079, 26.602559892], [142.177211699, 26.602568252]]]}}, {"id": "40207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343996057, 24.800257243], [141.344047484, 24.800277784], [141.344053191, 24.800244676], [141.343996057, 24.800257243]]]}}, {"id": "40208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203026861, 27.079333721], [142.203058975, 27.079304441], [142.203018949, 27.079303613], [142.203026861, 27.079333721]]]}}, {"id": "40209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237210078, 27.053768829], [142.237195616, 27.053737], [142.237184968, 27.053756135], [142.237210078, 27.053768829]]]}}, {"id": "40210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18760345, 27.058633252], [142.187654228, 27.058625892], [142.187604916, 27.058616198], [142.18760345, 27.058633252]]]}}, {"id": "40211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218725162, 27.041439865], [142.218724034, 27.041478414], [142.21876428, 27.041435027], [142.218725162, 27.041439865]]]}}, {"id": "40212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186425383, 27.043168775], [142.18638345, 27.043155468], [142.186401025, 27.043187306], [142.186425383, 27.043168775]]]}}, {"id": "40213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284438029, 24.799572153], [141.28446808, 24.799591982], [141.28446048, 24.799571721], [141.284438029, 24.799572153]]]}}, {"id": "40214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379021271, 24.779592333], [141.379061336, 24.779570288], [141.37904179, 24.779561541], [141.379021271, 24.779592333]]]}}, {"id": "40215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165242944, 26.687028802], [142.165212944, 26.686997892], [142.165206667, 26.687026495], [142.165242944, 26.687028802]]]}}, {"id": "40216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188141388, 27.105226387], [142.188125279, 27.105271667], [142.188154721, 27.10524], [142.188141388, 27.105226387]]]}}, {"id": "40217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171342335, 26.643054532], [142.171377328, 26.64308464], [142.171382412, 26.643062054], [142.171342335, 26.643054532]]]}}, {"id": "40218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193083891, 27.089763892], [142.193090272, 27.089802775], [142.193103061, 27.089771946], [142.193083891, 27.089763892]]]}}, {"id": "40219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191910272, 27.042043892], [142.191876939, 27.042073054], [142.191899442, 27.042076108], [142.191910272, 27.042043892]]]}}, {"id": "40220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163726615, 26.629772495], [142.163708781, 26.629733252], [142.163694553, 26.629758919], [142.163726615, 26.629772495]]]}}, {"id": "40221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174263087, 26.650409694], [142.174306913, 26.650420919], [142.174304578, 26.650401973], [142.174263087, 26.650409694]]]}}, {"id": "40222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128506161, 26.697712306], [142.12854, 26.697694829], [142.128500999, 26.697685054], [142.128506161, 26.697712306]]]}}, {"id": "40223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202963722, 27.085864946], [142.203009922, 27.085866135], [142.203006252, 27.085848919], [142.202963722, 27.085864946]]]}}, {"id": "40224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21256856, 27.039990198], [142.212592192, 27.039960919], [142.212556109, 27.039962414], [142.21256856, 27.039990198]]]}}, {"id": "40225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182903839, 27.103347721], [142.182872827, 27.103310748], [142.182860026, 27.103320252], [142.182903839, 27.103347721]]]}}, {"id": "40226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219313891, 27.041268279], [142.219342996, 27.041305333], [142.219364137, 27.041291108], [142.219313891, 27.041268279]]]}}, {"id": "40227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137529831, 26.700283721], [142.137552918, 26.700264559], [142.137524968, 26.700247802], [142.137529831, 26.700283721]]]}}, {"id": "40228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122822996, 26.706932414], [142.122873061, 26.706929748], [142.12285856, 26.706907027], [142.122822996, 26.706932414]]]}}, {"id": "40229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240825863, 27.047571], [142.240785551, 27.047572802], [142.240803411, 27.047592892], [142.240825863, 27.047571]]]}}, {"id": "40230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212621582, 27.039777108], [142.212662892, 27.039764387], [142.212640272, 27.039745829], [142.212621582, 27.039777108]]]}}, {"id": "40231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131123385, 26.706738694], [142.13116131, 26.706760135], [142.131166394, 26.706736027], [142.131123385, 26.706738694]]]}}, {"id": "40232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.46128, 24.225379162], [141.461314449, 24.225361667], [141.46126917, 24.225339162], [141.46128, 24.225379162]]]}}, {"id": "40233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236295162, 27.050890973], [142.236323891, 27.050882081], [142.236304189, 27.050864333], [142.236295162, 27.050890973]]]}}, {"id": "40234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16288131, 26.668815252], [142.162855668, 26.668795775], [142.162826693, 26.668829387], [142.16288131, 26.668815252]]]}}, {"id": "40235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.216162672, 27.040794414], [142.216189144, 27.040825532], [142.216204423, 27.04080564], [142.216162672, 27.040794414]]]}}, {"id": "40236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1719462, 26.643643865], [142.17195214, 26.643602333], [142.171927173, 26.643623559], [142.1719462, 26.643643865]]]}}, {"id": "40237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286619546, 24.806778829], [141.286591686, 24.806757748], [141.286610571, 24.806793414], [141.286619546, 24.806778829]]]}}, {"id": "40238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174544695, 26.653264162], [142.174578275, 26.653232721], [142.174547523, 26.653225279], [142.174544695, 26.653264162]]]}}, {"id": "40239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171880389, 26.643580198], [142.171863281, 26.643616694], [142.171894578, 26.643601135], [142.171880389, 26.643580198]]]}}, {"id": "40240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180538106, 26.62414664], [142.18055131, 26.624106973], [142.180507367, 26.624134027], [142.180538106, 26.62414664]]]}}, {"id": "40241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186680856, 27.060734495], [142.186712672, 27.060702613], [142.186669222, 27.060712586], [142.186680856, 27.060734495]]]}}, {"id": "40242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198285279, 27.045278054], [142.198273333, 27.045316108], [142.198295006, 27.045316108], [142.198285279, 27.045278054]]]}}, {"id": "40243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287282127, 24.802561595], [141.287304812, 24.802519541], [141.287282399, 24.802512477], [141.287282127, 24.802561595]]]}}, {"id": "40244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203733995, 27.085858865], [142.203694423, 27.085882108], [142.203736161, 27.085883495], [142.203733995, 27.085858865]]]}}, {"id": "40245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188983022, 27.043932559], [142.188993139, 27.043887306], [142.188953411, 27.043893586], [142.188983022, 27.043932559]]]}}, {"id": "40246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.149815136, 26.648181135], [142.149848859, 26.64814764], [142.149830973, 26.648142225], [142.149815136, 26.648181135]]]}}, {"id": "40247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230163022, 27.080749135], [142.230156278, 27.080793198], [142.230194501, 27.08074764], [142.230163022, 27.080749135]]]}}, {"id": "40248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126624747, 26.70173664], [142.126673191, 26.701736586], [142.126621219, 26.701719829], [142.126624747, 26.70173664]]]}}, {"id": "40249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.180548171, 26.624097865], [142.180523528, 26.624065306], [142.180514968, 26.624115532], [142.180548171, 26.624097865]]]}}, {"id": "40250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152570726, 26.697582973], [142.152612335, 26.697594027], [142.152590311, 26.697575892], [142.152570726, 26.697582973]]]}}, {"id": "40251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181652529, 27.10026136], [142.181682335, 27.100297892], [142.181684578, 27.100260775], [142.181652529, 27.10026136]]]}}, {"id": "40252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284795344, 24.802315802], [141.284758755, 24.802349216], [141.284791725, 24.802362279], [141.284795344, 24.802315802]]]}}, {"id": "40253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233448716, 27.081217748], [142.233477782, 27.081183135], [142.23344022, 27.081200721], [142.233448716, 27.081217748]]]}}, {"id": "40254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196104034, 27.038424559], [142.196109494, 27.038384108], [142.196084034, 27.038397694], [142.196104034, 27.038424559]]]}}, {"id": "40255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212691997, 27.039806586], [142.212727951, 27.039795252], [142.212701115, 27.039777694], [142.212691997, 27.039806586]]]}}, {"id": "40256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232410921, 27.072447162], [142.232399494, 27.072494946], [142.232417756, 27.072491387], [142.232410921, 27.072447162]]]}}, {"id": "40257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144893943, 26.674372441], [142.144905914, 26.67432036], [142.144890947, 26.674316135], [142.144893943, 26.674372441]]]}}, {"id": "40258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12569786, 26.702091468], [142.125745383, 26.702085721], [142.125705084, 26.702073495], [142.12569786, 26.702091468]]]}}, {"id": "40259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189331115, 27.068564613], [142.189375058, 27.068548775], [142.1893493, 27.068535441], [142.189331115, 27.068564613]]]}}, {"id": "40260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213846394, 27.039208495], [142.213886329, 27.039222721], [142.21389022, 27.039206721], [142.213846394, 27.039208495]]]}}, {"id": "40261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222006083, 27.093585468], [142.222061556, 27.093589279], [142.222060311, 27.093569135], [142.222006083, 27.093585468]]]}}, {"id": "40262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469475551, 24.227933892], [141.46950917, 24.227958892], [141.469493061, 24.227923613], [141.469475551, 24.227933892]]]}}, {"id": "40263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287002464, 24.806962387], [141.287054565, 24.80695027], [141.287052412, 24.806928414], [141.287002464, 24.806962387]]]}}, {"id": "40264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378715551, 24.779899477], [141.378738275, 24.779865892], [141.378711725, 24.779874631], [141.378715551, 24.779899477]]]}}, {"id": "40265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224122892, 27.090745973], [142.224134773, 27.090783135], [142.224156226, 27.090773613], [142.224122892, 27.090745973]]]}}, {"id": "40266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286394903, 24.806799784], [141.286343878, 24.806781937], [141.28638904, 24.806821604], [141.286394903, 24.806799784]]]}}, {"id": "40267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285525473, 24.78835], [141.285473839, 24.788370432], [141.285469559, 24.788392712], [141.285525473, 24.78835]]]}}, {"id": "40268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206046135, 27.077828892], [142.206087912, 27.077858279], [142.206081505, 27.077821], [142.206046135, 27.077828892]]]}}, {"id": "40269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234850272, 27.076906946], [142.234824449, 27.076940559], [142.234857782, 27.076933054], [142.234850272, 27.076906946]]]}}, {"id": "40270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286139572, 24.806273126], [141.286136018, 24.80623718], [141.286102257, 24.806261036], [141.286139572, 24.806273126]]]}}, {"id": "40271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285027665, 24.802679486], [141.285014968, 24.802703532], [141.285083087, 24.802692207], [141.285027665, 24.802679486]]]}}, {"id": "40272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187559689, 27.058707333], [142.187584254, 27.058669468], [142.187552477, 27.058668441], [142.187559689, 27.058707333]]]}}, {"id": "40273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154977134, 26.68474664], [142.155025473, 26.684744775], [142.155020026, 26.684726829], [142.154977134, 26.68474664]]]}}, {"id": "40274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214399442, 27.039365532], [142.214439533, 27.039353387], [142.214414916, 27.039343468], [142.214399442, 27.039365532]]]}}, {"id": "40275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192557173, 27.042206586], [142.192579805, 27.042237667], [142.192589948, 27.042214387], [142.192557173, 27.042206586]]]}}, {"id": "40276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287292529, 24.803007991], [141.287250233, 24.802984405], [141.287254514, 24.803013135], [141.287292529, 24.803007991]]]}}, {"id": "40277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.305130882, 24.756507036], [141.305081505, 24.756479811], [141.305123839, 24.756511153], [141.305130882, 24.756507036]]]}}, {"id": "40278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286271829, 24.790530081], [141.286294319, 24.790573432], [141.286297782, 24.790557468], [141.286271829, 24.790530081]]]}}, {"id": "40279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182557691, 27.102158306], [142.182532088, 27.102147495], [142.182544942, 27.102183586], [142.182557691, 27.102158306]]]}}, {"id": "40280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469771946, 24.229368333], [141.469818054, 24.229385279], [141.469780558, 24.229355], [141.469771946, 24.229368333]]]}}, {"id": "40281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.470114163, 24.229560559], [141.47010834, 24.229598892], [141.47014083, 24.229585], [141.470114163, 24.229560559]]]}}, {"id": "40282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202834838, 27.044455162], [142.202865357, 27.044433198], [142.202843139, 27.044411559], [142.202834838, 27.044455162]]]}}, {"id": "40283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124852555, 26.704372694], [142.124890856, 26.704382946], [142.124892633, 26.704368586], [142.124852555, 26.704372694]]]}}, {"id": "40284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179314137, 26.608403892], [142.17926978, 26.608421532], [142.179312244, 26.608425721], [142.179314137, 26.608403892]]]}}, {"id": "40285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134828833, 26.699537667], [142.134867691, 26.699514081], [142.134848392, 26.699501108], [142.134828833, 26.699537667]]]}}, {"id": "40286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231231141, 27.067327198], [142.231214501, 27.067379748], [142.23125594, 27.067334802], [142.231231141, 27.067327198]]]}}, {"id": "40287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232055357, 27.081043775], [142.232039663, 27.081010252], [142.232025888, 27.081036252], [142.232055357, 27.081043775]]]}}, {"id": "40288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148524358, 26.684496919], [142.148558223, 26.68448036], [142.148531167, 26.684469279], [142.148524358, 26.684496919]]]}}, {"id": "40289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237523113, 27.048889252], [142.237511946, 27.048850081], [142.237494916, 27.048856252], [142.237523113, 27.048889252]]]}}, {"id": "40290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234724228, 27.071567748], [142.23475275, 27.071569946], [142.234739728, 27.071550198], [142.234724228, 27.071567748]]]}}, {"id": "40291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12296345, 26.712670279], [142.123002866, 26.712687748], [142.122992244, 26.712656441], [142.12296345, 26.712670279]]]}}, {"id": "40292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23335808, 27.081122694], [142.233394942, 27.081104387], [142.233373359, 27.081096829], [142.23335808, 27.081122694]]]}}, {"id": "40293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232698859, 27.072547252], [142.232659857, 27.072554441], [142.232682088, 27.072572919], [142.232698859, 27.072547252]]]}}, {"id": "40294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147068029, 26.68749236], [142.147091089, 26.687460829], [142.147071479, 26.687452081], [142.147068029, 26.68749236]]]}}, {"id": "40295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379850389, 24.779685694], [141.379810947, 24.779701423], [141.379847847, 24.779699946], [141.379850389, 24.779685694]]]}}, {"id": "40296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233446524, 27.075732802], [142.233487808, 27.075700162], [142.233437134, 27.075724613], [142.233446524, 27.075732802]]]}}, {"id": "40297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285775733, 24.789808613], [141.285807613, 24.789836577], [141.28580869, 24.789821865], [141.285775733, 24.789808613]]]}}, {"id": "40298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12600808, 26.701074108], [142.126039948, 26.701097198], [142.126038716, 26.701065054], [142.12600808, 26.701074108]]]}}, {"id": "40299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285304994, 24.787338964], [141.2853393, 24.78735818], [141.285333398, 24.787317703], [141.285304994, 24.787338964]]]}}, {"id": "40300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179578029, 26.655816054], [142.179611141, 26.655802559], [142.179581505, 26.65579664], [142.179578029, 26.655816054]]]}}, {"id": "40301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143537276, 26.671503667], [142.143569974, 26.671536198], [142.143576667, 26.671500279], [142.143537276, 26.671503667]]]}}, {"id": "40302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178396719, 26.604191694], [142.178377497, 26.604160775], [142.178369494, 26.604185775], [142.178396719, 26.604191694]]]}}, {"id": "40303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224670143, 27.087556387], [142.224641388, 27.087593892], [142.224666498, 27.087593946], [142.224670143, 27.087556387]]]}}, {"id": "40304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.247024721, 27.090923613], [142.247029442, 27.090891108], [142.247016667, 27.090905559], [142.247024721, 27.090923613]]]}}, {"id": "40305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173050272, 26.637499108], [142.173090804, 26.637474252], [142.173059053, 26.637469135], [142.173050272, 26.637499108]]]}}, {"id": "40306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131959339, 26.688146333], [142.132002218, 26.688129532], [142.131973281, 26.688114748], [142.131959339, 26.688146333]]]}}, {"id": "40307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28650275, 24.785047369], [141.28644703, 24.785038892], [141.286499027, 24.785060441], [141.28650275, 24.785047369]]]}}, {"id": "40308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.97670834, 24.292248694], [153.976769053, 24.292251964], [153.97674227, 24.292212685], [153.97670834, 24.292248694]]]}}, {"id": "40309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.171767523, 26.643458586], [142.171787639, 26.643417829], [142.171767173, 26.643416775], [142.171767523, 26.643458586]]]}}, {"id": "40310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154827951, 26.708921721], [142.154860052, 26.708895495], [142.154816472, 26.708905748], [142.154827951, 26.708921721]]]}}, {"id": "40311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186242581, 27.089703], [142.186208521, 27.089655667], [142.186193113, 27.089657946], [142.186242581, 27.089703]]]}}, {"id": "40312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285317445, 24.803995009], [141.285295746, 24.803948414], [141.28529454, 24.804004649], [141.285317445, 24.803995009]]]}}, {"id": "40313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18186642, 27.094379027], [142.18187642, 27.094333613], [142.181852776, 27.094366586], [142.18186642, 27.094379027]]]}}, {"id": "40314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285013437, 24.802816198], [141.285013632, 24.802867297], [141.285036602, 24.80284655], [141.285013437, 24.802816198]]]}}, {"id": "40315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123329027, 26.713289414], [142.123346446, 26.713315306], [142.123364617, 26.713286135], [142.123329027, 26.713289414]]]}}, {"id": "40316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182839637, 27.092815586], [142.182892672, 27.092812532], [142.182843865, 27.092804027], [142.182839637, 27.092815586]]]}}, {"id": "40317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218230272, 27.041557054], [142.218251089, 27.041528054], [142.218225863, 27.041520252], [142.218230272, 27.041557054]]]}}, {"id": "40318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.240542827, 27.047343775], [142.240492944, 27.047347468], [142.240534332, 27.047373586], [142.240542827, 27.047343775]]]}}, {"id": "40319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173109442, 26.637634532], [142.173152192, 26.637618054], [142.173124864, 26.637602721], [142.173109442, 26.637634532]]]}}, {"id": "40320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.19383275, 27.040972694], [142.193866589, 27.040947108], [142.193825473, 27.040957559], [142.19383275, 27.040972694]]]}}, {"id": "40321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143514358, 26.672301973], [142.143522438, 26.672265306], [142.143497756, 26.672270829], [142.143514358, 26.672301973]]]}}, {"id": "40322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147075447, 26.65599864], [142.14710655, 26.655978468], [142.147080532, 26.655968306], [142.147075447, 26.65599864]]]}}, {"id": "40323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128127471, 26.699486468], [142.128161777, 26.699507829], [142.128155499, 26.699467586], [142.128127471, 26.699486468]]]}}, {"id": "40324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286827652, 24.801749234], [141.286781038, 24.80173773], [141.286789572, 24.801765577], [141.286827652, 24.801749234]]]}}, {"id": "40325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189212944, 27.088620919], [142.18924406, 27.088585387], [142.189221051, 27.088580387], [142.189212944, 27.088620919]]]}}, {"id": "40326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175163943, 26.609237748], [142.175165694, 26.609203279], [142.175140506, 26.609208532], [142.175163943, 26.609237748]]]}}, {"id": "40327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124709196, 26.704898865], [142.124756524, 26.704884387], [142.124705357, 26.704882721], [142.124709196, 26.704898865]]]}}, {"id": "40328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230164527, 27.080881081], [142.230162633, 27.080848973], [142.23013725, 27.080863], [142.230164527, 27.080881081]]]}}, {"id": "40329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143544968, 26.672032946], [142.143585032, 26.672015946], [142.143563722, 26.672001973], [142.143544968, 26.672032946]]]}}, {"id": "40330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181933385, 27.094768559], [142.181971167, 27.094737108], [142.181934968, 27.094750252], [142.181933385, 27.094768559]]]}}, {"id": "40331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232892192, 27.076813468], [142.232906278, 27.076844613], [142.232934254, 27.076812613], [142.232892192, 27.076813468]]]}}, {"id": "40332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193761829, 27.041000252], [142.193806615, 27.041002973], [142.193765253, 27.04098164], [142.193761829, 27.041000252]]]}}, {"id": "40333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232474916, 27.078202775], [142.232516667, 27.078203162], [142.232506719, 27.078183333], [142.232474916, 27.078202775]]]}}, {"id": "40334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131559339, 26.704009919], [142.131507198, 26.704013387], [142.131557367, 26.704029586], [142.131559339, 26.704009919]]]}}, {"id": "40335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178773606, 26.604403973], [142.178738833, 26.604378829], [142.178742088, 26.604406081], [142.178773606, 26.604403973]]]}}, {"id": "40336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472183606, 24.233837225], [141.472174449, 24.233872775], [141.472190272, 24.23387], [141.472183606, 24.233837225]]]}}, {"id": "40337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144001803, 26.673148946], [142.144030921, 26.673127613], [142.143998054, 26.673117721], [142.144001803, 26.673148946]]]}}, {"id": "40338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152560726, 26.707596252], [142.152591115, 26.707610279], [142.152582698, 26.707568414], [142.152560726, 26.707596252]]]}}, {"id": "40339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172642088, 26.636500748], [142.172671479, 26.636473802], [142.172630195, 26.636474865], [142.172642088, 26.636500748]]]}}, {"id": "40340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.249638612, 27.091631667], [142.249611115, 27.091663054], [142.249640558, 27.091668892], [142.249638612, 27.091631667]]]}}, {"id": "40341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224647912, 27.042555333], [142.224687276, 27.042571775], [142.224694695, 27.042553], [142.224647912, 27.042555333]]]}}, {"id": "40342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.20635834, 27.077732333], [142.206401414, 27.077761225], [142.206401193, 27.077736946], [142.20635834, 27.077732333]]]}}, {"id": "40343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186499364, 27.057728081], [142.186533696, 27.057713946], [142.18651847, 27.05769964], [142.186499364, 27.057728081]]]}}, {"id": "40344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184677004, 27.086473135], [142.184641946, 27.086447], [142.184657562, 27.086483], [142.184677004, 27.086473135]]]}}, {"id": "40345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287585149, 24.803724685], [141.287619118, 24.803734243], [141.287620791, 24.803702198], [141.287585149, 24.803724685]]]}}, {"id": "40346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181743061, 27.10111536], [142.181747004, 27.101066414], [142.181726589, 27.101097865], [142.181743061, 27.10111536]]]}}, {"id": "40347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166309468, 26.68293236], [142.166302477, 26.682890829], [142.166286835, 26.682917225], [142.166309468, 26.68293236]]]}}, {"id": "40348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288079222, 24.806024342], [141.288044553, 24.806050631], [141.288062698, 24.806058577], [141.288079222, 24.806024342]]]}}, {"id": "40349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17286489, 26.63645464], [142.17286655, 26.636491081], [142.172880999, 26.636479441], [142.17286489, 26.63645464]]]}}, {"id": "40350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.466226939, 24.243871108], [141.466248612, 24.243845559], [141.466225006, 24.243846387], [141.466226939, 24.243871108]]]}}, {"id": "40351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286544462, 24.806763847], [141.286580182, 24.806744153], [141.286551699, 24.806744198], [141.286544462, 24.806763847]]]}}, {"id": "40352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.154777056, 26.684723108], [142.154819222, 26.68470564], [142.154804254, 26.684694108], [142.154777056, 26.684723108]]]}}, {"id": "40353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141765966, 26.664902333], [142.141804163, 26.66492036], [142.141813281, 26.664898946], [142.141765966, 26.664902333]]]}}, {"id": "40354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144316809, 26.657758892], [142.144343696, 26.657736279], [142.144301505, 26.657732441], [142.144316809, 26.657758892]]]}}, {"id": "40355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221894916, 27.094336586], [142.221889494, 27.094300054], [142.221840195, 27.094298495], [142.221894916, 27.094336586]]]}}, {"id": "40356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182549442, 27.096354441], [142.182595006, 27.096342495], [142.18257, 27.096328613], [142.182549442, 27.096354441]]]}}, {"id": "40357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181998975, 27.095670973], [142.18202, 27.095629865], [142.18200406, 27.095622495], [142.181998975, 27.095670973]]]}}, {"id": "40358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221790117, 27.094371135], [142.221863217, 27.094367613], [142.221868638, 27.094349198], [142.221790117, 27.094371135]]]}}, {"id": "40359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286469105, 24.806780279], [141.28649952, 24.806753793], [141.286460506, 24.806744216], [141.286469105, 24.806780279]]]}}, {"id": "40360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182280636, 26.612165721], [142.182275551, 26.612124559], [142.182256031, 26.612168108], [142.182280636, 26.612165721]]]}}, {"id": "40361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284718768, 24.788112685], [141.284740999, 24.788149622], [141.284750636, 24.788108135], [141.284718768, 24.788112685]]]}}, {"id": "40362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37875153, 24.77996345], [141.378769831, 24.779923351], [141.378759559, 24.779919883], [141.37875153, 24.77996345]]]}}, {"id": "40363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.138861608, 26.69988536], [142.138897471, 26.699862495], [142.138871608, 26.699849892], [142.138861608, 26.69988536]]]}}, {"id": "40364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190595331, 27.042681468], [142.190562166, 27.042685306], [142.190563943, 27.042725027], [142.190595331, 27.042681468]]]}}, {"id": "40365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379708664, 24.780164964], [141.37969, 24.780120378], [141.37969808, 24.780166811], [141.379708664, 24.780164964]]]}}, {"id": "40366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205489027, 27.078366198], [142.205527004, 27.078347468], [142.205492581, 27.078338946], [142.205489027, 27.078366198]]]}}, {"id": "40367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231113671, 27.061658198], [142.231138911, 27.061690829], [142.231128054, 27.061649414], [142.231113671, 27.061658198]]]}}, {"id": "40368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.461642503, 24.225403054], [141.461623061, 24.225365279], [141.461617224, 24.22538], [141.461642503, 24.225403054]]]}}, {"id": "40369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163878418, 26.676579775], [142.163840467, 26.67660664], [142.1638693, 26.676607775], [142.163878418, 26.676579775]]]}}, {"id": "40370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190449831, 27.042840532], [142.190454942, 27.042879613], [142.19048489, 27.042831279], [142.190449831, 27.042840532]]]}}, {"id": "40371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.473189248, 24.241470198], [141.473221505, 24.241445027], [141.47318131, 24.241444252], [141.473189248, 24.241470198]]]}}, {"id": "40372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287573709, 24.807596], [141.28754808, 24.807615108], [141.287566213, 24.807626658], [141.287573709, 24.807596]]]}}, {"id": "40373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1878962, 27.087951973], [142.187922555, 27.087988414], [142.18794297, 27.087947495], [142.1878962, 27.087951973]]]}}, {"id": "40374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472457782, 24.236187775], [141.472491946, 24.236206667], [141.47248834, 24.236183333], [141.472457782, 24.236187775]]]}}, {"id": "40375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148768223, 26.685249081], [142.148803359, 26.685226027], [142.148765772, 26.685227775], [142.148768223, 26.685249081]]]}}, {"id": "40376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231183774, 27.061980225], [142.231210947, 27.061954081], [142.231176472, 27.061962441], [142.231183774, 27.061980225]]]}}, {"id": "40377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144021946, 26.675829108], [142.144058612, 26.675820667], [142.144045331, 26.675805973], [142.144021946, 26.675829108]]]}}, {"id": "40378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.129379831, 26.691212775], [142.129376667, 26.691250775], [142.129405668, 26.691199829], [142.129379831, 26.691212775]]]}}, {"id": "40379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1816762, 27.093620919], [142.181650052, 27.093669613], [142.181697717, 27.093648495], [142.1816762, 27.093620919]]]}}, {"id": "40380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194636978, 27.041246081], [142.194672503, 27.041265162], [142.194673165, 27.041251613], [142.194636978, 27.041246081]]]}}, {"id": "40381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.192464669, 27.042175829], [142.192495746, 27.042197279], [142.192487639, 27.042163694], [142.192464669, 27.042175829]]]}}, {"id": "40382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147625473, 26.684972], [142.147663333, 26.684964829], [142.147642335, 26.684947973], [142.147625473, 26.684972]]]}}, {"id": "40383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181792477, 27.07244636], [142.181827224, 27.072482135], [142.181828197, 27.072455252], [142.181792477, 27.07244636]]]}}, {"id": "40384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472491388, 24.236365279], [141.472502218, 24.236407775], [141.47250834, 24.236371946], [141.472491388, 24.236365279]]]}}, {"id": "40385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230131699, 27.060369946], [142.230124306, 27.060406775], [142.230151193, 27.060392748], [142.230131699, 27.060369946]]]}}, {"id": "40386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285284591, 24.803841108], [141.28529166, 24.803885378], [141.285301479, 24.803845973], [141.285284591, 24.803841108]]]}}, {"id": "40387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472496109, 24.236715], [141.472537497, 24.236734162], [141.472507224, 24.236705], [141.472496109, 24.236715]]]}}, {"id": "40388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162833217, 26.669191162], [142.162849144, 26.669227802], [142.162868418, 26.669208279], [142.162833217, 26.669191162]]]}}, {"id": "40389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21755834, 27.040288441], [142.217586109, 27.040267108], [142.217546005, 27.040264721], [142.21755834, 27.040288441]]]}}, {"id": "40390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231800026, 27.071232946], [142.231840947, 27.071228108], [142.231839222, 27.071215559], [142.231800026, 27.071232946]]]}}, {"id": "40391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472144163, 24.233723054], [141.472190272, 24.233727495], [141.472152218, 24.233702775], [141.472144163, 24.233723054]]]}}, {"id": "40392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222052892, 27.094300775], [142.222018833, 27.094328081], [142.222058145, 27.094315667], [142.222052892, 27.094300775]]]}}, {"id": "40393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167023839, 26.681799], [142.167064527, 26.681794414], [142.167062503, 26.681780721], [142.167023839, 26.681799]]]}}, {"id": "40394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341372581, 24.804248207], [141.341417484, 24.804212658], [141.341351388, 24.804236108], [141.341372581, 24.804248207]]]}}, {"id": "40395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205503839, 27.077584829], [142.205542581, 27.077608414], [142.205526693, 27.077569892], [142.205503839, 27.077584829]]]}}, {"id": "40396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13343192, 26.702357721], [142.133464864, 26.702346054], [142.133435525, 26.702335613], [142.13343192, 26.702357721]]]}}, {"id": "40397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181901946, 27.094147721], [142.181937276, 27.094120333], [142.181905305, 27.094122441], [142.181901946, 27.094147721]]]}}, {"id": "40398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126724306, 26.701344], [142.126775331, 26.701330865], [142.126775642, 26.701317306], [142.126724306, 26.701344]]]}}, {"id": "40399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181843139, 27.099077946], [142.181809027, 27.099059559], [142.181823891, 27.099089973], [142.181843139, 27.099077946]]]}}, {"id": "40400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233454137, 27.075366721], [142.233484527, 27.075339054], [142.2334593, 27.075332946], [142.233454137, 27.075366721]]]}}, {"id": "40401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173523917, 26.60795036], [142.173524669, 26.607917027], [142.173505616, 26.607926892], [142.173523917, 26.60795036]]]}}, {"id": "40402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222412361, 27.036588495], [142.222429922, 27.036555973], [142.222401608, 27.036564414], [142.222412361, 27.036588495]]]}}, {"id": "40403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231195032, 27.069435027], [142.231220195, 27.069409802], [142.231201115, 27.069396667], [142.231195032, 27.069435027]]]}}, {"id": "40404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172036744, 26.643681468], [142.172072672, 26.643654252], [142.172023969, 26.643673279], [142.172036744, 26.643681468]]]}}, {"id": "40405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229534916, 27.081669802], [142.229562698, 27.081641946], [142.229548145, 27.081630694], [142.229534916, 27.081669802]]]}}, {"id": "40406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150701025, 26.647727081], [142.150661479, 26.647753225], [142.150679274, 26.647762225], [142.150701025, 26.647727081]]]}}, {"id": "40407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137190506, 26.700066441], [142.137205136, 26.700036279], [142.137180311, 26.700043775], [142.137190506, 26.700066441]]]}}, {"id": "40408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187538029, 27.058456802], [142.18757572, 27.058458198], [142.18754594, 27.058432973], [142.187538029, 27.058456802]]]}}, {"id": "40409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.461207782, 24.225430829], [141.461219442, 24.2254], [141.461185837, 24.22541], [141.461207782, 24.225430829]]]}}, {"id": "40410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230615811, 27.060858694], [142.230590078, 27.060848829], [142.230603554, 27.060888333], [142.230615811, 27.060858694]]]}}, {"id": "40411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195484034, 27.042958892], [142.195512309, 27.042934667], [142.19548489, 27.042927586], [142.195484034, 27.042958892]]]}}, {"id": "40412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.179864254, 26.656029252], [142.179910078, 26.656052387], [142.179869053, 26.656015532], [142.179864254, 26.656029252]]]}}, {"id": "40413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197249922, 27.044916387], [142.197263969, 27.044885586], [142.197241582, 27.044880667], [142.197249922, 27.044916387]]]}}, {"id": "40414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147367808, 26.685017667], [142.147411777, 26.684998306], [142.147406835, 26.684986135], [142.147367808, 26.685017667]]]}}, {"id": "40415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285743398, 24.785145315], [141.285765473, 24.785106694], [141.285731946, 24.785106261], [141.285743398, 24.785145315]]]}}, {"id": "40416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287114319, 24.806947216], [141.28713489, 24.806983423], [141.287143956, 24.806954036], [141.287114319, 24.806947216]]]}}, {"id": "40417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186806719, 27.087830865], [142.186829689, 27.087875586], [142.186837782, 27.087830721], [142.186806719, 27.087830865]]]}}, {"id": "40418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183587198, 27.07066964], [142.1836193, 27.070691802], [142.183617951, 27.070667081], [142.183587198, 27.07066964]]]}}, {"id": "40419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173864643, 26.652095198], [142.173907912, 26.652081333], [142.173857393, 26.652077162], [142.173864643, 26.652095198]]]}}, {"id": "40420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12632192, 26.702253919], [142.1263562, 26.702255333], [142.126354163, 26.702238919], [142.12632192, 26.702253919]]]}}, {"id": "40421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225883359, 27.04625736], [142.225940195, 27.04625664], [142.225942309, 27.04624236], [142.225883359, 27.04625736]]]}}, {"id": "40422", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285858729, 24.789460342], [141.285818482, 24.789477036], [141.285853632, 24.789486144], [141.285858729, 24.789460342]]]}}, {"id": "40423", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.377928197, 24.779761324], [141.377961323, 24.779720649], [141.377942451, 24.779719036], [141.377928197, 24.779761324]]]}}, {"id": "40424", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.45336, 24.228741667], [141.453391946, 24.228728333], [141.453375279, 24.228706946], [141.45336, 24.228741667]]]}}, {"id": "40425", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181557523, 27.093690586], [142.181587639, 27.093732495], [142.181593748, 27.093713532], [142.181557523, 27.093690586]]]}}, {"id": "40426", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14690856, 26.690016441], [142.146945525, 26.690005468], [142.14691869, 26.689993495], [142.14690856, 26.690016441]]]}}, {"id": "40427", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186338029, 27.089727613], [142.186370584, 27.08971664], [142.186351193, 27.089702946], [142.186338029, 27.089727613]]]}}, {"id": "40428", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146784475, 26.651865532], [142.146748392, 26.651860135], [142.146752335, 26.651879532], [142.146784475, 26.651865532]]]}}, {"id": "40429", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.13308131, 26.685942802], [142.133121089, 26.685936441], [142.133098054, 26.685921387], [142.13308131, 26.685942802]]]}}, {"id": "40430", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172816809, 26.656352919], [142.172812412, 26.656317802], [142.172802218, 26.656335973], [142.172816809, 26.656352919]]]}}, {"id": "40431", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185812827, 27.048194775], [142.185829831, 27.048226441], [142.185832114, 27.048201162], [142.185812827, 27.048194775]]]}}, {"id": "40432", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144143217, 26.675988027], [142.14417594, 26.675965973], [142.144148223, 26.675965162], [142.144143217, 26.675988027]]]}}, {"id": "40433", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186177134, 27.089936667], [142.186139585, 27.089918495], [142.186141855, 27.089944495], [142.186177134, 27.089936667]]]}}, {"id": "40434", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.132406783, 26.703603306], [142.132436913, 26.703595333], [142.132420947, 26.703584973], [142.132406783, 26.703603306]]]}}, {"id": "40435", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190220169, 27.043050694], [142.190195331, 27.043021829], [142.190195694, 27.043055586], [142.190220169, 27.043050694]]]}}, {"id": "40436", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181837004, 27.100955667], [142.181871141, 27.100938], [142.181838054, 27.10092164], [142.181837004, 27.100955667]]]}}, {"id": "40437", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203288366, 27.09063836], [142.203262283, 27.090605829], [142.203264968, 27.090640306], [142.203288366, 27.09063836]]]}}, {"id": "40438", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285846109, 24.789418306], [141.285813606, 24.789395847], [141.285807108, 24.789408279], [141.285846109, 24.789418306]]]}}, {"id": "40439", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148494449, 26.651602973], [142.148488664, 26.651569495], [142.148475837, 26.651576198], [142.148494449, 26.651602973]]]}}, {"id": "40440", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.165010246, 26.686911559], [142.165057886, 26.68691864], [142.165064721, 26.686905802], [142.165010246, 26.686911559]]]}}, {"id": "40441", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150413476, 26.647827225], [142.150413217, 26.647863973], [142.150432802, 26.647858973], [142.150413476, 26.647827225]]]}}, {"id": "40442", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235905253, 27.083741027], [142.235946472, 27.083736198], [142.235943943, 27.083726613], [142.235905253, 27.083741027]]]}}, {"id": "40443", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196149559, 27.038523946], [142.196107613, 27.038512], [142.196141997, 27.038533532], [142.196149559, 27.038523946]]]}}, {"id": "40444", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147178275, 26.688763225], [142.14721834, 26.688746108], [142.147205162, 26.688731892], [142.147178275, 26.688763225]]]}}, {"id": "40445", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472423061, 24.236013613], [141.472441673, 24.236048333], [141.472452218, 24.236029441], [141.472423061, 24.236013613]]]}}, {"id": "40446", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17696489, 26.654344441], [142.176974669, 26.654295414], [142.176947912, 26.654350865], [142.17696489, 26.654344441]]]}}, {"id": "40447", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.137509585, 26.700174613], [142.13752594, 26.700157], [142.137492892, 26.700145387], [142.137509585, 26.700174613]]]}}, {"id": "40448", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181973839, 27.094955802], [142.181995668, 27.094926802], [142.181972672, 27.094928919], [142.181973839, 27.094955802]]]}}, {"id": "40449", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135250636, 26.685442135], [142.135269805, 26.68540936], [142.13524131, 26.685436], [142.135250636, 26.685442135]]]}}, {"id": "40450", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142751193, 26.671587748], [142.14278153, 26.671569135], [142.142768755, 26.671554892], [142.142751193, 26.671587748]]]}}, {"id": "40451", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178634306, 26.655479919], [142.178676005, 26.655475081], [142.178643022, 26.655458333], [142.178634306, 26.655479919]]]}}, {"id": "40452", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153276719, 26.698448279], [142.153311284, 26.698428], [142.153276109, 26.698431108], [142.153276719, 26.698448279]]]}}, {"id": "40453", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237079637, 27.051269919], [142.237063696, 27.051309829], [142.237076589, 27.051308441], [142.237079637, 27.051269919]]]}}, {"id": "40454", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.212597782, 27.039935], [142.212589144, 27.039899441], [142.212577717, 27.039928613], [142.212597782, 27.039935]]]}}, {"id": "40455", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230141505, 27.060027748], [142.230185473, 27.060038973], [142.230147717, 27.060021613], [142.230141505, 27.060027748]]]}}, {"id": "40456", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.467254449, 24.243245], [141.467264721, 24.243208333], [141.467241115, 24.243239441], [141.467254449, 24.243245]]]}}, {"id": "40457", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182586693, 27.096225919], [142.182562244, 27.096199414], [142.182556057, 27.096228667], [142.182586693, 27.096225919]]]}}, {"id": "40458", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230567562, 27.060783252], [142.230536783, 27.060760919], [142.230542581, 27.060790586], [142.230567562, 27.060783252]]]}}, {"id": "40459", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181855357, 27.072427306], [142.181887471, 27.072448586], [142.181890052, 27.072427892], [142.181855357, 27.072427306]]]}}, {"id": "40460", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472399442, 24.234980559], [141.47236834, 24.234961387], [141.472369728, 24.234995559], [141.472399442, 24.234980559]]]}}, {"id": "40461", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178569831, 26.654322667], [142.178600999, 26.654341225], [142.178611388, 26.654315829], [142.178569831, 26.654322667]]]}}, {"id": "40462", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152570117, 26.707547108], [142.152588586, 26.707528414], [142.152558638, 26.707538468], [142.152570117, 26.707547108]]]}}, {"id": "40463", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188487302, 27.104997802], [142.188510441, 27.105023694], [142.18850131, 27.10498364], [142.188487302, 27.104997802]]]}}, {"id": "40464", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230157834, 27.059930441], [142.230168586, 27.059961829], [142.230181245, 27.059951892], [142.230157834, 27.059930441]]]}}, {"id": "40465", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162595746, 26.670768694], [142.162549248, 26.670782829], [142.162575084, 26.670798333], [142.162595746, 26.670768694]]]}}, {"id": "40466", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285664034, 24.790817523], [141.285635162, 24.790800505], [141.28562786, 24.79081555], [141.285664034, 24.790817523]]]}}, {"id": "40467", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142944695, 26.674088108], [142.142982866, 26.674069748], [142.142960532, 26.674052532], [142.142944695, 26.674088108]]]}}, {"id": "40468", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162583113, 26.670716532], [142.162549494, 26.670741586], [142.162581751, 26.670742532], [142.162583113, 26.670716532]]]}}, {"id": "40469", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176890726, 26.655767162], [142.17692275, 26.655750135], [142.176903333, 26.655734559], [142.176890726, 26.655767162]]]}}, {"id": "40470", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287556057, 24.745670703], [141.287548923, 24.745708135], [141.287580259, 24.745690135], [141.287556057, 24.745670703]]]}}, {"id": "40471", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231934695, 27.078708586], [142.231931894, 27.078673829], [142.231911997, 27.078699054], [142.231934695, 27.078708586]]]}}, {"id": "40472", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184914669, 27.086342586], [142.184955422, 27.086363108], [142.184955888, 27.086339279], [142.184914669, 27.086342586]]]}}, {"id": "40473", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232558249, 27.073929225], [142.232593554, 27.073938279], [142.232588586, 27.073918892], [142.232558249, 27.073929225]]]}}, {"id": "40474", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131763943, 26.688539], [142.131802023, 26.688525694], [142.131764527, 26.688517865], [142.131763943, 26.688539]]]}}, {"id": "40475", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.135195253, 26.685505108], [142.135224669, 26.685480333], [142.135199339, 26.685472694], [142.135195253, 26.685505108]]]}}, {"id": "40476", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286489455, 24.806628613], [141.28645904, 24.806655099], [141.286476018, 24.806659874], [141.286489455, 24.806628613]]]}}, {"id": "40477", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183995084, 27.092376414], [142.183969027, 27.092344135], [142.183965863, 27.092384306], [142.183995084, 27.092376414]]]}}, {"id": "40478", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126418366, 26.701865973], [142.126451336, 26.701853027], [142.126421556, 26.701842135], [142.126418366, 26.701865973]]]}}, {"id": "40479", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173385525, 26.607935], [142.173374112, 26.607899802], [142.173362698, 26.607916532], [142.173385525, 26.607935]]]}}, {"id": "40480", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287062711, 24.807133856], [141.287075084, 24.807167135], [141.287096446, 24.807133108], [141.287062711, 24.807133856]]]}}, {"id": "40481", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291663995, 24.777339225], [141.291633904, 24.777362829], [141.291679922, 24.777355018], [141.291663995, 24.777339225]]]}}, {"id": "40482", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286813268, 24.784893297], [141.286769728, 24.784881171], [141.286766291, 24.784893432], [141.286813268, 24.784893297]]]}}, {"id": "40483", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231545642, 27.070386586], [142.23156511, 27.070352892], [142.231532672, 27.070364108], [142.231545642, 27.070386586]]]}}, {"id": "40484", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284511167, 24.750084721], [141.284534903, 24.750050261], [141.284505901, 24.750055712], [141.284511167, 24.750084721]]]}}, {"id": "40485", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469976109, 24.229466667], [141.470004163, 24.229457495], [141.46997083, 24.229435559], [141.469976109, 24.229466667]]]}}, {"id": "40486", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177094086, 26.61982336], [142.177054721, 26.619834892], [142.177087588, 26.619842775], [142.177094086, 26.61982336]]]}}, {"id": "40487", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233465357, 27.056493198], [142.233435357, 27.056512667], [142.233462698, 27.056520919], [142.233465357, 27.056493198]]]}}, {"id": "40488", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453, 24.229288892], [141.453035006, 24.229303892], [141.453040558, 24.229282495], [141.453, 24.229288892]]]}}, {"id": "40489", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143428054, 26.671909135], [142.143450752, 26.671877775], [142.143431634, 26.671879081], [142.143428054, 26.671909135]]]}}, {"id": "40490", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163044189, 26.66727364], [142.163045136, 26.667303162], [142.163059416, 26.66730036], [142.163044189, 26.66727364]]]}}, {"id": "40491", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.464133333, 24.244540559], [141.46416083, 24.244573054], [141.464165551, 24.244544441], [141.464133333, 24.244540559]]]}}, {"id": "40492", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146647082, 26.686224495], [142.146668638, 26.686192802], [142.146640726, 26.686197333], [142.146647082, 26.686224495]]]}}, {"id": "40493", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284763709, 24.751184207], [141.284736576, 24.75115745], [141.284722853, 24.751170108], [141.284763709, 24.751184207]]]}}, {"id": "40494", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.46345834, 24.244684441], [141.463506394, 24.244670279], [141.463465006, 24.244670829], [141.46345834, 24.244684441]]]}}, {"id": "40495", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230694332, 27.061006414], [142.230732698, 27.061032613], [142.23072214, 27.061000694], [142.230694332, 27.061006414]]]}}, {"id": "40496", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225651505, 27.045199081], [142.225627393, 27.045230892], [142.225637173, 27.045234225], [142.225651505, 27.045199081]]]}}, {"id": "40497", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193035473, 27.089388694], [142.193044527, 27.089420441], [142.193067393, 27.089409495], [142.193035473, 27.089388694]]]}}, {"id": "40498", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184853113, 27.091921279], [142.184830895, 27.091891721], [142.184822023, 27.091903198], [142.184853113, 27.091921279]]]}}, {"id": "40499", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232455188, 27.058134225], [142.232428716, 27.058104027], [142.232421414, 27.058130225], [142.232455188, 27.058134225]]]}}, {"id": "40500", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284787237, 24.751011072], [141.284773178, 24.750980937], [141.284766848, 24.751014766], [141.284787237, 24.751011072]]]}}, {"id": "40501", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146881141, 26.689151829], [142.14691869, 26.689129775], [142.146914163, 26.689122559], [142.146881141, 26.689151829]]]}}, {"id": "40502", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285673139, 24.790091883], [141.285644163, 24.790057252], [141.285635603, 24.790084117], [141.285673139, 24.790091883]]]}}, {"id": "40503", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.32589131, 24.814115252], [141.325852075, 24.814126541], [141.325876498, 24.814146333], [141.32589131, 24.814115252]]]}}, {"id": "40504", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.46399834, 24.244631667], [141.463968612, 24.244613333], [141.46395834, 24.244643054], [141.46399834, 24.244631667]]]}}, {"id": "40505", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146750169, 26.686307532], [142.146776667, 26.686277802], [142.146742309, 26.686284252], [142.146750169, 26.686307532]]]}}, {"id": "40506", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.235988807, 27.049529586], [142.235948716, 27.049544198], [142.235987328, 27.049546829], [142.235988807, 27.049529586]]]}}, {"id": "40507", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18243655, 27.102018468], [142.18244144, 27.101986252], [142.182420415, 27.102008027], [142.18243655, 27.102018468]]]}}, {"id": "40508", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233678392, 27.081500613], [142.233638171, 27.081495694], [142.233662802, 27.081515694], [142.233678392, 27.081500613]]]}}, {"id": "40509", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189487691, 27.05128564], [142.189507886, 27.051258973], [142.18947856, 27.051247919], [142.189487691, 27.05128564]]]}}, {"id": "40510", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221877639, 27.093960775], [142.221873722, 27.093919559], [142.221856226, 27.09393836], [142.221877639, 27.093960775]]]}}, {"id": "40511", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.237262918, 27.082601252], [142.237222672, 27.082596333], [142.237247302, 27.082616333], [142.237262918, 27.082601252]]]}}, {"id": "40512", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147302892, 26.661564108], [142.147326472, 26.661536559], [142.147287004, 26.661553387], [142.147302892, 26.661564108]]]}}, {"id": "40513", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.202593943, 27.079139865], [142.202623385, 27.079135748], [142.202609248, 27.079118441], [142.202593943, 27.079139865]]]}}, {"id": "40514", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231453865, 27.078870919], [142.231471634, 27.078835694], [142.231444449, 27.078846027], [142.231453865, 27.078870919]]]}}, {"id": "40515", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21761, 27.099404441], [142.21761834, 27.099441667], [142.217627497, 27.099430559], [142.21761, 27.099404441]]]}}, {"id": "40516", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.46949917, 24.228231667], [141.469476939, 24.228248892], [141.469497782, 24.228257775], [141.46949917, 24.228231667]]]}}, {"id": "40517", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231464617, 27.078944748], [142.231443865, 27.078916081], [142.231445032, 27.078942694], [142.231464617, 27.078944748]]]}}, {"id": "40518", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14317869, 26.672146694], [142.143220804, 26.672147198], [142.143193022, 26.672118333], [142.14317869, 26.672146694]]]}}, {"id": "40519", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.131065811, 26.703937252], [142.131077302, 26.703966414], [142.131110558, 26.703952748], [142.131065811, 26.703937252]]]}}, {"id": "40520", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189603502, 27.104718495], [142.18964358, 27.104694252], [142.189627639, 27.104686532], [142.189603502, 27.104718495]]]}}, {"id": "40521", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188787562, 27.088401892], [142.188822607, 27.088378198], [142.188794669, 27.088372081], [142.188787562, 27.088401892]]]}}, {"id": "40522", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146755616, 26.686392198], [142.146783528, 26.686376198], [142.146748249, 26.686371252], [142.146755616, 26.686392198]]]}}, {"id": "40523", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.15960131, 26.686906], [142.15960358, 26.686873054], [142.15957917, 26.686880946], [142.15960131, 26.686906]]]}}, {"id": "40524", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18241642, 27.102603081], [142.182436861, 27.102574802], [142.182411855, 27.102580802], [142.18241642, 27.102603081]]]}}, {"id": "40525", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193110117, 27.088973027], [142.193150752, 27.088987252], [142.193122283, 27.08896236], [142.193110117, 27.088973027]]]}}, {"id": "40526", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293513645, 24.749726757], [141.293505253, 24.749776919], [141.293534669, 24.749731829], [141.293513645, 24.749726757]]]}}, {"id": "40527", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288106978, 24.807363351], [141.288090363, 24.807397586], [141.288108625, 24.807386928], [141.288106978, 24.807363351]]]}}, {"id": "40528", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285467198, 24.789235928], [141.285444021, 24.789206297], [141.28542655, 24.789235649], [141.285467198, 24.789235928]]]}}, {"id": "40529", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.199474358, 27.045413919], [142.199501219, 27.045390586], [142.199470467, 27.045388468], [142.199474358, 27.045413919]]]}}, {"id": "40530", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186141751, 27.048247865], [142.186167886, 27.048263081], [142.186169585, 27.048246919], [142.186141751, 27.048247865]]]}}, {"id": "40531", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177241336, 26.654658559], [142.177263995, 26.654637135], [142.177229559, 26.654643225], [142.177241336, 26.654658559]]]}}, {"id": "40532", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224077912, 27.045498559], [142.224051946, 27.045467441], [142.22403131, 27.045478225], [142.224077912, 27.045498559]]]}}, {"id": "40533", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153405162, 26.697781441], [142.153453191, 26.697772468], [142.153451362, 26.697764694], [142.153405162, 26.697781441]]]}}, {"id": "40534", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378579805, 24.779518009], [141.378537069, 24.779501126], [141.378573139, 24.779526378], [141.378579805, 24.779518009]]]}}, {"id": "40535", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152744643, 26.706679532], [142.152774617, 26.706703225], [142.152773359, 26.706674333], [142.152744643, 26.706679532]]]}}, {"id": "40536", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284957834, 24.786019018], [141.284947964, 24.786050207], [141.284975551, 24.786050153], [141.284957834, 24.786019018]]]}}, {"id": "40537", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293574942, 24.750566315], [141.293571686, 24.750529919], [141.293554034, 24.750557189], [141.293574942, 24.750566315]]]}}, {"id": "40538", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.206939144, 27.079010495], [142.206970661, 27.078990865], [142.206932023, 27.078990468], [142.206939144, 27.079010495]]]}}, {"id": "40539", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184167808, 27.092482694], [142.184189637, 27.092456027], [142.184161141, 27.092467892], [142.184167808, 27.092482694]]]}}, {"id": "40540", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142975914, 26.672455586], [142.142997497, 26.672435892], [142.142972503, 26.672437721], [142.142975914, 26.672455586]]]}}, {"id": "40541", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285792581, 24.80567227], [141.285767821, 24.805643631], [141.285771012, 24.805672982], [141.285792581, 24.80567227]]]}}, {"id": "40542", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185553385, 27.091496775], [142.185576693, 27.091514802], [142.185584423, 27.091476892], [142.185553385, 27.091496775]]]}}, {"id": "40543", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182146498, 27.093981414], [142.182130532, 27.093950865], [142.182127665, 27.093992198], [142.182146498, 27.093981414]]]}}, {"id": "40544", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203281829, 27.090767721], [142.203294306, 27.090742162], [142.203267471, 27.090742027], [142.203281829, 27.090767721]]]}}, {"id": "40545", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152748029, 26.706651802], [142.152777328, 26.706628748], [142.152746057, 26.706619135], [142.152748029, 26.706651802]]]}}, {"id": "40546", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182551362, 27.102231333], [142.182522309, 27.102221162], [142.182549883, 27.102244333], [142.182551362, 27.102231333]]]}}, {"id": "40547", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233084838, 27.070008279], [142.233115616, 27.069984225], [142.233090311, 27.069979495], [142.233084838, 27.070008279]]]}}, {"id": "40548", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125327717, 26.704289333], [142.125362166, 26.704262306], [142.125335136, 26.704266559], [142.125327717, 26.704289333]]]}}, {"id": "40549", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183454812, 27.092522162], [142.183485084, 27.092534306], [142.183466693, 27.092507694], [142.183454812, 27.092522162]]]}}, {"id": "40550", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230736744, 27.061138748], [142.23071786, 27.061166865], [142.230757665, 27.061163198], [142.230736744, 27.061138748]]]}}, {"id": "40551", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.234370973, 27.077643027], [142.234402361, 27.077656586], [142.234414423, 27.077636721], [142.234370973, 27.077643027]]]}}, {"id": "40552", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144091673, 26.670621495], [142.14413358, 26.670630108], [142.144137471, 26.670617468], [142.144091673, 26.670621495]]]}}, {"id": "40553", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1837307, 27.07061936], [142.183738003, 27.070650306], [142.183751673, 27.070627559], [142.1837307, 27.07061936]]]}}, {"id": "40554", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285666835, 24.787790928], [141.285702374, 24.787802117], [141.285710545, 24.787773261], [141.285666835, 24.787790928]]]}}, {"id": "40555", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182501336, 27.102105306], [142.182523191, 27.102082252], [142.182514695, 27.10207136], [142.182501336, 27.102105306]]]}}, {"id": "40556", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285114527, 24.78569836], [141.285143969, 24.785669883], [141.285128846, 24.78566918], [141.285114527, 24.78569836]]]}}, {"id": "40557", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176771388, 26.654533135], [142.176801997, 26.654516865], [142.17678192, 26.654514973], [142.176771388, 26.654533135]]]}}, {"id": "40558", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287140013, 24.791555667], [141.287165201, 24.791578261], [141.287161997, 24.791549631], [141.287140013, 24.791555667]]]}}, {"id": "40559", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219606394, 27.100511081], [142.219578366, 27.100509414], [142.219583865, 27.100536748], [142.219606394, 27.100511081]]]}}, {"id": "40560", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231069974, 27.068280667], [142.231033969, 27.068275108], [142.231041673, 27.068298829], [142.231069974, 27.068280667]]]}}, {"id": "40561", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183202023, 27.092658613], [142.183180272, 27.092622252], [142.183172088, 27.092664225], [142.183202023, 27.092658613]]]}}, {"id": "40562", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290869767, 24.747748559], [141.290892996, 24.747782703], [141.290896913, 24.747772342], [141.290869767, 24.747748559]]]}}, {"id": "40563", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21881022, 27.037790694], [142.218808444, 27.037762892], [142.21879275, 27.037771054], [142.21881022, 27.037790694]]]}}, {"id": "40564", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186121284, 27.088962252], [142.186159222, 27.088985108], [142.186160389, 27.088960748], [142.186121284, 27.088962252]]]}}, {"id": "40565", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182268495, 27.07458764], [142.182303748, 27.074610054], [142.182287951, 27.074578225], [142.182268495, 27.07458764]]]}}, {"id": "40566", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163744384, 26.675896108], [142.163780441, 26.675881892], [142.163770195, 26.675873252], [142.163744384, 26.675896108]]]}}, {"id": "40567", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28578476, 24.785244369], [141.285827354, 24.78524882], [141.285801686, 24.785224135], [141.28578476, 24.785244369]]]}}, {"id": "40568", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286282348, 24.79945818], [141.286309287, 24.799485658], [141.28632799, 24.799465802], [141.286282348, 24.79945818]]]}}, {"id": "40569", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156320195, 26.635577279], [142.156337224, 26.635550441], [142.156313606, 26.635545333], [142.156320195, 26.635577279]]]}}, {"id": "40570", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189342023, 27.043540892], [142.189308975, 27.043550054], [142.189325032, 27.043559414], [142.189342023, 27.043540892]]]}}, {"id": "40571", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286103878, 24.745515189], [141.286148145, 24.745501946], [141.286102879, 24.745500108], [141.286103878, 24.745515189]]]}}, {"id": "40572", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190953671, 27.042387919], [142.190989585, 27.042401306], [142.190988029, 27.042387054], [142.190953671, 27.042387919]]]}}, {"id": "40573", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287773217, 24.805397604], [141.287775201, 24.805360955], [141.287759144, 24.805367468], [141.287773217, 24.805397604]]]}}, {"id": "40574", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231216498, 27.081131198], [142.231199105, 27.08109936], [142.231191997, 27.081128333], [142.231216498, 27.081131198]]]}}, {"id": "40575", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326537198, 24.814211514], [141.3265369, 24.814175486], [141.326522568, 24.814192937], [141.326537198, 24.814211514]]]}}, {"id": "40576", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.97835952, 24.294583532], [153.978390467, 24.294607541], [153.978371427, 24.294572622], [153.97835952, 24.294583532]]]}}, {"id": "40577", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.173030143, 26.656128162], [142.173006278, 26.656103559], [142.172993061, 26.65612236], [142.173030143, 26.656128162]]]}}, {"id": "40578", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185421971, 27.047856108], [142.185402192, 27.04783736], [142.185403411, 27.047852532], [142.185421971, 27.047856108]]]}}, {"id": "40579", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.168293774, 26.658246387], [142.168327328, 26.658234775], [142.168293554, 26.658231748], [142.168293774, 26.658246387]]]}}, {"id": "40580", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.215557834, 27.100224721], [142.215512672, 27.100235279], [142.215557756, 27.10023764], [142.215557834, 27.100224721]]]}}, {"id": "40581", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123027393, 26.71542764], [142.123022023, 26.715395054], [142.122998833, 26.715406919], [142.123027393, 26.71542764]]]}}, {"id": "40582", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156172555, 26.635586108], [142.156185668, 26.635553135], [142.156157782, 26.635574748], [142.156172555, 26.635586108]]]}}, {"id": "40583", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223902192, 27.045649198], [142.223871219, 27.045626333], [142.22385917, 27.045648108], [142.223902192, 27.045649198]]]}}, {"id": "40584", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127282335, 26.696975586], [142.127323917, 26.696960027], [142.127280921, 26.696962694], [142.127282335, 26.696975586]]]}}, {"id": "40585", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12268214, 26.711196081], [142.122712698, 26.711191], [142.122682335, 26.711175667], [142.12268214, 26.711196081]]]}}, {"id": "40586", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.217567276, 27.100960387], [142.217606005, 27.100966198], [142.217600532, 27.100943559], [142.217567276, 27.100960387]]]}}, {"id": "40587", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196028664, 27.038509414], [142.196002529, 27.038482559], [142.195997419, 27.038504865], [142.196028664, 27.038509414]]]}}, {"id": "40588", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286000636, 24.806042333], [141.286021958, 24.806015721], [141.285995746, 24.806015414], [141.286000636, 24.806042333]]]}}, {"id": "40589", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285711712, 24.790005036], [141.285690026, 24.790027865], [141.285747756, 24.790014324], [141.285711712, 24.790005036]]]}}, {"id": "40590", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284597393, 24.800583261], [141.284609364, 24.800617532], [141.284633191, 24.800600766], [141.284597393, 24.800583261]]]}}, {"id": "40591", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289033567, 24.746672811], [141.289008859, 24.746636486], [141.289004345, 24.746649378], [141.289033567, 24.746672811]]]}}, {"id": "40592", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230868859, 27.08084764], [142.230855577, 27.080813973], [142.23084808, 27.08083964], [142.230868859, 27.08084764]]]}}, {"id": "40593", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178586589, 26.654442694], [142.17861869, 26.654425775], [142.178590947, 26.654410441], [142.178586589, 26.654442694]]]}}, {"id": "40594", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22613642, 27.046075162], [142.226109637, 27.046104081], [142.226145914, 27.04609836], [142.22613642, 27.046075162]]]}}, {"id": "40595", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188618301, 27.088380559], [142.188655084, 27.088367946], [142.188622192, 27.088361225], [142.188618301, 27.088380559]]]}}, {"id": "40596", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.172266744, 26.656863748], [142.172289533, 26.656841532], [142.172262412, 26.656837946], [142.172266744, 26.656863748]]]}}, {"id": "40597", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.151054358, 26.683694775], [142.151055422, 26.683665279], [142.151041167, 26.683689829], [142.151054358, 26.683694775]]]}}, {"id": "40598", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182176861, 27.093550135], [142.182147951, 27.093551532], [142.182157328, 27.093572108], [142.182176861, 27.093550135]]]}}, {"id": "40599", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.163710272, 26.676545667], [142.16374572, 26.676546721], [142.163711245, 26.67654036], [142.163710272, 26.676545667]]]}}, {"id": "40600", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12415345, 26.705265198], [142.124181193, 26.705274919], [142.12417856, 26.70525], [142.12415345, 26.705265198]]]}}, {"id": "40601", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181865253, 27.094906108], [142.181835863, 27.094882333], [142.181842866, 27.094918613], [142.181865253, 27.094906108]]]}}, {"id": "40602", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285903619, 24.806075279], [141.285929066, 24.806052288], [141.285898223, 24.806049973], [141.285903619, 24.806075279]]]}}, {"id": "40603", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.205158495, 27.076537973], [142.205128223, 27.076526108], [142.205122192, 27.076545252], [142.205158495, 27.076537973]]]}}, {"id": "40604", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23323192, 27.075359775], [142.233262944, 27.075347279], [142.233243359, 27.075339], [142.23323192, 27.075359775]]]}}, {"id": "40605", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472418054, 24.235147495], [141.472398054, 24.235114721], [141.472399442, 24.235157775], [141.472418054, 24.235147495]]]}}, {"id": "40606", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293268431, 24.749504054], [141.293294345, 24.749484135], [141.293268599, 24.749473991], [141.293268431, 24.749504054]]]}}, {"id": "40607", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286861673, 24.784938126], [141.286886433, 24.784966315], [141.286880363, 24.784936946], [141.286861673, 24.784938126]]]}}, {"id": "40608", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122916939, 26.706998865], [142.122954306, 26.706988532], [142.122922944, 26.706980892], [142.122916939, 26.706998865]]]}}, {"id": "40609", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287087263, 24.785088883], [141.287121764, 24.785074694], [141.287101025, 24.78506891], [141.287087263, 24.785088883]]]}}, {"id": "40610", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181745499, 27.072456333], [142.181764916, 27.072482946], [142.181770026, 27.072471387], [142.181745499, 27.072456333]]]}}, {"id": "40611", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.973305266, 24.289098946], [153.973339351, 24.289114559], [153.973317367, 24.289085838], [153.973305266, 24.289098946]]]}}, {"id": "40612", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.978805966, 24.294530063], [153.97883096, 24.294563892], [153.97883454, 24.294559532], [153.978805966, 24.294530063]]]}}, {"id": "40613", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286440843, 24.784909036], [141.286447562, 24.784946892], [141.286458353, 24.784944775], [141.286440843, 24.784909036]]]}}, {"id": "40614", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.468961673, 24.227108054], [141.469006109, 24.22709], [141.468962776, 24.227093333], [141.468961673, 24.227108054]]]}}, {"id": "40615", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233342218, 27.056657414], [142.233325447, 27.056685613], [142.233357056, 27.056673], [142.233342218, 27.056657414]]]}}, {"id": "40616", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225211051, 27.087713919], [142.225214669, 27.087744532], [142.225222309, 27.087739081], [142.225211051, 27.087713919]]]}}, {"id": "40617", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177220661, 26.654616973], [142.177234501, 26.654592495], [142.177210467, 26.654591441], [142.177220661, 26.654616973]]]}}, {"id": "40618", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232708392, 27.077689829], [142.232745006, 27.077655279], [142.232743696, 27.077651225], [142.232708392, 27.077689829]]]}}, {"id": "40619", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233848911, 27.075574468], [142.233819248, 27.075564135], [142.233821894, 27.075579198], [142.233848911, 27.075574468]]]}}, {"id": "40620", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.160971673, 26.63403564], [142.160983671, 26.634006108], [142.160958911, 26.634030135], [142.160971673, 26.63403564]]]}}, {"id": "40621", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287458301, 24.80728064], [141.287425396, 24.807274973], [141.287435357, 24.807297595], [141.287458301, 24.80728064]]]}}, {"id": "40622", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187445746, 27.060084721], [142.187476083, 27.060066279], [142.187448859, 27.060065946], [142.187445746, 27.060084721]]]}}, {"id": "40623", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221963606, 27.094345775], [142.222002166, 27.094364946], [142.222006887, 27.094352468], [142.221963606, 27.094345775]]]}}, {"id": "40624", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.463616939, 24.244887775], [141.463621115, 24.244916108], [141.463626109, 24.244895279], [141.463616939, 24.244887775]]]}}, {"id": "40625", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128347665, 26.697263108], [142.128370246, 26.697239721], [142.128342633, 26.697254081], [142.128347665, 26.697263108]]]}}, {"id": "40626", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285433826, 24.804673036], [141.285414488, 24.804647306], [141.285405914, 24.80466018], [141.285433826, 24.804673036]]]}}, {"id": "40627", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28648393, 24.790827847], [141.286444358, 24.790849324], [141.286459663, 24.790852919], [141.28648393, 24.790827847]]]}}, {"id": "40628", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326621894, 24.814191126], [141.32658249, 24.814176658], [141.32657939, 24.814203486], [141.326621894, 24.814191126]]]}}, {"id": "40629", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286332685, 24.785061369], [141.286367173, 24.785065775], [141.286353502, 24.785034649], [141.286332685, 24.785061369]]]}}, {"id": "40630", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18934489, 27.043619775], [142.189318975, 27.043616468], [142.189336446, 27.043633495], [142.18934489, 27.043619775]]]}}, {"id": "40631", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224768197, 27.087519054], [142.224790921, 27.087529946], [142.224790947, 27.087506], [142.224768197, 27.087519054]]]}}, {"id": "40632", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.174828911, 26.609416973], [142.174813217, 26.609389198], [142.174798366, 26.609398865], [142.174828911, 26.609416973]]]}}, {"id": "40633", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175771362, 26.654855], [142.17580642, 26.654847], [142.175775253, 26.654834694], [142.175771362, 26.654855]]]}}, {"id": "40634", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285429481, 24.804482072], [141.285437367, 24.804453306], [141.285411777, 24.804446595], [141.285429481, 24.804482072]]]}}, {"id": "40635", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379089831, 24.78063864], [141.379056187, 24.780623604], [141.379069105, 24.780650378], [141.379089831, 24.78063864]]]}}, {"id": "40636", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219339196, 27.096182829], [142.219320169, 27.096155532], [142.219314254, 27.096174306], [142.219339196, 27.096182829]]]}}, {"id": "40637", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285031543, 24.78680536], [141.284994682, 24.786802297], [141.28498856, 24.786816712], [141.285031543, 24.78680536]]]}}, {"id": "40638", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.134439831, 26.699633559], [142.134410921, 26.699657865], [142.134439948, 26.699652225], [142.134439831, 26.699633559]]]}}, {"id": "40639", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181744669, 27.100546721], [142.181716304, 27.100531613], [142.181723087, 27.100552721], [142.181744669, 27.100546721]]]}}, {"id": "40640", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285985772, 24.789344667], [141.285987769, 24.789377721], [141.285998625, 24.789364405], [141.285985772, 24.789344667]]]}}, {"id": "40641", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287311608, 24.791968703], [141.287349494, 24.791968162], [141.287336472, 24.791945622], [141.287311608, 24.791968703]]]}}, {"id": "40642", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285041569, 24.785505261], [141.285078988, 24.785499117], [141.285064553, 24.785481802], [141.285041569, 24.785505261]]]}}, {"id": "40643", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144491634, 26.675971252], [142.14449, 26.675935495], [142.144470921, 26.675949495], [142.144491634, 26.675971252]]]}}, {"id": "40644", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228398223, 27.081521108], [142.228435966, 27.081497667], [142.228393256, 27.081506387], [142.228398223, 27.081521108]]]}}, {"id": "40645", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.12829406, 26.697927225], [142.128296446, 26.697894], [142.128279831, 26.697885721], [142.12829406, 26.697927225]]]}}, {"id": "40646", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286152711, 24.785179135], [141.286130661, 24.785213973], [141.286157354, 24.785198838], [141.286152711, 24.785179135]]]}}, {"id": "40647", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17272786, 26.644581721], [142.172709027, 26.644552414], [142.172713217, 26.644596721], [142.17272786, 26.644581721]]]}}, {"id": "40648", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28632035, 24.785072414], [141.286290623, 24.785084099], [141.286328846, 24.785093036], [141.28632035, 24.785072414]]]}}, {"id": "40649", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188702724, 27.044178162], [142.188677639, 27.044188387], [142.188709611, 27.044205387], [142.188702724, 27.044178162]]]}}, {"id": "40650", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.126307276, 26.702368667], [142.126333995, 26.70235564], [142.126311556, 26.702344], [142.126307276, 26.702368667]]]}}, {"id": "40651", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.123309974, 26.707621694], [142.123315966, 26.707592252], [142.123296394, 26.707604559], [142.123309974, 26.707621694]]]}}, {"id": "40652", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189358612, 27.054509721], [142.189363696, 27.054472532], [142.189340363, 27.054509829], [142.189358612, 27.054509721]]]}}, {"id": "40653", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.194460661, 27.040464775], [142.194446693, 27.040430135], [142.194434617, 27.040435198], [142.194460661, 27.040464775]]]}}, {"id": "40654", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152182607, 26.706506919], [142.152203165, 26.706482054], [142.152185383, 26.706478468], [142.152182607, 26.706506919]]]}}, {"id": "40655", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293621751, 24.75017164], [141.29358214, 24.75018391], [141.293622996, 24.750178865], [141.293621751, 24.75017164]]]}}, {"id": "40656", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.455896394, 24.225118613], [141.455921673, 24.225106946], [141.455891946, 24.225096108], [141.455896394, 24.225118613]]]}}, {"id": "40657", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231865357, 27.08113264], [142.231893165, 27.081110225], [142.231868638, 27.081105027], [142.231865357, 27.08113264]]]}}, {"id": "40658", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284864877, 24.751558009], [141.284833606, 24.751564721], [141.28485677, 24.751576568], [141.284864877, 24.751558009]]]}}, {"id": "40659", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287307082, 24.745781829], [141.287316355, 24.74575136], [141.287294345, 24.74576127], [141.287307082, 24.745781829]]]}}, {"id": "40660", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304206265, 24.756114523], [141.304240298, 24.756110351], [141.304220791, 24.756098973], [141.304206265, 24.756114523]]]}}, {"id": "40661", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.162089754, 26.700443027], [142.16211022, 26.700416387], [142.162089805, 26.700414333], [142.162089754, 26.700443027]]]}}, {"id": "40662", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222817224, 27.092128441], [142.222829053, 27.092099973], [142.222812529, 27.092107333], [142.222817224, 27.092128441]]]}}, {"id": "40663", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233173696, 27.077193081], [142.23314572, 27.077174441], [142.233148392, 27.077198802], [142.233173696, 27.077193081]]]}}, {"id": "40664", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147079105, 26.686984081], [142.147082802, 26.686955198], [142.147065032, 26.686961252], [142.147079105, 26.686984081]]]}}, {"id": "40665", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285718106, 24.785346883], [141.285748106, 24.785341883], [141.285712464, 24.785330694], [141.285718106, 24.785346883]]]}}, {"id": "40666", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184145473, 27.092201919], [142.184123217, 27.09217236], [142.184141829, 27.09220364], [142.184145473, 27.092201919]]]}}, {"id": "40667", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287992776, 24.807305757], [141.287969857, 24.807333901], [141.287993709, 24.807331937], [141.287992776, 24.807305757]]]}}, {"id": "40668", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285601193, 24.797126559], [141.28562489, 24.797099505], [141.285599092, 24.797097297], [141.285601193, 24.797126559]]]}}, {"id": "40669", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18587703, 27.048178081], [142.185858223, 27.048148775], [142.185855253, 27.048172892], [142.18587703, 27.048178081]]]}}, {"id": "40670", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204882827, 27.085353108], [142.20490144, 27.085326802], [142.204878444, 27.085332162], [142.204882827, 27.085353108]]]}}, {"id": "40671", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379079131, 24.78026518], [141.379035901, 24.780268072], [141.3790469, 24.78028473], [141.379079131, 24.78026518]]]}}, {"id": "40672", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23184144, 27.079061198], [142.231871115, 27.079071054], [142.231869559, 27.079051225], [142.23184144, 27.079061198]]]}}, {"id": "40673", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287671634, 24.80728409], [141.287651193, 24.80724427], [141.287647588, 24.80726845], [141.287671634, 24.80728409]]]}}, {"id": "40674", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37881869, 24.779922198], [141.378793904, 24.779934018], [141.378805214, 24.779947514], [141.37881869, 24.779922198]]]}}, {"id": "40675", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.9768762, 24.292107928], [153.97685834, 24.292068649], [153.976852983, 24.292103018], [153.9768762, 24.292107928]]]}}, {"id": "40676", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284817549, 24.751725532], [141.284842789, 24.751704432], [141.284825966, 24.751706162], [141.284817549, 24.751725532]]]}}, {"id": "40677", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285303152, 24.785123622], [141.285311971, 24.78515364], [141.285345344, 24.785147568], [141.285303152, 24.785123622]]]}}, {"id": "40678", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186318807, 27.055238559], [142.186289922, 27.055250054], [142.18631978, 27.055264829], [142.186318807, 27.055238559]]]}}, {"id": "40679", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189325058, 27.054571694], [142.189330558, 27.054611946], [142.189339248, 27.054558135], [142.189325058, 27.054571694]]]}}, {"id": "40680", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287367121, 24.745845586], [141.287394656, 24.745871351], [141.287398677, 24.745841577], [141.287367121, 24.745845586]]]}}, {"id": "40681", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.156451725, 26.707347468], [142.156473113, 26.707321559], [142.156440246, 26.707335667], [142.156451725, 26.707347468]]]}}, {"id": "40682", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181544968, 27.094231306], [142.18152083, 27.094262027], [142.181529196, 27.094263198], [142.181544968, 27.094231306]]]}}, {"id": "40683", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197617302, 27.045021919], [142.197610117, 27.044990802], [142.197596446, 27.045018973], [142.197617302, 27.045021919]]]}}, {"id": "40684", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284483619, 24.799657685], [141.284452724, 24.799681279], [141.28448022, 24.799681054], [141.284483619, 24.799657685]]]}}, {"id": "40685", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285357173, 24.804294126], [141.285332827, 24.804279288], [141.28534022, 24.80430045], [141.285357173, 24.804294126]]]}}, {"id": "40686", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224043891, 27.045068162], [142.22401192, 27.045060559], [142.224012244, 27.045082108], [142.224043891, 27.045068162]]]}}, {"id": "40687", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285967173, 24.789553486], [141.285928405, 24.789553757], [141.285969014, 24.789561441], [141.285967173, 24.789553486]]]}}, {"id": "40688", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182205551, 27.097878667], [142.182212283, 27.097909613], [142.182224916, 27.097877829], [142.182205551, 27.097878667]]]}}, {"id": "40689", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.305274228, 24.756457865], [141.305273191, 24.756484126], [141.305294721, 24.756470685], [141.305274228, 24.756457865]]]}}, {"id": "40690", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224100636, 27.043595802], [142.224092827, 27.043571802], [142.224081751, 27.043581468], [142.224100636, 27.043595802]]]}}, {"id": "40691", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285765447, 24.789531676], [141.2858031, 24.789520928], [141.285796952, 24.78950645], [141.285765447, 24.789531676]]]}}, {"id": "40692", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.98054882, 24.297019604], [153.980546706, 24.296990505], [153.980525538, 24.296988568], [153.98054882, 24.297019604]]]}}, {"id": "40693", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182479222, 27.071276], [142.182500246, 27.071254748], [142.182480895, 27.071252973], [142.182479222, 27.071276]]]}}, {"id": "40694", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287606381, 24.807643279], [141.287632698, 24.807625171], [141.2876062, 24.807621883], [141.287606381, 24.807643279]]]}}, {"id": "40695", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232972283, 27.077160946], [142.232945914, 27.077143559], [142.232949196, 27.077172973], [142.232972283, 27.077160946]]]}}, {"id": "40696", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222005499, 27.094510694], [142.222023969, 27.094475919], [142.222001894, 27.094476586], [142.222005499, 27.094510694]]]}}, {"id": "40697", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.456321115, 24.224986532], [141.456288781, 24.224967495], [141.456276667, 24.224985135], [141.456321115, 24.224986532]]]}}, {"id": "40698", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289168495, 24.746693036], [141.289175914, 24.746658495], [141.289162075, 24.746675766], [141.289168495, 24.746693036]]]}}, {"id": "40699", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284720026, 24.751577631], [141.284693774, 24.751569649], [141.284695136, 24.751590423], [141.284720026, 24.751577631]]]}}, {"id": "40700", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197082633, 27.044771306], [142.197087613, 27.044737441], [142.197072503, 27.044738108], [142.197082633, 27.044771306]]]}}, {"id": "40701", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.176913476, 26.602378721], [142.176897588, 26.602353198], [142.176888275, 26.602373495], [142.176913476, 26.602378721]]]}}, {"id": "40702", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230666589, 27.060847613], [142.230645136, 27.060860198], [142.2306607, 27.060866829], [142.230666589, 27.060847613]]]}}, {"id": "40703", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287014708, 24.806914234], [141.28704607, 24.806896423], [141.287043671, 24.806882955], [141.287014708, 24.806914234]]]}}, {"id": "40704", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225863943, 27.039176387], [142.225872244, 27.039145225], [142.22585, 27.039165027], [142.225863943, 27.039176387]]]}}, {"id": "40705", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166122335, 26.683609081], [142.166111245, 26.683576162], [142.166104553, 26.683601721], [142.166122335, 26.683609081]]]}}, {"id": "40706", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125910584, 26.700975], [142.125936693, 26.700964495], [142.125930052, 26.700956829], [142.125910584, 26.700975]]]}}, {"id": "40707", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29344856, 24.750029441], [141.293432075, 24.750059703], [141.293449287, 24.750057883], [141.29344856, 24.750029441]]]}}, {"id": "40708", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223620272, 27.090888108], [142.223602802, 27.090920279], [142.223630895, 27.090894135], [142.223620272, 27.090888108]]]}}, {"id": "40709", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227822918, 27.080995198], [142.227850195, 27.080978721], [142.227830117, 27.08097164], [142.227822918, 27.080995198]]]}}, {"id": "40710", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221881479, 27.094056198], [142.221847276, 27.094056775], [142.221853256, 27.094071748], [142.221881479, 27.094056198]]]}}, {"id": "40711", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186818418, 27.044326973], [142.186854112, 27.044338586], [142.186853281, 27.044320441], [142.186818418, 27.044326973]]]}}, {"id": "40712", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34145323, 24.804223189], [141.341431933, 24.804246396], [141.341462802, 24.804244811], [141.34145323, 24.804223189]]]}}, {"id": "40713", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182156394, 27.098096973], [142.182155136, 27.098064225], [142.182145383, 27.098092198], [142.182156394, 27.098096973]]]}}, {"id": "40714", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144144942, 26.674082027], [142.144162581, 26.674054306], [142.14414, 26.674055135], [142.144144942, 26.674082027]]]}}, {"id": "40715", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287421414, 24.792275198], [141.287412957, 24.792302054], [141.287438859, 24.792285748], [141.287421414, 24.792275198]]]}}, {"id": "40716", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285120597, 24.785745423], [141.285154981, 24.785749739], [141.285127211, 24.785729297], [141.285120597, 24.785745423]]]}}, {"id": "40717", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285109481, 24.749810685], [141.285086459, 24.749790622], [141.285080545, 24.749823631], [141.285109481, 24.749810685]]]}}, {"id": "40718", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286529183, 24.800568288], [141.286503152, 24.800589198], [141.286520337, 24.800593162], [141.286529183, 24.800568288]]]}}, {"id": "40719", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28506939, 24.785016514], [141.285043009, 24.784994541], [141.285041064, 24.785022973], [141.28506939, 24.785016514]]]}}, {"id": "40720", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128180947, 26.70129864], [142.128174669, 26.70133636], [142.128195746, 26.701308559], [142.128180947, 26.70129864]]]}}, {"id": "40721", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287831569, 24.804774027], [141.287850117, 24.804799486], [141.28785882, 24.804782018], [141.287831569, 24.804774027]]]}}, {"id": "40722", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.170869857, 26.63091036], [142.170892477, 26.630931919], [142.170902607, 26.630915198], [142.170869857, 26.63091036]]]}}, {"id": "40723", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181997302, 27.095011198], [142.181968366, 27.095010775], [142.181994112, 27.095033027], [142.181997302, 27.095011198]]]}}, {"id": "40724", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152564812, 26.642857946], [142.152597523, 26.642832892], [142.152564916, 26.642845919], [142.152564812, 26.642857946]]]}}, {"id": "40725", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122980117, 26.707144387], [142.123000195, 26.707121], [142.122975447, 26.707118135], [142.122980117, 26.707144387]]]}}, {"id": "40726", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.218865914, 27.10101136], [142.218929754, 27.101005829], [142.218932477, 27.101002667], [142.218865914, 27.10101136]]]}}, {"id": "40727", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223725447, 27.045668162], [142.223689053, 27.045674441], [142.223731608, 27.045686108], [142.223725447, 27.045668162]]]}}, {"id": "40728", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284901492, 24.78680736], [141.284865422, 24.786801676], [141.284867056, 24.786810441], [141.284901492, 24.78680736]]]}}, {"id": "40729", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285875136, 24.785039414], [141.285887432, 24.78506836], [141.285900156, 24.785055514], [141.285875136, 24.785039414]]]}}, {"id": "40730", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285665772, 24.785731144], [141.285638898, 24.785743477], [141.285663424, 24.785761378], [141.285665772, 24.785731144]]]}}, {"id": "40731", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285713632, 24.785214604], [141.285727756, 24.785182532], [141.285692412, 24.785206829], [141.285713632, 24.785214604]]]}}, {"id": "40732", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.195133113, 27.042407802], [142.195110117, 27.04240064], [142.195111245, 27.042426973], [142.195133113, 27.042407802]]]}}, {"id": "40733", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.122808859, 26.711261694], [142.122795447, 26.711233], [142.122782802, 26.711238946], [142.122808859, 26.711261694]]]}}, {"id": "40734", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185291141, 27.047980919], [142.185302672, 27.048008162], [142.185304254, 27.047981081], [142.185291141, 27.047980919]]]}}, {"id": "40735", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223679416, 27.045735306], [142.223670389, 27.045707973], [142.223658911, 27.04571864], [142.223679416, 27.045735306]]]}}, {"id": "40736", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288564734, 24.746279297], [141.288531933, 24.746276523], [141.288557043, 24.746292441], [141.288564734, 24.746279297]]]}}, {"id": "40737", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.979640039, 24.295206387], [153.979631569, 24.29523645], [153.979650091, 24.295233541], [153.979640039, 24.295206387]]]}}, {"id": "40738", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.148535253, 26.654268225], [142.148497977, 26.654256333], [142.148530052, 26.654276081], [142.148535253, 26.654268225]]]}}, {"id": "40739", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181478444, 27.072724108], [142.181483333, 27.072756694], [142.181495422, 27.072732946], [142.181478444, 27.072724108]]]}}, {"id": "40740", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284649611, 24.80077418], [141.284616381, 24.800754523], [141.284611868, 24.800767414], [141.284649611, 24.80077418]]]}}, {"id": "40741", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146627717, 26.685635829], [142.146651115, 26.68561036], [142.146634034, 26.685607468], [142.146627717, 26.685635829]]]}}, {"id": "40742", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.3046893, 24.756318369], [141.304685058, 24.756297135], [141.30467642, 24.756321288], [141.3046893, 24.756318369]]]}}, {"id": "40743", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2841938, 24.749932342], [141.284162477, 24.74994664], [141.284179027, 24.749956919], [141.2841938, 24.749932342]]]}}, {"id": "40744", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341375629, 24.771078703], [141.34141013, 24.771115595], [141.341415901, 24.771109486], [141.341375629, 24.771078703]]]}}, {"id": "40745", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286852646, 24.785114766], [141.286884591, 24.785131613], [141.286866874, 24.785100387], [141.286852646, 24.785114766]]]}}, {"id": "40746", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.17742428, 26.655849532], [142.177459948, 26.655843081], [142.177420856, 26.655843027], [142.17742428, 26.655849532]]]}}, {"id": "40747", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285699313, 24.790045874], [141.285700337, 24.790074946], [141.285722451, 24.790046613], [141.285699313, 24.790045874]]]}}, {"id": "40748", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.166169442, 26.683927829], [142.166148807, 26.683906748], [142.166143502, 26.683918135], [142.166169442, 26.683927829]]]}}, {"id": "40749", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150409948, 26.64789664], [142.150409468, 26.647925162], [142.150423528, 26.647912892], [142.150409948, 26.64789664]]]}}, {"id": "40750", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326150882, 24.814094748], [141.326182763, 24.814088396], [141.326155344, 24.814072649], [141.326150882, 24.814094748]]]}}, {"id": "40751", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186490246, 27.089822802], [142.186510999, 27.089799667], [142.186487977, 27.089791225], [142.186490246, 27.089822802]]]}}, {"id": "40752", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.453202776, 24.229576108], [141.453237782, 24.229556946], [141.45321083, 24.229554721], [141.453202776, 24.229576108]]]}}, {"id": "40753", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28797808, 24.806916297], [141.288010298, 24.806939387], [141.287995512, 24.806911955], [141.28797808, 24.806916297]]]}}, {"id": "40754", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285668677, 24.785482342], [141.285696018, 24.785508387], [141.28569192, 24.785483171], [141.285668677, 24.785482342]]]}}, {"id": "40755", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290123256, 24.74753773], [141.29010642, 24.747559595], [141.290123839, 24.747556874], [141.290123256, 24.74753773]]]}}, {"id": "40756", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28627441, 24.784978748], [141.286249702, 24.784958045], [141.286249987, 24.784978631], [141.28627441, 24.784978748]]]}}, {"id": "40757", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232729831, 27.077623559], [142.232752361, 27.077597613], [142.232727562, 27.07759864], [142.232729831, 27.077623559]]]}}, {"id": "40758", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284975966, 24.802435027], [141.28498332, 24.802463595], [141.284994034, 24.80243918], [141.284975966, 24.802435027]]]}}, {"id": "40759", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285661946, 24.790493135], [141.285678314, 24.790518396], [141.285670869, 24.790471955], [141.285661946, 24.790493135]]]}}, {"id": "40760", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182139027, 27.097451306], [142.182136939, 27.097475306], [142.182162049, 27.097472829], [142.182139027, 27.097451306]]]}}, {"id": "40761", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222004501, 27.094265559], [142.222023696, 27.094288198], [142.222042335, 27.094275162], [142.222004501, 27.094265559]]]}}, {"id": "40762", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.146766524, 26.689979135], [142.146779663, 26.689952306], [142.146754968, 26.689965054], [142.146766524, 26.689979135]]]}}, {"id": "40763", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285770195, 24.785386135], [141.285769572, 24.785410234], [141.285794695, 24.785407739], [141.285770195, 24.785386135]]]}}, {"id": "40764", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1915893, 27.089014108], [142.191561699, 27.089019829], [142.19156572, 27.089029946], [142.1915893, 27.089014108]]]}}, {"id": "40765", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28771978, 24.79241718], [141.287695266, 24.792431964], [141.287721258, 24.792451946], [141.28771978, 24.79241718]]]}}, {"id": "40766", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153426667, 26.684192225], [142.153440804, 26.684169279], [142.153410973, 26.684180946], [142.153426667, 26.684192225]]]}}, {"id": "40767", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286087795, 24.789646784], [141.286091206, 24.78967082], [141.286104202, 24.789664559], [141.286087795, 24.789646784]]]}}, {"id": "40768", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285804306, 24.785369955], [141.285798898, 24.785400351], [141.285820039, 24.78538673], [141.285804306, 24.785369955]]]}}, {"id": "40769", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.204605551, 27.085367586], [142.204627393, 27.085343721], [142.204607302, 27.085341333], [142.204605551, 27.085367586]]]}}, {"id": "40770", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284986861, 24.786009946], [141.285020363, 24.786014171], [141.285006602, 24.785997847], [141.284986861, 24.786009946]]]}}, {"id": "40771", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288037043, 24.745959901], [141.288065992, 24.745946946], [141.288038366, 24.745936072], [141.288037043, 24.745959901]]]}}, {"id": "40772", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287428599, 24.745847405], [141.28744428, 24.745872315], [141.287460259, 24.745862009], [141.287428599, 24.745847405]]]}}, {"id": "40773", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378610558, 24.77941864], [141.378646732, 24.77940182], [141.37863524, 24.779387324], [141.378610558, 24.77941864]]]}}, {"id": "40774", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325912944, 24.814084018], [141.325934189, 24.81408827], [141.325925538, 24.814078207], [141.325912944, 24.814084018]]]}}, {"id": "40775", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285061699, 24.787135577], [141.285090298, 24.787149703], [141.285091167, 24.787135982], [141.285061699, 24.787135577]]]}}, {"id": "40776", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.128350415, 26.697908586], [142.128377639, 26.69791064], [142.128371193, 26.697898532], [142.128350415, 26.697908586]]]}}, {"id": "40777", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219061414, 27.096936748], [142.219021556, 27.09693364], [142.219024916, 27.096941946], [142.219061414, 27.096936748]]]}}, {"id": "40778", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182563528, 27.102329333], [142.182547951, 27.102298225], [142.182543554, 27.102324108], [142.182563528, 27.102329333]]]}}, {"id": "40779", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285765629, 24.745610721], [141.285692231, 24.745566216], [141.285687445, 24.745572604], [141.285765629, 24.745610721]]]}}, {"id": "40780", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141454163, 26.678130667], [142.141429689, 26.678162559], [142.141454812, 26.678160468], [142.141454163, 26.678130667]]]}}, {"id": "40781", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.183121479, 27.10347036], [142.183095888, 27.103484198], [142.183118301, 27.103494], [142.183121479, 27.10347036]]]}}, {"id": "40782", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291867173, 24.748257856], [141.291855785, 24.748278658], [141.291879883, 24.748283378], [141.291867173, 24.748257856]]]}}, {"id": "40783", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.124293865, 26.705188802], [142.124325305, 26.705175225], [142.124305383, 26.705171802], [142.124293865, 26.705188802]]]}}, {"id": "40784", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.377972101, 24.779642063], [141.377953294, 24.779664459], [141.377970661, 24.779673649], [141.377972101, 24.779642063]]]}}, {"id": "40785", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285775966, 24.789855198], [141.285754488, 24.789840928], [141.285733528, 24.789857441], [141.285775966, 24.789855198]]]}}, {"id": "40786", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.141198885, 26.69911636], [142.141224086, 26.699101279], [142.141202477, 26.699096613], [142.141198885, 26.69911636]]]}}, {"id": "40787", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285141881, 24.803942802], [141.285115979, 24.803959108], [141.285139442, 24.803955252], [141.285141881, 24.803942802]]]}}, {"id": "40788", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284849274, 24.751934595], [141.284872542, 24.751913036], [141.284850571, 24.751915369], [141.284849274, 24.751934595]]]}}, {"id": "40789", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285273074, 24.749626108], [141.285264306, 24.749602685], [141.285248833, 24.749628883], [141.285273074, 24.749626108]]]}}, {"id": "40790", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.230851025, 27.080898108], [142.230841193, 27.080872495], [142.230826978, 27.080882162], [142.230851025, 27.080898108]]]}}, {"id": "40791", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185544086, 27.048185027], [142.185561971, 27.048152694], [142.185546641, 27.048147559], [142.185544086, 27.048185027]]]}}, {"id": "40792", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181884864, 27.099189892], [142.181857562, 27.099207973], [142.181887613, 27.099203252], [142.181884864, 27.099189892]]]}}, {"id": "40793", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287751089, 24.806914315], [141.287719611, 24.806903333], [141.28773144, 24.806926505], [141.287751089, 24.806914315]]]}}, {"id": "40794", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223509339, 27.045423559], [142.223481699, 27.045407613], [142.223491219, 27.045430802], [142.223509339, 27.045423559]]]}}, {"id": "40795", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178421803, 26.65571164], [142.17843642, 26.655685892], [142.178415136, 26.655694495], [142.178421803, 26.65571164]]]}}, {"id": "40796", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28538847, 24.748999018], [141.285406796, 24.748977171], [141.285384254, 24.748977514], [141.28538847, 24.748999018]]]}}, {"id": "40797", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1469462, 26.688960613], [142.146956304, 26.688933252], [142.146935447, 26.688947081], [142.1469462, 26.688960613]]]}}, {"id": "40798", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286054254, 24.789701333], [141.286042827, 24.78972755], [141.286060558, 24.789722315], [141.286054254, 24.789701333]]]}}, {"id": "40799", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284372335, 24.799385495], [141.284334086, 24.799399036], [141.284373554, 24.799395973], [141.284372335, 24.799385495]]]}}, {"id": "40800", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236328975, 27.050853279], [142.236322361, 27.050822495], [142.236309079, 27.050844108], [142.236328975, 27.050853279]]]}}, {"id": "40801", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284804397, 24.751916775], [141.284807873, 24.751948297], [141.284826096, 24.75192645], [141.284804397, 24.751916775]]]}}, {"id": "40802", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22586428, 27.039092532], [142.225858392, 27.039070532], [142.225841089, 27.039081198], [142.22586428, 27.039092532]]]}}, {"id": "40803", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284965019, 24.798133414], [141.28495118, 24.798098685], [141.284941154, 24.798105676], [141.284965019, 24.798133414]]]}}, {"id": "40804", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469166083, 24.227170775], [141.469201051, 24.227172225], [141.469170026, 24.227153306], [141.469166083, 24.227170775]]]}}, {"id": "40805", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286096044, 24.806136685], [141.286078975, 24.806162514], [141.286103022, 24.806144757], [141.286096044, 24.806136685]]]}}, {"id": "40806", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184714189, 27.048439198], [142.184734423, 27.04842364], [142.184709922, 27.048419892], [142.184714189, 27.048439198]]]}}, {"id": "40807", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378802257, 24.779685234], [141.378774968, 24.779705342], [141.378804773, 24.779697342], [141.378802257, 24.779685234]]]}}, {"id": "40808", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286030169, 24.797656216], [141.286000208, 24.797639189], [141.285991193, 24.797657477], [141.286030169, 24.797656216]]]}}, {"id": "40809", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231609196, 27.078797027], [142.231613359, 27.078770027], [142.231597367, 27.078784586], [142.231609196, 27.078797027]]]}}, {"id": "40810", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.143054112, 26.671973973], [142.143057665, 26.671936495], [142.14305144, 26.671934694], [142.143054112, 26.671973973]]]}}, {"id": "40811", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285479326, 24.804551919], [141.285498703, 24.804536847], [141.285473632, 24.804528324], [141.285479326, 24.804551919]]]}}, {"id": "40812", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284453437, 24.750102144], [141.284487367, 24.750115577], [141.284480999, 24.750087108], [141.284453437, 24.750102144]]]}}, {"id": "40813", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469446939, 24.227857775], [141.469418612, 24.227847495], [141.469419728, 24.227873613], [141.469446939, 24.227857775]]]}}, {"id": "40814", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29004345, 24.747369252], [141.290030467, 24.747392027], [141.290056433, 24.747397568], [141.29004345, 24.747369252]]]}}, {"id": "40815", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.1539562, 26.684258613], [142.153962477, 26.68422864], [142.153945525, 26.684247252], [142.1539562, 26.684258613]]]}}, {"id": "40816", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284229183, 24.799255351], [141.284219196, 24.799288342], [141.284250246, 24.799271342], [141.284229183, 24.799255351]]]}}, {"id": "40817", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189660778, 27.043864108], [142.189637134, 27.043880306], [142.189659001, 27.043879559], [142.189660778, 27.043864108]]]}}, {"id": "40818", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292217121, 24.748507883], [141.292211621, 24.748482126], [141.292196316, 24.748497847], [141.292217121, 24.748507883]]]}}, {"id": "40819", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18213847, 27.095497495], [142.182145383, 27.095466162], [142.182130272, 27.095471613], [142.18213847, 27.095497495]]]}}, {"id": "40820", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187610246, 27.058848135], [142.187641803, 27.058843495], [142.187623333, 27.058833252], [142.187610246, 27.058848135]]]}}, {"id": "40821", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286670843, 24.806768964], [141.286647769, 24.806790703], [141.286659235, 24.806793189], [141.286670843, 24.806768964]]]}}, {"id": "40822", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.219751193, 27.100556252], [142.219706641, 27.100566532], [142.21970406, 27.100576721], [142.219751193, 27.100556252]]]}}, {"id": "40823", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.2251707, 27.044087162], [142.225137886, 27.044065919], [142.225137523, 27.044079559], [142.2251707, 27.044087162]]]}}, {"id": "40824", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.177652918, 26.655850162], [142.177649974, 26.655820468], [142.177633502, 26.655825279], [142.177652918, 26.655850162]]]}}, {"id": "40825", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223574838, 27.045409198], [142.223554306, 27.045425829], [142.223570052, 27.045434279], [142.223574838, 27.045409198]]]}}, {"id": "40826", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223620169, 27.045697387], [142.223599637, 27.045714027], [142.223615357, 27.045722495], [142.223620169, 27.045697387]]]}}, {"id": "40827", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287110921, 24.791524739], [141.287119157, 24.791553577], [141.287123774, 24.791508099], [141.287110921, 24.791524739]]]}}, {"id": "40828", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181994916, 27.101329829], [142.181976329, 27.101311081], [142.181973333, 27.101330306], [142.181994916, 27.101329829]]]}}, {"id": "40829", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187838275, 27.087938162], [142.187827224, 27.087908387], [142.187816589, 27.087931865], [142.187838275, 27.087938162]]]}}, {"id": "40830", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197353839, 27.044971829], [142.197358833, 27.044949279], [142.197333359, 27.044955973], [142.197353839, 27.044971829]]]}}, {"id": "40831", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.167054112, 26.680998865], [142.167047419, 26.681025225], [142.167062503, 26.681022225], [142.167054112, 26.680998865]]]}}, {"id": "40832", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.159067497, 26.686591414], [142.159038781, 26.686605802], [142.159060778, 26.686605135], [142.159067497, 26.686591414]]]}}, {"id": "40833", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290344734, 24.747621297], [141.290323359, 24.747640883], [141.290352231, 24.747641018], [141.290344734, 24.747621297]]]}}, {"id": "40834", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224582581, 27.087739748], [142.224594137, 27.087720333], [142.224560246, 27.087718387], [142.224582581, 27.087739748]]]}}, {"id": "40835", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287178768, 24.806989775], [141.287197886, 24.807020108], [141.287202646, 24.806998919], [141.287178768, 24.806989775]]]}}, {"id": "40836", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185715188, 27.091355946], [142.185721803, 27.091331748], [142.185708392, 27.091329162], [142.185715188, 27.091355946]]]}}, {"id": "40837", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287911803, 24.806691811], [141.287893476, 24.806714477], [141.287906329, 24.806715532], [141.287911803, 24.806691811]]]}}, {"id": "40838", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150658418, 26.647864775], [142.150635642, 26.647883225], [142.150664773, 26.647884198], [142.150658418, 26.647864775]]]}}, {"id": "40839", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185442192, 27.091646135], [142.185421284, 27.091621892], [142.185425668, 27.091649225], [142.185442192, 27.091646135]]]}}, {"id": "40840", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178189248, 26.655774027], [142.178180363, 26.655747225], [142.178166615, 26.655754], [142.178189248, 26.655774027]]]}}, {"id": "40841", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185856719, 27.091254225], [142.185838444, 27.091233946], [142.185830999, 27.091247775], [142.185856719, 27.091254225]]]}}, {"id": "40842", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198051829, 27.045063108], [142.198075383, 27.045042135], [142.198049079, 27.045050468], [142.198051829, 27.045063108]]]}}, {"id": "40843", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293132114, 24.749152297], [141.293121492, 24.749175901], [141.293145279, 24.749183874], [141.293132114, 24.749152297]]]}}, {"id": "40844", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285563722, 24.797126297], [141.285554163, 24.797101784], [141.285551933, 24.797128225], [141.285563722, 24.797126297]]]}}, {"id": "40845", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.213856135, 27.101474495], [142.213879805, 27.101452973], [142.213847639, 27.101456279], [142.213856135, 27.101474495]]]}}, {"id": "40846", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286016291, 24.806056045], [141.285997964, 24.806078802], [141.286013346, 24.80608591], [141.286016291, 24.806056045]]]}}, {"id": "40847", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284694617, 24.753115649], [141.284720208, 24.753100243], [141.284702594, 24.753086892], [141.284694617, 24.753115649]]]}}, {"id": "40848", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284485746, 24.800201649], [141.284516783, 24.800203144], [141.284499585, 24.800184378], [141.284485746, 24.800201649]]]}}, {"id": "40849", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.330271699, 24.813528144], [141.330273735, 24.813552523], [141.330287147, 24.813543288], [141.330271699, 24.813528144]]]}}, {"id": "40850", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.127095668, 26.700911306], [142.127112827, 26.700888532], [142.127090337, 26.700894162], [142.127095668, 26.700911306]]]}}, {"id": "40851", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181626083, 27.100116721], [142.181651505, 27.100127694], [142.181629883, 27.100106775], [142.181626083, 27.100116721]]]}}, {"id": "40852", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224229274, 27.044983306], [142.224226835, 27.044958829], [142.224215577, 27.044981162], [142.224229274, 27.044983306]]]}}, {"id": "40853", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286787121, 24.784985802], [141.28680332, 24.784971883], [141.286788042, 24.784964586], [141.286787121, 24.784985802]]]}}, {"id": "40854", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286935253, 24.785143505], [141.286955525, 24.785125901], [141.286920999, 24.785128991], [141.286935253, 24.785143505]]]}}, {"id": "40855", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.23262406, 27.072646387], [142.232621582, 27.072667333], [142.232647471, 27.072650946], [142.23262406, 27.072646387]]]}}, {"id": "40856", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378462283, 24.779486279], [141.37846677, 24.779458586], [141.378443204, 24.779463721], [141.378462283, 24.779486279]]]}}, {"id": "40857", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284972594, 24.753916784], [141.284965318, 24.753942937], [141.284985759, 24.753931838], [141.284972594, 24.753916784]]]}}, {"id": "40858", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185788171, 27.091212252], [142.185779974, 27.091182667], [142.18577061, 27.091195946], [142.185788171, 27.091212252]]]}}, {"id": "40859", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290454306, 24.747650622], [141.290431764, 24.747667036], [141.290468444, 24.747666667], [141.290454306, 24.747650622]]]}}, {"id": "40860", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290694877, 24.74785291], [141.290710856, 24.747875369], [141.290722607, 24.747861162], [141.290694877, 24.74785291]]]}}, {"id": "40861", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347619689, 24.775988523], [141.347591038, 24.775963297], [141.347578573, 24.775982748], [141.347619689, 24.775988523]]]}}, {"id": "40862", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290419001, 24.747616505], [141.290417471, 24.747642135], [141.290438184, 24.747632757], [141.290419001, 24.747616505]]]}}, {"id": "40863", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347115966, 24.795016631], [141.347111855, 24.795048126], [141.347130454, 24.795027171], [141.347115966, 24.795016631]]]}}, {"id": "40864", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29103847, 24.747862207], [141.291057588, 24.747837108], [141.291033826, 24.747844937], [141.29103847, 24.747862207]]]}}, {"id": "40865", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186442503, 27.089670694], [142.186462529, 27.089646387], [142.186448612, 27.089645054], [142.186442503, 27.089670694]]]}}, {"id": "40866", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14469022, 26.674091054], [142.144704864, 26.67406936], [142.144695305, 26.674066865], [142.14469022, 26.674091054]]]}}, {"id": "40867", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22522847, 27.039145441], [142.225236978, 27.039119162], [142.225222166, 27.039122973], [142.22522847, 27.039145441]]]}}, {"id": "40868", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228810143, 27.081436946], [142.22880808, 27.081413306], [142.228790947, 27.081419919], [142.228810143, 27.081436946]]]}}, {"id": "40869", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.203986667, 27.086676946], [142.203958003, 27.086668054], [142.203970363, 27.086690333], [142.203986667, 27.086676946]]]}}, {"id": "40870", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285468794, 24.748543207], [141.285495149, 24.748532495], [141.285464462, 24.748521793], [141.285468794, 24.748543207]]]}}, {"id": "40871", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28475166, 24.75209618], [141.284745136, 24.75213091], [141.284764345, 24.752109333], [141.28475166, 24.75209618]]]}}, {"id": "40872", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22473655, 27.08283764], [142.224724527, 27.082863559], [142.224744358, 27.082855306], [142.22473655, 27.08283764]]]}}, {"id": "40873", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182203722, 27.093309108], [142.182209611, 27.093282108], [142.182183839, 27.093304802], [142.182203722, 27.093309108]]]}}, {"id": "40874", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222963606, 27.092475865], [142.222935616, 27.092487027], [142.222964163, 27.092492586], [142.222963606, 27.092475865]]]}}, {"id": "40875", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197427834, 27.044983279], [142.197441219, 27.044961892], [142.197417639, 27.044969775], [142.197427834, 27.044983279]]]}}, {"id": "40876", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.153055772, 26.642384162], [142.153065888, 26.64236736], [142.1530493, 26.642357802], [142.153055772, 26.642384162]]]}}, {"id": "40877", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284795318, 24.750930216], [141.284758962, 24.750925622], [141.284790026, 24.750938315], [141.284795318, 24.750930216]]]}}, {"id": "40878", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284626316, 24.752681703], [141.284622127, 24.752652874], [141.284608898, 24.752667441], [141.284626316, 24.752681703]]]}}, {"id": "40879", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292764462, 24.748798739], [141.292772231, 24.748823604], [141.29278153, 24.748803333], [141.292764462, 24.748798739]]]}}, {"id": "40880", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225204747, 27.039331973], [142.225187328, 27.039299135], [142.225181803, 27.039303306], [142.225204747, 27.039331973]]]}}, {"id": "40881", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379731505, 24.78014655], [141.379752542, 24.780153225], [141.379751336, 24.780135523], [141.379731505, 24.78014655]]]}}, {"id": "40882", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286678742, 24.784950973], [141.286667743, 24.784971685], [141.286684047, 24.784975468], [141.286678742, 24.784950973]]]}}, {"id": "40883", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28565489, 24.790117432], [141.285646589, 24.790099703], [141.285623113, 24.790107261], [141.28565489, 24.790117432]]]}}, {"id": "40884", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224498275, 27.042525135], [142.224464501, 27.042519333], [142.224459468, 27.042529441], [142.224498275, 27.042525135]]]}}, {"id": "40885", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28685869, 24.784923486], [141.286825966, 24.784920441], [141.286826316, 24.784929829], [141.28685869, 24.784923486]]]}}, {"id": "40886", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18730642, 27.060369027], [142.187309468, 27.060342865], [142.187290752, 27.060361108], [142.18730642, 27.060369027]]]}}, {"id": "40887", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.97774572, 24.29288655], [153.977724293, 24.292906198], [153.977754047, 24.292902919], [153.97774572, 24.29288655]]]}}, {"id": "40888", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.231387613, 27.070859333], [142.231403502, 27.070888], [142.231400195, 27.070857865], [142.231387613, 27.070859333]]]}}, {"id": "40889", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286218638, 24.785202108], [141.286233943, 24.785223405], [141.286240363, 24.785208171], [141.286218638, 24.785202108]]]}}, {"id": "40890", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284633891, 24.801134964], [141.284660415, 24.801149351], [141.284659248, 24.801127775], [141.284633891, 24.801134964]]]}}, {"id": "40891", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285630597, 24.790043829], [141.28567179, 24.79003482], [141.285632049, 24.790031108], [141.285630597, 24.790043829]]]}}, {"id": "40892", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287888353, 24.807455577], [141.28789297, 24.807426982], [141.287871971, 24.807432568], [141.287888353, 24.807455577]]]}}, {"id": "40893", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.193252633, 27.08912636], [142.193217471, 27.089134081], [142.193246835, 27.089139559], [142.193252633, 27.08912636]]]}}, {"id": "40894", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28702559, 24.807000054], [141.28700393, 24.806983072], [141.287001712, 24.806990919], [141.28702559, 24.807000054]]]}}, {"id": "40895", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16691489, 26.681237333], [142.166898975, 26.681264135], [142.16692489, 26.681254919], [142.16691489, 26.681237333]]]}}, {"id": "40896", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286112516, 24.806298459], [141.286131946, 24.806275081], [141.286104099, 24.806284604], [141.286112516, 24.806298459]]]}}, {"id": "40897", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29362096, 24.750698252], [141.293614319, 24.75066527], [141.293606083, 24.750687171], [141.29362096, 24.750698252]]]}}, {"id": "40898", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293357665, 24.749494541], [141.293329364, 24.749497748], [141.293348197, 24.749507405], [141.293357665, 24.749494541]]]}}, {"id": "40899", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.188359416, 27.088365721], [142.188344475, 27.088342559], [142.188341051, 27.088362586], [142.188359416, 27.088365721]]]}}, {"id": "40900", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290706239, 24.747679982], [141.290708962, 24.747703829], [141.290723787, 24.747705342], [141.290706239, 24.747679982]]]}}, {"id": "40901", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286544112, 24.791235486], [141.286519585, 24.791217667], [141.286512361, 24.791236414], [141.286544112, 24.791235486]]]}}, {"id": "40902", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.178214384, 26.655721919], [142.178243502, 26.655713198], [142.178233528, 26.655701306], [142.178214384, 26.655721919]]]}}, {"id": "40903", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304163372, 24.756252369], [141.304159468, 24.756226982], [141.304146109, 24.756245793], [141.304163372, 24.756252369]]]}}, {"id": "40904", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285749183, 24.788124189], [141.285744981, 24.788167865], [141.285755927, 24.788172342], [141.285749183, 24.788124189]]]}}, {"id": "40905", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.221972412, 27.094304613], [142.221954838, 27.094286775], [142.221944968, 27.094295081], [142.221972412, 27.094304613]]]}}, {"id": "40906", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287215344, 24.806993559], [141.287236874, 24.807015144], [141.287252866, 24.807004937], [141.287215344, 24.806993559]]]}}, {"id": "40907", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189944384, 27.067836586], [142.189975616, 27.067822], [142.189971673, 27.067816252], [142.189944384, 27.067836586]]]}}, {"id": "40908", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37884249, 24.77976864], [141.378880791, 24.779763288], [141.378839857, 24.779760685], [141.37884249, 24.77976864]]]}}, {"id": "40909", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287950623, 24.806407072], [141.287960156, 24.806435189], [141.287969183, 24.806413207], [141.287950623, 24.806407072]]]}}, {"id": "40910", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187459442, 27.087897225], [142.187488495, 27.087893667], [142.187483722, 27.087883027], [142.187459442, 27.087897225]]]}}, {"id": "40911", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.181820337, 27.095199333], [142.181803359, 27.095174441], [142.181793281, 27.095188721], [142.181820337, 27.095199333]]]}}, {"id": "40912", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.222121582, 27.093953441], [142.222135058, 27.093931694], [142.222115279, 27.093931532], [142.222121582, 27.093953441]]]}}, {"id": "40913", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290496291, 24.747726027], [141.290510493, 24.747749477], [141.290512555, 24.747733685], [141.290496291, 24.747726027]]]}}, {"id": "40914", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225295473, 27.041955532], [142.225281193, 27.041926306], [142.225281362, 27.041957], [142.225295473, 27.041955532]]]}}, {"id": "40915", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288959196, 24.746590838], [141.288956368, 24.746619991], [141.288976252, 24.746617919], [141.288959196, 24.746590838]]]}}, {"id": "40916", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285670104, 24.790000865], [141.285678794, 24.790020586], [141.285690169, 24.790001865], [141.285670104, 24.790000865]]]}}, {"id": "40917", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.223942335, 27.091169108], [142.22395144, 27.091143919], [142.223932724, 27.091152694], [142.223942335, 27.091169108]]]}}, {"id": "40918", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326443528, 24.81421109], [141.3264662, 24.81422582], [141.326470661, 24.814207414], [141.326443528, 24.81421109]]]}}, {"id": "40919", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.198049196, 27.045165721], [142.198042802, 27.045143162], [142.198025499, 27.045153027], [142.198049196, 27.045165721]]]}}, {"id": "40920", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184911141, 27.104166333], [142.1849362, 27.104184], [142.184941414, 27.104165306], [142.184911141, 27.104166333]]]}}, {"id": "40921", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378900117, 24.779754883], [141.378897198, 24.779784306], [141.378913632, 24.779759631], [141.378900117, 24.779754883]]]}}, {"id": "40922", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288188003, 24.806478081], [141.288179598, 24.806512252], [141.288195707, 24.806479829], [141.288188003, 24.806478081]]]}}, {"id": "40923", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285005486, 24.785864495], [141.284988936, 24.785836432], [141.28499153, 24.785866784], [141.285005486, 24.785864495]]]}}, {"id": "40924", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326513982, 24.814224586], [141.326504384, 24.814189423], [141.326499559, 24.814221631], [141.326513982, 24.814224586]]]}}, {"id": "40925", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18701489, 27.08779764], [142.186989611, 27.087820946], [142.187012218, 27.087824162], [142.18701489, 27.08779764]]]}}, {"id": "40926", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286988366, 24.784969784], [141.287015422, 24.784960342], [141.287002127, 24.784949811], [141.286988366, 24.784969784]]]}}, {"id": "40927", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286973722, 24.785126441], [141.287001803, 24.785109784], [141.286990013, 24.785097721], [141.286973722, 24.785126441]]]}}, {"id": "40928", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285698898, 24.789445405], [141.285699066, 24.789415703], [141.285688197, 24.789447613], [141.285698898, 24.789445405]]]}}, {"id": "40929", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.233719416, 27.078227], [142.233723891, 27.078205775], [142.233703139, 27.078214198], [142.233719416, 27.078227]]]}}, {"id": "40930", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.228810726, 27.081376108], [142.228825525, 27.081356414], [142.228802529, 27.08135564], [142.228810726, 27.081376108]]]}}, {"id": "40931", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293612866, 24.750135396], [141.29358096, 24.750147072], [141.293617471, 24.75014336], [141.293612866, 24.750135396]]]}}, {"id": "40932", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287768949, 24.807251784], [141.287782348, 24.807277036], [141.287790649, 24.807261369], [141.287768949, 24.807251784]]]}}, {"id": "40933", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287972633, 24.807367865], [141.287985032, 24.807396631], [141.287991012, 24.807371108], [141.287972633, 24.807367865]]]}}, {"id": "40934", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285151543, 24.790492775], [141.285152023, 24.79051245], [141.285168405, 24.790501432], [141.285151543, 24.790492775]]]}}, {"id": "40935", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189754643, 27.067885225], [142.189777523, 27.067899802], [142.189778521, 27.067881495], [142.189754643, 27.067885225]]]}}, {"id": "40936", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.14663808, 26.685567225], [142.146657756, 26.685545441], [142.146640973, 26.685541225], [142.14663808, 26.685567225]]]}}, {"id": "40937", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287092892, 24.807460901], [141.287071349, 24.807439315], [141.287072101, 24.807462613], [141.287092892, 24.807460901]]]}}, {"id": "40938", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287430752, 24.78530936], [141.287414008, 24.785332396], [141.287442802, 24.785328018], [141.287430752, 24.78530936]]]}}, {"id": "40939", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.214047302, 27.101284027], [142.214034228, 27.101309054], [142.214046135, 27.101312667], [142.214047302, 27.101284027]]]}}, {"id": "40940", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.16538297, 26.679747532], [142.165395888, 26.679730441], [142.165380921, 26.679724973], [142.16538297, 26.679747532]]]}}, {"id": "40941", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292459442, 24.748628468], [141.292448444, 24.74864927], [141.292463787, 24.748647], [141.292459442, 24.748628468]]]}}, {"id": "40942", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287942101, 24.805129811], [141.287920921, 24.805148225], [141.287938534, 24.805146685], [141.287942101, 24.805129811]]]}}, {"id": "40943", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285770947, 24.785445], [141.285760895, 24.785423018], [141.285743865, 24.78542555], [141.285770947, 24.785445]]]}}, {"id": "40944", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284776874, 24.751026369], [141.284792568, 24.751046757], [141.284796913, 24.751031072], [141.284776874, 24.751026369]]]}}, {"id": "40945", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285322451, 24.787554279], [141.285318794, 24.787519955], [141.285301258, 24.787542802], [141.285322451, 24.787554279]]]}}, {"id": "40946", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285141803, 24.785305405], [141.285148794, 24.785327559], [141.28516415, 24.785323658], [141.285141803, 24.785305405]]]}}, {"id": "40947", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18932345, 27.088723829], [142.189336719, 27.088705054], [142.189316446, 27.088699198], [142.18932345, 27.088723829]]]}}, {"id": "40948", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.190452555, 27.042781748], [142.190435811, 27.042766973], [142.190436057, 27.042790162], [142.190452555, 27.042781748]]]}}, {"id": "40949", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285688573, 24.785357667], [141.285713126, 24.785371775], [141.285700376, 24.785352036], [141.285688573, 24.785357667]]]}}, {"id": "40950", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28447882, 24.79877173], [141.28444799, 24.798784135], [141.284454682, 24.798789396], [141.28447882, 24.79877173]]]}}, {"id": "40951", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197473722, 27.044873559], [142.197492335, 27.044855108], [142.197466252, 27.044862919], [142.197473722, 27.044873559]]]}}, {"id": "40952", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325910078, 24.814137721], [141.325931946, 24.814155973], [141.325937263, 24.81414227], [141.325910078, 24.814137721]]]}}, {"id": "40953", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.197871894, 27.045106865], [142.197890506, 27.045087333], [142.197870363, 27.045092414], [142.197871894, 27.045106865]]]}}, {"id": "40954", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187409689, 27.087801721], [142.187431284, 27.087802865], [142.187420661, 27.087788441], [142.187409689, 27.087801721]]]}}, {"id": "40955", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286712944, 24.806774667], [141.286737873, 24.80675718], [141.286712568, 24.80675336], [141.286712944, 24.806774667]]]}}, {"id": "40956", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284893152, 24.802129658], [141.28490345, 24.802110748], [141.284884812, 24.80210091], [141.284893152, 24.802129658]]]}}, {"id": "40957", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379923528, 24.779612775], [141.37989489, 24.779605973], [141.379883528, 24.779623892], [141.379923528, 24.779612775]]]}}, {"id": "40958", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191429364, 27.088833], [142.191403307, 27.088811], [142.191423333, 27.088843387], [142.191429364, 27.088833]]]}}, {"id": "40959", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284741933, 24.753812495], [141.284761971, 24.753835703], [141.284765875, 24.753810622], [141.284741933, 24.753812495]]]}}, {"id": "40960", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286037367, 24.80598491], [141.286050169, 24.806012784], [141.286047652, 24.805984423], [141.286037367, 24.80598491]]]}}, {"id": "40961", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285752879, 24.785527342], [141.28576406, 24.785559721], [141.285776874, 24.785550658], [141.285752879, 24.785527342]]]}}, {"id": "40962", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285122477, 24.790472856], [141.285140506, 24.790484595], [141.285171336, 24.79047318], [141.285122477, 24.790472856]]]}}, {"id": "40963", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.21898275, 27.037356919], [142.218983696, 27.037380748], [142.218999585, 27.037357333], [142.21898275, 27.037356919]]]}}, {"id": "40964", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28474716, 24.750585378], [141.284769533, 24.75056355], [141.28473406, 24.75057773], [141.28474716, 24.750585378]]]}}, {"id": "40965", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.342666952, 24.771523144], [141.342644397, 24.771545802], [141.342675953, 24.771541964], [141.342666952, 24.771523144]]]}}, {"id": "40966", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378490026, 24.780707387], [141.378489663, 24.780738802], [141.378505305, 24.780735162], [141.378490026, 24.780707387]]]}}, {"id": "40967", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304278431, 24.756186459], [141.304257588, 24.756166766], [141.3042562, 24.75618373], [141.304278431, 24.756186459]]]}}, {"id": "40968", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326388599, 24.814254901], [141.326394176, 24.814228378], [141.326384591, 24.814246667], [141.326388599, 24.814254901]]]}}, {"id": "40969", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287249196, 24.802732973], [141.287263061, 24.802712], [141.287241543, 24.802705216], [141.287249196, 24.802732973]]]}}, {"id": "40970", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285637743, 24.788070937], [141.285662529, 24.788059045], [141.285639598, 24.788057405], [141.285637743, 24.788070937]]]}}, {"id": "40971", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287608742, 24.804322198], [141.287642023, 24.804330748], [141.287618314, 24.804309604], [141.287608742, 24.804322198]]]}}, {"id": "40972", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287134838, 24.785209009], [141.287135759, 24.785187883], [141.28711965, 24.785201712], [141.287134838, 24.785209009]]]}}, {"id": "40973", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287589183, 24.804629964], [141.287560674, 24.804633712], [141.287585824, 24.804645928], [141.287589183, 24.804629964]]]}}, {"id": "40974", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284329883, 24.80014745], [141.284335863, 24.800121928], [141.284321816, 24.800140009], [141.284329883, 24.80014745]]]}}, {"id": "40975", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224646446, 27.084112306], [142.224661803, 27.084132667], [142.224663191, 27.084114892], [142.224646446, 27.084112306]]]}}, {"id": "40976", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325458003, 24.814070595], [141.325473904, 24.814092243], [141.325489066, 24.814087973], [141.325458003, 24.814070595]]]}}, {"id": "40977", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189080999, 27.052288414], [142.189071946, 27.052303946], [142.189092088, 27.052292279], [142.189080999, 27.052288414]]]}}, {"id": "40978", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286716822, 24.801826802], [141.286725006, 24.801849144], [141.286734047, 24.801841874], [141.286716822, 24.801826802]]]}}, {"id": "40979", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[153.979157367, 24.295757054], [153.979135149, 24.295741541], [153.979145733, 24.295761901], [153.979157367, 24.295757054]]]}}, {"id": "40980", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284678119, 24.750625315], [141.284706615, 24.750621658], [141.284671751, 24.750615441], [141.284678119, 24.750625315]]]}}, {"id": "40981", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.150816835, 26.683867802], [142.150803554, 26.683845892], [142.150797951, 26.683860495], [142.150816835, 26.683867802]]]}}, {"id": "40982", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284653372, 24.752963054], [141.284668444, 24.752937757], [141.284655759, 24.752943207], [141.284653372, 24.752963054]]]}}, {"id": "40983", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289559741, 24.747050333], [141.289545863, 24.747075189], [141.289560298, 24.747074712], [141.289559741, 24.747050333]]]}}, {"id": "40984", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284414501, 24.800120414], [141.284398029, 24.800095324], [141.284398482, 24.800119523], [141.284414501, 24.800120414]]]}}, {"id": "40985", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284743878, 24.750674838], [141.284716783, 24.750676964], [141.284729455, 24.750690117], [141.284743878, 24.750674838]]]}}, {"id": "40986", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29172275, 24.777423649], [141.291693126, 24.777416739], [141.291707017, 24.777443261], [141.29172275, 24.777423649]]]}}, {"id": "40987", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22197703, 27.093886892], [142.22195594, 27.093876919], [142.22195214, 27.093898108], [142.22197703, 27.093886892]]]}}, {"id": "40988", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225310661, 27.041901802], [142.225317173, 27.041877946], [142.225305279, 27.041878775], [142.225310661, 27.041901802]]]}}, {"id": "40989", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18734297, 27.087708829], [142.187319857, 27.087698135], [142.187324527, 27.087706532], [142.18734297, 27.087708829]]]}}, {"id": "40990", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285535499, 24.785459405], [141.285553307, 24.785458045], [141.285539702, 24.785452027], [141.285535499, 24.785459405]]]}}, {"id": "40991", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284468781, 24.799641369], [141.284469339, 24.799613649], [141.284451582, 24.799622505], [141.284468781, 24.799641369]]]}}, {"id": "40992", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304969416, 24.75640282], [141.304997121, 24.756416486], [141.304997367, 24.756407279], [141.304969416, 24.75640282]]]}}, {"id": "40993", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.22354, 27.045532721], [142.223524112, 27.045556198], [142.223549533, 27.045554721], [142.22354, 27.045532721]]]}}, {"id": "40994", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285067639, 24.78457864], [141.285060389, 24.784549991], [141.285051712, 24.784562766], [141.285067639, 24.78457864]]]}}, {"id": "40995", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284609792, 24.800645432], [141.28463607, 24.800634811], [141.284614617, 24.80063173], [141.284609792, 24.800645432]]]}}, {"id": "40996", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185408807, 27.091459973], [142.185427639, 27.091437387], [142.18540594, 27.091439946], [142.185408807, 27.091459973]]]}}, {"id": "40997", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.185945032, 27.083428162], [142.185959196, 27.08344836], [142.185965084, 27.083420829], [142.185945032, 27.083428162]]]}}, {"id": "40998", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285659896, 24.797809009], [141.285662023, 24.797834568], [141.28567415, 24.797823432], [141.285659896, 24.797809009]]]}}, {"id": "40999", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284770078, 24.753232568], [141.284781881, 24.753208333], [141.284770441, 24.753201964], [141.284770078, 24.753232568]]]}}, {"id": "41000", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284779326, 24.752066252], [141.284775422, 24.752091423], [141.284790039, 24.752075243], [141.284779326, 24.752066252]]]}}, {"id": "41001", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285405149, 24.748953505], [141.28542463, 24.748985919], [141.285431388, 24.748979991], [141.285405149, 24.748953505]]]}}, {"id": "41002", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292383113, 24.748611495], [141.29240227, 24.748633703], [141.292408067, 24.74862109], [141.292383113, 24.748611495]]]}}, {"id": "41003", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.196461219, 27.044601495], [142.196465084, 27.044628027], [142.19647847, 27.044624027], [142.196461219, 27.044601495]]]}}, {"id": "41004", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.229291414, 27.081182721], [142.229265084, 27.081182495], [142.229291219, 27.081190829], [142.229291414, 27.081182721]]]}}, {"id": "41005", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225141855, 27.044036387], [142.225113333, 27.044032198], [142.22511808, 27.044038613], [142.225141855, 27.044036387]]]}}, {"id": "41006", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.18614939, 27.105120694], [142.186132581, 27.105131919], [142.186170895, 27.105125279], [142.18614939, 27.105120694]]]}}, {"id": "41007", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287978249, 24.806990874], [141.288002724, 24.806982505], [141.287990026, 24.806973144], [141.287978249, 24.806990874]]]}}, {"id": "41008", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.152788223, 26.683986198], [142.152786083, 26.683963559], [142.15277847, 26.683981252], [142.152788223, 26.683986198]]]}}, {"id": "41009", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292464838, 24.748583712], [141.292448029, 24.748599973], [141.292470558, 24.748603063], [141.292464838, 24.748583712]]]}}, {"id": "41010", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286728288, 24.784984973], [141.286740182, 24.78496445], [141.286718431, 24.784979874], [141.286728288, 24.784984973]]]}}, {"id": "41011", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287811647, 24.805386946], [141.28784393, 24.805380423], [141.287812685, 24.80537973], [141.287811647, 24.805386946]]]}}, {"id": "41012", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28570987, 24.785455721], [141.285721971, 24.785466982], [141.28574227, 24.785445676], [141.28570987, 24.785455721]]]}}, {"id": "41013", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343432957, 24.771586459], [141.343426096, 24.771614595], [141.343443191, 24.771597153], [141.343432957, 24.771586459]]]}}, {"id": "41014", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292212983, 24.748365036], [141.292211505, 24.748347153], [141.292193217, 24.748362685], [141.292212983, 24.748365036]]]}}, {"id": "41015", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287077536, 24.806911018], [141.28709096, 24.806932658], [141.28710428, 24.806920892], [141.287077536, 24.806911018]]]}}, {"id": "41016", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290464643, 24.747708991], [141.290462594, 24.747687225], [141.290453372, 24.747691694], [141.290464643, 24.747708991]]]}}, {"id": "41017", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286505409, 24.784824568], [141.286489831, 24.784800477], [141.28648454, 24.784808486], [141.286505409, 24.784824568]]]}}, {"id": "41018", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.377976589, 24.779576441], [141.37796048, 24.779554072], [141.377960117, 24.779567432], [141.377976589, 24.779576441]]]}}, {"id": "41019", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34127463, 24.804311964], [141.341303813, 24.804309117], [141.341275953, 24.804303036], [141.34127463, 24.804311964]]]}}, {"id": "41020", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.186158223, 27.08361364], [142.18615939, 27.083591333], [142.186144669, 27.083591613], [142.186158223, 27.08361364]]]}}, {"id": "41021", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.191471725, 27.088900279], [142.191445694, 27.088895252], [142.191461362, 27.088910667], [142.191471725, 27.088900279]]]}}, {"id": "41022", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286191271, 24.806433081], [141.286213281, 24.806423351], [141.286188716, 24.806413027], [141.286191271, 24.806433081]]]}}, {"id": "41023", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292989689, 24.749128423], [141.292970817, 24.749142423], [141.293000169, 24.74914464], [141.292989689, 24.749128423]]]}}, {"id": "41024", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292644747, 24.74879655], [141.29264668, 24.748822468], [141.292661738, 24.748817297], [141.292644747, 24.74879655]]]}}, {"id": "41025", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378681595, 24.780365189], [141.378668794, 24.780353676], [141.378670506, 24.780366955], [141.378681595, 24.780365189]]]}}, {"id": "41026", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291677873, 24.777210459], [141.291687601, 24.777186676], [141.291661725, 24.777199189], [141.291677873, 24.777210459]]]}}, {"id": "41027", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285990233, 24.797601586], [141.285991388, 24.797623261], [141.286014617, 24.797609018], [141.285990233, 24.797601586]]]}}, {"id": "41028", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187385811, 27.060279495], [142.187412529, 27.060284135], [142.187389494, 27.06027064], [142.187385811, 27.060279495]]]}}, {"id": "41029", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.236141141, 27.083801919], [142.236139559, 27.083775135], [142.236125888, 27.083797162], [142.236141141, 27.083801919]]]}}, {"id": "41030", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284942425, 24.802867586], [141.284919066, 24.802853027], [141.284918975, 24.802867838], [141.284942425, 24.802867586]]]}}, {"id": "41031", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28713821, 24.80287436], [141.287117665, 24.80288636], [141.287139598, 24.802891432], [141.28713821, 24.80287436]]]}}, {"id": "41032", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291243722, 24.748051685], [141.29122511, 24.748057018], [141.291242659, 24.748063604], [141.291243722, 24.748051685]]]}}, {"id": "41033", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326350298, 24.814166523], [141.326375292, 24.814171505], [141.326362542, 24.814153306], [141.326350298, 24.814166523]]]}}, {"id": "41034", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.346869663, 24.775623306], [141.346893774, 24.775628018], [141.34687428, 24.775610505], [141.346869663, 24.775623306]]]}}, {"id": "41035", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343664514, 24.771518405], [141.343638768, 24.771504928], [141.34363869, 24.771519829], [141.343664514, 24.771518405]]]}}, {"id": "41036", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287926329, 24.806520982], [141.287938833, 24.806497928], [141.287926368, 24.806498775], [141.287926329, 24.806520982]]]}}, {"id": "41037", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287087211, 24.785150369], [141.28705869, 24.785157631], [141.287085149, 24.785164802], [141.287087211, 24.785150369]]]}}, {"id": "41038", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378782905, 24.779937676], [141.378791154, 24.779969036], [141.378801102, 24.779957703], [141.378782905, 24.779937676]]]}}, {"id": "41039", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287060843, 24.791408847], [141.287055927, 24.791386252], [141.287049935, 24.791396973], [141.287060843, 24.791408847]]]}}, {"id": "41040", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.326038197, 24.814096315], [141.326045266, 24.814125333], [141.326051077, 24.814093396], [141.326038197, 24.814096315]]]}}, {"id": "41041", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285042711, 24.784511351], [141.285042088, 24.78453545], [141.285066368, 24.784525279], [141.285042711, 24.784511351]]]}}, {"id": "41042", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285527419, 24.755269423], [141.28550275, 24.755277703], [141.285519326, 24.755284279], [141.285527419, 24.755269423]]]}}, {"id": "41043", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286372179, 24.790604586], [141.286349248, 24.790635532], [141.286378846, 24.790613559], [141.286372179, 24.790604586]]]}}, {"id": "41044", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285875629, 24.797752622], [141.285878042, 24.797729072], [141.285862477, 24.797733784], [141.285875629, 24.797752622]]]}}, {"id": "41045", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285234786, 24.749370883], [141.285213982, 24.749361396], [141.285210324, 24.749378261], [141.285234786, 24.749370883]]]}}, {"id": "41046", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286010532, 24.785054505], [141.286026252, 24.785071189], [141.28601965, 24.785051027], [141.286010532, 24.785054505]]]}}, {"id": "41047", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284598651, 24.785708982], [141.284616433, 24.785728937], [141.284619001, 24.785712784], [141.284598651, 24.785708982]]]}}, {"id": "41048", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287930311, 24.806621027], [141.287948016, 24.806638], [141.287955383, 24.80662955], [141.287930311, 24.806621027]]]}}, {"id": "41049", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291843113, 24.748211883], [141.291817328, 24.748225306], [141.291841349, 24.748226315], [141.291843113, 24.748211883]]]}}, {"id": "41050", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284707445, 24.800863477], [141.284690908, 24.800849495], [141.284688547, 24.80086564], [141.284707445, 24.800863477]]]}}, {"id": "41051", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284847977, 24.801780054], [141.284857471, 24.801797072], [141.284872763, 24.801785775], [141.284847977, 24.801780054]]]}}, {"id": "41052", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287383904, 24.785269414], [141.287346667, 24.78527836], [141.28738594, 24.785276468], [141.287383904, 24.785269414]]]}}, {"id": "41053", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292106381, 24.748404252], [141.292118859, 24.74838373], [141.292095551, 24.748395351], [141.292106381, 24.748404252]]]}}, {"id": "41054", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28547, 24.78824664], [141.285477471, 24.788270685], [141.285486057, 24.788240126], [141.28547, 24.78824664]]]}}, {"id": "41055", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28806847, 24.806347865], [141.28808511, 24.806361036], [141.288085435, 24.806337928], [141.28806847, 24.806347865]]]}}, {"id": "41056", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285346796, 24.78553236], [141.285325097, 24.785522595], [141.285337173, 24.78553755], [141.285346796, 24.78553236]]]}}, {"id": "41057", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285204786, 24.785446811], [141.285225953, 24.785444297], [141.285224047, 24.78543273], [141.285204786, 24.785446811]]]}}, {"id": "41058", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.142120804, 26.677556306], [142.142140778, 26.677542829], [142.142122802, 26.677538252], [142.142120804, 26.677556306]]]}}, {"id": "41059", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285684955, 24.78533445], [141.285658171, 24.785331883], [141.285683217, 24.785344279], [141.285684955, 24.78533445]]]}}, {"id": "41060", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293722283, 24.751153577], [141.29371166, 24.751128153], [141.293693009, 24.751121748], [141.293722283, 24.751153577]]]}}, {"id": "41061", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284504462, 24.799611468], [141.284481492, 24.799598811], [141.284482698, 24.799612991], [141.284504462, 24.799611468]]]}}, {"id": "41062", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293175525, 24.749308243], [141.293189066, 24.749289342], [141.293171051, 24.749294225], [141.293175525, 24.749308243]]]}}, {"id": "41063", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287130493, 24.785155901], [141.287135992, 24.785129288], [141.287117276, 24.785134171], [141.287130493, 24.785155901]]]}}, {"id": "41064", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182742607, 27.09678], [142.18275214, 27.096755775], [142.182739027, 27.096756973], [142.182742607, 27.09678]]]}}, {"id": "41065", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232797782, 27.07679], [142.232807497, 27.076771198], [142.232792114, 27.076780973], [142.232797782, 27.07679]]]}}, {"id": "41066", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285442296, 24.804594351], [141.285464008, 24.804585432], [141.285454747, 24.804578703], [141.285442296, 24.804594351]]]}}, {"id": "41067", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292020584, 24.748314198], [141.292022581, 24.748292901], [141.292010376, 24.748300883], [141.292020584, 24.748314198]]]}}, {"id": "41068", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28697393, 24.807439216], [141.286993463, 24.807464045], [141.286994695, 24.807456009], [141.28697393, 24.807439216]]]}}, {"id": "41069", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286545305, 24.785059216], [141.286522464, 24.785042676], [141.286513204, 24.785053559], [141.286545305, 24.785059216]]]}}, {"id": "41070", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.182757419, 27.096838919], [142.182775383, 27.096848721], [142.182768106, 27.096833027], [142.182757419, 27.096838919]]]}}, {"id": "41071", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187399637, 27.087703441], [142.187391829, 27.087676559], [142.187381777, 27.087698225], [142.187399637, 27.087703441]]]}}, {"id": "41072", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.348038781, 24.776534207], [141.348021855, 24.776518243], [141.348015058, 24.776531486], [141.348038781, 24.776534207]]]}}, {"id": "41073", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292804488, 24.748922432], [141.292806252, 24.748943207], [141.29282035, 24.748931892], [141.292804488, 24.748922432]]]}}, {"id": "41074", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284768119, 24.750447081], [141.284788067, 24.750433991], [141.284772802, 24.750422991], [141.284768119, 24.750447081]]]}}, {"id": "41075", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286159767, 24.785226387], [141.286134099, 24.785234387], [141.286146913, 24.785242937], [141.286159767, 24.785226387]]]}}, {"id": "41076", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289915811, 24.74737045], [141.289893489, 24.747382351], [141.289916939, 24.747379937], [141.289915811, 24.74737045]]]}}, {"id": "41077", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.187927198, 27.087870252], [142.187899079, 27.087882829], [142.187932477, 27.087876387], [142.187927198, 27.087870252]]]}}, {"id": "41078", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232765136, 27.077935135], [142.232758054, 27.077915108], [142.232750726, 27.077930387], [142.232765136, 27.077935135]]]}}, {"id": "41079", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293455227, 24.75010973], [141.293428703, 24.750096514], [141.293440558, 24.750115351], [141.293455227, 24.75010973]]]}}, {"id": "41080", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284780519, 24.751874135], [141.284802101, 24.75186982], [141.284787977, 24.751865595], [141.284780519, 24.751874135]]]}}, {"id": "41081", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291684565, 24.748067676], [141.291698093, 24.748087784], [141.291712646, 24.748082523], [141.291684565, 24.748067676]]]}}, {"id": "41082", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472558029, 24.232228495], [141.47258978, 24.232233], [141.472587665, 24.232218586], [141.472558029, 24.232228495]]]}}, {"id": "41083", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286162464, 24.797559342], [141.286163606, 24.797584721], [141.28617799, 24.797576838], [141.286162464, 24.797559342]]]}}, {"id": "41084", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285814695, 24.789774946], [141.285787367, 24.789781586], [141.285811258, 24.789787117], [141.285814695, 24.789774946]]]}}, {"id": "41085", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286179377, 24.78988773], [141.286156783, 24.789895568], [141.286179001, 24.789899739], [141.286179377, 24.78988773]]]}}, {"id": "41086", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284844125, 24.751971495], [141.284867341, 24.751990838], [141.284867134, 24.751976838], [141.284844125, 24.751971495]]]}}, {"id": "41087", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224976939, 27.042105667], [142.224981336, 27.04208536], [142.224966641, 27.042091802], [142.224976939, 27.042105667]]]}}, {"id": "41088", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284734565, 24.752941775], [141.284738988, 24.752962378], [141.284750558, 24.752946369], [141.284734565, 24.752941775]]]}}, {"id": "41089", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286466291, 24.801292946], [141.286477458, 24.801311234], [141.286486122, 24.801302072], [141.286466291, 24.801292946]]]}}, {"id": "41090", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304228158, 24.756213126], [141.304207575, 24.756197955], [141.304207393, 24.756212667], [141.304228158, 24.756213126]]]}}, {"id": "41091", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287156109, 24.807249405], [141.2871507, 24.807228703], [141.287138262, 24.807240748], [141.287156109, 24.807249405]]]}}, {"id": "41092", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285066368, 24.802313036], [141.285042179, 24.802323216], [141.285058885, 24.802325189], [141.285066368, 24.802313036]]]}}, {"id": "41093", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292717419, 24.748882297], [141.292696654, 24.748882378], [141.292709857, 24.748889937], [141.292717419, 24.748882297]]]}}, {"id": "41094", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284855914, 24.751862667], [141.284876511, 24.751858162], [141.28486917, 24.751844315], [141.284855914, 24.751862667]]]}}, {"id": "41095", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292592815, 24.748679568], [141.292579663, 24.748697108], [141.292590428, 24.748698514], [141.292592815, 24.748679568]]]}}, {"id": "41096", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285285927, 24.785419396], [141.285268885, 24.785425631], [141.285278651, 24.785430649], [141.285285927, 24.785419396]]]}}, {"id": "41097", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284530259, 24.750427613], [141.284534669, 24.75040073], [141.284521984, 24.75040618], [141.284530259, 24.750427613]]]}}, {"id": "41098", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284662283, 24.751959342], [141.28464441, 24.751954288], [141.284649896, 24.751963973], [141.284662283, 24.751959342]]]}}, {"id": "41099", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325804877, 24.814129757], [141.325799468, 24.814106532], [141.325796109, 24.814124297], [141.325804877, 24.814129757]]]}}, {"id": "41100", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287939987, 24.805205009], [141.287918171, 24.805213937], [141.287941894, 24.805216577], [141.287939987, 24.805205009]]]}}, {"id": "41101", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293256952, 24.749366135], [141.293236096, 24.74938391], [141.293258003, 24.749373811], [141.293256952, 24.749366135]]]}}, {"id": "41102", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224971946, 27.041971919], [142.22496594, 27.041952441], [142.224955694, 27.041969613], [142.224971946, 27.041971919]]]}}, {"id": "41103", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284608521, 24.801264486], [141.284608236, 24.80124318], [141.284598677, 24.801255775], [141.284608521, 24.801264486]]]}}, {"id": "41104", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293712309, 24.750925658], [141.293734488, 24.750920252], [141.293715525, 24.750915198], [141.293712309, 24.750925658]]]}}, {"id": "41105", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288706498, 24.746401586], [141.288729896, 24.746390135], [141.288708846, 24.746389045], [141.288706498, 24.746401586]]]}}, {"id": "41106", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286864591, 24.785032847], [141.286872776, 24.785017982], [141.28684406, 24.785026153], [141.286864591, 24.785032847]]]}}, {"id": "41107", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291922892, 24.748333054], [141.29192131, 24.748317342], [141.29190393, 24.748331703], [141.291922892, 24.748333054]]]}}, {"id": "41108", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.33038153, 24.813391676], [141.330361505, 24.813382829], [141.330373204, 24.813412946], [141.33038153, 24.813391676]]]}}, {"id": "41109", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287939066, 24.806456306], [141.2879431, 24.806478541], [141.287951518, 24.806459171], [141.287939066, 24.806456306]]]}}, {"id": "41110", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286480545, 24.806612766], [141.286499377, 24.806606811], [141.286489468, 24.806590694], [141.286480545, 24.806612766]]]}}, {"id": "41111", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.469383943, 24.227318586], [141.469367977, 24.227297919], [141.469365162, 24.227317306], [141.469383943, 24.227318586]]]}}, {"id": "41112", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292947782, 24.748933396], [141.292940947, 24.748951874], [141.292957834, 24.748957369], [141.292947782, 24.748933396]]]}}, {"id": "41113", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284832802, 24.753517432], [141.284840026, 24.753498685], [141.28482585, 24.753505577], [141.284832802, 24.753517432]]]}}, {"id": "41114", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285744514, 24.785484423], [141.285730091, 24.785499613], [141.285752659, 24.785495559], [141.285744514, 24.785484423]]]}}, {"id": "41115", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378627484, 24.779535], [141.378612737, 24.779516333], [141.378598781, 24.779520432], [141.378627484, 24.779535]]]}}, {"id": "41116", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.344519066, 24.798867108], [141.344505123, 24.798885378], [141.344524591, 24.798869216], [141.344519066, 24.798867108]]]}}, {"id": "41117", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232568755, 27.072522198], [142.232588223, 27.072531441], [142.232588223, 27.072523252], [142.232568755, 27.072522198]]]}}, {"id": "41118", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287215292, 24.785216793], [141.28722703, 24.785240054], [141.287239053, 24.78522982], [141.287215292, 24.785216793]]]}}, {"id": "41119", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291675097, 24.777231126], [141.291651971, 24.777244378], [141.291672361, 24.777240775], [141.291675097, 24.777231126]]]}}, {"id": "41120", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284374942, 24.79943155], [141.284366291, 24.799455523], [141.28438144, 24.799452532], [141.284374942, 24.79943155]]]}}, {"id": "41121", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285813152, 24.789266288], [141.28579454, 24.789252658], [141.285799196, 24.789268667], [141.285813152, 24.789266288]]]}}, {"id": "41122", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379100065, 24.780590378], [141.379097393, 24.780610595], [141.379107289, 24.780607658], [141.379100065, 24.780590378]]]}}, {"id": "41123", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.144178003, 26.674171441], [142.144178197, 26.674148054], [142.144169559, 26.674154865], [142.144178003, 26.674171441]]]}}, {"id": "41124", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175128586, 26.616884829], [142.175136744, 26.616904946], [142.175146394, 26.616897802], [142.175128586, 26.616884829]]]}}, {"id": "41125", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347266031, 24.794993811], [141.347239014, 24.794996225], [141.347264112, 24.795000757], [141.347266031, 24.794993811]]]}}, {"id": "41126", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.175081777, 26.616865946], [142.175085525, 26.616888775], [142.17509856, 26.61687936], [142.175081777, 26.616865946]]]}}, {"id": "41127", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291804449, 24.748037459], [141.291825824, 24.748053171], [141.291816135, 24.748035342], [141.291804449, 24.748037459]]]}}, {"id": "41128", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347218911, 24.795057622], [141.347191621, 24.795057225], [141.347216109, 24.795064378], [141.347218911, 24.795057622]]]}}, {"id": "41129", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379680182, 24.780245108], [141.379655318, 24.780255387], [141.379662399, 24.78026282], [141.379680182, 24.780245108]]]}}, {"id": "41130", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.319047315, 24.813156604], [141.319067354, 24.813144955], [141.319044358, 24.81313573], [141.319047315, 24.813156604]]]}}, {"id": "41131", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284647108, 24.750343847], [141.284622931, 24.750335514], [141.284626018, 24.750350162], [141.284647108, 24.750343847]]]}}, {"id": "41132", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347537639, 24.775924964], [141.347563009, 24.775914063], [141.347552581, 24.77590427], [141.347537639, 24.775924964]]]}}, {"id": "41133", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285668911, 24.785529378], [141.285694267, 24.785522369], [141.285663722, 24.785518883], [141.285668911, 24.785529378]]]}}, {"id": "41134", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343724397, 24.77156291], [141.343741492, 24.771545468], [141.343719261, 24.771541306], [141.343724397, 24.77156291]]]}}, {"id": "41135", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.147017691, 26.688920721], [142.1470207, 26.688898054], [142.147009663, 26.688915946], [142.147017691, 26.688920721]]]}}, {"id": "41136", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285559144, 24.749011297], [141.285568067, 24.748990126], [141.285550311, 24.748999072], [141.285559144, 24.749011297]]]}}, {"id": "41137", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285044553, 24.802788081], [141.28505978, 24.802806486], [141.285066485, 24.802793153], [141.285044553, 24.802788081]]]}}, {"id": "41138", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325980726, 24.81407918], [141.325955655, 24.814070486], [141.325967821, 24.814086703], [141.325980726, 24.81407918]]]}}, {"id": "41139", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29238668, 24.748576117], [141.292388547, 24.74859455], [141.292394864, 24.748579685], [141.29238668, 24.748576117]]]}}, {"id": "41140", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287213839, 24.802706351], [141.287197562, 24.802717468], [141.287219377, 24.802723351], [141.287213839, 24.802706351]]]}}, {"id": "41141", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284713398, 24.752977793], [141.284722179, 24.752997514], [141.284732957, 24.752980495], [141.284713398, 24.752977793]]]}}, {"id": "41142", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304393476, 24.756122351], [141.304410506, 24.75611909], [141.304393165, 24.75610745], [141.304393476, 24.756122351]]]}}, {"id": "41143", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292217704, 24.74843891], [141.292203398, 24.748451117], [141.292214747, 24.748454063], [141.292217704, 24.74843891]]]}}, {"id": "41144", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288671984, 24.746247757], [141.288686913, 24.746264081], [141.288698093, 24.746245261], [141.288671984, 24.746247757]]]}}, {"id": "41145", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285009066, 24.802233135], [141.284992529, 24.802219153], [141.284992983, 24.802243351], [141.285009066, 24.802233135]]]}}, {"id": "41146", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293635927, 24.750917081], [141.293644306, 24.750939234], [141.293650791, 24.750929964], [141.293635927, 24.750917081]]]}}, {"id": "41147", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284779183, 24.751831063], [141.284757639, 24.751846586], [141.284773152, 24.75184918], [141.284779183, 24.751831063]]]}}, {"id": "41148", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287259494, 24.807073036], [141.287247756, 24.807049144], [141.287242322, 24.807065459], [141.287259494, 24.807073036]]]}}, {"id": "41149", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287693204, 24.804842802], [141.287710649, 24.804834757], [141.287696329, 24.804831441], [141.287693204, 24.804842802]]]}}, {"id": "41150", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285397562, 24.804321036], [141.285418288, 24.804330342], [141.285419235, 24.804319514], [141.285397562, 24.804321036]]]}}, {"id": "41151", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291801634, 24.748185775], [141.291818742, 24.748201928], [141.291815992, 24.748183315], [141.291801634, 24.748185775]]]}}, {"id": "41152", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285969092, 24.785176], [141.285952529, 24.785184234], [141.285952023, 24.785185946], [141.285969092, 24.785176]]]}}, {"id": "41153", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225116719, 27.042251865], [142.225096252, 27.042240694], [142.22509022, 27.042248919], [142.225116719, 27.042251865]]]}}, {"id": "41154", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287251621, 24.807117865], [141.287221543, 24.807120342], [141.287248003, 24.807127243], [141.287251621, 24.807117865]]]}}, {"id": "41155", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284098872, 24.799419396], [141.284072763, 24.799418009], [141.284096239, 24.799428955], [141.284098872, 24.799419396]]]}}, {"id": "41156", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285058457, 24.802278784], [141.28505393, 24.80225827], [141.28504585, 24.802269333], [141.285058457, 24.802278784]]]}}, {"id": "41157", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343106342, 24.771608315], [141.343128768, 24.771611667], [141.343122425, 24.771594396], [141.343106342, 24.771608315]]]}}, {"id": "41158", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287647445, 24.79289055], [141.287627198, 24.792886748], [141.287632361, 24.792900946], [141.287647445, 24.79289055]]]}}, {"id": "41159", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285699196, 24.789842018], [141.285711803, 24.789851468], [141.285717134, 24.789835964], [141.285699196, 24.789842018]]]}}, {"id": "41160", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2866938, 24.801737225], [141.286712827, 24.801748964], [141.286702114, 24.80173636], [141.2866938, 24.801737225]]]}}, {"id": "41161", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341355006, 24.804168414], [141.341377121, 24.804176901], [141.341370195, 24.804156919], [141.341355006, 24.804168414]]]}}, {"id": "41162", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287931466, 24.805882171], [141.287951271, 24.805895], [141.287935486, 24.805871], [141.287931466, 24.805882171]]]}}, {"id": "41163", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292395344, 24.748511162], [141.292413969, 24.748521721], [141.292414747, 24.748507009], [141.292395344, 24.748511162]]]}}, {"id": "41164", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284770246, 24.801829973], [141.284783204, 24.801812514], [141.284766887, 24.801812532], [141.284770246, 24.801829973]]]}}, {"id": "41165", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285460272, 24.787146414], [141.285436654, 24.787161378], [141.285457912, 24.787161748], [141.285460272, 24.787146414]]]}}, {"id": "41166", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285050169, 24.802224036], [141.285027406, 24.802225279], [141.285043165, 24.802238171], [141.285050169, 24.802224036]]]}}, {"id": "41167", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225879689, 27.039035468], [142.225868197, 27.03902836], [142.225867198, 27.039044865], [142.225879689, 27.039035468]]]}}, {"id": "41168", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292349831, 24.748551928], [141.292368625, 24.748551748], [141.292349339, 24.748536036], [141.292349831, 24.748551928]]]}}, {"id": "41169", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284813294, 24.801791622], [141.284796498, 24.801804459], [141.284814903, 24.801804], [141.284813294, 24.801791622]]]}}, {"id": "41170", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293003619, 24.749111523], [141.292983061, 24.74909318], [141.292977445, 24.749106793], [141.293003619, 24.749111523]]]}}, {"id": "41171", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292366926, 24.74850136], [141.292387808, 24.748499297], [141.292383943, 24.748482757], [141.292366926, 24.74850136]]]}}, {"id": "41172", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285597069, 24.788161027], [141.285609637, 24.788177964], [141.285610246, 24.788157568], [141.285597069, 24.788161027]]]}}, {"id": "41173", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378528236, 24.779567721], [141.378554838, 24.779566838], [141.378539935, 24.77955955], [141.378528236, 24.779567721]]]}}, {"id": "41174", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285670791, 24.785251054], [141.285675616, 24.78527364], [141.28567703, 24.785250631], [141.285670791, 24.785251054]]]}}, {"id": "41175", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.189541803, 27.051463198], [142.189525694, 27.051476387], [142.189542944, 27.051481775], [142.189541803, 27.051463198]]]}}, {"id": "41176", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287933606, 24.806443009], [141.287956316, 24.806449081], [141.287950752, 24.806435874], [141.287933606, 24.806443009]]]}}, {"id": "41177", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.34805323, 24.776493009], [141.34805978, 24.776469477], [141.348048534, 24.776484505], [141.34805323, 24.776493009]]]}}, {"id": "41178", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284836524, 24.802121351], [141.284839883, 24.802105477], [141.28482358, 24.802101703], [141.284836524, 24.802121351]]]}}, {"id": "41179", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347726926, 24.776148063], [141.347701803, 24.776150577], [141.347707497, 24.77615936], [141.347726926, 24.776148063]]]}}, {"id": "41180", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287829831, 24.805649486], [141.287828132, 24.805670423], [141.28784179, 24.805668955], [141.287829831, 24.805649486]]]}}, {"id": "41181", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.224188249, 27.045482946], [142.224207588, 27.045469198], [142.224190026, 27.045470135], [142.224188249, 27.045482946]]]}}, {"id": "41182", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287758067, 24.792880874], [141.287781414, 24.792863108], [141.287755759, 24.792871108], [141.287758067, 24.792880874]]]}}, {"id": "41183", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341460285, 24.804628685], [141.341474604, 24.804651315], [141.341477639, 24.804639865], [141.341460285, 24.804628685]]]}}, {"id": "41184", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286926018, 24.785219477], [141.286903658, 24.785204928], [141.286907639, 24.785216144], [141.286926018, 24.785219477]]]}}, {"id": "41185", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292996991, 24.74918245], [141.293013645, 24.749174946], [141.292992425, 24.749168883], [141.292996991, 24.74918245]]]}}, {"id": "41186", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285076291, 24.749910829], [141.285075149, 24.749885541], [141.285068807, 24.749904468], [141.285076291, 24.749910829]]]}}, {"id": "41187", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292491025, 24.748655252], [141.29251131, 24.748651279], [141.292485668, 24.748640595], [141.292491025, 24.748655252]]]}}, {"id": "41188", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.232909754, 27.077350829], [142.232902555, 27.077333252], [142.232893606, 27.077345559], [142.232909754, 27.077350829]]]}}, {"id": "41189", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284830233, 24.753482477], [141.284835966, 24.753465171], [141.284812983, 24.75347482], [141.284830233, 24.753482477]]]}}, {"id": "41190", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287687017, 24.804817306], [141.287695837, 24.804796135], [141.287684345, 24.804800955], [141.287687017, 24.804817306]]]}}, {"id": "41191", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28622022, 24.806457324], [141.28623358, 24.806438162], [141.286214449, 24.806444928], [141.28622022, 24.806457324]]]}}, {"id": "41192", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379800104, 24.780072622], [141.37979585, 24.780052829], [141.3797862, 24.780066694], [141.379800104, 24.780072622]]]}}, {"id": "41193", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286026122, 24.789448144], [141.286049209, 24.789442297], [141.286028171, 24.789437405], [141.286026122, 24.789448144]]]}}, {"id": "41194", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285809403, 24.797589892], [141.285799896, 24.797609973], [141.285810402, 24.797604973], [141.285809403, 24.797589892]]]}}, {"id": "41195", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285979676, 24.785088207], [141.285999326, 24.785076117], [141.285974877, 24.785079613], [141.285979676, 24.785088207]]]}}, {"id": "41196", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284883606, 24.753900018], [141.284876667, 24.753921568], [141.284890765, 24.753910892], [141.284883606, 24.753900018]]]}}, {"id": "41197", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293342464, 24.749751414], [141.293319001, 24.749757532], [141.293344682, 24.749762171], [141.293342464, 24.749751414]]]}}, {"id": "41198", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286033943, 24.785127018], [141.286014202, 24.785139117], [141.286036965, 24.785134261], [141.286033943, 24.785127018]]]}}, {"id": "41199", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293574656, 24.750493], [141.293557082, 24.750505919], [141.293571193, 24.750512216], [141.293574656, 24.750493]]]}}, {"id": "41200", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292738431, 24.748891423], [141.292732581, 24.748911982], [141.292742309, 24.748903901], [141.292738431, 24.748891423]]]}}, {"id": "41201", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286054695, 24.805980486], [141.286073813, 24.805977324], [141.286065642, 24.805969973], [141.286054695, 24.805980486]]]}}, {"id": "41202", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284577678, 24.752283775], [141.284599961, 24.752276838], [141.284587964, 24.752264775], [141.284577678, 24.752283775]]]}}, {"id": "41203", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287997211, 24.806337144], [141.288019676, 24.806336712], [141.288009468, 24.806322396], [141.287997211, 24.806337144]]]}}, {"id": "41204", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285321569, 24.804671423], [141.285318703, 24.804655964], [141.285300311, 24.804671135], [141.285321569, 24.804671423]]]}}, {"id": "41205", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284841933, 24.752009135], [141.284861842, 24.75200345], [141.284848405, 24.752000405], [141.284841933, 24.752009135]]]}}, {"id": "41206", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2854438, 24.787070865], [141.285456628, 24.787058009], [141.285433878, 24.787059261], [141.2854438, 24.787070865]]]}}, {"id": "41207", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.227285914, 27.035506], [142.227267782, 27.035496748], [142.227265863, 27.035507829], [142.227285914, 27.035506]]]}}, {"id": "41208", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286108132, 24.797635099], [141.286132983, 24.797629622], [141.286116485, 24.797626748], [141.286108132, 24.797635099]]]}}, {"id": "41209", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284850869, 24.798223243], [141.284831803, 24.798237414], [141.284856381, 24.798229135], [141.284850869, 24.798223243]]]}}, {"id": "41210", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293436057, 24.749897387], [141.29344703, 24.749915946], [141.293450765, 24.749901432], [141.293436057, 24.749897387]]]}}, {"id": "41211", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291393333, 24.747977369], [141.291414877, 24.747995982], [141.291417873, 24.747990126], [141.291393333, 24.747977369]]]}}, {"id": "41212", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28423655, 24.799436036], [141.284252776, 24.799450919], [141.284251569, 24.799436739], [141.28423655, 24.799436036]]]}}, {"id": "41213", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291441258, 24.747911694], [141.291455811, 24.747906432], [141.291446291, 24.747896009], [141.291441258, 24.747911694]]]}}, {"id": "41214", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341396835, 24.804395207], [141.341416848, 24.804388523], [141.341411038, 24.804383532], [141.341396835, 24.804395207]]]}}, {"id": "41215", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287698379, 24.792908847], [141.287685006, 24.792894604], [141.287671245, 24.792914676], [141.287698379, 24.792908847]]]}}, {"id": "41216", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287792516, 24.805412135], [141.287785162, 24.805435486], [141.287802594, 24.805431144], [141.287792516, 24.805412135]]]}}, {"id": "41217", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287827899, 24.806767973], [141.287813061, 24.806784964], [141.287822659, 24.806783387], [141.287827899, 24.806767973]]]}}, {"id": "41218", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293744617, 24.751138694], [141.293754981, 24.751158784], [141.293763048, 24.751148171], [141.293744617, 24.751138694]]]}}, {"id": "41219", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285830363, 24.785378928], [141.285852957, 24.78537118], [141.285851816, 24.785364405], [141.285830363, 24.785378928]]]}}, {"id": "41220", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28440192, 24.799451631], [141.28439428, 24.799438775], [141.284385966, 24.799458243], [141.28440192, 24.799451631]]]}}, {"id": "41221", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287754047, 24.80496145], [141.28777192, 24.804947901], [141.2877507, 24.804940306], [141.287754047, 24.80496145]]]}}, {"id": "41222", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287867588, 24.80522236], [141.287892879, 24.80522618], [141.287892542, 24.805215892], [141.287867588, 24.80522236]]]}}, {"id": "41223", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285706926, 24.785245622], [141.285712361, 24.785262712], [141.285719157, 24.785249387], [141.285706926, 24.785245622]]]}}, {"id": "41224", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292978042, 24.749071225], [141.292977847, 24.749052622], [141.292972114, 24.749053225], [141.292978042, 24.749071225]]]}}, {"id": "41225", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379064306, 24.779726405], [141.37905511, 24.779706685], [141.379052815, 24.779712811], [141.379064306, 24.779726405]]]}}, {"id": "41226", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287023956, 24.802184523], [141.287007043, 24.802201955], [141.287029235, 24.802195018], [141.287023956, 24.802184523]]]}}, {"id": "41227", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292501699, 24.748708117], [141.292508327, 24.748690541], [141.292490506, 24.748694523], [141.292501699, 24.748708117]]]}}, {"id": "41228", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287215746, 24.807077523], [141.287232283, 24.807091324], [141.287233645, 24.807078694], [141.287215746, 24.807077523]]]}}, {"id": "41229", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287320856, 24.785279766], [141.287321128, 24.785300351], [141.287327069, 24.785283045], [141.287320856, 24.785279766]]]}}, {"id": "41230", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287442348, 24.807545541], [141.287448275, 24.807564432], [141.287459818, 24.807552306], [141.287442348, 24.807545541]]]}}, {"id": "41231", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287861012, 24.806666297], [141.287858833, 24.806685243], [141.287871971, 24.806670586], [141.287861012, 24.806666297]]]}}, {"id": "41232", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284594565, 24.800523297], [141.284596757, 24.800504261], [141.28459048, 24.800512171], [141.284594565, 24.800523297]]]}}, {"id": "41233", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.225207639, 27.039368613], [142.225205694, 27.039351441], [142.225192996, 27.039354279], [142.225207639, 27.039368613]]]}}, {"id": "41234", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28448201, 24.799937369], [141.284482996, 24.799922838], [141.284462192, 24.799928252], [141.28448201, 24.799937369]]]}}, {"id": "41235", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286416485, 24.800075982], [141.286404319, 24.800057414], [141.286399274, 24.800075721], [141.286416485, 24.800075982]]]}}, {"id": "41236", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285958911, 24.785071225], [141.28594214, 24.78508027], [141.285959326, 24.785084324], [141.285958911, 24.785071225]]]}}, {"id": "41237", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284459702, 24.799707856], [141.284434099, 24.799704757], [141.28445441, 24.799715964], [141.284459702, 24.799707856]]]}}, {"id": "41238", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284630065, 24.800697351], [141.284650856, 24.80071045], [141.284640078, 24.800694144], [141.284630065, 24.800697351]]]}}, {"id": "41239", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378866355, 24.780754991], [141.37886882, 24.780737486], [141.378856213, 24.78074736], [141.378866355, 24.780754991]]]}}, {"id": "41240", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287691414, 24.804169649], [141.287679637, 24.804153072], [141.287678262, 24.804169495], [141.287691414, 24.804169649]]]}}, {"id": "41241", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285316861, 24.804096847], [141.285336719, 24.804083757], [141.285323865, 24.804082703], [141.285316861, 24.804096847]]]}}, {"id": "41242", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284766252, 24.752120901], [141.284772192, 24.752136189], [141.284774617, 24.752127441], [141.284766252, 24.752120901]]]}}, {"id": "41243", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286822062, 24.785049883], [141.286848651, 24.785053261], [141.286831219, 24.785039], [141.286822062, 24.785049883]]]}}, {"id": "41244", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285847069, 24.797523351], [141.285858949, 24.797539117], [141.285862607, 24.797522252], [141.285847069, 24.797523351]]]}}, {"id": "41245", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286205512, 24.78497373], [141.286181543, 24.784979297], [141.286213554, 24.784984964], [141.286205512, 24.78497373]]]}}, {"id": "41246", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285997899, 24.785048757], [141.285982166, 24.78506827], [141.286001829, 24.785071072], [141.285997899, 24.785048757]]]}}, {"id": "41247", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287020778, 24.785198081], [141.287041012, 24.785187883], [141.287022036, 24.785186261], [141.287020778, 24.785198081]]]}}, {"id": "41248", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293135681, 24.749185541], [141.293117639, 24.749192766], [141.293139481, 24.749194676], [141.293135681, 24.749185541]]]}}, {"id": "41249", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293137756, 24.749289378], [141.293141997, 24.749310252], [141.29315166, 24.749296577], [141.293137756, 24.749289378]]]}}, {"id": "41250", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.125273554, 26.704031027], [142.125254475, 26.704022667], [142.125249144, 26.704032775], [142.125273554, 26.704031027]]]}}, {"id": "41251", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287142075, 24.806920261], [141.287160934, 24.806925495], [141.28715358, 24.806915441], [141.287142075, 24.806920261]]]}}, {"id": "41252", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2848438, 24.753322928], [141.284817717, 24.753321541], [141.28484406, 24.753329523], [141.2848438, 24.753322928]]]}}, {"id": "41253", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379023502, 24.77979945], [141.379032218, 24.779817009], [141.379035538, 24.779803838], [141.379023502, 24.77979945]]]}}, {"id": "41254", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293266329, 24.749455378], [141.293264423, 24.74944291], [141.293250726, 24.749452955], [141.293266329, 24.749455378]]]}}, {"id": "41255", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285588742, 24.785660901], [141.285574812, 24.785641784], [141.285566874, 24.785644631], [141.285588742, 24.785660901]]]}}, {"id": "41256", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.340743619, 24.804923009], [141.340747782, 24.804903523], [141.34074489, 24.804906667], [141.340743619, 24.804923009]]]}}, {"id": "41257", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287277211, 24.785249946], [141.287257588, 24.785258342], [141.287274462, 24.785263297], [141.287277211, 24.785249946]]]}}, {"id": "41258", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292761907, 24.748934054], [141.292778379, 24.748925108], [141.292761375, 24.748924216], [141.292761907, 24.748934054]]]}}, {"id": "41259", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291624163, 24.77731773], [141.291607834, 24.777303667], [141.291603139, 24.777312847], [141.291624163, 24.77731773]]]}}, {"id": "41260", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291642425, 24.748001027], [141.291626109, 24.747985423], [141.291621427, 24.74799], [141.291642425, 24.748001027]]]}}, {"id": "41261", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379861946, 24.779608279], [141.379859987, 24.779625604], [141.379873684, 24.779614468], [141.379861946, 24.779608279]]]}}, {"id": "41262", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287132581, 24.807109811], [141.287145668, 24.807121153], [141.287148638, 24.807103297], [141.287132581, 24.807109811]]]}}, {"id": "41263", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289893735, 24.747304441], [141.289903307, 24.747291216], [141.289888962, 24.747293676], [141.289893735, 24.747304441]]]}}, {"id": "41264", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28782585, 24.805099198], [141.287850947, 24.805104009], [141.287826589, 24.805092883], [141.28782585, 24.805099198]]]}}, {"id": "41265", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.472449857, 24.231630414], [141.47243834, 24.231616694], [141.472441894, 24.231634946], [141.472449857, 24.231630414]]]}}, {"id": "41266", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325833022, 24.814138279], [141.325812218, 24.814145045], [141.325808768, 24.814159117], [141.325833022, 24.814138279]]]}}, {"id": "41267", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287866407, 24.805376288], [141.287853956, 24.805391937], [141.287863813, 24.805396946], [141.287866407, 24.805376288]]]}}, {"id": "41268", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.344095032, 24.800263099], [141.344075499, 24.800271856], [141.344090817, 24.800275171], [141.344095032, 24.800263099]]]}}, {"id": "41269", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287843735, 24.805190198], [141.287846913, 24.805170532], [141.287832918, 24.805177595], [141.287843735, 24.805190198]]]}}, {"id": "41270", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289091946, 24.746611604], [141.28911214, 24.746608721], [141.289091997, 24.746604108], [141.289091946, 24.746611604]]]}}, {"id": "41271", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287908625, 24.806522523], [141.287897704, 24.80651073], [141.287900506, 24.806522486], [141.287908625, 24.806522523]]]}}, {"id": "41272", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.344427912, 24.800062505], [141.344407678, 24.800073793], [141.344426848, 24.800078027], [141.344427912, 24.800062505]]]}}, {"id": "41273", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288696693, 24.746456072], [141.288711556, 24.746468775], [141.288719261, 24.746451928], [141.288696693, 24.746456072]]]}}, {"id": "41274", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287446978, 24.807133604], [141.287443191, 24.807121577], [141.287436433, 24.807127505], [141.287446978, 24.807133604]]]}}, {"id": "41275", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28653917, 24.801001775], [141.286546368, 24.80098673], [141.286530791, 24.800995234], [141.28653917, 24.801001775]]]}}, {"id": "41276", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28732083, 24.803145171], [141.287299818, 24.803151486], [141.287319144, 24.803162324], [141.28732083, 24.803145171]]]}}, {"id": "41277", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287195875, 24.785187991], [141.287176174, 24.785192685], [141.287195331, 24.785197198], [141.287195875, 24.785187991]]]}}, {"id": "41278", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285639741, 24.789810495], [141.2856562, 24.789820865], [141.285649066, 24.789806117], [141.285639741, 24.789810495]]]}}, {"id": "41279", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29317834, 24.74938536], [141.293186939, 24.74940345], [141.293193126, 24.749393189], [141.29317834, 24.74938536]]]}}, {"id": "41280", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290102425, 24.747480847], [141.290093865, 24.747490559], [141.290116031, 24.747487054], [141.290102425, 24.747480847]]]}}, {"id": "41281", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287975564, 24.806940396], [141.287979715, 24.806958829], [141.287997147, 24.806954396], [141.287975564, 24.806940396]]]}}, {"id": "41282", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285405629, 24.804380297], [141.285413735, 24.804398847], [141.285419507, 24.804392739], [141.285405629, 24.804380297]]]}}, {"id": "41283", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304421336, 24.756126901], [141.304440649, 24.756119856], [141.304421881, 24.756116613], [141.304421336, 24.756126901]]]}}, {"id": "41284", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286923489, 24.785177937], [141.286919546, 24.78519191], [141.286940428, 24.785190297], [141.286923489, 24.785177937]]]}}, {"id": "41285", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287229105, 24.785189324], [141.287220182, 24.785174198], [141.287218638, 24.785186838], [141.287229105, 24.785189324]]]}}, {"id": "41286", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292900259, 24.749032577], [141.292904578, 24.749055351], [141.292911154, 24.749045631], [141.292900259, 24.749032577]]]}}, {"id": "41287", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285074047, 24.754293297], [141.285078508, 24.754310108], [141.285082594, 24.75430273], [141.285074047, 24.754293297]]]}}, {"id": "41288", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28735275, 24.785304027], [141.287344643, 24.785321685], [141.287356965, 24.78531064], [141.28735275, 24.785304027]]]}}, {"id": "41289", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285994578, 24.785111216], [141.28597524, 24.785103901], [141.285979935, 24.785112495], [141.285994578, 24.785111216]]]}}, {"id": "41290", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.325409416, 24.814037874], [141.325421012, 24.814052189], [141.325422477, 24.814037748], [141.325409416, 24.814037874]]]}}, {"id": "41291", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347452153, 24.775877288], [141.347430272, 24.77586473], [141.347444514, 24.775882937], [141.347452153, 24.775877288]]]}}, {"id": "41292", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292247873, 24.748489063], [141.292266122, 24.748479036], [141.292245058, 24.748480117], [141.292247873, 24.748489063]]]}}, {"id": "41293", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285744137, 24.788091306], [141.285725668, 24.788102775], [141.285736602, 24.788110955], [141.285744137, 24.788091306]]]}}, {"id": "41294", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289876109, 24.74727655], [141.289864669, 24.747287514], [141.289877017, 24.74729064], [141.289876109, 24.74727655]]]}}, {"id": "41295", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37878214, 24.780012423], [141.378796939, 24.780020162], [141.378793748, 24.780004703], [141.37878214, 24.780012423]]]}}, {"id": "41296", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378600817, 24.779449387], [141.378621647, 24.779454802], [141.378605292, 24.77944345], [141.378600817, 24.779449387]]]}}, {"id": "41297", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292856874, 24.74899445], [141.292848794, 24.749008045], [141.292863204, 24.74901118], [141.292856874, 24.74899445]]]}}, {"id": "41298", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285507224, 24.748996604], [141.285497354, 24.749010099], [141.285506913, 24.749016018], [141.285507224, 24.748996604]]]}}, {"id": "41299", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284952646, 24.789736072], [141.284970195, 24.789728117], [141.284958457, 24.789722559], [141.284952646, 24.789736072]]]}}, {"id": "41300", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379107925, 24.779288441], [141.37910345, 24.779274063], [141.379095966, 24.779287757], [141.379107925, 24.779288441]]]}}, {"id": "41301", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293472594, 24.75004436], [141.293468755, 24.750024027], [141.293459468, 24.750022541], [141.293472594, 24.75004436]]]}}, {"id": "41302", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292611686, 24.748804694], [141.292621258, 24.748789126], [141.292602815, 24.748799955], [141.292611686, 24.748804694]]]}}, {"id": "41303", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292579831, 24.748772766], [141.292596433, 24.748773568], [141.292578275, 24.748767342], [141.292579831, 24.748772766]]]}}, {"id": "41304", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293519702, 24.749966396], [141.293544293, 24.749971297], [141.29352428, 24.749960459], [141.293519702, 24.749966396]]]}}, {"id": "41305", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378350376, 24.780551243], [141.378363074, 24.780543351], [141.378350454, 24.780535081], [141.378350376, 24.780551243]]]}}, {"id": "41306", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284635863, 24.752809405], [141.284621686, 24.752797775], [141.284623113, 24.752807351], [141.284635863, 24.752809405]]]}}, {"id": "41307", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[142.184733645, 27.086573973], [142.184718716, 27.086580027], [142.184726472, 27.086585162], [142.184733645, 27.086573973]]]}}, {"id": "41308", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286156485, 24.806221387], [141.286137056, 24.80621064], [141.286134527, 24.806220198], [141.286156485, 24.806221387]]]}}, {"id": "41309", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284655305, 24.801763784], [141.284673437, 24.801775342], [141.284665798, 24.801762477], [141.284655305, 24.801763784]]]}}, {"id": "41310", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293184358, 24.749354595], [141.293175759, 24.74936991], [141.293188457, 24.749362018], [141.293184358, 24.749354595]]]}}, {"id": "41311", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287015188, 24.78508782], [141.287025811, 24.785079117], [141.287005992, 24.785069811], [141.287015188, 24.78508782]]]}}, {"id": "41312", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287030674, 24.785163099], [141.287043969, 24.785173721], [141.287049754, 24.78516391], [141.287030674, 24.785163099]]]}}, {"id": "41313", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292560519, 24.74872591], [141.292575006, 24.748716946], [141.292557134, 24.748713613], [141.292560519, 24.74872591]]]}}, {"id": "41314", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.288307549, 24.74581827], [141.288308534, 24.745837144], [141.288318093, 24.745824369], [141.288307549, 24.74581827]]]}}, {"id": "41315", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292217173, 24.748411459], [141.292198846, 24.74840009], [141.292200376, 24.748409667], [141.292217173, 24.748411459]]]}}, {"id": "41316", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293385447, 24.749581252], [141.29340179, 24.749592703], [141.293396135, 24.749578955], [141.293385447, 24.749581252]]]}}, {"id": "41317", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.377959468, 24.779698072], [141.377948223, 24.779710486], [141.377966744, 24.779705234], [141.377959468, 24.779698072]]]}}, {"id": "41318", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292633735, 24.748768595], [141.292645629, 24.748779577], [141.292642335, 24.74876864], [141.292633735, 24.748768595]]]}}, {"id": "41319", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37868463, 24.779396378], [141.378678742, 24.77940764], [141.378694942, 24.779411495], [141.37868463, 24.779396378]]]}}, {"id": "41320", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29207249, 24.748225243], [141.292074073, 24.74820936], [141.292067043, 24.748211135], [141.29207249, 24.748225243]]]}}, {"id": "41321", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293652114, 24.751097631], [141.293663022, 24.751110225], [141.29366546, 24.751098685], [141.293652114, 24.751097631]]]}}, {"id": "41322", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293644864, 24.750682477], [141.293661102, 24.750678577], [141.293651777, 24.750667342], [141.293644864, 24.750682477]]]}}, {"id": "41323", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37971882, 24.780211135], [141.379727354, 24.780185532], [141.379713385, 24.780210027], [141.37971882, 24.780211135]]]}}, {"id": "41324", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29315035, 24.749213234], [141.293153722, 24.749229775], [141.293159364, 24.74922727], [141.29315035, 24.749213234]]]}}, {"id": "41325", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28748345, 24.785397099], [141.287470921, 24.785409045], [141.287486965, 24.785406324], [141.28748345, 24.785397099]]]}}, {"id": "41326", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286318651, 24.799507288], [141.286337095, 24.799499423], [141.286321984, 24.799495018], [141.286318651, 24.799507288]]]}}, {"id": "41327", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379043035, 24.780643505], [141.379060363, 24.780638874], [141.379040895, 24.78063564], [141.379043035, 24.780643505]]]}}, {"id": "41328", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2857831, 24.788108829], [141.28579821, 24.788094721], [141.28578048, 24.788099874], [141.2857831, 24.788108829]]]}}, {"id": "41329", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293089922, 24.749217378], [141.293105746, 24.74921709], [141.293087121, 24.749206532], [141.293089922, 24.749217378]]]}}, {"id": "41330", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378835032, 24.779795694], [141.378839844, 24.779782892], [141.378831543, 24.779781595], [141.378835032, 24.779795694]]]}}, {"id": "41331", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292859364, 24.748939847], [141.292839611, 24.748935595], [141.292857043, 24.748946784], [141.292859364, 24.748939847]]]}}, {"id": "41332", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.343214981, 24.771594441], [141.343225045, 24.771580036], [141.343213554, 24.771584865], [141.343214981, 24.771594441]]]}}, {"id": "41333", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378671064, 24.779439838], [141.378655071, 24.779434261], [141.378652866, 24.779441207], [141.378671064, 24.779439838]]]}}, {"id": "41334", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.289844864, 24.74724236], [141.289842179, 24.747260856], [141.28984703, 24.747259532], [141.289844864, 24.74724236]]]}}, {"id": "41335", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287003061, 24.785166847], [141.287021777, 24.785161973], [141.287006265, 24.785159279], [141.287003061, 24.785166847]]]}}, {"id": "41336", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287643398, 24.803520207], [141.28764655, 24.803505144], [141.287638612, 24.803508], [141.287643398, 24.803520207]]]}}, {"id": "41337", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293462387, 24.749995739], [141.293451582, 24.749984586], [141.293442049, 24.749991856], [141.293462387, 24.749995739]]]}}, {"id": "41338", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28741904, 24.785213523], [141.2874369, 24.785218658], [141.287428197, 24.78520264], [141.28741904, 24.785213523]]]}}, {"id": "41339", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286387069, 24.798181459], [141.286390337, 24.798198901], [141.286395435, 24.798188], [141.286387069, 24.798181459]]]}}, {"id": "41340", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285972374, 24.785189829], [141.285978911, 24.785206207], [141.285982957, 24.785188532], [141.285972374, 24.785189829]]]}}, {"id": "41341", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379575292, 24.78061727], [141.379580856, 24.78063327], [141.379588379, 24.780631586], [141.379575292, 24.78061727]]]}}, {"id": "41342", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287050545, 24.785128703], [141.287036252, 24.785121595], [141.287030843, 24.785133396], [141.287050545, 24.785128703]]]}}, {"id": "41343", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285471232, 24.804566685], [141.285488392, 24.804574351], [141.285490623, 24.804566505], [141.285471232, 24.804566685]]]}}, {"id": "41344", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.346917575, 24.775652135], [141.346915266, 24.775638586], [141.346905435, 24.775648378], [141.346917575, 24.775652135]]]}}, {"id": "41345", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.339567095, 24.770512342], [141.339565006, 24.770497973], [141.339556329, 24.770510757], [141.339567095, 24.770512342]]]}}, {"id": "41346", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.305301349, 24.756523712], [141.305302905, 24.75650927], [141.305291505, 24.756514369], [141.305301349, 24.756523712]]]}}, {"id": "41347", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378388975, 24.780385198], [141.37840061, 24.780373234], [141.378389144, 24.780370387], [141.378388975, 24.780385198]]]}}, {"id": "41348", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28626035, 24.799482811], [141.286250519, 24.799470396], [141.286247899, 24.799479955], [141.28626035, 24.799482811]]]}}, {"id": "41349", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28581716, 24.785353495], [141.285805772, 24.785339631], [141.28580214, 24.785352703], [141.28581716, 24.785353495]]]}}, {"id": "41350", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304231089, 24.756165108], [141.30421454, 24.75615564], [141.30421655, 24.756166486], [141.304231089, 24.756165108]]]}}, {"id": "41351", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.346876628, 24.775671369], [141.346883632, 24.775657225], [141.346874812, 24.775659802], [141.346876628, 24.775671369]]]}}, {"id": "41352", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379081777, 24.779732613], [141.379069468, 24.779742586], [141.379084319, 24.779738676], [141.379081777, 24.779732613]]]}}, {"id": "41353", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293142776, 24.74934655], [141.293145266, 24.74936055], [141.2931538, 24.749355], [141.293142776, 24.74934655]]]}}, {"id": "41354", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287052724, 24.80690909], [141.287062542, 24.806921505], [141.287070415, 24.806911252], [141.287052724, 24.80690909]]]}}, {"id": "41355", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293635992, 24.751046], [141.293632451, 24.751059532], [141.293637912, 24.751056126], [141.293635992, 24.751046]]]}}, {"id": "41356", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29315323, 24.749280694], [141.293149559, 24.749265505], [141.293140117, 24.749274577], [141.29315323, 24.749280694]]]}}, {"id": "41357", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378857523, 24.779826847], [141.378841141, 24.77981964], [141.378851777, 24.779829802], [141.378857523, 24.779826847]]]}}, {"id": "41358", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.346756641, 24.775546982], [141.346777925, 24.77554355], [141.346759442, 24.775540216], [141.346756641, 24.775546982]]]}}, {"id": "41359", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287072581, 24.785184153], [141.287089935, 24.785177009], [141.287065006, 24.785178613], [141.287072581, 24.785184153]]]}}, {"id": "41360", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284170324, 24.799462622], [141.284174397, 24.79947745], [141.284182451, 24.79947009], [141.284170324, 24.799462622]]]}}, {"id": "41361", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379871505, 24.779594414], [141.37988144, 24.779606459], [141.379887095, 24.779601703], [141.379871505, 24.779594414]]]}}, {"id": "41362", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28493642, 24.802120117], [141.284920934, 24.802113811], [141.284925435, 24.802123135], [141.28493642, 24.802120117]]]}}, {"id": "41363", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37964847, 24.780279099], [141.379655538, 24.780268748], [141.379643476, 24.780268423], [141.37964847, 24.780279099]]]}}, {"id": "41364", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378514527, 24.779617946], [141.378497536, 24.779614901], [141.37851144, 24.779622], [141.378514527, 24.779617946]]]}}, {"id": "41365", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378869274, 24.77981082], [141.378855992, 24.77981727], [141.378868638, 24.779819036], [141.378869274, 24.77981082]]]}}, {"id": "41366", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29302965, 24.749140351], [141.293029468, 24.749155153], [141.293034332, 24.749152018], [141.29302965, 24.749140351]]]}}, {"id": "41367", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341390649, 24.804442036], [141.341373709, 24.804429135], [141.341386368, 24.804446712], [141.341390649, 24.804442036]]]}}, {"id": "41368", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293527276, 24.750305622], [141.293541193, 24.750310477], [141.293541115, 24.750304964], [141.293527276, 24.750305622]]]}}, {"id": "41369", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291860259, 24.74822018], [141.291856122, 24.748236054], [141.291867601, 24.748234748], [141.291860259, 24.74822018]]]}}, {"id": "41370", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292580389, 24.748743153], [141.292594565, 24.748737441], [141.292586459, 24.748735694], [141.292580389, 24.748743153]]]}}, {"id": "41371", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.29323345, 24.749360613], [141.293218638, 24.749357378], [141.293220091, 24.749363252], [141.29323345, 24.749360613]]]}}, {"id": "41372", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378602179, 24.779551865], [141.378603411, 24.779542928], [141.378584514, 24.779543577], [141.378602179, 24.779551865]]]}}, {"id": "41373", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.290802594, 24.747842315], [141.290807497, 24.747831324], [141.290798003, 24.74783245], [141.290802594, 24.747842315]]]}}, {"id": "41374", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.341327315, 24.80413082], [141.34131214, 24.804119198], [141.341318288, 24.804134396], [141.341327315, 24.80413082]]]}}, {"id": "41375", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292283139, 24.748529135], [141.292294423, 24.748542279], [141.292296433, 24.748536604], [141.292283139, 24.748529135]]]}}, {"id": "41376", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287138314, 24.807074991], [141.287138936, 24.807088081], [141.287147678, 24.807081712], [141.287138314, 24.807074991]]]}}, {"id": "41377", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.284445175, 24.800393568], [141.284461219, 24.800390757], [141.284450947, 24.800387459], [141.284445175, 24.800393568]]]}}, {"id": "41378", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291315668, 24.74805573], [141.291327354, 24.748051721], [141.291317873, 24.748051045], [141.291315668, 24.74805573]]]}}, {"id": "41379", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293165746, 24.74927136], [141.293164241, 24.749257541], [141.293159339, 24.74926673], [141.293165746, 24.74927136]]]}}, {"id": "41380", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.37833537, 24.780586486], [141.378341712, 24.780601676], [141.37834642, 24.780591135], [141.37833537, 24.780586486]]]}}, {"id": "41381", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293643035, 24.751077631], [141.293641868, 24.751092162], [141.293646135, 24.751089387], [141.293643035, 24.751077631]]]}}, {"id": "41382", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287883748, 24.806635342], [141.287890143, 24.806622919], [141.287871725, 24.806627072], [141.287883748, 24.806635342]]]}}, {"id": "41383", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378493826, 24.77942773], [141.378496537, 24.779438937], [141.378502776, 24.779436613], [141.378493826, 24.77942773]]]}}, {"id": "41384", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293720791, 24.751225613], [141.293705901, 24.751236018], [141.293708664, 24.751238468], [141.293720791, 24.751225613]]]}}, {"id": "41385", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379932879, 24.779561441], [141.379944475, 24.779557613], [141.379932529, 24.779553586], [141.379932879, 24.779561441]]]}}, {"id": "41386", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379089844, 24.779801441], [141.379090195, 24.779789982], [141.379079403, 24.77979282], [141.379089844, 24.779801441]]]}}, {"id": "41387", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.3799293, 24.779566306], [141.379919676, 24.779573847], [141.37992965, 24.779575964], [141.3799293, 24.779566306]]]}}, {"id": "41388", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378898742, 24.779812387], [141.378886732, 24.779819559], [141.378892944, 24.77982509], [141.378898742, 24.779812387]]]}}, {"id": "41389", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378595655, 24.779393748], [141.378585499, 24.779385676], [141.378591466, 24.779400324], [141.378595655, 24.779393748]]]}}, {"id": "41390", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293282283, 24.749327072], [141.293285888, 24.749319054], [141.293274423, 24.749318009], [141.293282283, 24.749327072]]]}}, {"id": "41391", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378824578, 24.779871126], [141.378816732, 24.779858], [141.378813904, 24.779869369], [141.378824578, 24.779871126]]]}}, {"id": "41392", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293554695, 24.750299523], [141.293559209, 24.750287991], [141.293546952, 24.750288568], [141.293554695, 24.750299523]]]}}, {"id": "41393", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293655512, 24.750950937], [141.293665032, 24.750945568], [141.29365546, 24.750943532], [141.293655512, 24.750950937]]]}}, {"id": "41394", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.285043217, 24.754084505], [141.285026939, 24.754077027], [141.28503035, 24.754087153], [141.285043217, 24.754084505]]]}}, {"id": "41395", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304107134, 24.756125802], [141.304116563, 24.756136955], [141.304112957, 24.756127], [141.304107134, 24.756125802]]]}}, {"id": "41396", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.346758664, 24.77555773], [141.346746459, 24.775565081], [141.346767821, 24.775565351], [141.346758664, 24.77555773]]]}}, {"id": "41397", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293690324, 24.751142045], [141.293675811, 24.751137099], [141.293682698, 24.75114409], [141.293690324, 24.751142045]]]}}, {"id": "41398", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.304253424, 24.756328532], [141.304249079, 24.756343595], [141.304257147, 24.756332973], [141.304253424, 24.756328532]]]}}, {"id": "41399", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378347782, 24.780575703], [141.378346278, 24.780559622], [141.378339235, 24.780563207], [141.378347782, 24.780575703]]]}}, {"id": "41400", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28566716, 24.789840144], [141.28568, 24.789844991], [141.28568323, 24.789833631], [141.28566716, 24.789840144]]]}}, {"id": "41401", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291247147, 24.748004667], [141.291240402, 24.747991631], [141.291238846, 24.748003811], [141.291247147, 24.748004667]]]}}, {"id": "41402", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291569546, 24.748057198], [141.291555655, 24.748048198], [141.291555331, 24.748053162], [141.291569546, 24.748057198]]]}}, {"id": "41403", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.293501621, 24.750140108], [141.293509883, 24.750129856], [141.293500584, 24.750130171], [141.293501621, 24.750140108]]]}}, {"id": "41404", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28745415, 24.785366982], [141.28746655, 24.785377333], [141.287466641, 24.785362441], [141.28745415, 24.785366982]]]}}, {"id": "41405", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378994319, 24.779740649], [141.378999546, 24.779724144], [141.37899153, 24.779725649], [141.378994319, 24.779740649]]]}}, {"id": "41406", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.291701543, 24.748037063], [141.291700934, 24.748022072], [141.291694086, 24.74802664], [141.291701543, 24.748037063]]]}}, {"id": "41407", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.347754955, 24.776197306], [141.347751816, 24.776212279], [141.347758042, 24.776211856], [141.347754955, 24.776197306]]]}}, {"id": "41408", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292568392, 24.748558288], [141.292569351, 24.748544577], [141.292558444, 24.748551559], [141.292568392, 24.748558288]]]}}, {"id": "41409", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378893204, 24.779792234], [141.37888476, 24.779799333], [141.378895824, 24.779801631], [141.378893204, 24.779792234]]]}}, {"id": "41410", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378803645, 24.779586108], [141.378798262, 24.779595198], [141.378806874, 24.779593252], [141.378803645, 24.779586108]]]}}, {"id": "41411", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378978768, 24.779608405], [141.378985824, 24.779601396], [141.378974267, 24.779597468], [141.378978768, 24.779608405]]]}}, {"id": "41412", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379556135, 24.780612766], [141.379552607, 24.780604622], [141.379545435, 24.780615162], [141.379556135, 24.780612766]]]}}, {"id": "41413", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.28705166, 24.785193171], [141.287054189, 24.785184514], [141.287048119, 24.785191441], [141.28705166, 24.785193171]]]}}, {"id": "41414", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.378844228, 24.77983555], [141.378832062, 24.779837568], [141.378844397, 24.779842946], [141.378844228, 24.77983555]]]}}, {"id": "41415", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379072075, 24.780233198], [141.379061751, 24.780239739], [141.379068781, 24.780240315], [141.379072075, 24.780233198]]]}}, {"id": "41416", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.287335629, 24.785288775], [141.287326874, 24.785297946], [141.287337652, 24.785299532], [141.287335629, 24.785288775]]]}}, {"id": "41417", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.286326226, 24.79923909], [141.286337445, 24.799231468], [141.286327237, 24.799235577], [141.286326226, 24.79923909]]]}}, {"id": "41418", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.292783839, 24.748904009], [141.292786757, 24.748894901], [141.292777743, 24.748896216], [141.292783839, 24.748904009]]]}}, {"id": "41419", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379583632, 24.780610261], [141.379585979, 24.78059691], [141.37957607, 24.780599847], [141.379583632, 24.780610261]]]}}, {"id": "41420", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.2900193, 24.747407685], [141.290012244, 24.747397811], [141.290011582, 24.747408279], [141.2900193, 24.747407685]]]}}, {"id": "41421", "type": "Feature", "properties": {"N03_001": "東京都", "N03_002": null, "N03_003": null, "N03_004": "小笠原村", "N03_005": null, "N03_007": "13421"}, "geometry": {"type": "Polygon", "coordinates": [[[141.379601907, 24.780614126], [141.379592957, 24.780605333], [141.379590558, 24.780608937], [141.379601907, 24.780614126]]]}}, {"id": "41422", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.674480337, 35.483765198], [139.635507056, 35.514494748], [139.646726498, 35.533434721], [139.684914306, 35.539986081], [139.711456654, 35.490800856], [139.687975512, 35.495305126], [139.692800778, 35.481406387], [139.66841786, 35.467829414], [139.674480337, 35.483765198]]]}}, {"id": "41423", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673935473, 35.462287802], [139.692396978, 35.472012054], [139.684858106, 35.458626748], [139.707183061, 35.456678802], [139.693731284, 35.447862414], [139.673935473, 35.462287802]]]}}, {"id": "41424", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.712707393, 35.464253865], [139.714588431, 35.486045414], [139.72532834, 35.469796432], [139.712707393, 35.464253865]]]}}, {"id": "41425", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.71135131, 35.485753171], [139.710965694, 35.485433865], [139.710556524, 35.485399838], [139.71135131, 35.485753171]]]}}, {"id": "41426", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.707021699, 35.472303505], [139.707151193, 35.472271279], [139.707405357, 35.471877], [139.707021699, 35.472303505]]]}}, {"id": "41427", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.675870195, 35.455984838], [139.675760169, 35.456023532], [139.676031336, 35.456291613], [139.675870195, 35.455984838]]]}}, {"id": "41428", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.676983022, 35.458148027], [139.676764449, 35.457625919], [139.676713087, 35.457643171], [139.676983022, 35.458148027]]]}}, {"id": "41429", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "鶴見区", "N03_007": "14101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.671591219, 35.483327063], [139.671606498, 35.483385288], [139.67163332, 35.483346586], [139.671591219, 35.483327063]]]}}, {"id": "41430", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "神奈川区", "N03_007": "14102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.669191362, 35.477519694], [139.599273281, 35.468047721], [139.597139585, 35.483575586], [139.582781894, 35.471327027], [139.56787939, 35.497453838], [139.625303528, 35.489390892], [139.644465914, 35.505272171], [139.669191362, 35.477519694]]]}}, {"id": "41431", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "神奈川区", "N03_007": "14102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655961167, 35.470224081], [139.642128392, 35.468381135], [139.641832698, 35.471861], [139.655961167, 35.470224081]]]}}, {"id": "41432", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "神奈川区", "N03_007": "14102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.658264617, 35.460094505], [139.65808192, 35.460575054], [139.658298392, 35.460154054], [139.658264617, 35.460094505]]]}}, {"id": "41433", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "神奈川区", "N03_007": "14102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.65559083, 35.464087054], [139.65589703, 35.463685387], [139.655558807, 35.464070892], [139.65559083, 35.464087054]]]}}, {"id": "41434", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "神奈川区", "N03_007": "14102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655885058, 35.463673387], [139.656024384, 35.46358536], [139.655978197, 35.463556973], [139.655885058, 35.463673387]]]}}, {"id": "41435", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "西区", "N03_007": "14103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604548029, 35.467963973], [139.639376667, 35.458476135], [139.604396446, 35.443468721], [139.604548029, 35.467963973]]]}}, {"id": "41436", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.669110143, 35.402587171], [139.627753411, 35.427638], [139.634242088, 35.428482], [139.639785888, 35.432589279], [139.639044812, 35.433710559], [139.621666446, 35.438758721], [139.628361894, 35.454984252], [139.660280778, 35.441258802], [139.673121051, 35.450896748], [139.668545888, 35.440225279], [139.681499468, 35.441575721], [139.675346109, 35.43158836], [139.6783062, 35.430379532], [139.690603217, 35.439273721], [139.669110143, 35.402587171]]]}}, {"id": "41437", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.671262827, 35.401747171], [139.688877613, 35.412793919], [139.695190999, 35.407585306], [139.682371894, 35.393159054], [139.671262827, 35.401747171]]]}}, {"id": "41438", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.689000272, 35.443315306], [139.689185136, 35.443413613], [139.688300947, 35.442614973], [139.689000272, 35.443315306]]]}}, {"id": "41439", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.657952088, 35.454229342], [139.658060039, 35.45504945], [139.65784323, 35.45328209], [139.657952088, 35.454229342]]]}}, {"id": "41440", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673404475, 35.451530721], [139.674094864, 35.452650279], [139.673451777, 35.451507721], [139.673404475, 35.451530721]]]}}, {"id": "41441", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680779948, 35.425327225], [139.680670026, 35.42510164], [139.680591725, 35.425163559], [139.680779948, 35.425327225]]]}}, {"id": "41442", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.68012358, 35.425862559], [139.680061025, 35.425910333], [139.680273645, 35.425994081], [139.68012358, 35.425862559]]]}}, {"id": "41443", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681391388, 35.424730721], [139.681198755, 35.424692441], [139.681313307, 35.424791198], [139.681391388, 35.424730721]]]}}, {"id": "41444", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.651534877, 35.408695036], [139.651732724, 35.408711883], [139.651602477, 35.408626171], [139.651534877, 35.408695036]]]}}, {"id": "41445", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.648891051, 35.411623081], [139.648928106, 35.411542306], [139.648862802, 35.411611613], [139.648891051, 35.411623081]]]}}, {"id": "41446", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.648768885, 35.411546108], [139.648832996, 35.411481027], [139.648804306, 35.411469892], [139.648768885, 35.411546108]]]}}, {"id": "41447", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.681261414, 35.424630225], [139.681175772, 35.424659865], [139.681197445, 35.42468], [139.681261414, 35.424630225]]]}}, {"id": "41448", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "中区", "N03_007": "14104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680596057, 35.42514436], [139.68065406, 35.425100081], [139.680567886, 35.425130892], [139.680596057, 35.42514436]]]}}, {"id": "41449", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "南区", "N03_007": "14105"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605191582, 35.408071838], [139.569946978, 35.425774333], [139.588715837, 35.441771802], [139.639785888, 35.432589279], [139.605191582, 35.408071838]]]}}, {"id": "41450", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "保土ケ谷区", "N03_007": "14106"}, "geometry": {"type": "Polygon", "coordinates": [[[139.553307639, 35.497991694], [139.582781894, 35.471327027], [139.601306394, 35.480195559], [139.603537134, 35.438742468], [139.575130921, 35.431023667], [139.545171556, 35.449197694], [139.568856498, 35.460130108], [139.553307639, 35.497991694]]]}}, {"id": "41451", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "磯子区", "N03_007": "14107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605654695, 35.412115613], [139.62728655, 35.427942225], [139.642392283, 35.411600523], [139.627716861, 35.409140667], [139.645481582, 35.402979279], [139.626023307, 35.401636802], [139.638371064, 35.390921559], [139.59002297, 35.354734946], [139.587957808, 35.385606252], [139.606433476, 35.386649108], [139.605654695, 35.412115613]]]}}, {"id": "41452", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "磯子区", "N03_007": "14107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.641575694, 35.402035505], [139.643440636, 35.401830306], [139.641721608, 35.401506613], [139.641575694, 35.402035505]]]}}, {"id": "41453", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "磯子区", "N03_007": "14107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.633634189, 35.393907252], [139.633584812, 35.393811694], [139.633547445, 35.393869613], [139.633634189, 35.393907252]]]}}, {"id": "41454", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.624456278, 35.318667532], [139.596222335, 35.316421441], [139.588785499, 35.349823802], [139.6456807, 35.390539225], [139.656953333, 35.341934865], [139.622333554, 35.331944171], [139.624456278, 35.318667532]]]}}, {"id": "41455", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.634265837, 35.323546532], [139.629765473, 35.329026027], [139.639192672, 35.328947333], [139.634265837, 35.323546532]]]}}, {"id": "41456", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.646218223, 35.336698532], [139.642205357, 35.338125892], [139.649688755, 35.336740198], [139.646218223, 35.336698532]]]}}, {"id": "41457", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.647191414, 35.333842613], [139.648733113, 35.335385333], [139.648803256, 35.335836613], [139.648807639, 35.334687198], [139.647191414, 35.333842613]]]}}, {"id": "41458", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.648475863, 35.375566946], [139.648277419, 35.375527613], [139.652915162, 35.379260973], [139.648475863, 35.375566946]]]}}, {"id": "41459", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.65832725, 35.382959586], [139.65525061, 35.385417919], [139.654502827, 35.384784306], [139.652651336, 35.386268694], [139.655242166, 35.385446135], [139.65832725, 35.382959586]]]}}, {"id": "41460", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.658413307, 35.381794441], [139.656688223, 35.379805694], [139.653366809, 35.378698279], [139.658413307, 35.381794441]]]}}, {"id": "41461", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.635801427, 35.323438847], [139.635960558, 35.323898919], [139.636837977, 35.324625396], [139.635801427, 35.323438847]]]}}, {"id": "41462", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.653763217, 35.380011333], [139.65410428, 35.380226279], [139.653343671, 35.379662225], [139.653763217, 35.380011333]]]}}, {"id": "41463", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.654493281, 35.380273802], [139.654983061, 35.380172865], [139.654485668, 35.380224586], [139.654493281, 35.380273802]]]}}, {"id": "41464", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.636893333, 35.324701189], [139.63700917, 35.324934559], [139.637252685, 35.325122378], [139.636893333, 35.324701189]]]}}, {"id": "41465", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.634460778, 35.322058054], [139.63450345, 35.322169], [139.634671025, 35.322275775], [139.634460778, 35.322058054]]]}}, {"id": "41466", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "金沢区", "N03_007": "14108"}, "geometry": {"type": "Polygon", "coordinates": [[[139.637443995, 35.325309577], [139.637563748, 35.325484667], [139.637735214, 35.325644667], [139.637443995, 35.325309577]]]}}, {"id": "41467", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "港北区", "N03_007": "14109"}, "geometry": {"type": "Polygon", "coordinates": [[[139.625053528, 35.489502], [139.583593891, 35.511380081], [139.602904942, 35.51682564], [139.594858521, 35.536376694], [139.613269222, 35.560967225], [139.648424332, 35.559766387], [139.655542555, 35.538832225], [139.625053528, 35.489502]]]}}, {"id": "41468", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "戸塚区", "N03_007": "14110"}, "geometry": {"type": "Polygon", "coordinates": [[[139.518723839, 35.361566919], [139.485732412, 35.359514], [139.484038664, 35.389728279], [139.519275694, 35.405278505], [139.526814643, 35.446564919], [139.57198022, 35.437804306], [139.547639494, 35.377568613], [139.519630999, 35.381023775], [139.518723839, 35.361566919]]]}}, {"id": "41469", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "港南区", "N03_007": "14111"}, "geometry": {"type": "Polygon", "coordinates": [[[139.553127808, 35.384430306], [139.556633359, 35.420265279], [139.608931634, 35.406001586], [139.597358418, 35.401453973], [139.606363943, 35.38656664], [139.588470973, 35.386931919], [139.591237588, 35.362845306], [139.553127808, 35.384430306]]]}}, {"id": "41470", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "旭区", "N03_007": "14112"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48724725, 35.49978836], [139.553307639, 35.497991694], [139.566389222, 35.455574468], [139.5107893, 35.445829532], [139.48724725, 35.49978836]]]}}, {"id": "41471", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "緑区", "N03_007": "14113"}, "geometry": {"type": "Polygon", "coordinates": [[[139.585284137, 35.513131414], [139.561041829, 35.492104225], [139.476972892, 35.511396081], [139.492963061, 35.538412198], [139.541318664, 35.536439171], [139.553495473, 35.511068], [139.585284137, 35.513131414]]]}}, {"id": "41472", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "瀬谷区", "N03_007": "14114"}, "geometry": {"type": "Polygon", "coordinates": [[[139.50236428, 35.434853414], [139.47419917, 35.456929279], [139.467722529, 35.502373306], [139.488375058, 35.502594171], [139.50231572, 35.478822559], [139.50236428, 35.434853414]]]}}, {"id": "41473", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "栄区", "N03_007": "14115"}, "geometry": {"type": "Polygon", "coordinates": [[[139.516308638, 35.373226081], [139.555076329, 35.38490236], [139.559817756, 35.369904775], [139.592605331, 35.361889468], [139.587858521, 35.336518532], [139.546480415, 35.362741468], [139.530601777, 35.354147081], [139.516308638, 35.373226081]]]}}, {"id": "41474", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "泉区", "N03_007": "14116"}, "geometry": {"type": "Polygon", "coordinates": [[[139.484269805, 35.387366973], [139.480665227, 35.448617613], [139.503578586, 35.434797559], [139.516048586, 35.44893764], [139.530895279, 35.448674721], [139.519095499, 35.405091613], [139.484269805, 35.387366973]]]}}, {"id": "41475", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "青葉区", "N03_007": "14117"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468291777, 35.563296027], [139.521146615, 35.570766054], [139.526570363, 35.592504387], [139.56786061, 35.57144064], [139.551695084, 35.53968], [139.522269689, 35.527451108], [139.484531634, 35.536097721], [139.468291777, 35.563296027]]]}}, {"id": "41476", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横浜市", "N03_005": "都筑区", "N03_007": "14118"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56786061, 35.57144064], [139.611500895, 35.564390559], [139.594858521, 35.536376694], [139.602244968, 35.516290946], [139.552528003, 35.512065802], [139.541318664, 35.536439171], [139.56786061, 35.57144064]]]}}, {"id": "41477", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.705401673, 35.500000225], [139.687770584, 35.525087198], [139.726563281, 35.543574865], [139.75685358, 35.544501748], [139.801384514, 35.512153649], [139.776223411, 35.509556865], [139.768977808, 35.522915694], [139.751727108, 35.533283225], [139.737863645, 35.51471336], [139.748771141, 35.506844198], [139.733812088, 35.500603802], [139.731767445, 35.515563946], [139.731368106, 35.499063613], [139.705401673, 35.500000225]]]}}, {"id": "41478", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.745610584, 35.485013252], [139.736283281, 35.494453667], [139.761188586, 35.505732252], [139.771203113, 35.506218252], [139.77711297, 35.505030108], [139.784427691, 35.502029468], [139.745610584, 35.485013252]]]}}, {"id": "41479", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.71609083, 35.483846054], [139.734480571, 35.494826396], [139.74184358, 35.477025135], [139.72532834, 35.469796432], [139.71609083, 35.483846054]]]}}, {"id": "41480", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.753828275, 35.508575414], [139.75695978, 35.526658892], [139.76603275, 35.513563586], [139.753828275, 35.508575414]]]}}, {"id": "41481", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.835015642, 35.492212414], [139.834578949, 35.490439919], [139.833655914, 35.491521865], [139.835015642, 35.492212414]]]}}, {"id": "41482", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.750615136, 35.480892694], [139.781995084, 35.494886387], [139.783135447, 35.494862441], [139.750615136, 35.480892694]]]}}, {"id": "41483", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.731194643, 35.503080559], [139.731282776, 35.503033225], [139.731201556, 35.503016198], [139.731194643, 35.503080559]]]}}, {"id": "41484", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "川崎区", "N03_007": "14131"}, "geometry": {"type": "Polygon", "coordinates": [[[139.759680285, 35.51012609], [139.759706044, 35.510168468], [139.759718859, 35.510136477], [139.759680285, 35.51012609]]]}}, {"id": "41485", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "幸区", "N03_007": "14132"}, "geometry": {"type": "Polygon", "coordinates": [[[139.658197134, 35.557991946], [139.704178586, 35.551825748], [139.690360856, 35.526029946], [139.684914306, 35.539986081], [139.654181997, 35.540353892], [139.658197134, 35.557991946]]]}}, {"id": "41486", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "中原区", "N03_007": "14133"}, "geometry": {"type": "Polygon", "coordinates": [[[139.684704423, 35.558376892], [139.63333345, 35.561398613], [139.626676641, 35.594496081], [139.664492827, 35.589522441], [139.684704423, 35.558376892]]]}}, {"id": "41487", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "高津区", "N03_007": "14134"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613284501, 35.561209441], [139.619732672, 35.579364973], [139.586656031, 35.597739108], [139.596623061, 35.618498838], [139.643243917, 35.59815636], [139.626601362, 35.594354973], [139.639699883, 35.565571108], [139.613284501, 35.561209441]]]}}, {"id": "41488", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "多摩区", "N03_007": "14135"}, "geometry": {"type": "Polygon", "coordinates": [[[139.514580272, 35.624727387], [139.517272802, 35.630515973], [139.523492283, 35.632394027], [139.524283191, 35.641528441], [139.530887639, 35.641958441], [139.600763307, 35.612554946], [139.536816809, 35.595849919], [139.514580272, 35.624727387]], [[139.518175032, 35.629746802], [139.517081971, 35.629407946], [139.518305577, 35.629254613], [139.518175032, 35.629746802]]]}}, {"id": "41489", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "宮前区", "N03_007": "14136"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570310026, 35.571183865], [139.555881777, 35.587344387], [139.526570363, 35.592504387], [139.524980947, 35.594043532], [139.587498275, 35.606989387], [139.62041153, 35.574823892], [139.570310026, 35.571183865]]]}}, {"id": "41490", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "麻生区", "N03_007": "14137"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505502996, 35.574776892], [139.466048949, 35.609500505], [139.453441946, 35.604487721], [139.453017302, 35.618558027], [139.489585642, 35.604312171], [139.501128003, 35.621741306], [139.523505551, 35.621859333], [139.529095863, 35.582247441], [139.505502996, 35.574776892]]]}}, {"id": "41491", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "川崎市", "N03_005": "麻生区", "N03_007": "14137"}, "geometry": {"type": "Polygon", "coordinates": [[[139.470305422, 35.570357973], [139.476385227, 35.581940775], [139.489847198, 35.584228559], [139.483748807, 35.571957721], [139.470305422, 35.570357973]]]}}, {"id": "41492", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "相模原市", "N03_005": "緑区", "N03_007": "14151"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162833917, 35.474549225], [139.066038223, 35.509408225], [139.104000661, 35.52678436], [139.129178975, 35.563874946], [139.134413671, 35.61650964], [139.117168223, 35.65453764], [139.131913333, 35.672377081], [139.161603671, 35.667906586], [139.17908642, 35.645572468], [139.211461219, 35.649116667], [139.252223671, 35.601667333], [139.285248418, 35.613388676], [139.361359754, 35.599050495], [139.341681582, 35.579178532], [139.353981946, 35.566091279], [139.336983087, 35.573301748], [139.322783333, 35.559037054], [139.325009728, 35.540939775], [139.294016498, 35.556571198], [139.253548171, 35.548456532], [139.217647173, 35.53273764], [139.162833917, 35.474549225]]]}}, {"id": "41493", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "相模原市", "N03_005": "中央区", "N03_007": "14152"}, "geometry": {"type": "Polygon", "coordinates": [[[139.32484345, 35.544232559], [139.336983087, 35.573301748], [139.353981946, 35.566091279], [139.341681582, 35.579178532], [139.361852425, 35.599214892], [139.418193671, 35.561765802], [139.355124086, 35.526904387], [139.32484345, 35.544232559]]]}}, {"id": "41494", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "相模原市", "N03_005": "中央区", "N03_007": "14152"}, "geometry": {"type": "Polygon", "coordinates": [[[139.380930752, 35.590292081], [139.380817173, 35.590502784], [139.381146355, 35.59053109], [139.380930752, 35.590292081]]]}}, {"id": "41495", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "相模原市", "N03_005": "南区", "N03_007": "14153"}, "geometry": {"type": "Polygon", "coordinates": [[[139.37435297, 35.493900171], [139.375390052, 35.517199559], [139.355124086, 35.526904387], [139.403142503, 35.559397919], [139.458316978, 35.527989468], [139.37435297, 35.493900171]]]}}, {"id": "41496", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.581379053, 35.254545667], [139.640767224, 35.262660306], [139.609433995, 35.312501748], [139.640732387, 35.330373468], [139.661224578, 35.322259532], [139.633523385, 35.29564236], [139.660803774, 35.28288236], [139.673967302, 35.300577892], [139.690994864, 35.266484225], [139.74701083, 35.253491027], [139.716680389, 35.246119721], [139.729482802, 35.23282336], [139.71339192, 35.223860441], [139.720057367, 35.22199936], [139.715292166, 35.21734436], [139.72276345, 35.218278559], [139.725108029, 35.216360252], [139.725059001, 35.211341505], [139.664782698, 35.193060189], [139.655218366, 35.209746387], [139.635942218, 35.206145865], [139.615716654, 35.189934144], [139.59889358, 35.195741108], [139.626945914, 35.216734802], [139.581379053, 35.254545667]]]}}, {"id": "41497", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.65025297, 35.294279919], [139.651842412, 35.307418441], [139.656958521, 35.301990892], [139.65025297, 35.294279919]]]}}, {"id": "41498", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.693030272, 35.284228667], [139.694940856, 35.288037694], [139.696440311, 35.286819387], [139.693030272, 35.284228667]]]}}, {"id": "41499", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606146161, 35.221053027], [139.602366135, 35.22112836], [139.601630636, 35.221918973], [139.603809689, 35.223185946], [139.606146161, 35.221053027]]]}}, {"id": "41500", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597543606, 35.224044946], [139.599266641, 35.224331252], [139.599964332, 35.223515441], [139.597543606, 35.224044946]]]}}, {"id": "41501", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.642392192, 35.298471135], [139.641499313, 35.297557423], [139.642741219, 35.299068333], [139.642392192, 35.298471135]]]}}, {"id": "41502", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613154086, 35.221005306], [139.612622387, 35.220280225], [139.612663281, 35.221084748], [139.613154086, 35.221005306]]]}}, {"id": "41503", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663886939, 35.324305838], [139.669487004, 35.322483838], [139.671349364, 35.321569532], [139.663886939, 35.324305838]]]}}, {"id": "41504", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602471855, 35.227197586], [139.602012724, 35.22895064], [139.602178106, 35.22897764], [139.602471855, 35.227197586]]]}}, {"id": "41505", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.724317951, 35.210835667], [139.727652283, 35.211], [139.727661699, 35.210927694], [139.724317951, 35.210835667]]]}}, {"id": "41506", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607268716, 35.219233973], [139.607230117, 35.219176468], [139.605870778, 35.220073279], [139.607268716, 35.219233973]]]}}, {"id": "41507", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.689799831, 35.272578108], [139.688213528, 35.274211865], [139.689881946, 35.272636613], [139.689799831, 35.272578108]]]}}, {"id": "41508", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.675016109, 35.319572838], [139.67504869, 35.319617252], [139.675329611, 35.31910036], [139.675016109, 35.319572838]]]}}, {"id": "41509", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.577599339, 35.253304477], [139.577337367, 35.252857883], [139.576581479, 35.253048586], [139.577599339, 35.253304477]]]}}, {"id": "41510", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.724501089, 35.265422306], [139.72602489, 35.265249414], [139.724591725, 35.265116613], [139.724501089, 35.265422306]]]}}, {"id": "41511", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604241634, 35.193745532], [139.604605006, 35.193745694], [139.60429939, 35.193312586], [139.604241634, 35.193745532]]]}}, {"id": "41512", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.722682412, 35.210885387], [139.724131751, 35.210866333], [139.722679442, 35.210809946], [139.722682412, 35.210885387]]]}}, {"id": "41513", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604623554, 35.194333721], [139.605015616, 35.194327441], [139.604737886, 35.194173946], [139.604623554, 35.194333721]]]}}, {"id": "41514", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.584622192, 35.199186135], [139.584375253, 35.198876135], [139.584334137, 35.199090306], [139.584622192, 35.199186135]]]}}, {"id": "41515", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609957302, 35.210268919], [139.609110052, 35.210504414], [139.609092672, 35.21067936], [139.609957302, 35.210268919]]]}}, {"id": "41516", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576442283, 35.247988748], [139.57695917, 35.247956775], [139.576640506, 35.247821252], [139.576442283, 35.247988748]]]}}, {"id": "41517", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601356368, 35.231633495], [139.601566498, 35.230561802], [139.60126249, 35.231616459], [139.601356368, 35.231633495]]]}}, {"id": "41518", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.722667082, 35.210776667], [139.722346252, 35.210864973], [139.72266917, 35.210863468], [139.722667082, 35.210776667]]]}}, {"id": "41519", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604802944, 35.201258775], [139.60453511, 35.201403108], [139.604658106, 35.201563441], [139.604802944, 35.201258775]]]}}, {"id": "41520", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602133671, 35.198427865], [139.601945577, 35.197955054], [139.601649585, 35.19804264], [139.602133671, 35.198427865]]]}}, {"id": "41521", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604525058, 35.203853586], [139.604759339, 35.203529694], [139.604426887, 35.203297198], [139.604525058, 35.203853586]]]}}, {"id": "41522", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738328106, 35.248208171], [139.738268638, 35.248505306], [139.738655499, 35.248253387], [139.738328106, 35.248208171]]]}}, {"id": "41523", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.647687224, 35.291666667], [139.647644838, 35.291735802], [139.648523385, 35.291840279], [139.647687224, 35.291666667]]]}}, {"id": "41524", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615138223, 35.171541559], [139.614871284, 35.171242946], [139.614823774, 35.171276], [139.615138223, 35.171541559]]]}}, {"id": "41525", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59757214, 35.22493436], [139.597348444, 35.224713802], [139.597248716, 35.224967721], [139.59757214, 35.22493436]]]}}, {"id": "41526", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602279468, 35.231633649], [139.601967588, 35.232544387], [139.602348249, 35.231650324], [139.602279468, 35.231633649]]]}}, {"id": "41527", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.698854086, 35.265655685], [139.6984138, 35.266072676], [139.69892249, 35.265722514], [139.698854086, 35.265655685]]]}}, {"id": "41528", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.746206783, 35.252521054], [139.746495966, 35.252240838], [139.746065136, 35.252512838], [139.746206783, 35.252521054]]]}}, {"id": "41529", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.664130169, 35.326349081], [139.664417691, 35.325494198], [139.664059144, 35.326328613], [139.664130169, 35.326349081]]]}}, {"id": "41530", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.67950214, 35.280405468], [139.680490895, 35.279687279], [139.679464086, 35.280362613], [139.67950214, 35.280405468]]]}}, {"id": "41531", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605296005, 35.204257081], [139.605419754, 35.204502333], [139.605361725, 35.204044919], [139.605296005, 35.204257081]]]}}, {"id": "41532", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734822192, 35.243354802], [139.734643995, 35.243061333], [139.734540337, 35.243181775], [139.734822192, 35.243354802]]]}}, {"id": "41533", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.689752892, 35.284725387], [139.689766667, 35.284959054], [139.689964449, 35.284759694], [139.689752892, 35.284725387]]]}}, {"id": "41534", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604846744, 35.199378081], [139.604973696, 35.199580171], [139.604982335, 35.19939636], [139.604846744, 35.199378081]]]}}, {"id": "41535", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739376135, 35.261699414], [139.739315084, 35.261935], [139.739413281, 35.261785441], [139.739376135, 35.261699414]]]}}, {"id": "41536", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73536952, 35.264445694], [139.735999689, 35.263742], [139.735347795, 35.264423144], [139.73536952, 35.264445694]]]}}, {"id": "41537", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607888366, 35.191502667], [139.608142114, 35.191388468], [139.607912581, 35.191275973], [139.607888366, 35.191502667]]]}}, {"id": "41538", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588797665, 35.247339198], [139.588923696, 35.247196027], [139.588810389, 35.247162892], [139.588797665, 35.247339198]]]}}, {"id": "41539", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735452503, 35.212144441], [139.735671751, 35.212320027], [139.735683865, 35.212298414], [139.735452503, 35.212144441]]]}}, {"id": "41540", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608433411, 35.209646252], [139.608525966, 35.209775333], [139.608564527, 35.209653613], [139.608433411, 35.209646252]]]}}, {"id": "41541", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.634455447, 35.32206064], [139.634529754, 35.322044171], [139.634477004, 35.322038919], [139.634455447, 35.32206064]]]}}, {"id": "41542", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733937613, 35.265278802], [139.733950661, 35.265373721], [139.734010947, 35.265254892], [139.733937613, 35.265278802]]]}}, {"id": "41543", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739844332, 35.250204027], [139.739743606, 35.250080919], [139.739645136, 35.250280505], [139.739844332, 35.250204027]]]}}, {"id": "41544", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.690564968, 35.19676336], [139.690510246, 35.196971414], [139.690599416, 35.196915027], [139.690564968, 35.19676336]]]}}, {"id": "41545", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599280804, 35.193976108], [139.599427276, 35.193868865], [139.599227639, 35.193835838], [139.599280804, 35.193976108]]]}}, {"id": "41546", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608843191, 35.210611919], [139.608737588, 35.210793], [139.608904423, 35.210632667], [139.608843191, 35.210611919]]]}}, {"id": "41547", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609333113, 35.210392414], [139.609280778, 35.210248], [139.609230661, 35.210384027], [139.609333113, 35.210392414]]]}}, {"id": "41548", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735051388, 35.212044586], [139.735214916, 35.212151081], [139.735173645, 35.212026586], [139.735051388, 35.212044586]]]}}, {"id": "41549", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608618003, 35.191083225], [139.608170661, 35.191150973], [139.608452581, 35.191140505], [139.608618003, 35.191083225]]]}}, {"id": "41550", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.746360804, 35.254200802], [139.746254695, 35.254354613], [139.746429364, 35.254218613], [139.746360804, 35.254200802]]]}}, {"id": "41551", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.688961284, 35.283581135], [139.688867717, 35.283518838], [139.688788975, 35.283669468], [139.688961284, 35.283581135]]]}}, {"id": "41552", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.692531673, 35.285475838], [139.692224254, 35.285366667], [139.692210804, 35.285440865], [139.692531673, 35.285475838]]]}}, {"id": "41553", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663203411, 35.328320892], [139.663154695, 35.328626505], [139.663273333, 35.328340279], [139.663203411, 35.328320892]]]}}, {"id": "41554", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732523087, 35.262779027], [139.73239511, 35.26299664], [139.732568366, 35.262779694], [139.732523087, 35.262779027]]]}}, {"id": "41555", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616830752, 35.179588198], [139.616841582, 35.179425135], [139.616717134, 35.179451252], [139.616830752, 35.179588198]]]}}, {"id": "41556", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.63427978, 35.297015505], [139.634122866, 35.296796279], [139.63406358, 35.296849198], [139.63427978, 35.297015505]]]}}, {"id": "41557", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.690698444, 35.284159306], [139.69073869, 35.28427764], [139.690785499, 35.284177973], [139.690698444, 35.284159306]]]}}, {"id": "41558", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.745649274, 35.252841468], [139.745708275, 35.252658252], [139.745624669, 35.252842198], [139.745649274, 35.252841468]]]}}, {"id": "41559", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728682438, 35.225195865], [139.728501997, 35.225318387], [139.728442387, 35.225458171], [139.728682438, 35.225195865]]]}}, {"id": "41560", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605084228, 35.200503694], [139.604989053, 35.20064236], [139.605025966, 35.200754838], [139.605084228, 35.200503694]]]}}, {"id": "41561", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.654496589, 35.285573865], [139.654274968, 35.285707586], [139.654550078, 35.28563364], [139.654496589, 35.285573865]]]}}, {"id": "41562", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7393338, 35.249613919], [139.739159559, 35.249483252], [139.739199494, 35.249642667], [139.7393338, 35.249613919]]]}}, {"id": "41563", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604932698, 35.204134775], [139.605000052, 35.204322586], [139.605014864, 35.204090333], [139.604932698, 35.204134775]]]}}, {"id": "41564", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.650359922, 35.288423946], [139.65055214, 35.288602802], [139.65044144, 35.288394775], [139.650359922, 35.288423946]]]}}, {"id": "41565", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.654421894, 35.284987387], [139.654712218, 35.284996279], [139.654688716, 35.284926748], [139.654421894, 35.284987387]]]}}, {"id": "41566", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603572866, 35.203265387], [139.603696278, 35.203074613], [139.6036162, 35.202894081], [139.603572866, 35.203265387]]]}}, {"id": "41567", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61692856, 35.187202054], [139.616976057, 35.187078171], [139.616833839, 35.187075667], [139.61692856, 35.187202054]]]}}, {"id": "41568", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.651364942, 35.28796564], [139.651235499, 35.288174135], [139.651426498, 35.288015333], [139.651364942, 35.28796564]]]}}, {"id": "41569", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739584163, 35.249597802], [139.739562088, 35.249499171], [139.739511336, 35.249576108], [139.739584163, 35.249597802]]]}}, {"id": "41570", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.634456355, 35.297472802], [139.634208521, 35.297563171], [139.634491051, 35.297536775], [139.634456355, 35.297472802]]]}}, {"id": "41571", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.745885837, 35.253180135], [139.745955447, 35.253032892], [139.745846835, 35.253170838], [139.745885837, 35.253180135]]]}}, {"id": "41572", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.633524306, 35.299203081], [139.633477173, 35.298973414], [139.633401414, 35.299005027], [139.633524306, 35.299203081]]]}}, {"id": "41573", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738136031, 35.262119505], [139.737880026, 35.262137865], [139.737867134, 35.262169135], [139.738136031, 35.262119505]]]}}, {"id": "41574", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610359339, 35.210380171], [139.610458975, 35.21061264], [139.610547471, 35.210469468], [139.610359339, 35.210380171]]]}}, {"id": "41575", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603769248, 35.203492027], [139.603792866, 35.203260387], [139.603722827, 35.203123171], [139.603769248, 35.203492027]]]}}, {"id": "41576", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.634514747, 35.297199135], [139.634379222, 35.296996559], [139.63432083, 35.297046468], [139.634514747, 35.297199135]]]}}, {"id": "41577", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602280778, 35.220581838], [139.602410947, 35.220627613], [139.60245655, 35.220583532], [139.602280778, 35.220581838]]]}}, {"id": "41578", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602323943, 35.220700108], [139.602447445, 35.220731973], [139.602625811, 35.220624865], [139.602323943, 35.220700108]]]}}, {"id": "41579", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603864527, 35.203590721], [139.603967276, 35.20368764], [139.603913411, 35.203499694], [139.603864527, 35.203590721]]]}}, {"id": "41580", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732851505, 35.266320135], [139.732936835, 35.266190946], [139.73280297, 35.266279279], [139.732851505, 35.266320135]]]}}, {"id": "41581", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.691539416, 35.196965865], [139.691642477, 35.196853081], [139.69153275, 35.196909468], [139.691539416, 35.196965865]]]}}, {"id": "41582", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.685557082, 35.275153252], [139.68577786, 35.274943387], [139.685519001, 35.275114532], [139.685557082, 35.275153252]]]}}, {"id": "41583", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601883969, 35.222263333], [139.601790947, 35.222289135], [139.601816939, 35.222385532], [139.601883969, 35.222263333]]]}}, {"id": "41584", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609307471, 35.208327532], [139.609250169, 35.208204468], [139.609198106, 35.208360414], [139.609307471, 35.208327532]]]}}, {"id": "41585", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663924475, 35.326659694], [139.663866693, 35.326939667], [139.663978223, 35.326674919], [139.663924475, 35.326659694]]]}}, {"id": "41586", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600675136, 35.193851252], [139.60066642, 35.193755135], [139.600565162, 35.193759081], [139.600675136, 35.193851252]]]}}, {"id": "41587", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734815032, 35.243647775], [139.73498214, 35.243489532], [139.734773995, 35.243503414], [139.734815032, 35.243647775]]]}}, {"id": "41588", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619330726, 35.175942108], [139.619351556, 35.175822667], [139.619309883, 35.175902387], [139.619330726, 35.175942108]]]}}, {"id": "41589", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.677881025, 35.280622441], [139.677612607, 35.28070936], [139.677636939, 35.280760054], [139.677881025, 35.280622441]]]}}, {"id": "41590", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.716625162, 35.22744736], [139.716756783, 35.227591198], [139.716840389, 35.227596414], [139.716625162, 35.22744736]]]}}, {"id": "41591", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.617567393, 35.172588505], [139.617549883, 35.172459613], [139.617507393, 35.172542387], [139.617567393, 35.172588505]]]}}, {"id": "41592", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602503839, 35.222353865], [139.602262049, 35.222424613], [139.602266887, 35.222460946], [139.602503839, 35.222353865]]]}}, {"id": "41593", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605522724, 35.205656441], [139.605655162, 35.205626225], [139.605649364, 35.205581333], [139.605522724, 35.205656441]]]}}, {"id": "41594", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.731190363, 35.266196171], [139.731291556, 35.266044252], [139.731151505, 35.26614564], [139.731190363, 35.266196171]]]}}, {"id": "41595", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.696382438, 35.287294306], [139.696257328, 35.287352919], [139.696332387, 35.287382135], [139.696382438, 35.287294306]]]}}, {"id": "41596", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605251582, 35.200582081], [139.60518428, 35.200421865], [139.60517061, 35.200591387], [139.605251582, 35.200582081]]]}}, {"id": "41597", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608830441, 35.210571333], [139.608697302, 35.210494919], [139.608669144, 35.210600865], [139.608830441, 35.210571333]]]}}, {"id": "41598", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602313385, 35.220940135], [139.602437808, 35.220993279], [139.602472529, 35.220955027], [139.602313385, 35.220940135]]]}}, {"id": "41599", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605606057, 35.206146279], [139.605477276, 35.206276919], [139.605478859, 35.206386171], [139.605606057, 35.206146279]]]}}, {"id": "41600", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613792283, 35.190572387], [139.6138707, 35.190651586], [139.613932114, 35.190605], [139.613792283, 35.190572387]]]}}, {"id": "41601", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.6169107, 35.167880198], [139.617054034, 35.167888252], [139.617004306, 35.16783436], [139.6169107, 35.167880198]]]}}, {"id": "41602", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.662239948, 35.284765748], [139.662207224, 35.284798532], [139.662492776, 35.284935775], [139.662239948, 35.284765748]]]}}, {"id": "41603", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592635331, 35.244128586], [139.592816226, 35.244156892], [139.592743891, 35.244057135], [139.592635331, 35.244128586]]]}}, {"id": "41604", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601900558, 35.198456532], [139.601972114, 35.198358586], [139.601834773, 35.198257802], [139.601900558, 35.198456532]]]}}, {"id": "41605", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604548301, 35.220624802], [139.60476511, 35.220598721], [139.604837108, 35.220532973], [139.604548301, 35.220624802]]]}}, {"id": "41606", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591930026, 35.244564081], [139.59205655, 35.244588694], [139.592047393, 35.244489865], [139.591930026, 35.244564081]]]}}, {"id": "41607", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.6168207, 35.169361559], [139.616955966, 35.169297946], [139.616826809, 35.169290721], [139.6168207, 35.169361559]]]}}, {"id": "41608", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619152387, 35.175953505], [139.619187108, 35.175826279], [139.619138495, 35.175845441], [139.619152387, 35.175953505]]]}}, {"id": "41609", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613560246, 35.190495081], [139.613710389, 35.190525198], [139.613597782, 35.190425838], [139.613560246, 35.190495081]]]}}, {"id": "41610", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60175939, 35.221218054], [139.601924864, 35.221247225], [139.601934916, 35.221189027], [139.60175939, 35.221218054]]]}}, {"id": "41611", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.617169637, 35.179683748], [139.617106031, 35.179564306], [139.617074358, 35.179690135], [139.617169637, 35.179683748]]]}}, {"id": "41612", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598705616, 35.195393225], [139.598738392, 35.195487946], [139.598797134, 35.195446694], [139.598705616, 35.195393225]]]}}, {"id": "41613", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619381829, 35.175608225], [139.619261284, 35.175649892], [139.61937489, 35.175669054], [139.619381829, 35.175608225]]]}}, {"id": "41614", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729302503, 35.266123694], [139.729081479, 35.266198414], [139.729089339, 35.266241054], [139.729302503, 35.266123694]]]}}, {"id": "41615", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604181634, 35.203616027], [139.604140726, 35.20371664], [139.60418144, 35.203716441], [139.604181634, 35.203616027]]]}}, {"id": "41616", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743381894, 35.259168171], [139.743475188, 35.259268748], [139.743561725, 35.259228613], [139.743381894, 35.259168171]]]}}, {"id": "41617", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616661803, 35.169537387], [139.616782088, 35.169562946], [139.616770415, 35.169500721], [139.616661803, 35.169537387]]]}}, {"id": "41618", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.744403281, 35.251677279], [139.744270726, 35.251684225], [139.744334384, 35.251779559], [139.744403281, 35.251677279]]]}}, {"id": "41619", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609521089, 35.208055532], [139.609458833, 35.208006081], [139.6094693, 35.208076252], [139.609521089, 35.208055532]]]}}, {"id": "41620", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739458716, 35.249449865], [139.739335473, 35.249410919], [139.739369079, 35.249515333], [139.739458716, 35.249449865]]]}}, {"id": "41621", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604904254, 35.201279135], [139.604865279, 35.201152694], [139.604882244, 35.201289198], [139.604904254, 35.201279135]]]}}, {"id": "41622", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601334747, 35.221552865], [139.601155305, 35.221570919], [139.601118223, 35.221629532], [139.601334747, 35.221552865]]]}}, {"id": "41623", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732480726, 35.267438333], [139.732525914, 35.267580081], [139.732581245, 35.267557054], [139.732480726, 35.267438333]]]}}, {"id": "41624", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604743696, 35.204293802], [139.604784773, 35.204131613], [139.604639559, 35.204255559], [139.604743696, 35.204293802]]]}}, {"id": "41625", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610964475, 35.210397225], [139.61121655, 35.210393721], [139.611099585, 35.210356559], [139.610964475, 35.210397225]]]}}, {"id": "41626", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607918054, 35.191919892], [139.608067004, 35.191944135], [139.6081162, 35.191871586], [139.607918054, 35.191919892]]]}}, {"id": "41627", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60208358, 35.221133225], [139.60209655, 35.221011468], [139.601962309, 35.221015721], [139.60208358, 35.221133225]]]}}, {"id": "41628", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606228885, 35.199713135], [139.606134916, 35.199744775], [139.606236005, 35.199845559], [139.606228885, 35.199713135]]]}}, {"id": "41629", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589296939, 35.248597135], [139.589595499, 35.248489667], [139.589284864, 35.248563135], [139.589296939, 35.248597135]]]}}, {"id": "41630", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608318638, 35.210039441], [139.608335577, 35.210112108], [139.608445811, 35.210051468], [139.608318638, 35.210039441]]]}}, {"id": "41631", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.677736835, 35.280319387], [139.677577004, 35.280425721], [139.677759805, 35.280375027], [139.677736835, 35.280319387]]]}}, {"id": "41632", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602909468, 35.221273532], [139.602801971, 35.221335081], [139.602833217, 35.221354441], [139.602909468, 35.221273532]]]}}, {"id": "41633", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616410195, 35.179744586], [139.616478807, 35.179679306], [139.616399364, 35.179675135], [139.616410195, 35.179744586]]]}}, {"id": "41634", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61709655, 35.172506], [139.617214617, 35.172604613], [139.617203217, 35.172523505], [139.61709655, 35.172506]]]}}, {"id": "41635", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61396131, 35.183279586], [139.613917134, 35.183196802], [139.613806031, 35.183213748], [139.61396131, 35.183279586]]]}}, {"id": "41636", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733865383, 35.265743333], [139.733880272, 35.265610027], [139.733804747, 35.265716775], [139.733865383, 35.265743333]]]}}, {"id": "41637", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.69232192, 35.197202532], [139.692459144, 35.197236414], [139.692418029, 35.197163081], [139.69232192, 35.197202532]]]}}, {"id": "41638", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616889079, 35.179772919], [139.616838807, 35.179666252], [139.616804358, 35.179725135], [139.616889079, 35.179772919]]]}}, {"id": "41639", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601374825, 35.221413018], [139.601169442, 35.221470414], [139.601184942, 35.221491847], [139.601374825, 35.221413018]]]}}, {"id": "41640", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.721315253, 35.210822838], [139.721191051, 35.210725198], [139.721161751, 35.210791865], [139.721315253, 35.210822838]]]}}, {"id": "41641", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619381829, 35.176164613], [139.619390999, 35.176039054], [139.619330726, 35.176058225], [139.619381829, 35.176164613]]]}}, {"id": "41642", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742732049, 35.259052027], [139.742823528, 35.259129081], [139.742838664, 35.259039468], [139.742732049, 35.259052027]]]}}, {"id": "41643", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.677773839, 35.280391532], [139.677563113, 35.280448054], [139.677791997, 35.280437081], [139.677773839, 35.280391532]]]}}, {"id": "41644", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597665331, 35.240420694], [139.59768939, 35.240343748], [139.597604942, 35.240371721], [139.597665331, 35.240420694]]]}}, {"id": "41645", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616590195, 35.179253468], [139.616653528, 35.179175414], [139.616608521, 35.179149306], [139.616590195, 35.179253468]]]}}, {"id": "41646", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603818029, 35.199424919], [139.603748859, 35.199499054], [139.603798975, 35.199561973], [139.603818029, 35.199424919]]]}}, {"id": "41647", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614283191, 35.21002036], [139.614275914, 35.209907919], [139.614184527, 35.210032613], [139.614283191, 35.21002036]]]}}, {"id": "41648", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.726830052, 35.265443135], [139.727118664, 35.265363775], [139.726822412, 35.265410027], [139.726830052, 35.265443135]]]}}, {"id": "41649", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616502698, 35.179581532], [139.616526589, 35.179488198], [139.616473528, 35.179479586], [139.616502698, 35.179581532]]]}}, {"id": "41650", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608245227, 35.191233973], [139.608183022, 35.191169946], [139.608136109, 35.191260721], [139.608245227, 35.191233973]]]}}, {"id": "41651", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60774786, 35.223175135], [139.607535357, 35.223065586], [139.607480337, 35.223070414], [139.60774786, 35.223175135]]]}}, {"id": "41652", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.635000947, 35.298510333], [139.634963359, 35.29832836], [139.634948612, 35.298507468], [139.635000947, 35.298510333]]]}}, {"id": "41653", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615481829, 35.171155171], [139.615440726, 35.171057108], [139.61536489, 35.171049613], [139.615481829, 35.171155171]]]}}, {"id": "41654", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591751829, 35.244743387], [139.591821025, 35.244789775], [139.591850856, 35.244774414], [139.591751829, 35.244743387]]]}}, {"id": "41655", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610244643, 35.190113306], [139.610206355, 35.190010198], [139.610136226, 35.190041081], [139.610244643, 35.190113306]]]}}, {"id": "41656", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601828664, 35.193216306], [139.601819144, 35.193128505], [139.601779364, 35.193136252], [139.601828664, 35.193216306]]]}}, {"id": "41657", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607662361, 35.194644108], [139.607542672, 35.194564946], [139.60754153, 35.194616135], [139.607662361, 35.194644108]]]}}, {"id": "41658", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.717382827, 35.227077892], [139.717198275, 35.227072748], [139.71715594, 35.227110108], [139.717382827, 35.227077892]]]}}, {"id": "41659", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735227886, 35.262783775], [139.735291634, 35.262862892], [139.735354838, 35.262771], [139.735227886, 35.262783775]]]}}, {"id": "41660", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728095006, 35.265621802], [139.728033891, 35.265713532], [139.728129105, 35.265688919], [139.728095006, 35.265621802]]]}}, {"id": "41661", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603706861, 35.202514027], [139.603644384, 35.202436279], [139.603608392, 35.202543054], [139.603706861, 35.202514027]]]}}, {"id": "41662", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60476869, 35.201565838], [139.60483786, 35.201573171], [139.604832049, 35.20145136], [139.60476869, 35.201565838]]]}}, {"id": "41663", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599137056, 35.196007414], [139.599227523, 35.195977838], [139.599050467, 35.195951802], [139.599137056, 35.196007414]]]}}, {"id": "41664", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7432993, 35.259418414], [139.743309754, 35.259299081], [139.743242607, 35.259407667], [139.7432993, 35.259418414]]]}}, {"id": "41665", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598667886, 35.194603667], [139.598595058, 35.194503468], [139.598547471, 35.194622198], [139.598667886, 35.194603667]]]}}, {"id": "41666", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732664669, 35.266227775], [139.732703969, 35.266349306], [139.732822361, 35.266343838], [139.732664669, 35.266227775]]]}}, {"id": "41667", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602085045, 35.197919883], [139.602287523, 35.19786818], [139.601979922, 35.197929514], [139.602085045, 35.197919883]]]}}, {"id": "41668", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607717834, 35.193243559], [139.607634086, 35.193275135], [139.607750415, 35.193300586], [139.607717834, 35.193243559]]]}}, {"id": "41669", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601473165, 35.221240865], [139.601448975, 35.221139054], [139.601421245, 35.221146306], [139.601473165, 35.221240865]]]}}, {"id": "41670", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599354721, 35.236118973], [139.599286304, 35.236220892], [139.599381725, 35.236134613], [139.599354721, 35.236118973]]]}}, {"id": "41671", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602876381, 35.228572982], [139.602901608, 35.228249532], [139.602877575, 35.228249468], [139.602876381, 35.228572982]]]}}, {"id": "41672", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607775084, 35.19363264], [139.607667004, 35.193561505], [139.607722607, 35.193665532], [139.607775084, 35.19363264]]]}}, {"id": "41673", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.737439001, 35.247464225], [139.737589274, 35.247421613], [139.737617886, 35.247379802], [139.737439001, 35.247464225]]]}}, {"id": "41674", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735362633, 35.244234775], [139.735438366, 35.244130838], [139.735301556, 35.244227], [139.735362633, 35.244234775]]]}}, {"id": "41675", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729524695, 35.232800333], [139.72961214, 35.232883694], [139.729629663, 35.232837198], [139.729524695, 35.232800333]]]}}, {"id": "41676", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739574617, 35.250247919], [139.739518638, 35.250179802], [139.739490117, 35.250247838], [139.739574617, 35.250247919]]]}}, {"id": "41677", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614813865, 35.209877532], [139.614807497, 35.209750775], [139.614782114, 35.209918505], [139.614813865, 35.209877532]]]}}, {"id": "41678", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599243943, 35.193659441], [139.599161894, 35.19367136], [139.59918869, 35.193742919], [139.599243943, 35.193659441]]]}}, {"id": "41679", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588500558, 35.247624054], [139.5885062, 35.247686], [139.588585331, 35.247641], [139.588500558, 35.247624054]]]}}, {"id": "41680", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605673476, 35.206105838], [139.60565131, 35.205982559], [139.605611388, 35.206002414], [139.605673476, 35.206105838]]]}}, {"id": "41681", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616842724, 35.188282613], [139.616769948, 35.188336225], [139.616852724, 35.188338171], [139.616842724, 35.188282613]]]}}, {"id": "41682", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61576406, 35.171264333], [139.615672387, 35.171192667], [139.615683774, 35.171252946], [139.61576406, 35.171264333]]]}}, {"id": "41683", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616005551, 35.209226748], [139.616078392, 35.209094108], [139.615933139, 35.209236441], [139.616005551, 35.209226748]]]}}, {"id": "41684", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728832399, 35.226217964], [139.728787834, 35.226104432], [139.728764527, 35.226207631], [139.728832399, 35.226217964]]]}}, {"id": "41685", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591673217, 35.244981225], [139.591612892, 35.245054468], [139.591726887, 35.245073802], [139.591673217, 35.244981225]]]}}, {"id": "41686", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728871829, 35.225885099], [139.728800882, 35.225781099], [139.728804488, 35.225886658], [139.728871829, 35.225885099]]]}}, {"id": "41687", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614853411, 35.209918613], [139.61492275, 35.209782892], [139.614793969, 35.209964838], [139.614853411, 35.209918613]]]}}, {"id": "41688", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59184297, 35.244648559], [139.591926719, 35.244610694], [139.591863969, 35.244576865], [139.59184297, 35.244648559]]]}}, {"id": "41689", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602196394, 35.198539667], [139.602228444, 35.198512586], [139.602129974, 35.198490414], [139.602196394, 35.198539667]]]}}, {"id": "41690", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595233969, 35.240686802], [139.595104747, 35.240696108], [139.595241336, 35.240724694], [139.595233969, 35.240686802]]]}}, {"id": "41691", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.612743748, 35.190314387], [139.61269572, 35.190371198], [139.612745058, 35.190359279], [139.612743748, 35.190314387]]]}}, {"id": "41692", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601220973, 35.197347802], [139.601142477, 35.197379838], [139.601223865, 35.197405775], [139.601220973, 35.197347802]]]}}, {"id": "41693", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.583579144, 35.198510027], [139.583606641, 35.198419748], [139.583531089, 35.198419748], [139.583579144, 35.198510027]]]}}, {"id": "41694", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.695528171, 35.287714306], [139.695481946, 35.287674135], [139.695471115, 35.287771838], [139.695528171, 35.287714306]]]}}, {"id": "41695", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59840978, 35.223712198], [139.598488197, 35.223763468], [139.598420467, 35.223666613], [139.59840978, 35.223712198]]]}}, {"id": "41696", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.716884189, 35.227460973], [139.716886978, 35.22736036], [139.716852244, 35.227364838], [139.716884189, 35.227460973]]]}}, {"id": "41697", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728887549, 35.225452135], [139.728940584, 35.225561532], [139.728949948, 35.225455811], [139.728887549, 35.225452135]]]}}, {"id": "41698", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604821141, 35.205505667], [139.604754112, 35.205476694], [139.604706861, 35.205560973], [139.604821141, 35.205505667]]]}}, {"id": "41699", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602641881, 35.228098117], [139.602696848, 35.227829856], [139.602617964, 35.22809482], [139.602641881, 35.228098117]]]}}, {"id": "41700", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718506304, 35.263978532], [139.718422724, 35.263943919], [139.718382023, 35.263971919], [139.718506304, 35.263978532]]]}}, {"id": "41701", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.584581089, 35.198645027], [139.584574137, 35.198588919], [139.584505525, 35.198616973], [139.584581089, 35.198645027]]]}}, {"id": "41702", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743393502, 35.251533198], [139.743416109, 35.251475694], [139.743301219, 35.25152664], [139.743393502, 35.251533198]]]}}, {"id": "41703", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59122856, 35.245155559], [139.591253359, 35.245053387], [139.591177497, 35.245105892], [139.59122856, 35.245155559]]]}}, {"id": "41704", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.731194838, 35.265944027], [139.731266783, 35.265985468], [139.731278664, 35.265896054], [139.731194838, 35.265944027]]]}}, {"id": "41705", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663057224, 35.29731364], [139.663219637, 35.297301505], [139.663314721, 35.297261081], [139.663057224, 35.29731364]]]}}, {"id": "41706", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615858521, 35.209411559], [139.615826446, 35.209339946], [139.615788171, 35.209396387], [139.615858521, 35.209411559]]]}}, {"id": "41707", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602608949, 35.228091649], [139.602660169, 35.227821486], [139.602586122, 35.228088739], [139.602608949, 35.228091649]]]}}, {"id": "41708", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.72938655, 35.233175027], [139.729326693, 35.233075802], [139.729276783, 35.23310436], [139.72938655, 35.233175027]]]}}, {"id": "41709", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735628716, 35.263230333], [139.735570895, 35.263343225], [139.735607665, 35.263368946], [139.735628716, 35.263230333]]]}}, {"id": "41710", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.740290895, 35.250528892], [139.740268885, 35.250458225], [139.740185422, 35.250518559], [139.740290895, 35.250528892]]]}}, {"id": "41711", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733551634, 35.265607865], [139.733654189, 35.265511414], [139.733536252, 35.265601441], [139.733551634, 35.265607865]]]}}, {"id": "41712", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598842477, 35.224453586], [139.598826472, 35.224551721], [139.598903061, 35.224507946], [139.598842477, 35.224453586]]]}}, {"id": "41713", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611220752, 35.210273748], [139.61133594, 35.210198252], [139.611160246, 35.210259865], [139.611220752, 35.210273748]]]}}, {"id": "41714", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604098781, 35.205505198], [139.604034137, 35.205485892], [139.604044034, 35.205530802], [139.604098781, 35.205505198]]]}}, {"id": "41715", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602238885, 35.198158613], [139.602307977, 35.198346802], [139.602347445, 35.198371919], [139.602238885, 35.198158613]]]}}, {"id": "41716", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605672244, 35.206426468], [139.605639339, 35.20637936], [139.605642114, 35.206442198], [139.605672244, 35.206426468]]]}}, {"id": "41717", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599025136, 35.195135586], [139.598891414, 35.195081973], [139.598870311, 35.195093721], [139.599025136, 35.195135586]]]}}, {"id": "41718", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.717340726, 35.226874559], [139.717230778, 35.226860667], [139.71721856, 35.226883919], [139.717340726, 35.226874559]]]}}, {"id": "41719", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602277056, 35.225580748], [139.602392361, 35.225558252], [139.602417977, 35.225511532], [139.602277056, 35.225580748]]]}}, {"id": "41720", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.5911762, 35.244988892], [139.591247834, 35.244988108], [139.591229416, 35.244904613], [139.5911762, 35.244988892]]]}}, {"id": "41721", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.700923748, 35.281626838], [139.700897082, 35.281704054], [139.700945136, 35.281692667], [139.700923748, 35.281626838]]]}}, {"id": "41722", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57811428, 35.252984532], [139.57808856, 35.25305264], [139.578148392, 35.253039387], [139.57811428, 35.252984532]]]}}, {"id": "41723", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733750337, 35.265530252], [139.733722724, 35.265471252], [139.733704942, 35.265530198], [139.733750337, 35.265530252]]]}}, {"id": "41724", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602198249, 35.221097748], [139.602227834, 35.221006775], [139.602150117, 35.221074946], [139.602198249, 35.221097748]]]}}, {"id": "41725", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601606744, 35.221356775], [139.601578029, 35.221450108], [139.601597588, 35.221488279], [139.601606744, 35.221356775]]]}}, {"id": "41726", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718409196, 35.227662171], [139.718306615, 35.227636306], [139.718295525, 35.227705252], [139.718409196, 35.227662171]]]}}, {"id": "41727", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.604215577, 35.22080664], [139.604350999, 35.220784], [139.604352361, 35.220764721], [139.604215577, 35.22080664]]]}}, {"id": "41728", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718735837, 35.227641946], [139.718662918, 35.22761664], [139.718638444, 35.227676441], [139.718735837, 35.227641946]]]}}, {"id": "41729", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608193165, 35.217142279], [139.608272555, 35.217107081], [139.608201751, 35.217089721], [139.608193165, 35.217142279]]]}}, {"id": "41730", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.716598495, 35.227049532], [139.71671022, 35.227052973], [139.716778054, 35.227019532], [139.716598495, 35.227049532]]]}}, {"id": "41731", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739350558, 35.249683892], [139.739368833, 35.249747198], [139.73942856, 35.249686387], [139.739350558, 35.249683892]]]}}, {"id": "41732", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576832218, 35.248217387], [139.576870337, 35.248289027], [139.576910169, 35.248236198], [139.576832218, 35.248217387]]]}}, {"id": "41733", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597451336, 35.224652613], [139.59738345, 35.224612559], [139.597334034, 35.224685919], [139.597451336, 35.224652613]]]}}, {"id": "41734", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728514358, 35.230576775], [139.728575447, 35.230504081], [139.728498249, 35.230552252], [139.728514358, 35.230576775]]]}}, {"id": "41735", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.716504773, 35.226670468], [139.716606693, 35.226604694], [139.716489857, 35.226653973], [139.716504773, 35.226670468]]]}}, {"id": "41736", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60379275, 35.199748108], [139.603804669, 35.199686306], [139.603781115, 35.199702108], [139.60379275, 35.199748108]]]}}, {"id": "41737", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599052555, 35.222910441], [139.599193087, 35.222817865], [139.599028911, 35.222909865], [139.599052555, 35.222910441]]]}}, {"id": "41738", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.6042007, 35.205233252], [139.604149079, 35.205235667], [139.604173774, 35.205315054], [139.6042007, 35.205233252]]]}}, {"id": "41739", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.585205525, 35.19907336], [139.585157471, 35.19911836], [139.585219416, 35.199124198], [139.585205525, 35.19907336]]]}}, {"id": "41740", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602655473, 35.198804468], [139.602625694, 35.198844], [139.602731608, 35.198941387], [139.602655473, 35.198804468]]]}}, {"id": "41741", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597332049, 35.224380135], [139.59726297, 35.224409505], [139.597363606, 35.224444748], [139.597332049, 35.224380135]]]}}, {"id": "41742", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60307594, 35.220726486], [139.603180272, 35.220687505], [139.603055331, 35.220700946], [139.60307594, 35.220726486]]]}}, {"id": "41743", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.736769689, 35.247734225], [139.736768444, 35.247680306], [139.736678781, 35.247763252], [139.736769689, 35.247734225]]]}}, {"id": "41744", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598450117, 35.223631054], [139.598522387, 35.223672306], [139.598479105, 35.223598387], [139.598450117, 35.223631054]]]}}, {"id": "41745", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592267691, 35.244870081], [139.592373774, 35.244888414], [139.592383917, 35.244836333], [139.592267691, 35.244870081]]]}}, {"id": "41746", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601466005, 35.221748441], [139.60143847, 35.221814559], [139.601509922, 35.221756748], [139.601466005, 35.221748441]]]}}, {"id": "41747", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.719177639, 35.226811414], [139.719089559, 35.22686964], [139.719206083, 35.226825505], [139.719177639, 35.226811414]]]}}, {"id": "41748", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608076005, 35.192108586], [139.608161803, 35.192137946], [139.608164942, 35.192114171], [139.608076005, 35.192108586]]]}}, {"id": "41749", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.717279883, 35.228018973], [139.717368859, 35.227948748], [139.717264553, 35.227973802], [139.717279883, 35.228018973]]]}}, {"id": "41750", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742232361, 35.258638333], [139.742301505, 35.258638108], [139.742293722, 35.258611532], [139.742232361, 35.258638333]]]}}, {"id": "41751", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728591219, 35.228464414], [139.728643256, 35.228426865], [139.728582049, 35.228424027], [139.728591219, 35.228464414]]]}}, {"id": "41752", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739674137, 35.261364838], [139.739680337, 35.261427586], [139.739732387, 35.261371838], [139.739674137, 35.261364838]]]}}, {"id": "41753", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602127367, 35.222775919], [139.602228418, 35.222740586], [139.602112114, 35.222768306], [139.602127367, 35.222775919]]]}}, {"id": "41754", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599167445, 35.194637], [139.599120389, 35.194581306], [139.599107471, 35.194610108], [139.599167445, 35.194637]]]}}, {"id": "41755", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739254086, 35.249759171], [139.739169948, 35.249731973], [139.73917153, 35.249789225], [139.739254086, 35.249759171]]]}}, {"id": "41756", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607864578, 35.191841198], [139.607786693, 35.191815441], [139.607828807, 35.191869775], [139.607864578, 35.191841198]]]}}, {"id": "41757", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602845318, 35.228477432], [139.602869909, 35.228279198], [139.602847847, 35.228279009], [139.602845318, 35.228477432]]]}}, {"id": "41758", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718804747, 35.227622613], [139.718801141, 35.227530225], [139.718745162, 35.227558198], [139.718804747, 35.227622613]]]}}, {"id": "41759", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592488223, 35.244156775], [139.59258192, 35.244138387], [139.592485694, 35.244120694], [139.592488223, 35.244156775]]]}}, {"id": "41760", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729236083, 35.233383027], [139.72923083, 35.233457946], [139.729286641, 35.233466838], [139.729236083, 35.233383027]]]}}, {"id": "41761", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729016135, 35.23321364], [139.729080752, 35.233294559], [139.72911297, 35.233269973], [139.729016135, 35.23321364]]]}}, {"id": "41762", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73339144, 35.265831838], [139.733355616, 35.265918694], [139.733429754, 35.265876027], [139.73339144, 35.265831838]]]}}, {"id": "41763", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609234527, 35.189978838], [139.609223061, 35.189923838], [139.609196083, 35.189985252], [139.609234527, 35.189978838]]]}}, {"id": "41764", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735130674, 35.244215], [139.735088054, 35.24428764], [139.735156913, 35.244236523], [139.735130674, 35.244215]]]}}, {"id": "41765", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.747254617, 35.25345064], [139.747172892, 35.253417054], [139.747163502, 35.253458892], [139.747254617, 35.25345064]]]}}, {"id": "41766", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.741533165, 35.258744802], [139.741620506, 35.258785721], [139.741609442, 35.258731973], [139.741533165, 35.258744802]]]}}, {"id": "41767", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576364189, 35.247804802], [139.576448197, 35.247749441], [139.57635345, 35.247759892], [139.576364189, 35.247804802]]]}}, {"id": "41768", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.744608366, 35.257985225], [139.744684163, 35.258007613], [139.744679144, 35.25799464], [139.744608366, 35.257985225]]]}}, {"id": "41769", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602009274, 35.198534081], [139.601953865, 35.198557414], [139.602031725, 35.19863436], [139.602009274, 35.198534081]]]}}, {"id": "41770", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591212633, 35.244820306], [139.591260856, 35.244859135], [139.591290921, 35.244799892], [139.591212633, 35.244820306]]]}}, {"id": "41771", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73264594, 35.262870559], [139.732599001, 35.262797748], [139.732568366, 35.262868414], [139.73264594, 35.262870559]]]}}, {"id": "41772", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733424838, 35.265943468], [139.73347511, 35.265996414], [139.733518003, 35.26596336], [139.733424838, 35.265943468]]]}}, {"id": "41773", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592124086, 35.244938306], [139.592129922, 35.244859802], [139.59209834, 35.244916973], [139.592124086, 35.244938306]]]}}, {"id": "41774", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743959585, 35.252014694], [139.743822724, 35.252056802], [139.743815331, 35.252076532], [139.743959585, 35.252014694]]]}}, {"id": "41775", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601492918, 35.221290838], [139.601499637, 35.221358559], [139.601534864, 35.221295333], [139.601492918, 35.221290838]]]}}, {"id": "41776", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608966031, 35.191232613], [139.608849728, 35.191229054], [139.608968171, 35.191247198], [139.608966031, 35.191232613]]]}}, {"id": "41777", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610619831, 35.190037802], [139.610589559, 35.189981414], [139.61057489, 35.190003198], [139.610619831, 35.190037802]]]}}, {"id": "41778", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.716584643, 35.227280387], [139.716643865, 35.227208586], [139.716567393, 35.227279198], [139.716584643, 35.227280387]]]}}, {"id": "41779", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588306667, 35.248951586], [139.588310337, 35.249012252], [139.58834847, 35.249014225], [139.588306667, 35.248951586]]]}}, {"id": "41780", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576707471, 35.248254333], [139.576672477, 35.248173135], [139.576653281, 35.248226108], [139.576707471, 35.248254333]]]}}, {"id": "41781", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607874527, 35.191226613], [139.607856161, 35.191311865], [139.607892049, 35.191241775], [139.607874527, 35.191226613]]]}}, {"id": "41782", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608777224, 35.191284], [139.608684669, 35.191320973], [139.608791336, 35.191301865], [139.608777224, 35.191284]]]}}, {"id": "41783", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599185863, 35.193921667], [139.599113645, 35.193911414], [139.599141167, 35.193961694], [139.599185863, 35.193921667]]]}}, {"id": "41784", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739110117, 35.261737135], [139.739126861, 35.26178764], [139.739214643, 35.261721559], [139.739110117, 35.261737135]]]}}, {"id": "41785", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.745923839, 35.254636252], [139.745898197, 35.254581171], [139.745884643, 35.254609919], [139.745923839, 35.254636252]]]}}, {"id": "41786", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728864189, 35.228666838], [139.728763333, 35.22866964], [139.728872192, 35.228680559], [139.728864189, 35.228666838]]]}}, {"id": "41787", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601044773, 35.194008613], [139.600970804, 35.193993532], [139.601024034, 35.194037333], [139.601044773, 35.194008613]]]}}, {"id": "41788", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598924942, 35.195988775], [139.598956861, 35.19604536], [139.599012503, 35.196050892], [139.598924942, 35.195988775]]]}}, {"id": "41789", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729551894, 35.233176892], [139.729561362, 35.233087838], [139.729500532, 35.233133108], [139.729551894, 35.233176892]]]}}, {"id": "41790", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729069416, 35.233560973], [139.729083217, 35.233478414], [139.729044864, 35.233476613], [139.729069416, 35.233560973]]]}}, {"id": "41791", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.612427134, 35.190286054], [139.612483191, 35.190388468], [139.612513865, 35.190384838], [139.612427134, 35.190286054]]]}}, {"id": "41792", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.717370895, 35.227142225], [139.717438638, 35.227082613], [139.717358949, 35.227119946], [139.717370895, 35.227142225]]]}}, {"id": "41793", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599828612, 35.223230532], [139.599883256, 35.223251802], [139.599879974, 35.223209892], [139.599828612, 35.223230532]]]}}, {"id": "41794", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613092438, 35.190581748], [139.613124254, 35.190520414], [139.613082724, 35.190526225], [139.613092438, 35.190581748]]]}}, {"id": "41795", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600797134, 35.222711973], [139.600818833, 35.222766198], [139.6008362, 35.222728559], [139.600797134, 35.222711973]]]}}, {"id": "41796", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59931297, 35.19658964], [139.599452361, 35.19665264], [139.599469831, 35.196645721], [139.59931297, 35.19658964]]]}}, {"id": "41797", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576362283, 35.248096865], [139.576319364, 35.248043387], [139.576306524, 35.248069865], [139.576362283, 35.248096865]]]}}, {"id": "41798", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598624501, 35.195676387], [139.598544527, 35.195691919], [139.598626887, 35.195687748], [139.598624501, 35.195676387]]]}}, {"id": "41799", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728813748, 35.231424667], [139.728749689, 35.231436505], [139.728786005, 35.231475108], [139.728813748, 35.231424667]]]}}, {"id": "41800", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.740611608, 35.259939054], [139.7406738, 35.259948108], [139.740669689, 35.259889171], [139.740611608, 35.259939054]]]}}, {"id": "41801", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729290856, 35.229030586], [139.729356031, 35.229015387], [139.729351479, 35.228981775], [139.729290856, 35.229030586]]]}}, {"id": "41802", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599407497, 35.193759027], [139.599393087, 35.193810721], [139.599433359, 35.193783225], [139.599407497, 35.193759027]]]}}, {"id": "41803", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609036939, 35.208372108], [139.609083022, 35.208392468], [139.609113411, 35.208365946], [139.609036939, 35.208372108]]]}}, {"id": "41804", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743794578, 35.251566838], [139.743686667, 35.251570559], [139.743670272, 35.251590468], [139.743794578, 35.251566838]]]}}, {"id": "41805", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733770532, 35.265549279], [139.733837471, 35.265562225], [139.733825084, 35.265530108], [139.733770532, 35.265549279]]]}}, {"id": "41806", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605479364, 35.204084441], [139.605475668, 35.204027081], [139.605445227, 35.204038505], [139.605479364, 35.204084441]]]}}, {"id": "41807", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595581388, 35.240993441], [139.595578249, 35.241052306], [139.595614086, 35.24101136], [139.595581388, 35.240993441]]]}}, {"id": "41808", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735889053, 35.262974333], [139.735948859, 35.262982333], [139.735917056, 35.262920838], [139.735889053, 35.262974333]]]}}, {"id": "41809", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595321725, 35.241082802], [139.595262477, 35.24105464], [139.595274812, 35.241084694], [139.595321725, 35.241082802]]]}}, {"id": "41810", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735112309, 35.262831919], [139.735214137, 35.262885559], [139.7352438, 35.262886306], [139.735181777, 35.262831532], [139.735112309, 35.262831919]]]}}, {"id": "41811", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718406135, 35.263707279], [139.718289831, 35.263714919], [139.718267393, 35.263735], [139.718406135, 35.263707279]]]}}, {"id": "41812", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732620078, 35.262904054], [139.732566589, 35.262874441], [139.732549689, 35.262932468], [139.732620078, 35.262904054]]]}}, {"id": "41813", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718226693, 35.263754613], [139.718120506, 35.263766865], [139.718115188, 35.263784333], [139.718226693, 35.263754613]]]}}, {"id": "41814", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609444137, 35.190072054], [139.609355577, 35.190082171], [139.609328249, 35.190122135], [139.609444137, 35.190072054]]]}}, {"id": "41815", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600501751, 35.223280306], [139.600500752, 35.223330414], [139.600532387, 35.223283973], [139.600501751, 35.223280306]]]}}, {"id": "41816", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742495966, 35.258668919], [139.742568054, 35.258681946], [139.742596252, 35.258634468], [139.742495966, 35.258668919]]]}}, {"id": "41817", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.612045136, 35.190042586], [139.611965188, 35.190000613], [139.612040584, 35.190061252], [139.612045136, 35.190042586]]]}}, {"id": "41818", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743223217, 35.259238613], [139.743186109, 35.259301973], [139.743240143, 35.259259721], [139.743223217, 35.259238613]]]}}, {"id": "41819", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602682049, 35.220743414], [139.602717639, 35.220788559], [139.602730467, 35.220752081], [139.602682049, 35.220743414]]]}}, {"id": "41820", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598966939, 35.195857252], [139.598897912, 35.195875694], [139.598965668, 35.195877892], [139.598966939, 35.195857252]]]}}, {"id": "41821", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601161141, 35.222956333], [139.601218755, 35.222903721], [139.601150467, 35.222926838], [139.601161141, 35.222956333]]]}}, {"id": "41822", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603228418, 35.222930171], [139.603163645, 35.222958802], [139.60322703, 35.222954505], [139.603228418, 35.222930171]]]}}, {"id": "41823", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.740535357, 35.259914027], [139.740481193, 35.259903252], [139.740503256, 35.259931586], [139.740535357, 35.259914027]]]}}, {"id": "41824", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.583695811, 35.199248081], [139.583640804, 35.199265027], [139.583716355, 35.199298919], [139.583695811, 35.199248081]]]}}, {"id": "41825", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591681829, 35.244856306], [139.591612023, 35.244867973], [139.591684968, 35.244872081], [139.591681829, 35.244856306]]]}}, {"id": "41826", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732700467, 35.266592973], [139.732755305, 35.266605198], [139.732753281, 35.266563], [139.732700467, 35.266592973]]]}}, {"id": "41827", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595354332, 35.240828306], [139.595302607, 35.240856505], [139.595357523, 35.240861387], [139.595354332, 35.240828306]]]}}, {"id": "41828", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597042776, 35.225001748], [139.596976304, 35.225039667], [139.59703022, 35.225044802], [139.597042776, 35.225001748]]]}}, {"id": "41829", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739325058, 35.249960892], [139.739262724, 35.249975613], [139.739281582, 35.250008532], [139.739325058, 35.249960892]]]}}, {"id": "41830", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600312503, 35.193707946], [139.600285331, 35.193763586], [139.600334617, 35.193739441], [139.600312503, 35.193707946]]]}}, {"id": "41831", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598654721, 35.192809775], [139.598614527, 35.192884252], [139.598642088, 35.192890171], [139.598654721, 35.192809775]]]}}, {"id": "41832", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599737056, 35.19682536], [139.599682607, 35.196820946], [139.599780661, 35.196898919], [139.599737056, 35.19682536]]]}}, {"id": "41833", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602622283, 35.223312054], [139.602646783, 35.223270081], [139.602601894, 35.22329164], [139.602622283, 35.223312054]]]}}, {"id": "41834", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60806192, 35.194550838], [139.608012477, 35.194557973], [139.608039079, 35.194586586], [139.60806192, 35.194550838]]]}}, {"id": "41835", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601347471, 35.221709559], [139.601296524, 35.221747306], [139.601351946, 35.221725694], [139.601347471, 35.221709559]]]}}, {"id": "41836", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595985668, 35.242566054], [139.595996615, 35.242620171], [139.596020584, 35.242614], [139.595985668, 35.242566054]]]}}, {"id": "41837", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729757665, 35.232669279], [139.729777198, 35.232695694], [139.729806913, 35.232652919], [139.729757665, 35.232669279]]]}}, {"id": "41838", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597408275, 35.224315748], [139.597452827, 35.224286559], [139.597424423, 35.224275505], [139.597408275, 35.224315748]]]}}, {"id": "41839", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607850026, 35.191150838], [139.607773191, 35.191180532], [139.607781479, 35.191201468], [139.607850026, 35.191150838]]]}}, {"id": "41840", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601908003, 35.225830919], [139.601979144, 35.225807613], [139.601970856, 35.22578364], [139.601908003, 35.225830919]]]}}, {"id": "41841", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592007328, 35.244397027], [139.591952555, 35.244420198], [139.591986744, 35.244446946], [139.592007328, 35.244397027]]]}}, {"id": "41842", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588904527, 35.248163135], [139.588980856, 35.248140468], [139.588898755, 35.248144559], [139.588904527, 35.248163135]]]}}, {"id": "41843", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576558807, 35.248286468], [139.576603943, 35.248228973], [139.576540311, 35.248268865], [139.576558807, 35.248286468]]]}}, {"id": "41844", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733957276, 35.265733505], [139.734028275, 35.265733919], [139.733973606, 35.265685279], [139.733957276, 35.265733505]]]}}, {"id": "41845", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655602633, 35.303835279], [139.655682672, 35.303850802], [139.655695914, 35.303828559], [139.655602633, 35.303835279]]]}}, {"id": "41846", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576831556, 35.24828164], [139.576773281, 35.248299559], [139.57681655, 35.24830136], [139.576831556, 35.24828164]]]}}, {"id": "41847", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733963722, 35.265845838], [139.733998716, 35.265817108], [139.733957198, 35.265807054], [139.733963722, 35.265845838]]]}}, {"id": "41848", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608017056, 35.191584198], [139.608015253, 35.191637748], [139.608054228, 35.191608802], [139.608017056, 35.191584198]]]}}, {"id": "41849", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.735168885, 35.26286], [139.735080467, 35.262891027], [139.7351862, 35.262895532], [139.735168885, 35.26286]]]}}, {"id": "41850", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576639274, 35.248344973], [139.576688301, 35.248374198], [139.576704254, 35.248335198], [139.576639274, 35.248344973]]]}}, {"id": "41851", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.730197613, 35.229952], [139.730153139, 35.229927081], [139.730148054, 35.229953946], [139.730197613, 35.229952]]]}}, {"id": "41852", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728610895, 35.228308108], [139.728596861, 35.228357946], [139.72863808, 35.228351946], [139.728610895, 35.228308108]]]}}, {"id": "41853", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728807056, 35.228414027], [139.728750636, 35.228387919], [139.72876297, 35.228438694], [139.728807056, 35.228414027]]]}}, {"id": "41854", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611001479, 35.210730667], [139.61108214, 35.210751441], [139.611003256, 35.210717946], [139.611001479, 35.210730667]]]}}, {"id": "41855", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.593502412, 35.244390532], [139.593553476, 35.244368279], [139.593520558, 35.244349468], [139.593502412, 35.244390532]]]}}, {"id": "41856", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743623333, 35.251887721], [139.743585551, 35.251877135], [139.743569494, 35.251890559], [139.743623333, 35.251887721]]]}}, {"id": "41857", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.587701362, 35.249744306], [139.587709416, 35.249778892], [139.587753087, 35.249762694], [139.587701362, 35.249744306]]]}}, {"id": "41858", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.596994643, 35.224741586], [139.596937756, 35.224734279], [139.596938418, 35.224768802], [139.596994643, 35.224741586]]]}}, {"id": "41859", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597156278, 35.224426225], [139.597131608, 35.224484333], [139.597171556, 35.224460135], [139.597156278, 35.224426225]]]}}, {"id": "41860", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59958144, 35.223270973], [139.599618171, 35.223293946], [139.59960358, 35.223250919], [139.59958144, 35.223270973]]]}}, {"id": "41861", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.743257808, 35.259165559], [139.743235551, 35.259218081], [139.74327428, 35.259177721], [139.743257808, 35.259165559]]]}}, {"id": "41862", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73196978, 35.266418919], [139.73194808, 35.266467054], [139.731995668, 35.266463027], [139.73196978, 35.266418919]]]}}, {"id": "41863", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591377302, 35.245057414], [139.591324112, 35.245058667], [139.591362412, 35.245076694], [139.591377302, 35.245057414]]]}}, {"id": "41864", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.72940572, 35.228904468], [139.729367004, 35.228939865], [139.729428664, 35.228920171], [139.72940572, 35.228904468]]]}}, {"id": "41865", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.71694275, 35.22753764], [139.716904034, 35.227573108], [139.716965694, 35.227553333], [139.71694275, 35.22753764]]]}}, {"id": "41866", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.656496135, 35.303352802], [139.656537419, 35.303380252], [139.656638638, 35.303357135], [139.656496135, 35.303352802]]]}}, {"id": "41867", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.577982996, 35.252929279], [139.578040467, 35.252976946], [139.578058029, 35.252975027], [139.577982996, 35.252929279]]]}}, {"id": "41868", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591411777, 35.245175865], [139.591475136, 35.245149586], [139.591428911, 35.245136135], [139.591411777, 35.245175865]]]}}, {"id": "41869", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602238197, 35.193284532], [139.602223891, 35.193329559], [139.602260973, 35.193301333], [139.602238197, 35.193284532]]]}}, {"id": "41870", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.593346744, 35.244820586], [139.593331608, 35.244783054], [139.593303839, 35.244808865], [139.593346744, 35.244820586]]]}}, {"id": "41871", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729530272, 35.232653171], [139.729588807, 35.232686559], [139.729617613, 35.232670802], [139.729530272, 35.232653171]]]}}, {"id": "41872", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589201997, 35.248156973], [139.589153191, 35.248182387], [139.589204864, 35.248184252], [139.589201997, 35.248156973]]]}}, {"id": "41873", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591844306, 35.244718054], [139.591910026, 35.244716946], [139.591844695, 35.244699225], [139.591844306, 35.244718054]]]}}, {"id": "41874", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603371556, 35.193479775], [139.603363943, 35.193531135], [139.603389001, 35.193522171], [139.603371556, 35.193479775]]]}}, {"id": "41875", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608220895, 35.191256559], [139.608224086, 35.191288919], [139.608250973, 35.191254252], [139.608220895, 35.191256559]]]}}, {"id": "41876", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739987056, 35.250412559], [139.740000078, 35.250455027], [139.74002297, 35.250432414], [139.739987056, 35.250412559]]]}}, {"id": "41877", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589260052, 35.248070721], [139.589188301, 35.24809164], [139.589263256, 35.248088441], [139.589260052, 35.248070721]]]}}, {"id": "41878", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607870389, 35.193401135], [139.607916252, 35.193375279], [139.607869364, 35.193368414], [139.607870389, 35.193401135]]]}}, {"id": "41879", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59909572, 35.194992946], [139.599057302, 35.195018027], [139.599100999, 35.195027198], [139.59909572, 35.194992946]]]}}, {"id": "41880", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728717665, 35.228386802], [139.728653839, 35.22840236], [139.728705668, 35.228422865], [139.728717665, 35.228386802]]]}}, {"id": "41881", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597766005, 35.223998973], [139.597804228, 35.223960081], [139.597786005, 35.223956], [139.597766005, 35.223998973]]]}}, {"id": "41882", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729003645, 35.228645586], [139.728989805, 35.228688946], [139.729022918, 35.228686748], [139.729003645, 35.228645586]]]}}, {"id": "41883", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728682335, 35.228275721], [139.72866856, 35.228319081], [139.728701608, 35.228316946], [139.728682335, 35.228275721]]]}}, {"id": "41884", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602435577, 35.222240333], [139.602418885, 35.222277252], [139.602464695, 35.222243802], [139.602435577, 35.222240333]]]}}, {"id": "41885", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588848638, 35.248109108], [139.588792438, 35.248087802], [139.588780636, 35.248103108], [139.588848638, 35.248109108]]]}}, {"id": "41886", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591548612, 35.245130252], [139.591531388, 35.245086306], [139.591517419, 35.245121802], [139.591548612, 35.245130252]]]}}, {"id": "41887", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598953528, 35.193756973], [139.598962192, 35.193802054], [139.598981803, 35.193780721], [139.598953528, 35.193756973]]]}}, {"id": "41888", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733525006, 35.265718441], [139.73357594, 35.265693973], [139.733539922, 35.265673108], [139.733525006, 35.265718441]]]}}, {"id": "41889", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601088911, 35.197283838], [139.601130415, 35.19729364], [139.601110506, 35.197264027], [139.601088911, 35.197283838]]]}}, {"id": "41890", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601327276, 35.196961919], [139.601384358, 35.197001613], [139.601326226, 35.196946333], [139.601327276, 35.196961919]]]}}, {"id": "41891", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600772633, 35.222551468], [139.600827951, 35.222537081], [139.600780272, 35.222535892], [139.600772633, 35.222551468]]]}}, {"id": "41892", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734238833, 35.245361586], [139.734201725, 35.245413559], [139.734259468, 35.245368973], [139.734238833, 35.245361586]]]}}, {"id": "41893", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610239754, 35.22257264], [139.610286939, 35.22255], [139.610235837, 35.222562171], [139.610239754, 35.22257264]]]}}, {"id": "41894", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591992503, 35.244844387], [139.592039805, 35.244859802], [139.592027173, 35.244826973], [139.591992503, 35.244844387]]]}}, {"id": "41895", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.745351673, 35.256811198], [139.74538808, 35.256790919], [139.745347639, 35.256799198], [139.745351673, 35.256811198]]]}}, {"id": "41896", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610092114, 35.189829054], [139.610067977, 35.189863], [139.610099754, 35.189848441], [139.610092114, 35.189829054]]]}}, {"id": "41897", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608049339, 35.192024441], [139.608045162, 35.192060225], [139.608074332, 35.192037387], [139.608049339, 35.192024441]]]}}, {"id": "41898", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600740661, 35.222709802], [139.600758249, 35.222671532], [139.600710363, 35.222702802], [139.600740661, 35.222709802]]]}}, {"id": "41899", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602174942, 35.198242252], [139.602180389, 35.198295694], [139.602203839, 35.198281613], [139.602174942, 35.198242252]]]}}, {"id": "41900", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607786835, 35.191722333], [139.607733528, 35.191743414], [139.607794578, 35.191738387], [139.607786835, 35.191722333]]]}}, {"id": "41901", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588974812, 35.248071333], [139.589030558, 35.248090279], [139.589038755, 35.248070198], [139.588974812, 35.248071333]]]}}, {"id": "41902", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600381167, 35.223350838], [139.600423554, 35.223349225], [139.600428495, 35.223312252], [139.600381167, 35.223350838]]]}}, {"id": "41903", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597480778, 35.224309306], [139.597506835, 35.224272667], [139.597470272, 35.224262775], [139.597480778, 35.224309306]]]}}, {"id": "41904", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729056083, 35.233345387], [139.729070584, 35.233336387], [139.729037328, 35.23331236], [139.729056083, 35.233345387]]]}}, {"id": "41905", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601408781, 35.196956414], [139.601395422, 35.196904441], [139.601369728, 35.196904865], [139.601408781, 35.196956414]]]}}, {"id": "41906", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597353087, 35.224589414], [139.597338885, 35.224565865], [139.597319805, 35.224589081], [139.597353087, 35.224589414]]]}}, {"id": "41907", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738674617, 35.249789721], [139.738639611, 35.249825505], [139.738677224, 35.249812279], [139.738674617, 35.249789721]]]}}, {"id": "41908", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.596969468, 35.225082559], [139.597007419, 35.225110667], [139.597016472, 35.225087613], [139.596969468, 35.225082559]]]}}, {"id": "41909", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599016744, 35.194957441], [139.598972698, 35.194962865], [139.599028106, 35.194977946], [139.599016744, 35.194957441]]]}}, {"id": "41910", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607436913, 35.194124198], [139.607453191, 35.194075919], [139.607424189, 35.194081892], [139.607436913, 35.194124198]]]}}, {"id": "41911", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60750808, 35.194166694], [139.607505331, 35.194202027], [139.60753297, 35.19417936], [139.60750808, 35.194166694]]]}}, {"id": "41912", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588817756, 35.248259279], [139.588826861, 35.248225081], [139.588800441, 35.248235279], [139.588817756, 35.248259279]]]}}, {"id": "41913", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60234786, 35.222267468], [139.602299754, 35.222307414], [139.602364384, 35.222288414], [139.60234786, 35.222267468]]]}}, {"id": "41914", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734155227, 35.245343387], [139.734179364, 35.245375135], [139.734172607, 35.245328252], [139.734155227, 35.245343387]]]}}, {"id": "41915", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609074475, 35.191203225], [139.609063917, 35.191166081], [139.609041777, 35.191198838], [139.609074475, 35.191203225]]]}}, {"id": "41916", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592594773, 35.244021865], [139.592630584, 35.243992171], [139.592619974, 35.243975306], [139.592594773, 35.244021865]]]}}, {"id": "41917", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59793978, 35.223845171], [139.597966394, 35.223875946], [139.597963891, 35.223833108], [139.59793978, 35.223845171]]]}}, {"id": "41918", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611314968, 35.190142306], [139.611255058, 35.190125252], [139.611314838, 35.190149892], [139.611314968, 35.190142306]]]}}, {"id": "41919", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7433393, 35.259217613], [139.743311777, 35.259260054], [139.743344864, 35.259258919], [139.7433393, 35.259217613]]]}}, {"id": "41920", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599527613, 35.193690838], [139.599472776, 35.193702081], [139.59948428, 35.193719054], [139.599527613, 35.193690838]]]}}, {"id": "41921", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597265032, 35.224272198], [139.59724856, 35.224314], [139.597283606, 35.224301892], [139.597265032, 35.224272198]]]}}, {"id": "41922", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.72970834, 35.232584505], [139.729723969, 35.232639054], [139.729726783, 35.232584973], [139.72970834, 35.232584505]]]}}, {"id": "41923", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.608715084, 35.191199333], [139.608684137, 35.191233694], [139.608724578, 35.191212586], [139.608715084, 35.191199333]]]}}, {"id": "41924", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729170895, 35.233247135], [139.729124527, 35.233243865], [139.729157808, 35.233270559], [139.729170895, 35.233247135]]]}}, {"id": "41925", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600817458, 35.221598847], [139.600880506, 35.221583117], [139.600814163, 35.221582829], [139.600817458, 35.221598847]]]}}, {"id": "41926", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73013297, 35.229810694], [139.730089754, 35.229843802], [139.730097198, 35.229857532], [139.73013297, 35.229810694]]]}}, {"id": "41927", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.656899196, 35.303228], [139.656936667, 35.303241838], [139.65693297, 35.303221108], [139.656899196, 35.303228]]]}}, {"id": "41928", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.601458716, 35.197071802], [139.601409689, 35.197054387], [139.601459585, 35.197086135], [139.601458716, 35.197071802]]]}}, {"id": "41929", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60202297, 35.225765694], [139.601993917, 35.225747892], [139.601979883, 35.225779505], [139.60202297, 35.225765694]]]}}, {"id": "41930", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.578354812, 35.25304236], [139.578392283, 35.253067252], [139.578390506, 35.253034838], [139.578354812, 35.25304236]]]}}, {"id": "41931", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.600548859, 35.223249387], [139.600598807, 35.223225414], [139.600589053, 35.223216468], [139.600548859, 35.223249387]]]}}, {"id": "41932", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597528755, 35.224284252], [139.597547471, 35.224235081], [139.597528807, 35.224234135], [139.597528755, 35.224284252]]]}}, {"id": "41933", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599683502, 35.196772694], [139.599635473, 35.196752414], [139.599630726, 35.196758802], [139.599683502, 35.196772694]]]}}, {"id": "41934", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742608638, 35.258768252], [139.742605499, 35.258814505], [139.742630506, 35.25877764], [139.742608638, 35.258768252]]]}}, {"id": "41935", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655677691, 35.303914532], [139.655710078, 35.303881225], [139.655670272, 35.303883333], [139.655677691, 35.303914532]]]}}, {"id": "41936", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.72878939, 35.228581775], [139.728836719, 35.228580919], [139.728803022, 35.228571414], [139.72878939, 35.228581775]]]}}, {"id": "41937", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728613645, 35.228048505], [139.728660973, 35.22804764], [139.728627276, 35.228038252], [139.728613645, 35.228048505]]]}}, {"id": "41938", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.733047445, 35.266700721], [139.73303192, 35.266738387], [139.73304808, 35.266723973], [139.733047445, 35.266700721]]]}}, {"id": "41939", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589435357, 35.247746865], [139.589453333, 35.247779414], [139.589457108, 35.247749306], [139.589435357, 35.247746865]]]}}, {"id": "41940", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.732933307, 35.266646441], [139.732952827, 35.266692973], [139.732972944, 35.266680559], [139.732933307, 35.266646441]]]}}, {"id": "41941", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739830337, 35.26018436], [139.739823917, 35.260145225], [139.739795642, 35.260167559], [139.739830337, 35.26018436]]]}}, {"id": "41942", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.595129027, 35.24321036], [139.595170895, 35.243209532], [139.595131505, 35.243194946], [139.595129027, 35.24321036]]]}}, {"id": "41943", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597293528, 35.22467836], [139.597279468, 35.224711414], [139.597308301, 35.224694532], [139.597293528, 35.22467836]]]}}, {"id": "41944", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591493528, 35.245180252], [139.59151939, 35.245164171], [139.591499222, 35.245144225], [139.591493528, 35.245180252]]]}}, {"id": "41945", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727646641, 35.264816721], [139.72770144, 35.264833802], [139.727728495, 35.264820586], [139.727646641, 35.264816721]]]}}, {"id": "41946", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729389754, 35.229018414], [139.72942808, 35.22903836], [139.729423943, 35.229010333], [139.729389754, 35.229018414]]]}}, {"id": "41947", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.707479689, 35.209971279], [139.707472412, 35.20991764], [139.707457691, 35.209916721], [139.707479689, 35.209971279]]]}}, {"id": "41948", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602321971, 35.222835054], [139.602296887, 35.222811667], [139.60227345, 35.222827225], [139.602321971, 35.222835054]]]}}, {"id": "41949", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59628428, 35.242240865], [139.596263113, 35.24226364], [139.596289364, 35.242270892], [139.59628428, 35.242240865]]]}}, {"id": "41950", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607750584, 35.193319252], [139.607737886, 35.19334636], [139.607763307, 35.193363081], [139.607750584, 35.193319252]]]}}, {"id": "41951", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.730079559, 35.229902135], [139.730097756, 35.229939559], [139.730102503, 35.229910441], [139.730079559, 35.229902135]]]}}, {"id": "41952", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728947665, 35.228777054], [139.728985253, 35.228771135], [139.72894, 35.228756613], [139.728947665, 35.228777054]]]}}, {"id": "41953", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591344553, 35.244691559], [139.591314137, 35.244713667], [139.591350752, 35.244708414], [139.591344553, 35.244691559]]]}}, {"id": "41954", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.59163978, 35.244545748], [139.59160939, 35.244567865], [139.591646005, 35.24456264], [139.59163978, 35.244545748]]]}}, {"id": "41955", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591658003, 35.244707054], [139.591679053, 35.244681054], [139.591651556, 35.244692802], [139.591658003, 35.244707054]]]}}, {"id": "41956", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591508911, 35.244698919], [139.591478495, 35.244720946], [139.59151511, 35.244715694], [139.591508911, 35.244698919]]]}}, {"id": "41957", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728897691, 35.233478667], [139.728857588, 35.23348736], [139.728891089, 35.233499559], [139.728897691, 35.233478667]]]}}, {"id": "41958", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591174669, 35.245168613], [139.591192944, 35.245195694], [139.591202672, 35.245179505], [139.591174669, 35.245168613]]]}}, {"id": "41959", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73982786, 35.260241946], [139.739794812, 35.260229135], [139.739798054, 35.260253667], [139.73982786, 35.260241946]]]}}, {"id": "41960", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739155084, 35.262103892], [139.739190895, 35.262122027], [139.739196939, 35.262109135], [139.739155084, 35.262103892]]]}}, {"id": "41961", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592046498, 35.244757135], [139.592081141, 35.244745306], [139.592056667, 35.244732027], [139.592046498, 35.244757135]]]}}, {"id": "41962", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.599758197, 35.196689919], [139.599742802, 35.196654468], [139.599728975, 35.196659027], [139.599758197, 35.196689919]]]}}, {"id": "41963", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734050558, 35.265844279], [139.734019689, 35.265821973], [139.734021193, 35.265861468], [139.734050558, 35.265844279]]]}}, {"id": "41964", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738558275, 35.261933586], [139.738535331, 35.261911505], [139.738523113, 35.261921306], [139.738558275, 35.261933586]]]}}, {"id": "41965", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610374475, 35.222519694], [139.61042061, 35.222523198], [139.610422283, 35.222515802], [139.610374475, 35.222519694]]]}}, {"id": "41966", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.728727665, 35.228216721], [139.728692633, 35.228205171], [139.728699559, 35.228219306], [139.728727665, 35.228216721]]]}}, {"id": "41967", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.729336252, 35.228864946], [139.729301193, 35.22885336], [139.729308003, 35.228867441], [139.729336252, 35.228864946]]]}}, {"id": "41968", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739178975, 35.262163586], [139.739197471, 35.262131586], [139.739159754, 35.262143387], [139.739178975, 35.262163586]]]}}, {"id": "41969", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727705136, 35.264528306], [139.727748223, 35.264534468], [139.727766057, 35.264514108], [139.727705136, 35.264528306]]]}}, {"id": "41970", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73775808, 35.261988946], [139.737785383, 35.261962838], [139.737743606, 35.261977946], [139.73775808, 35.261988946]]]}}, {"id": "41971", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742092581, 35.258629748], [139.742089416, 35.258605613], [139.742071699, 35.258634333], [139.742092581, 35.258629748]]]}}, {"id": "41972", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592581751, 35.245002279], [139.592605084, 35.245020171], [139.592617717, 35.244993919], [139.592581751, 35.245002279]]]}}, {"id": "41973", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739598859, 35.261546694], [139.739613502, 35.261519468], [139.739571634, 35.261518108], [139.739598859, 35.261546694]]]}}, {"id": "41974", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.718233281, 35.264000441], [139.71824808, 35.264024171], [139.718253722, 35.264004171], [139.718233281, 35.264000441]]]}}, {"id": "41975", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.592600661, 35.244299946], [139.592587665, 35.244275946], [139.592583256, 35.244283414], [139.592600661, 35.244299946]]]}}, {"id": "41976", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609045331, 35.208315775], [139.609038106, 35.208348946], [139.609060143, 35.208327252], [139.609045331, 35.208315775]]]}}, {"id": "41977", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591817523, 35.244418559], [139.591790195, 35.244438171], [139.591815551, 35.244445252], [139.591817523, 35.244418559]]]}}, {"id": "41978", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.598819974, 35.19522264], [139.598811115, 35.195247505], [139.598832438, 35.195241505], [139.598819974, 35.19522264]]]}}, {"id": "41979", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.734976744, 35.262773468], [139.734966589, 35.262740586], [139.73494061, 35.262753802], [139.734976744, 35.262773468]]]}}, {"id": "41980", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591375746, 35.244951135], [139.59135725, 35.244924171], [139.591353333, 35.244948306], [139.591375746, 35.244951135]]]}}, {"id": "41981", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.597752827, 35.223953865], [139.597757056, 35.223930613], [139.597735642, 35.223936171], [139.597752827, 35.223953865]]]}}, {"id": "41982", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738115746, 35.262064225], [139.738158716, 35.262067586], [139.73810192, 35.262047721], [139.738115746, 35.262064225]]]}}, {"id": "41983", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.7278493, 35.265410225], [139.727875577, 35.265390135], [139.727853307, 35.265379468], [139.7278493, 35.265410225]]]}}, {"id": "41984", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.58015022, 35.253613748], [139.580150195, 35.253641667], [139.580162555, 35.253631892], [139.58015022, 35.253613748]]]}}, {"id": "41985", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727970661, 35.265483892], [139.727973191, 35.265465387], [139.727945616, 35.265474748], [139.727970661, 35.265483892]]]}}, {"id": "41986", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.738048975, 35.262222721], [139.738036887, 35.262204171], [139.7380193, 35.262213973], [139.738048975, 35.262222721]]]}}, {"id": "41987", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.588171582, 35.249702613], [139.588189001, 35.249727748], [139.588198885, 35.249717946], [139.588171582, 35.249702613]]]}}, {"id": "41988", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589079364, 35.248371802], [139.589110415, 35.248381586], [139.589112412, 35.248371919], [139.589079364, 35.248371802]]]}}, {"id": "41989", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.73903834, 35.261847973], [139.739025616, 35.261828027], [139.739021388, 35.26185436], [139.73903834, 35.261847973]]]}}, {"id": "41990", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.58941834, 35.248109667], [139.589419533, 35.248130613], [139.589431634, 35.248121892], [139.58941834, 35.248109667]]]}}, {"id": "41991", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742520337, 35.258718694], [139.742521894, 35.258692919], [139.742496913, 35.258717865], [139.742520337, 35.258718694]]]}}, {"id": "41992", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727785279, 35.264688306], [139.727815837, 35.264691387], [139.727781777, 35.264671333], [139.727785279, 35.264688306]]]}}, {"id": "41993", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655763839, 35.303845613], [139.655780584, 35.303828694], [139.65575856, 35.303838306], [139.655763839, 35.303845613]]]}}, {"id": "41994", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.591995772, 35.244706108], [139.592011089, 35.244689387], [139.591985136, 35.244698613], [139.591995772, 35.244706108]]]}}, {"id": "41995", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655730752, 35.303880721], [139.655745188, 35.303867667], [139.655722529, 35.303868532], [139.655730752, 35.303880721]]]}}, {"id": "41996", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739087471, 35.261827559], [139.739071673, 35.261804468], [139.739065084, 35.261813387], [139.739087471, 35.261827559]]]}}, {"id": "41997", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742465279, 35.258711721], [139.742472555, 35.258689279], [139.742453969, 35.258703667], [139.742465279, 35.258711721]]]}}, {"id": "41998", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655654968, 35.303893586], [139.655636329, 35.303911865], [139.655649974, 35.303916838], [139.655654968, 35.303893586]]]}}, {"id": "41999", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.739538664, 35.261510775], [139.739522412, 35.261494171], [139.739521089, 35.261510135], [139.739538664, 35.261510775]]]}}, {"id": "42000", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727768949, 35.265422306], [139.727760389, 35.265397252], [139.7277562, 35.265407694], [139.727768949, 35.265422306]]]}}, {"id": "42001", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.742455227, 35.258560892], [139.742439637, 35.258541775], [139.742430947, 35.258551586], [139.742455227, 35.258560892]]]}}, {"id": "42002", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727731829, 35.264699694], [139.72773083, 35.264719252], [139.727745772, 35.264710802], [139.727731829, 35.264699694]]]}}, {"id": "42003", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.727702633, 35.264753306], [139.727725383, 35.264753865], [139.727710143, 35.264746838], [139.727702633, 35.264753306]]]}}, {"id": "42004", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "横須賀市", "N03_005": null, "N03_007": "14201"}, "geometry": {"type": "Polygon", "coordinates": [[[139.589680752, 35.248390748], [139.589690921, 35.248402468], [139.58969428, 35.248392054], [139.589680752, 35.248390748]]]}}, {"id": "42005", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "平塚市", "N03_005": null, "N03_007": "14203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.374360739, 35.315332604], [139.251052438, 35.328752468], [139.238740337, 35.346438748], [139.302763191, 35.388212559], [139.318220311, 35.370006225], [139.319644553, 35.383222613], [139.347874812, 35.378826559], [139.356501855, 35.403799027], [139.373469027, 35.394500468], [139.374360739, 35.315332604]]]}}, {"id": "42006", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "平塚市", "N03_005": null, "N03_007": "14203"}, "geometry": {"type": "Polygon", "coordinates": [[[139.368824137, 35.313657505], [139.368707665, 35.313011946], [139.368757134, 35.313660081], [139.368824137, 35.313657505]]]}}, {"id": "42007", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "鎌倉市", "N03_005": null, "N03_007": "14204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.488701894, 35.308334171], [139.516833671, 35.341367414], [139.495078781, 35.358099838], [139.502591051, 35.367547586], [139.530853995, 35.354106252], [139.54695153, 35.362586468], [139.593059585, 35.323763892], [139.551905473, 35.299405775], [139.488701894, 35.308334171]]]}}, {"id": "42008", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "鎌倉市", "N03_005": null, "N03_007": "14204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.550667562, 35.300472135], [139.550607328, 35.300844378], [139.550942724, 35.300708054], [139.550667562, 35.300472135]]]}}, {"id": "42009", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.438044838, 35.31914555], [139.430765914, 35.384831667], [139.404431167, 35.377479414], [139.393982672, 35.397642414], [139.412916693, 35.419060171], [139.448752996, 35.407505775], [139.456845279, 35.416521586], [139.443645357, 35.427606838], [139.466153969, 35.429080441], [139.493252529, 35.376481171], [139.485732412, 35.359514], [139.516833671, 35.341367414], [139.483012477, 35.304327225], [139.438044838, 35.31914555]]]}}, {"id": "42010", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483155914, 35.297214802], [139.483182802, 35.303539865], [139.488036667, 35.298933973], [139.483155914, 35.297214802]]]}}, {"id": "42011", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48407642, 35.296761333], [139.483852555, 35.297474892], [139.483910752, 35.297570892], [139.48407642, 35.296761333]]]}}, {"id": "42012", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477817588, 35.297475252], [139.477707886, 35.297778802], [139.477866744, 35.298302], [139.477817588, 35.297475252]]]}}, {"id": "42013", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483573281, 35.29747464], [139.483755357, 35.297170748], [139.48369725, 35.297106505], [139.483573281, 35.29747464]]]}}, {"id": "42014", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.485028145, 35.296895973], [139.485250272, 35.29647764], [139.484913165, 35.296962252], [139.485028145, 35.296895973]]]}}, {"id": "42015", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476843476, 35.297758505], [139.477040584, 35.297642775], [139.477012918, 35.297480171], [139.476843476, 35.297758505]]]}}, {"id": "42016", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48330847, 35.296873973], [139.483376472, 35.297116838], [139.483438366, 35.296810333], [139.48330847, 35.296873973]]]}}, {"id": "42017", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479495746, 35.297386613], [139.479330895, 35.297440748], [139.479576693, 35.297532865], [139.479495746, 35.297386613]]]}}, {"id": "42018", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478816524, 35.297569279], [139.478929339, 35.297795802], [139.478856667, 35.297513081], [139.478816524, 35.297569279]]]}}, {"id": "42019", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475595447, 35.297674135], [139.47579489, 35.297549613], [139.475752802, 35.29746764], [139.475595447, 35.297674135]]]}}, {"id": "42020", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474971115, 35.297929198], [139.475142244, 35.297917171], [139.475103722, 35.297857027], [139.474971115, 35.297929198]]]}}, {"id": "42021", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479362555, 35.297112892], [139.479355447, 35.297306333], [139.479462309, 35.297311414], [139.479362555, 35.297112892]]]}}, {"id": "42022", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475011414, 35.299862027], [139.474872244, 35.300005306], [139.474961479, 35.300094973], [139.475011414, 35.299862027]]]}}, {"id": "42023", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482660778, 35.297549973], [139.48275022, 35.297388225], [139.482704617, 35.297283081], [139.482660778, 35.297549973]]]}}, {"id": "42024", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480042503, 35.297224865], [139.480187224, 35.297169027], [139.480063113, 35.297104865], [139.480042503, 35.297224865]]]}}, {"id": "42025", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478385447, 35.297783505], [139.47848275, 35.297990198], [139.478411362, 35.297766694], [139.478385447, 35.297783505]]]}}, {"id": "42026", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482810752, 35.297397333], [139.48288572, 35.297278108], [139.482829663, 35.297217559], [139.482810752, 35.297397333]]]}}, {"id": "42027", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478459105, 35.298069613], [139.478563281, 35.298155838], [139.478516524, 35.29798364], [139.478459105, 35.298069613]]]}}, {"id": "42028", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4841407, 35.296796865], [139.484258106, 35.296848946], [139.484114332, 35.296737559], [139.4841407, 35.296796865]]]}}, {"id": "42029", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478630363, 35.297570667], [139.47867511, 35.297700505], [139.478659494, 35.297495667], [139.478630363, 35.297570667]]]}}, {"id": "42030", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478280506, 35.297972225], [139.478378807, 35.298047414], [139.478289468, 35.297910306], [139.478280506, 35.297972225]]]}}, {"id": "42031", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479342309, 35.301671505], [139.479322477, 35.301853171], [139.479439274, 35.301822586], [139.479342309, 35.301671505]]]}}, {"id": "42032", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479731505, 35.297682333], [139.479752244, 35.297562054], [139.479682802, 35.297554532], [139.479731505, 35.297682333]]]}}, {"id": "42033", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476178106, 35.297794306], [139.476282387, 35.297628387], [139.476266809, 35.297601387], [139.476178106, 35.297794306]]]}}, {"id": "42034", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47767511, 35.298072279], [139.477732412, 35.297926], [139.47771144, 35.297908973], [139.47767511, 35.298072279]]]}}, {"id": "42035", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478670415, 35.297845613], [139.478772088, 35.297850892], [139.478706005, 35.297674441], [139.478670415, 35.297845613]]]}}, {"id": "42036", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.484192724, 35.297255387], [139.484174358, 35.297148171], [139.484158495, 35.297261252], [139.484192724, 35.297255387]]]}}, {"id": "42037", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482568755, 35.297451081], [139.482550895, 35.297336441], [139.482532335, 35.297453414], [139.482568755, 35.297451081]]]}}, {"id": "42038", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47927572, 35.302059802], [139.479361479, 35.302063387], [139.479352529, 35.302023694], [139.47927572, 35.302059802]]]}}, {"id": "42039", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479923165, 35.297045225], [139.480007588, 35.297115054], [139.479941777, 35.297014532], [139.479923165, 35.297045225]]]}}, {"id": "42040", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476034501, 35.297869054], [139.476095006, 35.297890054], [139.476088716, 35.297816468], [139.476034501, 35.297869054]]]}}, {"id": "42041", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483752114, 35.296879387], [139.483788029, 35.296781252], [139.483716783, 35.296780225], [139.483752114, 35.296879387]]]}}, {"id": "42042", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47852144, 35.297636225], [139.478495914, 35.297718279], [139.478518249, 35.297723306], [139.47852144, 35.297636225]]]}}, {"id": "42043", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476835447, 35.297631198], [139.47686594, 35.297498865], [139.476851167, 35.297480532], [139.476835447, 35.297631198]]]}}, {"id": "42044", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483737056, 35.296744946], [139.483768106, 35.296685198], [139.483708807, 35.29669636], [139.483737056, 35.296744946]]]}}, {"id": "42045", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480042166, 35.297062775], [139.480126978, 35.297055721], [139.48006847, 35.297009414], [139.480042166, 35.297062775]]]}}, {"id": "42046", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47954153, 35.297703414], [139.479620584, 35.297701387], [139.479545577, 35.297679613], [139.47954153, 35.297703414]]]}}, {"id": "42047", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47428786, 35.299499387], [139.474355422, 35.299439198], [139.474354137, 35.299403054], [139.47428786, 35.299499387]]]}}, {"id": "42048", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477888755, 35.298474135], [139.477922529, 35.298390865], [139.477888716, 35.298382279], [139.477888755, 35.298474135]]]}}, {"id": "42049", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477646861, 35.297817919], [139.477705357, 35.297865694], [139.477684838, 35.297805865], [139.477646861, 35.297817919]]]}}, {"id": "42050", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479006783, 35.297485838], [139.479064501, 35.297447198], [139.478998366, 35.297430027], [139.479006783, 35.297485838]]]}}, {"id": "42051", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478491582, 35.297881532], [139.478505447, 35.297780054], [139.478483748, 35.297758802], [139.478491582, 35.297881532]]]}}, {"id": "42052", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480970584, 35.297424613], [139.481039442, 35.297493054], [139.481080441, 35.297532306], [139.480970584, 35.297424613]]]}}, {"id": "42053", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479695058, 35.302303892], [139.479708975, 35.302236198], [139.479681219, 35.302297081], [139.479695058, 35.302303892]]]}}, {"id": "42054", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478311219, 35.298141775], [139.478290856, 35.298069586], [139.478269728, 35.298073135], [139.478311219, 35.298141775]]]}}, {"id": "42055", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477938366, 35.29846564], [139.477994501, 35.29843064], [139.477953696, 35.298407441], [139.477938366, 35.29846564]]]}}, {"id": "42056", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479381582, 35.301867225], [139.479436355, 35.301891], [139.479452438, 35.301857946], [139.479381582, 35.301867225]]]}}, {"id": "42057", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477097782, 35.297410027], [139.477120506, 35.297319865], [139.477089637, 35.297410892], [139.477097782, 35.297410027]]]}}, {"id": "42058", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479624189, 35.302188027], [139.479666589, 35.302146306], [139.479578249, 35.302107559], [139.479624189, 35.302188027]]]}}, {"id": "42059", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477113191, 35.297383387], [139.477125694, 35.297416414], [139.477129053, 35.297448252], [139.477162244, 35.297399225], [139.477141608, 35.297369135], [139.477113191, 35.297383387]]]}}, {"id": "42060", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479475914, 35.297769919], [139.47954978, 35.297805108], [139.479475357, 35.297745667], [139.479475914, 35.297769919]]]}}, {"id": "42061", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483120363, 35.296947414], [139.483122503, 35.296910559], [139.483096719, 35.296920135], [139.483120363, 35.296947414]]]}}, {"id": "42062", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482965863, 35.297331721], [139.482933385, 35.297288081], [139.482948807, 35.297336532], [139.482965863, 35.297331721]]]}}, {"id": "42063", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479576005, 35.297663306], [139.479605032, 35.297636081], [139.479555888, 35.297621387], [139.479576005, 35.297663306]]]}}, {"id": "42064", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476132944, 35.297662027], [139.476130467, 35.297597838], [139.476119754, 35.29766036], [139.476132944, 35.297662027]]]}}, {"id": "42065", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476097588, 35.298049613], [139.476123281, 35.298010667], [139.476083281, 35.298023694], [139.476097588, 35.298049613]]]}}, {"id": "42066", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47420297, 35.299427468], [139.474222023, 35.299371027], [139.474193022, 35.299385252], [139.47420297, 35.299427468]]]}}, {"id": "42067", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478537613, 35.297864532], [139.478557004, 35.297830775], [139.478526329, 35.297827171], [139.478537613, 35.297864532]]]}}, {"id": "42068", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477025188, 35.297236838], [139.477073333, 35.297218135], [139.4770562, 35.297204306], [139.477025188, 35.297236838]]]}}, {"id": "42069", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476148638, 35.297492694], [139.476124423, 35.297444667], [139.476119922, 35.297500081], [139.476148638, 35.297492694]]]}}, {"id": "42070", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.484953995, 35.296826802], [139.484912672, 35.296820802], [139.484917951, 35.296848865], [139.484953995, 35.296826802]]]}}, {"id": "42071", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479561608, 35.301886865], [139.479527834, 35.301860586], [139.479531803, 35.301915333], [139.479561608, 35.301886865]]]}}, {"id": "42072", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479975577, 35.297587667], [139.479954358, 35.297553468], [139.47994144, 35.297572135], [139.479975577, 35.297587667]]]}}, {"id": "42073", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477009559, 35.297347306], [139.477043891, 35.297339559], [139.47702834, 35.297323198], [139.477009559, 35.297347306]]]}}, {"id": "42074", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478096304, 35.301181054], [139.478121414, 35.301148054], [139.478087445, 35.301172468], [139.478096304, 35.301181054]]]}}, {"id": "42075", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479598145, 35.297806414], [139.479620973, 35.297844], [139.479651997, 35.297839306], [139.479598145, 35.297806414]]]}}, {"id": "42076", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478992996, 35.297646171], [139.479024086, 35.297631135], [139.479006524, 35.297594838], [139.478992996, 35.297646171]]]}}, {"id": "42077", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482879416, 35.297208054], [139.482832049, 35.297178], [139.482831245, 35.297185387], [139.482879416, 35.297208054]]]}}, {"id": "42078", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478433943, 35.297683027], [139.478443671, 35.297645748], [139.478426135, 35.297634775], [139.478433943, 35.297683027]]]}}, {"id": "42079", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47829808, 35.298229532], [139.478261634, 35.298237252], [139.478288106, 35.298242919], [139.47829808, 35.298229532]]]}}, {"id": "42080", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479660778, 35.297409802], [139.479667639, 35.297375919], [139.479645863, 35.29738], [139.479660778, 35.297409802]]]}}, {"id": "42081", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479446667, 35.302125108], [139.479477717, 35.302111694], [139.479469416, 35.302101838], [139.479446667, 35.302125108]]]}}, {"id": "42082", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482495914, 35.297075694], [139.482508029, 35.297050225], [139.482475331, 35.297059225], [139.482495914, 35.297075694]]]}}, {"id": "42083", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477952698, 35.298310892], [139.477958444, 35.298253586], [139.477936498, 35.298315441], [139.477952698, 35.298310892]]]}}, {"id": "42084", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479948054, 35.297546108], [139.479940467, 35.297519775], [139.479918418, 35.297539054], [139.479948054, 35.297546108]]]}}, {"id": "42085", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478311803, 35.301187108], [139.478331193, 35.301158252], [139.478302114, 35.301165532], [139.478311803, 35.301187108]]]}}, {"id": "42086", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480287639, 35.30239664], [139.480340441, 35.302392387], [139.480345006, 35.302385559], [139.480287639, 35.30239664]]]}}, {"id": "42087", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478858638, 35.297998838], [139.478825253, 35.297990108], [139.478836394, 35.298007559], [139.478858638, 35.297998838]]]}}, {"id": "42088", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478652335, 35.301314054], [139.478668054, 35.301290108], [139.478658911, 35.30129], [139.478652335, 35.301314054]]]}}, {"id": "42089", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474317302, 35.299231225], [139.474335888, 35.299205027], [139.474324578, 35.299199613], [139.474317302, 35.299231225]]]}}, {"id": "42090", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478817523, 35.297792775], [139.478834747, 35.297778946], [139.478809105, 35.297759667], [139.478817523, 35.297792775]]]}}, {"id": "42091", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479821803, 35.297669252], [139.479816355, 35.297639108], [139.479805032, 35.297667306], [139.479821803, 35.297669252]]]}}, {"id": "42092", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477939585, 35.301011135], [139.477950467, 35.300984306], [139.477928612, 35.301007586], [139.477939585, 35.301011135]]]}}, {"id": "42093", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474299027, 35.299264532], [139.474311362, 35.299234279], [139.47430131, 35.299219198], [139.474299027, 35.299264532]]]}}, {"id": "42094", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476092827, 35.298109279], [139.476092607, 35.298090892], [139.476068885, 35.298106946], [139.476092827, 35.298109279]]]}}, {"id": "42095", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480811777, 35.297965279], [139.480784254, 35.297945919], [139.480770026, 35.297954667], [139.480811777, 35.297965279]]]}}, {"id": "42096", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479380195, 35.301958441], [139.479405006, 35.301958559], [139.479384968, 35.301937441], [139.479380195, 35.301958441]]]}}, {"id": "42097", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478275888, 35.29840164], [139.478282335, 35.298386694], [139.478255084, 35.298382], [139.478275888, 35.29840164]]]}}, {"id": "42098", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479895914, 35.302184306], [139.479914695, 35.302160559], [139.479892776, 35.302168892], [139.479895914, 35.302184306]]]}}, {"id": "42099", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478886861, 35.297979027], [139.478881219, 35.297965505], [139.478872283, 35.297972586], [139.478886861, 35.297979027]]]}}, {"id": "42100", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478965136, 35.297931027], [139.4789693, 35.29788436], [139.478958638, 35.297937054], [139.478965136, 35.297931027]]]}}, {"id": "42101", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477368885, 35.297490414], [139.477389585, 35.297510667], [139.477394527, 35.297491387], [139.477368885, 35.297490414]]]}}, {"id": "42102", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478358833, 35.297763306], [139.478381855, 35.297755559], [139.478359416, 35.297751414], [139.478358833, 35.297763306]]]}}, {"id": "42103", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479562944, 35.297933865], [139.479541193, 35.297933081], [139.479553865, 35.297949694], [139.479562944, 35.297933865]]]}}, {"id": "42104", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477439728, 35.29750236], [139.477430415, 35.297480775], [139.477418664, 35.297503559], [139.477439728, 35.29750236]]]}}, {"id": "42105", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479579144, 35.297801946], [139.479594034, 35.297788838], [139.479580804, 35.297777387], [139.479579144, 35.297801946]]]}}, {"id": "42106", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480052503, 35.302204865], [139.480069196, 35.302188694], [139.480052802, 35.302187198], [139.480052503, 35.302204865]]]}}, {"id": "42107", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480765136, 35.297941171], [139.480737912, 35.297932973], [139.48074511, 35.297947694], [139.480765136, 35.297941171]]]}}, {"id": "42108", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477927419, 35.301078721], [139.477947302, 35.301056505], [139.477922387, 35.301070865], [139.477927419, 35.301078721]]]}}, {"id": "42109", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479703307, 35.297793306], [139.479716278, 35.297772054], [139.47970297, 35.297768252], [139.479703307, 35.297793306]]]}}, {"id": "42110", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480771829, 35.297998252], [139.480778755, 35.29797664], [139.480758029, 35.297985135], [139.480771829, 35.297998252]]]}}, {"id": "42111", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479658392, 35.297911441], [139.479638755, 35.297899198], [139.479639416, 35.297924441], [139.479658392, 35.297911441]]]}}, {"id": "42112", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480436252, 35.297417108], [139.480417276, 35.297431468], [139.480441582, 35.297429559], [139.480436252, 35.297417108]]]}}, {"id": "42113", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47961847, 35.301982919], [139.479643385, 35.301979667], [139.479598392, 35.301966802], [139.47961847, 35.301982919]]]}}, {"id": "42114", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479694747, 35.297715748], [139.479676719, 35.297715694], [139.479684553, 35.297729973], [139.479694747, 35.297715748]]]}}, {"id": "42115", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48018642, 35.297093198], [139.480163696, 35.297082775], [139.480183411, 35.297098081], [139.48018642, 35.297093198]]]}}, {"id": "42116", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478902581, 35.301419414], [139.478911803, 35.301397279], [139.478900363, 35.301398225], [139.478902581, 35.301419414]]]}}, {"id": "42117", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478054578, 35.301138306], [139.47805489, 35.301121279], [139.478038054, 35.301123838], [139.478054578, 35.301138306]]]}}, {"id": "42118", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479719533, 35.297705279], [139.479708612, 35.297685505], [139.479706005, 35.297706306], [139.479719533, 35.297705279]]]}}, {"id": "42119", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479711971, 35.297900946], [139.479695227, 35.297910838], [139.479713217, 35.297915198], [139.479711971, 35.297900946]]]}}, {"id": "42120", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478547419, 35.297910973], [139.478535084, 35.297888946], [139.478541582, 35.297913838], [139.478547419, 35.297910973]]]}}, {"id": "42121", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478097302, 35.298455919], [139.478087367, 35.298437775], [139.478080752, 35.298441441], [139.478097302, 35.298455919]]]}}, {"id": "42122", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479709611, 35.297455279], [139.479690195, 35.297446108], [139.479694189, 35.297460306], [139.479709611, 35.297455279]]]}}, {"id": "42123", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480816887, 35.297899946], [139.480822088, 35.297919892], [139.480823943, 35.297899694], [139.480816887, 35.297899946]]]}}, {"id": "42124", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479831388, 35.297620973], [139.479847497, 35.297608748], [139.479825694, 35.297615], [139.479831388, 35.297620973]]]}}, {"id": "42125", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478533217, 35.297809613], [139.478544643, 35.297791081], [139.478527367, 35.297794081], [139.478533217, 35.297809613]]]}}, {"id": "42126", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479794501, 35.297556225], [139.479812581, 35.297543919], [139.479796304, 35.297544694], [139.479794501, 35.297556225]]]}}, {"id": "42127", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477973671, 35.301139054], [139.477990337, 35.301125667], [139.477969196, 35.301130306], [139.477973671, 35.301139054]]]}}, {"id": "42128", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480760467, 35.297878946], [139.480747562, 35.297864775], [139.480749364, 35.297880559], [139.480760467, 35.297878946]]]}}, {"id": "42129", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479726939, 35.302099171], [139.479742581, 35.302108225], [139.4797338, 35.302091081], [139.479726939, 35.302099171]]]}}, {"id": "42130", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479702088, 35.297674306], [139.479684643, 35.297661802], [139.479681414, 35.297671], [139.479702088, 35.297674306]]]}}, {"id": "42131", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478275383, 35.298511694], [139.478260078, 35.298520468], [139.478276693, 35.298520081], [139.478275383, 35.298511694]]]}}, {"id": "42132", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475958885, 35.297888586], [139.475947717, 35.297876081], [139.475947756, 35.297892054], [139.475958885, 35.297888586]]]}}, {"id": "42133", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479468612, 35.297353081], [139.479466252, 35.297341252], [139.479451608, 35.297346532], [139.479468612, 35.297353081]]]}}, {"id": "42134", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476391634, 35.297566505], [139.476407173, 35.297559441], [139.476391634, 35.297558414], [139.476391634, 35.297566505]]]}}, {"id": "42135", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479762166, 35.29778436], [139.479762335, 35.297763414], [139.47975297, 35.297780027], [139.479762166, 35.29778436]]]}}, {"id": "42136", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480717756, 35.297769027], [139.48072655, 35.297790414], [139.480723671, 35.297769054], [139.480717756, 35.297769027]]]}}, {"id": "42137", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479644773, 35.302259027], [139.479634475, 35.302252775], [139.479629663, 35.30226736], [139.479644773, 35.302259027]]]}}, {"id": "42138", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478647108, 35.301249027], [139.478635188, 35.30123564], [139.478637328, 35.301248108], [139.478647108, 35.301249027]]]}}, {"id": "42139", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479671971, 35.297766333], [139.479656135, 35.297771198], [139.47966192, 35.297778468], [139.479671971, 35.297766333]]]}}, {"id": "42140", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477342218, 35.297505027], [139.477327419, 35.297498135], [139.477328249, 35.297507171], [139.477342218, 35.297505027]]]}}, {"id": "42141", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478001388, 35.301163838], [139.478006135, 35.301154946], [139.477994578, 35.301157505], [139.478001388, 35.301163838]]]}}, {"id": "42142", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479459105, 35.297846135], [139.479449364, 35.29783764], [139.479449533, 35.297846468], [139.479459105, 35.297846135]]]}}, {"id": "42143", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477991167, 35.298670054], [139.477993191, 35.298659333], [139.47798406, 35.298664252], [139.477991167, 35.298670054]]]}}, {"id": "42144", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483282309, 35.297280973], [139.48328572, 35.297294694], [139.483293774, 35.297283171], [139.483282309, 35.297280973]]]}}, {"id": "42145", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476167497, 35.298001775], [139.476160856, 35.298013838], [139.476169248, 35.298006108], [139.476167497, 35.298001775]]]}}, {"id": "42146", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476491803, 35.297290775], [139.476498444, 35.297282505], [139.476486887, 35.297283054], [139.476491803, 35.297290775]]]}}, {"id": "42147", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478304086, 35.298364667], [139.478300052, 35.298354279], [139.478294086, 35.298362306], [139.478304086, 35.298364667]]]}}, {"id": "42148", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476491971, 35.297325135], [139.476490506, 35.297314387], [139.476485305, 35.297317721], [139.476491971, 35.297325135]]]}}, {"id": "42149", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480187328, 35.297133532], [139.480186524, 35.297145333], [139.48019214, 35.297139225], [139.480187328, 35.297133532]]]}}, {"id": "42150", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478088029, 35.298491306], [139.478082049, 35.298500135], [139.478092412, 35.298496667], [139.478088029, 35.298491306]]]}}, {"id": "42151", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476520532, 35.297309973], [139.476520143, 35.297299973], [139.476513722, 35.297304919], [139.476520532, 35.297309973]]]}}, {"id": "42152", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478038755, 35.298441946], [139.478028197, 35.298440387], [139.478031141, 35.298446973], [139.478038755, 35.298441946]]]}}, {"id": "42153", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478276744, 35.298317613], [139.478278807, 35.298309613], [139.478267471, 35.29831364], [139.478276744, 35.298317613]]]}}, {"id": "42154", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477969053, 35.298345387], [139.477959948, 35.298351333], [139.477967665, 35.298352775], [139.477969053, 35.298345387]]]}}, {"id": "42155", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476488275, 35.297370468], [139.476477393, 35.297368171], [139.476479922, 35.297371333], [139.476488275, 35.297370468]]]}}, {"id": "42156", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477323165, 35.297492559], [139.477312361, 35.29749836], [139.477318275, 35.297499198], [139.477323165, 35.297492559]]]}}, {"id": "42157", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48010511, 35.297482505], [139.480102607, 35.297474108], [139.480098003, 35.297476054], [139.48010511, 35.297482505]]]}}, {"id": "42158", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479987588, 35.302241721], [139.479996278, 35.302240306], [139.479993891, 35.302236468], [139.479987588, 35.302241721]]]}}, {"id": "42159", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480116667, 35.302295559], [139.480127808, 35.302290081], [139.480120117, 35.30228836], [139.480116667, 35.302295559]]]}}, {"id": "42160", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47890725, 35.301434225], [139.478902866, 35.301427441], [139.47889978, 35.301433414], [139.47890725, 35.301434225]]]}}, {"id": "42161", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480761362, 35.298003532], [139.480752918, 35.298009667], [139.480761336, 35.298009838], [139.480761362, 35.298003532]]]}}, {"id": "42162", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479982633, 35.297149946], [139.479973645, 35.297147505], [139.479978781, 35.297153], [139.479982633, 35.297149946]]]}}, {"id": "42163", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476548003, 35.297362252], [139.476545447, 35.297369919], [139.476550999, 35.297368748], [139.476548003, 35.297362252]]]}}, {"id": "42164", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479423748, 35.302054198], [139.479413995, 35.302049667], [139.479413087, 35.302055532], [139.479423748, 35.302054198]]]}}, {"id": "42165", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476510661, 35.297352333], [139.476502412, 35.297350054], [139.476503502, 35.29735464], [139.476510661, 35.297352333]]]}}, {"id": "42166", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479439754, 35.301739279], [139.479432192, 35.301743559], [139.479438521, 35.301745613], [139.479439754, 35.301739279]]]}}, {"id": "42167", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477661803, 35.300614135], [139.477652581, 35.300612667], [139.477660272, 35.300615775], [139.477661803, 35.300614135]]]}}, {"id": "42168", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479088145, 35.297488802], [139.479084254, 35.297497], [139.479090311, 35.297495027], [139.479088145, 35.297488802]]]}}, {"id": "42169", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476522581, 35.297345054], [139.476512802, 35.297342694], [139.476518275, 35.297348108], [139.476522581, 35.297345054]]]}}, {"id": "42170", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480151699, 35.302253748], [139.480156809, 35.302246], [139.480149805, 35.302246721], [139.480151699, 35.302253748]]]}}, {"id": "42171", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479978586, 35.302235559], [139.479987082, 35.302231171], [139.479978833, 35.302229252], [139.479978586, 35.302235559]]]}}, {"id": "42172", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480104643, 35.302332838], [139.480109948, 35.302327441], [139.480100895, 35.302329667], [139.480104643, 35.302332838]]]}}, {"id": "42173", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479785357, 35.297689973], [139.479778275, 35.297698414], [139.479780584, 35.297701505], [139.479785357, 35.297689973]]]}}, {"id": "42174", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47993642, 35.297012], [139.479927173, 35.297013414], [139.479935383, 35.297015694], [139.47993642, 35.297012]]]}}, {"id": "42175", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479587808, 35.297842775], [139.479585084, 35.297849279], [139.479591141, 35.297846532], [139.479587808, 35.297842775]]]}}, {"id": "42176", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475222555, 35.297727838], [139.475219831, 35.297722054], [139.4752162, 35.297724108], [139.475222555, 35.297727838]]]}}, {"id": "42177", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477940272, 35.300690468], [139.477935253, 35.300696532], [139.477940752, 35.300692225], [139.477940272, 35.300690468]]]}}, {"id": "42178", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479888885, 35.30220564], [139.479897691, 35.302205667], [139.479889416, 35.302201919], [139.479888885, 35.30220564]]]}}, {"id": "42179", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479291505, 35.301897865], [139.479290467, 35.301904892], [139.479294034, 35.301901838], [139.479291505, 35.301897865]]]}}, {"id": "42180", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478905642, 35.301445306], [139.478903696, 35.30143836], [139.478901388, 35.301441946], [139.478905642, 35.301445306]]]}}, {"id": "42181", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478280052, 35.298403892], [139.478276394, 35.298409198], [139.478282672, 35.298406532], [139.478280052, 35.298403892]]]}}, {"id": "42182", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477900441, 35.300656306], [139.477896252, 35.300661721], [139.477900415, 35.300661802], [139.477900441, 35.300656306]]]}}, {"id": "42183", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475188949, 35.297797946], [139.475183969, 35.297801081], [139.475187951, 35.297801748], [139.475188949, 35.297797946]]]}}, {"id": "42184", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477910947, 35.300668613], [139.477905694, 35.300664613], [139.477904137, 35.300666252], [139.477910947, 35.300668613]]]}}, {"id": "42185", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475236031, 35.297741027], [139.475230973, 35.297741279], [139.475235473, 35.297742387], [139.475236031, 35.297741027]]]}}, {"id": "42186", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480061556, 35.302327586], [139.480059689, 35.302322694], [139.480057912, 35.302325748], [139.480061556, 35.302327586]]]}}, {"id": "42187", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475239001, 35.297714279], [139.475232776, 35.297712748], [139.475236589, 35.297716532], [139.475239001, 35.297714279]]]}}, {"id": "42188", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479584358, 35.297767171], [139.479578521, 35.297767865], [139.479581803, 35.297770586], [139.479584358, 35.297767171]]]}}, {"id": "42189", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477978716, 35.298412081], [139.477982555, 35.298417], [139.47798358, 35.298413306], [139.477978716, 35.298412081]]]}}, {"id": "42190", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48014428, 35.302264279], [139.480141219, 35.302259667], [139.48013978, 35.302263], [139.48014428, 35.302264279]]]}}, {"id": "42191", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478589922, 35.297968973], [139.478594968, 35.297972946], [139.478595642, 35.297969171], [139.478589922, 35.297968973]]]}}, {"id": "42192", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477972724, 35.30074936], [139.477968444, 35.300746306], [139.477968781, 35.300748919], [139.477972724, 35.30074936]]]}}, {"id": "42193", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475248638, 35.29772664], [139.47524939, 35.297730694], [139.475252361, 35.29772964], [139.475248638, 35.29772664]]]}}, {"id": "42194", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475195136, 35.297786694], [139.475192049, 35.297790306], [139.475195253, 35.297789532], [139.475195136, 35.297786694]]]}}, {"id": "42195", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475182049, 35.297788198], [139.475178755, 35.297790613], [139.475182361, 35.297791441], [139.475182049, 35.297788198]]]}}, {"id": "42196", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475254163, 35.297716559], [139.475259442, 35.297718387], [139.475258911, 35.297715667], [139.475254163, 35.297716559]]]}}, {"id": "42197", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475186135, 35.297783973], [139.475182724, 35.297786306], [139.475184578, 35.297787586], [139.475186135, 35.297783973]]]}}, {"id": "42198", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478883113, 35.30141864], [139.478886809, 35.301420865], [139.478886939, 35.301419225], [139.478883113, 35.30141864]]]}}, {"id": "42199", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477952503, 35.300699721], [139.477954254, 35.300702279], [139.477955694, 35.300699838], [139.477952503, 35.300699721]]]}}, {"id": "42200", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.477961971, 35.300720775], [139.477961946, 35.300723279], [139.477963606, 35.300721505], [139.477961971, 35.300720775]]]}}, {"id": "42201", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "藤沢市", "N03_005": null, "N03_007": "14205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.478048638, 35.301039198], [139.478050195, 35.301036802], [139.478048223, 35.301038171], [139.478048638, 35.301039198]]]}}, {"id": "42202", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.059424812, 35.247056333], [139.060050363, 35.271822748], [139.137618521, 35.288945027], [139.136216615, 35.322560838], [139.155363502, 35.313332532], [139.180317367, 35.329920586], [139.203084449, 35.307221027], [139.238070752, 35.314935748], [139.237622335, 35.288881306], [139.146552166, 35.239687577], [139.135622529, 35.178105108], [139.076746524, 35.200045027], [139.121216744, 35.239558279], [139.083545058, 35.233918387], [139.059424812, 35.247056333]]]}}, {"id": "42203", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129826887, 35.315889973], [139.128438003, 35.31716664], [139.127959663, 35.317866919], [139.129826887, 35.315889973]]]}}, {"id": "42204", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143116355, 35.218788856], [139.142892737, 35.218759009], [139.142880545, 35.218850432], [139.143116355, 35.218788856]]]}}, {"id": "42205", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138152737, 35.192635243], [139.138637899, 35.192205198], [139.138108042, 35.192592387], [139.138152737, 35.192635243]]]}}, {"id": "42206", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142547224, 35.210078892], [139.142598534, 35.210257847], [139.142671868, 35.210054811], [139.142547224, 35.210078892]]]}}, {"id": "42207", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143052335, 35.219020342], [139.142933593, 35.219084928], [139.143082581, 35.219066577], [139.143052335, 35.219020342]]]}}, {"id": "42208", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142510324, 35.222458685], [139.142552244, 35.222580883], [139.14262358, 35.222498], [139.142510324, 35.222458685]]]}}, {"id": "42209", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141928158, 35.224294432], [139.141989831, 35.224404667], [139.142006874, 35.224325441], [139.141928158, 35.224294432]]]}}, {"id": "42210", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142576031, 35.209595532], [139.142513385, 35.209677568], [139.142657678, 35.209616459], [139.142576031, 35.209595532]]]}}, {"id": "42211", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142890169, 35.219413063], [139.142753735, 35.219452757], [139.142921608, 35.219448757], [139.142890169, 35.219413063]]]}}, {"id": "42212", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142137912, 35.22408173], [139.142050428, 35.224021459], [139.142050052, 35.224091315], [139.142137912, 35.22408173]]]}}, {"id": "42213", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14212022, 35.211604901], [139.142023722, 35.211676378], [139.142125201, 35.211652351], [139.14212022, 35.211604901]]]}}, {"id": "42214", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141874877, 35.225057991], [139.142112957, 35.225029514], [139.141876005, 35.225028072], [139.141874877, 35.225057991]]]}}, {"id": "42215", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141999468, 35.213359099], [139.141940285, 35.213420775], [139.142018872, 35.213376063], [139.141999468, 35.213359099]]]}}, {"id": "42216", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142895888, 35.220254847], [139.142925629, 35.220180559], [139.142858936, 35.220233901], [139.142895888, 35.220254847]]]}}, {"id": "42217", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142708833, 35.20610509], [139.142634877, 35.206058333], [139.142656174, 35.206123901], [139.142708833, 35.20610509]]]}}, {"id": "42218", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142679222, 35.220170766], [139.14265987, 35.22023655], [139.142722724, 35.220196523], [139.142679222, 35.220170766]]]}}, {"id": "42219", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142840947, 35.208701126], [139.142733307, 35.208688072], [139.142738898, 35.208716045], [139.142840947, 35.208701126]]]}}, {"id": "42220", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142645811, 35.208540099], [139.142598768, 35.208596892], [139.142658677, 35.208591378], [139.142645811, 35.208540099]]]}}, {"id": "42221", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1424469, 35.222775081], [139.142441427, 35.222708072], [139.142392257, 35.222728252], [139.1424469, 35.222775081]]]}}, {"id": "42222", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142974112, 35.222276991], [139.142895058, 35.222246162], [139.142949235, 35.222309748], [139.142974112, 35.222276991]]]}}, {"id": "42223", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142736978, 35.222584099], [139.142708288, 35.222522279], [139.14268834, 35.222529649], [139.142736978, 35.222584099]]]}}, {"id": "42224", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14251096, 35.22260427], [139.142520078, 35.222668865], [139.142559494, 35.222645739], [139.14251096, 35.22260427]]]}}, {"id": "42225", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "小田原市", "N03_005": null, "N03_007": "14206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141999805, 35.21190718], [139.142061297, 35.211870396], [139.142021556, 35.21186855], [139.141999805, 35.21190718]]]}}, {"id": "42226", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.374627328, 35.315580054], [139.37033131, 35.351088865], [139.395238249, 35.352081414], [139.406510363, 35.379836919], [139.430695914, 35.384922225], [139.438044838, 35.31914555], [139.374627328, 35.315580054]]]}}, {"id": "42227", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417186641, 35.302334306], [139.415754423, 35.301603027], [139.415472776, 35.302312838], [139.417186641, 35.302334306]]]}}, {"id": "42228", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414361025, 35.302516505], [139.41528594, 35.302464613], [139.415210856, 35.301653081], [139.414361025, 35.302516505]]]}}, {"id": "42229", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414723113, 35.302967387], [139.414689274, 35.303624306], [139.41506847, 35.303275505], [139.414723113, 35.302967387]]]}}, {"id": "42230", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418171971, 35.304247198], [139.418368859, 35.304606559], [139.418550337, 35.303928306], [139.418171971, 35.304247198]]]}}, {"id": "42231", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418636978, 35.304837054], [139.419022361, 35.304803946], [139.418659585, 35.304419532], [139.418636978, 35.304837054]]]}}, {"id": "42232", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417662088, 35.303749306], [139.418008975, 35.303197919], [139.417952088, 35.303108802], [139.417662088, 35.303749306]]]}}, {"id": "42233", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418074306, 35.303111252], [139.418387756, 35.302794306], [139.41824297, 35.302700973], [139.418074306, 35.303111252]]]}}, {"id": "42234", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417865577, 35.303906586], [139.418156057, 35.303868333], [139.41812847, 35.303710946], [139.417865577, 35.303906586]]]}}, {"id": "42235", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397806057, 35.312036802], [139.39773642, 35.312329333], [139.397885188, 35.312290081], [139.397806057, 35.312036802]]]}}, {"id": "42236", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417523113, 35.304004919], [139.417877419, 35.30380936], [139.417874228, 35.303766252], [139.417523113, 35.304004919]]]}}, {"id": "42237", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.396836446, 35.311287108], [139.396916161, 35.311462919], [139.396974358, 35.311356387], [139.396836446, 35.311287108]]]}}, {"id": "42238", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413359883, 35.302999892], [139.413501673, 35.302883721], [139.413247393, 35.302901225], [139.413359883, 35.302999892]]]}}, {"id": "42239", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418033307, 35.304034721], [139.418304747, 35.304043946], [139.418180661, 35.303921559], [139.418033307, 35.304034721]]]}}, {"id": "42240", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.412959196, 35.302534441], [139.413135914, 35.302627505], [139.413188197, 35.302403081], [139.412959196, 35.302534441]]]}}, {"id": "42241", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.415032361, 35.303582865], [139.415052477, 35.30339136], [139.414896031, 35.303597694], [139.415032361, 35.303582865]]]}}, {"id": "42242", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414657082, 35.302124505], [139.41471358, 35.301936171], [139.41453642, 35.302089027], [139.414657082, 35.302124505]]]}}, {"id": "42243", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39752358, 35.31239136], [139.397710584, 35.312469586], [139.397716589, 35.312437252], [139.39752358, 35.31239136]]]}}, {"id": "42244", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.415338249, 35.30360536], [139.415227497, 35.303481387], [139.415159689, 35.303601414], [139.415338249, 35.30360536]]]}}, {"id": "42245", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398482335, 35.312765865], [139.398645772, 35.312585838], [139.398443139, 35.312643387], [139.398482335, 35.312765865]]]}}, {"id": "42246", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397890973, 35.311971108], [139.397898612, 35.312125838], [139.398045694, 35.312054054], [139.397890973, 35.311971108]]]}}, {"id": "42247", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397433307, 35.312170441], [139.397612672, 35.312149054], [139.397440584, 35.312105613], [139.397433307, 35.312170441]]]}}, {"id": "42248", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397531582, 35.311908532], [139.397684501, 35.311819198], [139.39752275, 35.311834586], [139.397531582, 35.311908532]]]}}, {"id": "42249", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399107756, 35.312659027], [139.399042412, 35.312538468], [139.39905428, 35.312707694], [139.399107756, 35.312659027]]]}}, {"id": "42250", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398432114, 35.312614865], [139.398622309, 35.312451081], [139.398524137, 35.312435108], [139.398432114, 35.312614865]]]}}, {"id": "42251", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418345383, 35.303770775], [139.41828406, 35.303700306], [139.418261414, 35.303786532], [139.418345383, 35.303770775]]]}}, {"id": "42252", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399690415, 35.312694919], [139.399725383, 35.312575441], [139.399659754, 35.312651838], [139.399690415, 35.312694919]]]}}, {"id": "42253", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.415769533, 35.301526838], [139.415863917, 35.301477468], [139.415769559, 35.301482198], [139.415769533, 35.301526838]]]}}, {"id": "42254", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397531803, 35.312029225], [139.39754192, 35.311928027], [139.397498444, 35.311988775], [139.397531803, 35.312029225]]]}}, {"id": "42255", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4138438, 35.301703054], [139.413810026, 35.301623252], [139.413804163, 35.301648468], [139.4138438, 35.301703054]]]}}, {"id": "42256", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418320636, 35.30256864], [139.418226394, 35.302547586], [139.418239948, 35.302609559], [139.418320636, 35.30256864]]]}}, {"id": "42257", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413233774, 35.302338973], [139.413213891, 35.302249306], [139.413167562, 35.302320081], [139.413233774, 35.302338973]]]}}, {"id": "42258", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418347302, 35.303979721], [139.418308521, 35.303924414], [139.418269222, 35.303999838], [139.418347302, 35.303979721]]]}}, {"id": "42259", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418524501, 35.303711171], [139.418611167, 35.303772387], [139.418623191, 35.303674802], [139.418524501, 35.303711171]]]}}, {"id": "42260", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418457951, 35.303867973], [139.418438859, 35.303791], [139.418378392, 35.30387436], [139.418457951, 35.303867973]]]}}, {"id": "42261", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398126005, 35.312194441], [139.398102944, 35.312104468], [139.398076913, 35.312241586], [139.398126005, 35.312194441]]]}}, {"id": "42262", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418327393, 35.303590973], [139.418289585, 35.303521333], [139.418253022, 35.303621892], [139.418327393, 35.303590973]]]}}, {"id": "42263", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397423333, 35.312736532], [139.39743786, 35.312650054], [139.397391167, 35.312685505], [139.397423333, 35.312736532]]]}}, {"id": "42264", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39886153, 35.312210135], [139.398851025, 35.312114027], [139.398801167, 35.312225333], [139.39886153, 35.312210135]]]}}, {"id": "42265", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418251051, 35.304603505], [139.418175084, 35.304609748], [139.418182477, 35.304630694], [139.418251051, 35.304603505]]]}}, {"id": "42266", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398014475, 35.312261198], [139.397954527, 35.312216441], [139.39797, 35.312287081], [139.398014475, 35.312261198]]]}}, {"id": "42267", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417469442, 35.302457892], [139.417419805, 35.302403559], [139.417405837, 35.302448387], [139.417469442, 35.302457892]]]}}, {"id": "42268", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397536394, 35.312722108], [139.397502387, 35.312675081], [139.397477445, 35.312716279], [139.397536394, 35.312722108]]]}}, {"id": "42269", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398160752, 35.312295333], [139.398144449, 35.312365505], [139.398189416, 35.312304559], [139.398160752, 35.312295333]]]}}, {"id": "42270", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414043839, 35.303020721], [139.41399511, 35.303045], [139.414041479, 35.303073721], [139.414043839, 35.303020721]]]}}, {"id": "42271", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414344163, 35.302711108], [139.414306589, 35.302692252], [139.414305473, 35.302715775], [139.414344163, 35.302711108]]]}}, {"id": "42272", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399121336, 35.312382441], [139.399068911, 35.312418946], [139.39908489, 35.312433775], [139.399121336, 35.312382441]]]}}, {"id": "42273", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413723891, 35.302335532], [139.413699922, 35.302396387], [139.413745188, 35.302381667], [139.413723891, 35.302335532]]]}}, {"id": "42274", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.41872214, 35.303937279], [139.418672309, 35.303921171], [139.418657393, 35.303956], [139.41872214, 35.303937279]]]}}, {"id": "42275", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413302724, 35.302508775], [139.41329594, 35.302438613], [139.413270467, 35.302477802], [139.413302724, 35.302508775]]]}}, {"id": "42276", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417621167, 35.303753946], [139.417586446, 35.303741505], [139.417575863, 35.303839694], [139.417621167, 35.303753946]]]}}, {"id": "42277", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399225188, 35.312353721], [139.399157834, 35.312364279], [139.399190441, 35.312392865], [139.399225188, 35.312353721]]]}}, {"id": "42278", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39746214, 35.312059802], [139.39740939, 35.312034468], [139.397405227, 35.312074279], [139.39746214, 35.312059802]]]}}, {"id": "42279", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398866446, 35.311474613], [139.398861193, 35.311428613], [139.398842827, 35.311426667], [139.398866446, 35.311474613]]]}}, {"id": "42280", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.397494501, 35.31195436], [139.397443671, 35.311957694], [139.397463722, 35.311992027], [139.397494501, 35.31195436]]]}}, {"id": "42281", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398846667, 35.312931505], [139.398858223, 35.312967775], [139.398909364, 35.312928748], [139.398846667, 35.312931505]]]}}, {"id": "42282", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414749027, 35.30188964], [139.414732361, 35.301856586], [139.414695668, 35.301890973], [139.414749027, 35.30188964]]]}}, {"id": "42283", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418029689, 35.303381532], [139.418000947, 35.303348441], [139.417982827, 35.303363973], [139.418029689, 35.303381532]]]}}, {"id": "42284", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417631051, 35.304077414], [139.417599637, 35.304132748], [139.417607756, 35.304140694], [139.417631051, 35.304077414]]]}}, {"id": "42285", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.414257108, 35.303093505], [139.414235383, 35.303129108], [139.414290558, 35.303113802], [139.414257108, 35.303093505]]]}}, {"id": "42286", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.39729642, 35.31248964], [139.397235253, 35.312497694], [139.397305162, 35.312498505], [139.39729642, 35.31248964]]]}}, {"id": "42287", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413521414, 35.302998919], [139.413468197, 35.303045865], [139.413488664, 35.303061721], [139.413521414, 35.302998919]]]}}, {"id": "42288", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.413408755, 35.302590171], [139.413364189, 35.302568838], [139.413381414, 35.302599721], [139.413408755, 35.302590171]]]}}, {"id": "42289", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.399142776, 35.312424532], [139.399183217, 35.312431775], [139.399176615, 35.312412838], [139.399142776, 35.312424532]]]}}, {"id": "42290", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.417778171, 35.303695721], [139.417740311, 35.303701892], [139.417751777, 35.303717171], [139.417778171, 35.303695721]]]}}, {"id": "42291", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398311193, 35.312646441], [139.398272698, 35.312666946], [139.398294189, 35.31267864], [139.398311193, 35.312646441]]]}}, {"id": "42292", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.41293061, 35.302572919], [139.412921829, 35.302609748], [139.412949883, 35.302589667], [139.41293061, 35.302572919]]]}}, {"id": "42293", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "茅ヶ崎市", "N03_005": null, "N03_007": "14207"}, "geometry": {"type": "Polygon", "coordinates": [[[139.398240895, 35.312136441], [139.398235032, 35.312165441], [139.398255837, 35.312159027], [139.398240895, 35.312136441]]]}}, {"id": "42294", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.552381997, 35.299793748], [139.593160415, 35.320414748], [139.624352218, 35.277794171], [139.598116329, 35.276919505], [139.60328642, 35.291968], [139.574234423, 35.282412468], [139.552381997, 35.299793748]]]}}, {"id": "42295", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565395927, 35.292443396], [139.564961271, 35.292612198], [139.56549834, 35.292580144], [139.565395927, 35.292443396]]]}}, {"id": "42296", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562389429, 35.291796892], [139.562521647, 35.291893072], [139.562545058, 35.291808009], [139.562389429, 35.291796892]]]}}, {"id": "42297", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562203489, 35.291814991], [139.562177691, 35.291942144], [139.562270259, 35.291901144], [139.562203489, 35.291814991]]]}}, {"id": "42298", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.560337808, 35.291731198], [139.560460817, 35.291841378], [139.560478781, 35.291797694], [139.560337808, 35.291731198]]]}}, {"id": "42299", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557647821, 35.293460495], [139.557762763, 35.293558], [139.557807458, 35.293503027], [139.557647821, 35.293460495]]]}}, {"id": "42300", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561077095, 35.292113604], [139.560958625, 35.292185144], [139.561072127, 35.292192117], [139.561077095, 35.292113604]]]}}, {"id": "42301", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56288821, 35.291814559], [139.562792711, 35.291875838], [139.562885292, 35.291868423], [139.56288821, 35.291814559]]]}}, {"id": "42302", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.556938703, 35.291694468], [139.556920752, 35.291787721], [139.556967445, 35.29178527], [139.556938703, 35.291694468]]]}}, {"id": "42303", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.563050752, 35.292007135], [139.563136939, 35.292105279], [139.563141725, 35.292020874], [139.563050752, 35.292007135]]]}}, {"id": "42304", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.560752322, 35.291876216], [139.560808586, 35.291804081], [139.560704436, 35.291815856], [139.560752322, 35.291876216]]]}}, {"id": "42305", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557112335, 35.291888586], [139.557065642, 35.291970676], [139.557146459, 35.291961099], [139.557112335, 35.291888586]]]}}, {"id": "42306", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557050065, 35.292158685], [139.55699904, 35.292072955], [139.557003593, 35.292130523], [139.557050065, 35.292158685]]]}}, {"id": "42307", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "逗子市", "N03_005": null, "N03_007": "14208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56291668, 35.292103324], [139.56284725, 35.292120982], [139.562919066, 35.292120982], [139.56291668, 35.292103324]]]}}, {"id": "42308", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.678963645, 35.140916919], [139.623628859, 35.143048865], [139.609116913, 35.139847333], [139.609765694, 35.14129536], [139.604864617, 35.144671613], [139.604385901, 35.146087775], [139.61730511, 35.147597198], [139.610686394, 35.163463667], [139.618532387, 35.161619667], [139.630125162, 35.163592387], [139.61682454, 35.165300279], [139.615716654, 35.189934144], [139.655218366, 35.209746387], [139.655317782, 35.174609414], [139.678963645, 35.140916919]]]}}, {"id": "42309", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609742477, 35.137870279], [139.63014358, 35.129069], [139.608339222, 35.134889775], [139.609742477, 35.137870279]]]}}, {"id": "42310", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.66345061, 35.13702436], [139.663258949, 35.138123532], [139.664510052, 35.13687936], [139.66345061, 35.13702436]]]}}, {"id": "42311", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607272866, 35.138474486], [139.60744834, 35.138606532], [139.609341829, 35.137762081], [139.607272866, 35.138474486]]]}}, {"id": "42312", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.603507328, 35.155836306], [139.603001219, 35.156613532], [139.604036783, 35.156126865], [139.603507328, 35.155836306]]]}}, {"id": "42313", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605152892, 35.154228802], [139.606048716, 35.154534081], [139.606360389, 35.154170468], [139.605152892, 35.154228802]]]}}, {"id": "42314", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.657317276, 35.136704108], [139.657035331, 35.137232721], [139.657737004, 35.137169667], [139.657317276, 35.136704108]]]}}, {"id": "42315", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655127276, 35.137232171], [139.655251997, 35.137939667], [139.655414501, 35.137787721], [139.655127276, 35.137232171]]]}}, {"id": "42316", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.660647276, 35.13885936], [139.660256446, 35.139405748], [139.661028664, 35.139160468], [139.660647276, 35.13885936]]]}}, {"id": "42317", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.612931141, 35.131783279], [139.613154475, 35.132279946], [139.613671141, 35.131992441], [139.612931141, 35.131783279]]]}}, {"id": "42318", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60316345, 35.153701865], [139.603697056, 35.15389464], [139.60378594, 35.153743532], [139.60316345, 35.153701865]]]}}, {"id": "42319", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614893645, 35.131073], [139.615335577, 35.131542171], [139.615391971, 35.131278279], [139.614893645, 35.131073]]]}}, {"id": "42320", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609397328, 35.160561865], [139.609165668, 35.160128252], [139.60905511, 35.160598252], [139.609397328, 35.160561865]]]}}, {"id": "42321", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.638297276, 35.139648], [139.63825061, 35.140029667], [139.638634501, 35.139893559], [139.638297276, 35.139648]]]}}, {"id": "42322", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611164527, 35.150326333], [139.611445914, 35.150695225], [139.611554527, 35.150488838], [139.611164527, 35.150326333]]]}}, {"id": "42323", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614729248, 35.146824946], [139.614985357, 35.146898838], [139.614459533, 35.146398559], [139.614729248, 35.146824946]]]}}, {"id": "42324", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609386978, 35.133347171], [139.609718911, 35.132795225], [139.609415032, 35.132809387], [139.609386978, 35.133347171]]]}}, {"id": "42325", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680530947, 35.153912946], [139.680309559, 35.153528505], [139.679991219, 35.153544613], [139.680530947, 35.153912946]]]}}, {"id": "42326", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613513411, 35.148581054], [139.6137262, 35.148793279], [139.614114527, 35.148535225], [139.613513411, 35.148581054]]]}}, {"id": "42327", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.60698428, 35.153314081], [139.607498444, 35.15349436], [139.607464254, 35.153252135], [139.60698428, 35.153314081]]]}}, {"id": "42328", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.641825888, 35.137811054], [139.641123113, 35.137869108], [139.641135888, 35.137961333], [139.641825888, 35.137811054]]]}}, {"id": "42329", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.652491167, 35.138635505], [139.65286144, 35.138922171], [139.652989494, 35.138716613], [139.652491167, 35.138635505]]]}}, {"id": "42330", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.617155305, 35.131644667], [139.616743645, 35.131935505], [139.617091699, 35.131846054], [139.617155305, 35.131644667]]]}}, {"id": "42331", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607173826, 35.148169703], [139.60581096, 35.146869441], [139.607722387, 35.148716928], [139.607173826, 35.148169703]]]}}, {"id": "42332", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.627921855, 35.137208405], [139.628402568, 35.13702091], [139.627753294, 35.136910955], [139.627921855, 35.137208405]]]}}, {"id": "42333", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682479533, 35.150152667], [139.682250921, 35.149837667], [139.682174254, 35.149922108], [139.682479533, 35.150152667]]]}}, {"id": "42334", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.607572529, 35.133590198], [139.607831141, 35.133883252], [139.607895863, 35.133560748], [139.607572529, 35.133590198]]]}}, {"id": "42335", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602450661, 35.153987694], [139.602420117, 35.154418532], [139.60266345, 35.153952135], [139.602450661, 35.153987694]]]}}, {"id": "42336", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.653173113, 35.138950505], [139.653122555, 35.139252441], [139.653420895, 35.139014108], [139.653173113, 35.138950505]]]}}, {"id": "42337", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610589533, 35.150646054], [139.610595357, 35.150982441], [139.610874254, 35.150786054], [139.610589533, 35.150646054]]]}}, {"id": "42338", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.637652399, 35.139839802], [139.638059572, 35.139282351], [139.637460337, 35.139899396], [139.637652399, 35.139839802]]]}}, {"id": "42339", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.630751699, 35.128856333], [139.630564189, 35.129156613], [139.630964189, 35.129021892], [139.630751699, 35.128856333]]]}}, {"id": "42340", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.648086161, 35.138658838], [139.648445616, 35.138427721], [139.648038106, 35.138481892], [139.648086161, 35.138658838]]]}}, {"id": "42341", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606444838, 35.155749919], [139.606811777, 35.155974081], [139.606811777, 35.155785748], [139.606444838, 35.155749919]]]}}, {"id": "42342", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606003995, 35.155539919], [139.606209559, 35.155241306], [139.605887328, 35.155399081], [139.606003995, 35.155539919]]]}}, {"id": "42343", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.612531543, 35.13820109], [139.612596563, 35.138212495], [139.612440233, 35.137628027], [139.612531543, 35.13820109]]]}}, {"id": "42344", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.647577834, 35.138176892], [139.647442827, 35.138512721], [139.647724773, 35.138351333], [139.647577834, 35.138176892]]]}}, {"id": "42345", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611607588, 35.150721054], [139.611760636, 35.150951892], [139.611919248, 35.150744667], [139.611607588, 35.150721054]]]}}, {"id": "42346", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.639040026, 35.140128829], [139.639577808, 35.139507577], [139.638841141, 35.140196847], [139.639040026, 35.140128829]]]}}, {"id": "42347", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606574553, 35.156246027], [139.606902335, 35.156446027], [139.606910947, 35.156200748], [139.606574553, 35.156246027]]]}}, {"id": "42348", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673867276, 35.139456027], [139.673663671, 35.139756865], [139.673848949, 35.139777973], [139.673867276, 35.139456027]]]}}, {"id": "42349", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.650335058, 35.138848559], [139.650205058, 35.139168838], [139.650434228, 35.139028559], [139.650335058, 35.138848559]]]}}, {"id": "42350", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.662834228, 35.136403252], [139.66312144, 35.136165468], [139.662881725, 35.136179919], [139.662834228, 35.136403252]]]}}, {"id": "42351", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605078716, 35.153973252], [139.605366783, 35.153826865], [139.605113165, 35.153725468], [139.605078716, 35.153973252]]]}}, {"id": "42352", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.653960895, 35.138999667], [139.653990337, 35.139240225], [139.65415144, 35.139091613], [139.653960895, 35.138999667]]]}}, {"id": "42353", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.654365331, 35.138891613], [139.654674501, 35.139007721], [139.654776446, 35.138856613], [139.654365331, 35.138891613]]]}}, {"id": "42354", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.619347523, 35.131152721], [139.619468366, 35.131452441], [139.619555305, 35.131243279], [139.619347523, 35.131152721]]]}}, {"id": "42355", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.674120337, 35.140428532], [139.674086719, 35.140711027], [139.674208392, 35.140477414], [139.674120337, 35.140428532]]]}}, {"id": "42356", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610400661, 35.158838559], [139.610624553, 35.158676333], [139.61033511, 35.158607171], [139.610400661, 35.158838559]]]}}, {"id": "42357", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.627890661, 35.134580279], [139.6280462, 35.134568721], [139.627522776, 35.134302441], [139.627890661, 35.134580279]]]}}, {"id": "42358", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.667007588, 35.14540936], [139.667239805, 35.145561306], [139.66720786, 35.145382135], [139.667007588, 35.14540936]]]}}, {"id": "42359", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.650400078, 35.139367829], [139.651152698, 35.139444495], [139.651142477, 35.139327045], [139.650400078, 35.139367829]]]}}, {"id": "42360", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.668708949, 35.137413252], [139.669042827, 35.13728436], [139.668685331, 35.137219081], [139.668708949, 35.137413252]]]}}, {"id": "42361", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613272023, 35.149168838], [139.613115642, 35.148942721], [139.613032866, 35.149078838], [139.613272023, 35.149168838]]]}}, {"id": "42362", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606673943, 35.138593532], [139.606835058, 35.138368802], [139.606620895, 35.138438532], [139.606673943, 35.138593532]]]}}, {"id": "42363", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.668643943, 35.136569919], [139.668744228, 35.136358802], [139.668501997, 35.136484919], [139.668643943, 35.136569919]]]}}, {"id": "42364", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610887108, 35.135592414], [139.610633943, 35.135552667], [139.610522802, 35.135622946], [139.610887108, 35.135592414]]]}}, {"id": "42365", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.62966144, 35.137816892], [139.629797834, 35.138025775], [139.629921997, 35.137911333], [139.62966144, 35.137816892]]]}}, {"id": "42366", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663351349, 35.189839892], [139.663776861, 35.190260108], [139.663835058, 35.190208721], [139.663351349, 35.189839892]]]}}, {"id": "42367", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610021479, 35.147594946], [139.609903139, 35.147402721], [139.609850078, 35.147514387], [139.610021479, 35.147594946]]]}}, {"id": "42368", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61610406, 35.185491306], [139.615850661, 35.185482135], [139.616081699, 35.185650387], [139.61610406, 35.185491306]]]}}, {"id": "42369", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615336394, 35.185867613], [139.615634527, 35.185944108], [139.615600973, 35.185772775], [139.615336394, 35.185867613]]]}}, {"id": "42370", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.616241971, 35.186525387], [139.616514034, 35.18667836], [139.616596005, 35.186644694], [139.616241971, 35.186525387]]]}}, {"id": "42371", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.659458392, 35.138846306], [139.659479222, 35.13859436], [139.659400052, 35.138622973], [139.659458392, 35.138846306]]]}}, {"id": "42372", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663280895, 35.139021027], [139.663542555, 35.139216027], [139.663518392, 35.139048532], [139.663280895, 35.139021027]]]}}, {"id": "42373", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.627389507, 35.13701991], [139.627098547, 35.136580721], [139.627007626, 35.136638982], [139.627389507, 35.13701991]]]}}, {"id": "42374", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.623607912, 35.16446464], [139.623510973, 35.164286865], [139.623401245, 35.164432414], [139.623607912, 35.16446464]]]}}, {"id": "42375", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.643210052, 35.138467721], [139.643436161, 35.138449108], [139.643358664, 35.138366892], [139.643210052, 35.138467721]]]}}, {"id": "42376", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.631559196, 35.128494387], [139.631555577, 35.128709946], [139.631658911, 35.128602721], [139.631559196, 35.128494387]]]}}, {"id": "42377", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.668153139, 35.144867414], [139.668198975, 35.145056306], [139.6683562, 35.144936865], [139.668153139, 35.144867414]]]}}, {"id": "42378", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.660095473, 35.177119559], [139.659902387, 35.177013441], [139.659868781, 35.177090387], [139.660095473, 35.177119559]]]}}, {"id": "42379", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.622539494, 35.136811054], [139.622714773, 35.136969667], [139.622768949, 35.136838559], [139.622539494, 35.136811054]]]}}, {"id": "42380", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.61432869, 35.148233838], [139.614390636, 35.148038838], [139.614196472, 35.148196613], [139.61432869, 35.148233838]]]}}, {"id": "42381", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680684812, 35.145353505], [139.680458418, 35.145494333], [139.68067786, 35.145398505], [139.680684812, 35.145353505]]]}}, {"id": "42382", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614936744, 35.147194387], [139.614976744, 35.147362171], [139.615087588, 35.147256613], [139.614936744, 35.147194387]]]}}, {"id": "42383", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.642738949, 35.138249667], [139.642591167, 35.138173279], [139.642636161, 35.138304946], [139.642738949, 35.138249667]]]}}, {"id": "42384", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680628418, 35.149686], [139.680653969, 35.149877108], [139.680759805, 35.149767667], [139.680628418, 35.149686]]]}}, {"id": "42385", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.662091725, 35.138808532], [139.662315331, 35.138788252], [139.662227004, 35.138697414], [139.662091725, 35.138808532]]]}}, {"id": "42386", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.659964228, 35.139688802], [139.660153671, 35.139762135], [139.660175888, 35.139631027], [139.659964228, 35.139688802]]]}}, {"id": "42387", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613676744, 35.149007171], [139.61351786, 35.149071333], [139.613672309, 35.149109946], [139.613676744, 35.149007171]]]}}, {"id": "42388", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673279222, 35.141022135], [139.673176719, 35.140864919], [139.67316144, 35.141027414], [139.673279222, 35.141022135]]]}}, {"id": "42389", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.666966161, 35.140840198], [139.667125888, 35.140714919], [139.666938106, 35.140767135], [139.666966161, 35.140840198]]]}}, {"id": "42390", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.682038418, 35.149995171], [139.681980921, 35.150142387], [139.682102866, 35.150093775], [139.682038418, 35.149995171]]]}}, {"id": "42391", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.667632555, 35.140670748], [139.667740337, 35.140799919], [139.66776144, 35.140722694], [139.667632555, 35.140670748]]]}}, {"id": "42392", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.602969274, 35.153543252], [139.603114553, 35.15344936], [139.603018444, 35.153417973], [139.602969274, 35.153543252]]]}}, {"id": "42393", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610460078, 35.151195505], [139.610631479, 35.151279946], [139.61061786, 35.151184108], [139.610460078, 35.151195505]]]}}, {"id": "42394", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673650337, 35.13909936], [139.673764228, 35.138996027], [139.673612283, 35.139013532], [139.673650337, 35.13909936]]]}}, {"id": "42395", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.679571193, 35.144781], [139.679695084, 35.144656559], [139.679620636, 35.144628505], [139.679571193, 35.144781]]]}}, {"id": "42396", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.678558949, 35.141912135], [139.678619494, 35.141760198], [139.678481725, 35.141790748], [139.678558949, 35.141912135]]]}}, {"id": "42397", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.671982555, 35.140448252], [139.671775331, 35.140524081], [139.672000052, 35.140517135], [139.671982555, 35.140448252]]]}}, {"id": "42398", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.671815616, 35.141243252], [139.671818949, 35.141092135], [139.671747834, 35.141203532], [139.671815616, 35.141243252]]]}}, {"id": "42399", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.606651025, 35.146364847], [139.605944163, 35.146867162], [139.606666563, 35.146380387], [139.606651025, 35.146364847]]]}}, {"id": "42400", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.673633943, 35.140998802], [139.673764773, 35.140925748], [139.673658106, 35.140886306], [139.673633943, 35.140998802]]]}}, {"id": "42401", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.679733722, 35.153496838], [139.679891505, 35.153428505], [139.679752892, 35.153403505], [139.679733722, 35.153496838]]]}}, {"id": "42402", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.614543411, 35.148354387], [139.614568145, 35.148220225], [139.614471193, 35.148245775], [139.614543411, 35.148354387]]]}}, {"id": "42403", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613277302, 35.145296333], [139.613188418, 35.145371613], [139.613264527, 35.145396892], [139.613277302, 35.145296333]]]}}, {"id": "42404", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.605463139, 35.153080748], [139.605610363, 35.153137973], [139.605566472, 35.153029919], [139.605463139, 35.153080748]]]}}, {"id": "42405", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613989805, 35.149655225], [139.613920363, 35.149521333], [139.613879689, 35.14959282], [139.613989805, 35.149655225]]]}}, {"id": "42406", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680240389, 35.154156279], [139.680362049, 35.154211], [139.680306783, 35.154108505], [139.680240389, 35.154156279]]]}}, {"id": "42407", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.664578911, 35.136061306], [139.664502802, 35.135981586], [139.664451167, 35.136077135], [139.664578911, 35.136061306]]]}}, {"id": "42408", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.667236161, 35.140967414], [139.667299494, 35.140890468], [139.667193943, 35.140899919], [139.667236161, 35.140967414]]]}}, {"id": "42409", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.668133113, 35.141180468], [139.668294773, 35.141220198], [139.668318664, 35.141177694], [139.668133113, 35.141180468]]]}}, {"id": "42410", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.680566744, 35.149984054], [139.680522023, 35.150077387], [139.680605357, 35.150062946], [139.680566744, 35.149984054]]]}}, {"id": "42411", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.667264228, 35.140607135], [139.667416719, 35.140643802], [139.667346161, 35.140568532], [139.667264228, 35.140607135]]]}}, {"id": "42412", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.679902049, 35.154504054], [139.679980117, 35.154416], [139.679883722, 35.154431], [139.679902049, 35.154504054]]]}}, {"id": "42413", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655780195, 35.178117081], [139.6558938, 35.178048198], [139.655821025, 35.178014586], [139.655780195, 35.178117081]]]}}, {"id": "42414", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613972412, 35.183414586], [139.613938249, 35.183532892], [139.613999922, 35.183516225], [139.613972412, 35.183414586]]]}}, {"id": "42415", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610737082, 35.16385436], [139.610837639, 35.163850198], [139.610782088, 35.16380436], [139.610737082, 35.16385436]]]}}, {"id": "42416", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.613709805, 35.147020775], [139.61382786, 35.146976333], [139.613719805, 35.146958838], [139.613709805, 35.147020775]]]}}, {"id": "42417", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655519637, 35.178109306], [139.655644358, 35.178088748], [139.655565188, 35.178034865], [139.655519637, 35.178109306]]]}}, {"id": "42418", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.609616783, 35.162082135], [139.609740117, 35.162126027], [139.609715383, 35.162056865], [139.609616783, 35.162082135]]]}}, {"id": "42419", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615742581, 35.185681], [139.615869274, 35.18571464], [139.615873022, 35.185659586], [139.615742581, 35.185681]]]}}, {"id": "42420", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655344916, 35.177824865], [139.655415473, 35.177746532], [139.65533131, 35.177761532], [139.655344916, 35.177824865]]]}}, {"id": "42421", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.650100337, 35.142067441], [139.650125331, 35.141976054], [139.650039222, 35.142008559], [139.650100337, 35.142067441]]]}}, {"id": "42422", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655576304, 35.177889865], [139.655657977, 35.177820973], [139.655576304, 35.17780236], [139.655576304, 35.177889865]]]}}, {"id": "42423", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.611258755, 35.163887135], [139.611282633, 35.163800198], [139.611205694, 35.16383936], [139.611258755, 35.163887135]]]}}, {"id": "42424", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.660231167, 35.140172135], [139.660167004, 35.140228252], [139.660231167, 35.140231865], [139.660231167, 35.140172135]]]}}, {"id": "42425", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.639774994, 35.139750748], [139.639623048, 35.139595081], [139.639599157, 35.13962173], [139.639774994, 35.139750748]]]}}, {"id": "42426", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.655875473, 35.177830414], [139.655861855, 35.177925414], [139.655916304, 35.177875135], [139.655875473, 35.177830414]]]}}, {"id": "42427", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.650268664, 35.141914108], [139.650322283, 35.141837721], [139.650243671, 35.141867171], [139.650268664, 35.141914108]]]}}, {"id": "42428", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.610210947, 35.160735468], [139.610112049, 35.160735468], [139.61017345, 35.160772973], [139.610210947, 35.160735468]]]}}, {"id": "42429", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663988392, 35.138936586], [139.663943385, 35.138859919], [139.663916161, 35.138906865], [139.663988392, 35.138936586]]]}}, {"id": "42430", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.663762827, 35.138968532], [139.66372978, 35.13888964], [139.66369978, 35.138924081], [139.663762827, 35.138968532]]]}}, {"id": "42431", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.615204838, 35.161978721], [139.615049663, 35.162005505], [139.615125058, 35.162057081], [139.615209001, 35.162022441], [139.615204838, 35.161978721]]]}}, {"id": "42432", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "三浦市", "N03_005": null, "N03_007": "14210"}, "geometry": {"type": "Polygon", "coordinates": [[[139.623928664, 35.164258559], [139.623917886, 35.164301721], [139.623949585, 35.164275532], [139.623928664, 35.164258559]]]}}, {"id": "42433", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "秦野市", "N03_005": null, "N03_007": "14211"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25681144, 35.355248721], [139.205457198, 35.361272865], [139.180169948, 35.345965613], [139.158790584, 35.356753946], [139.141397523, 35.444152081], [139.228857108, 35.45697364], [139.258294112, 35.39772436], [139.252212672, 35.382097775], [139.291025668, 35.380930613], [139.25681144, 35.355248721]]]}}, {"id": "42434", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "厚木市", "N03_005": null, "N03_007": "14212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.354991803, 35.393317387], [139.326363385, 35.428031414], [139.254938949, 35.447942198], [139.231219831, 35.440982279], [139.245442114, 35.462831081], [139.295371414, 35.463205505], [139.278178755, 35.512986252], [139.307414086, 35.522699802], [139.343879663, 35.498246532], [139.354505136, 35.527467027], [139.375390052, 35.517199559], [139.373992672, 35.395561865], [139.354966304, 35.403806802], [139.354991803, 35.393317387]]]}}, {"id": "42435", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "大和市", "N03_005": null, "N03_007": "14213"}, "geometry": {"type": "Polygon", "coordinates": [[[139.46561655, 35.424701946], [139.447804254, 35.427971279], [139.454216394, 35.456832586], [139.436489494, 35.467328081], [139.429239468, 35.507372973], [139.455766252, 35.520467694], [139.480665227, 35.448617613], [139.46561655, 35.424701946]]]}}, {"id": "42436", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "伊勢原市", "N03_005": null, "N03_007": "14214"}, "geometry": {"type": "Polygon", "coordinates": [[[139.302857912, 35.388178946], [139.252212672, 35.382097775], [139.258294112, 35.39772436], [139.230243995, 35.440242586], [139.254938949, 35.447942198], [139.326363385, 35.428031414], [139.357436524, 35.390814919], [139.319644553, 35.383222613], [139.321595577, 35.369414865], [139.302857912, 35.388178946]]]}}, {"id": "42437", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "海老名市", "N03_005": null, "N03_007": "14215"}, "geometry": {"type": "Polygon", "coordinates": [[[139.406647717, 35.408201306], [139.371806304, 35.400677387], [139.370678781, 35.448751973], [139.379552244, 35.470208306], [139.434900389, 35.477301946], [139.402575188, 35.448105054], [139.406647717, 35.408201306]]]}}, {"id": "42438", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "座間市", "N03_005": null, "N03_007": "14216"}, "geometry": {"type": "Polygon", "coordinates": [[[139.379258106, 35.471765532], [139.373967665, 35.491823802], [139.427672555, 35.511413532], [139.438795966, 35.479819441], [139.379258106, 35.471765532]]]}}, {"id": "42439", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "南足柄市", "N03_005": null, "N03_007": "14217"}, "geometry": {"type": "Polygon", "coordinates": [[[139.004630311, 35.289963306], [139.036683606, 35.341986802], [139.109657523, 35.352253171], [139.106960921, 35.343872198], [139.130655499, 35.317675252], [139.1378838, 35.289846973], [139.062573696, 35.271813333], [139.004630311, 35.289963306]], [[139.128241051, 35.316373306], [139.129826887, 35.315889973], [139.127959663, 35.317866919], [139.128241051, 35.316373306]]]}}, {"id": "42440", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": null, "N03_004": "綾瀬市", "N03_005": null, "N03_007": "14218"}, "geometry": {"type": "Polygon", "coordinates": [[[139.457723865, 35.411704108], [139.412916693, 35.419060171], [139.406511336, 35.408493802], [139.40255131, 35.448034225], [139.421170337, 35.467924468], [139.451055888, 35.467702279], [139.443640363, 35.427542387], [139.457723865, 35.411704108]]]}}, {"id": "42441", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.626495305, 35.27931], [139.640767224, 35.262660306], [139.576590778, 35.253081784], [139.564747276, 35.284502468], [139.60328642, 35.291968], [139.598116329, 35.276919505], [139.626495305, 35.27931]]]}}, {"id": "42442", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.560179468, 35.270527441], [139.560865084, 35.271827135], [139.561018444, 35.270737387], [139.560179468, 35.270527441]]]}}, {"id": "42443", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565149079, 35.265881135], [139.565897691, 35.265001973], [139.564118807, 35.265824748], [139.565149079, 35.265881135]]]}}, {"id": "42444", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567745473, 35.266608081], [139.567395188, 35.265847252], [139.566701582, 35.266061414], [139.567745473, 35.266608081]]]}}, {"id": "42445", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567580752, 35.26496836], [139.566831855, 35.26514864], [139.56760131, 35.265356973], [139.567580752, 35.26496836]]]}}, {"id": "42446", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56111131, 35.271466946], [139.561587082, 35.27075464], [139.561549248, 35.270699387], [139.56111131, 35.271466946]]]}}, {"id": "42447", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561988145, 35.271060387], [139.561724773, 35.271455441], [139.562209883, 35.27147636], [139.561988145, 35.271060387]]]}}, {"id": "42448", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.55929022, 35.270546108], [139.55929022, 35.270191108], [139.559001608, 35.270619441], [139.55929022, 35.270546108]]]}}, {"id": "42449", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57382406, 35.259852306], [139.57371406, 35.259542586], [139.573631829, 35.259762306], [139.57382406, 35.259852306]]]}}, {"id": "42450", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57489572, 35.259604532], [139.57450406, 35.259401748], [139.574407951, 35.259508694], [139.57489572, 35.259604532]]]}}, {"id": "42451", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557655227, 35.269802505], [139.557614112, 35.269498333], [139.557559105, 35.269729441], [139.557655227, 35.269802505]]]}}, {"id": "42452", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569540156, 35.277107405], [139.569700739, 35.276881883], [139.569492101, 35.277072865], [139.569540156, 35.277107405]]]}}, {"id": "42453", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566142996, 35.271128613], [139.565987173, 35.271357505], [139.566206887, 35.271194171], [139.566142996, 35.271128613]]]}}, {"id": "42454", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567286394, 35.281747279], [139.566779326, 35.281643874], [139.566776706, 35.281736514], [139.567286394, 35.281747279]]]}}, {"id": "42455", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.559530506, 35.270816667], [139.559509948, 35.270540559], [139.55937939, 35.270777225], [139.559530506, 35.270816667]]]}}, {"id": "42456", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565490441, 35.264405748], [139.565620973, 35.264384586], [139.565846809, 35.264197667], [139.565490441, 35.264405748]]]}}, {"id": "42457", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564486005, 35.264554613], [139.564389196, 35.264298135], [139.564286005, 35.264369252], [139.564486005, 35.264554613]]]}}, {"id": "42458", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571784695, 35.26573564], [139.571710117, 35.265521387], [139.571487588, 35.265645027], [139.571784695, 35.26573564]]]}}, {"id": "42459", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568072192, 35.28144636], [139.567883022, 35.281346919], [139.567800246, 35.281483027], [139.568072192, 35.28144636]]]}}, {"id": "42460", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.55880939, 35.270264441], [139.558685499, 35.270134721], [139.558671894, 35.270230559], [139.55880939, 35.270264441]]]}}, {"id": "42461", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.556796615, 35.269115279], [139.556597445, 35.269154721], [139.556769105, 35.269227775], [139.556796615, 35.269115279]]]}}, {"id": "42462", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.575794643, 35.261141829], [139.575993217, 35.260589171], [139.575651401, 35.261069216], [139.575794643, 35.261141829]]]}}, {"id": "42463", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.575259611, 35.259937027], [139.575067393, 35.26005536], [139.575335162, 35.260049532], [139.575259611, 35.259937027]]]}}, {"id": "42464", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566759948, 35.271261108], [139.566790895, 35.271458919], [139.566824942, 35.271255], [139.566759948, 35.271261108]]]}}, {"id": "42465", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568164384, 35.271126414], [139.567978833, 35.271239198], [139.568116329, 35.271290027], [139.568164384, 35.271126414]]]}}, {"id": "42466", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.558424669, 35.270078333], [139.558486329, 35.270264441], [139.558561894, 35.270100838], [139.558424669, 35.270078333]]]}}, {"id": "42467", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568864968, 35.280022748], [139.568775811, 35.280219973], [139.568961362, 35.280096081], [139.568864968, 35.280022748]]]}}, {"id": "42468", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565796252, 35.264096694], [139.565682049, 35.263997468], [139.565487665, 35.264086198], [139.565796252, 35.264096694]]]}}, {"id": "42469", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569361089, 35.279225532], [139.569174137, 35.279098865], [139.569167198, 35.279217198], [139.569361089, 35.279225532]]]}}, {"id": "42470", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570864812, 35.26527564], [139.570738716, 35.26541436], [139.570884669, 35.265424505], [139.570864812, 35.26527564]]]}}, {"id": "42471", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571902724, 35.265914748], [139.571930636, 35.265780108], [139.571676667, 35.265873694], [139.571902724, 35.265914748]]]}}, {"id": "42472", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566550558, 35.284975505], [139.566454163, 35.285104946], [139.566584721, 35.285065505], [139.566550558, 35.284975505]]]}}, {"id": "42473", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570541025, 35.265661441], [139.570671582, 35.265785333], [139.570760752, 35.265712], [139.570541025, 35.265661441]]]}}, {"id": "42474", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567086031, 35.265464198], [139.567065473, 35.265599198], [139.567189079, 35.265531694], [139.567086031, 35.265464198]]]}}, {"id": "42475", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.556837717, 35.269318054], [139.556824112, 35.269481387], [139.556906615, 35.269425], [139.556837717, 35.269318054]]]}}, {"id": "42476", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.572052607, 35.265751721], [139.572078833, 35.265905387], [139.572163087, 35.265744919], [139.572052607, 35.265751721]]]}}, {"id": "42477", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565017717, 35.265025775], [139.564913385, 35.264915919], [139.56483153, 35.265091108], [139.565017717, 35.265025775]]]}}, {"id": "42478", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56841192, 35.28036636], [139.568466641, 35.280499414], [139.568515525, 35.28041164], [139.56841192, 35.28036636]]]}}, {"id": "42479", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562242192, 35.270922775], [139.562120441, 35.271008306], [139.562091829, 35.271150054], [139.562207367, 35.271083414], [139.562242192, 35.270922775]]]}}, {"id": "42480", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569826589, 35.269717802], [139.56990214, 35.269853081], [139.569929637, 35.26976864], [139.569826589, 35.269717802]]]}}, {"id": "42481", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56573297, 35.265931694], [139.565911582, 35.266050027], [139.565939079, 35.265999468], [139.56573297, 35.265931694]]]}}, {"id": "42482", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564638521, 35.265185694], [139.564603281, 35.265065946], [139.56451153, 35.265197279], [139.564638521, 35.265185694]]]}}, {"id": "42483", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570252698, 35.26985864], [139.570383256, 35.26976864], [139.570238807, 35.269830586], [139.570252698, 35.26985864]]]}}, {"id": "42484", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568294942, 35.271177252], [139.568404669, 35.271103919], [139.568294942, 35.271086973], [139.568294942, 35.271177252]]]}}, {"id": "42485", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564418366, 35.264603973], [139.564235642, 35.264565694], [139.564246005, 35.26466036], [139.564418366, 35.264603973]]]}}, {"id": "42486", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568830804, 35.279555252], [139.568686355, 35.279617198], [139.568803307, 35.279628586], [139.568830804, 35.279555252]]]}}, {"id": "42487", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.563596887, 35.270844721], [139.563617445, 35.271002505], [139.563651894, 35.270878613], [139.563596887, 35.270844721]]]}}, {"id": "42488", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576441284, 35.258353973], [139.576338223, 35.258449532], [139.576502944, 35.25848064], [139.576441284, 35.258353973]]]}}, {"id": "42489", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562537691, 35.270973027], [139.562489248, 35.270863198], [139.562382581, 35.271078586], [139.562537691, 35.270973027]]]}}, {"id": "42490", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566509079, 35.265351414], [139.566653256, 35.265362532], [139.566584643, 35.265311973], [139.566509079, 35.265351414]]]}}, {"id": "42491", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57478572, 35.259238414], [139.574861284, 35.259350919], [139.574936835, 35.259277865], [139.57478572, 35.259238414]]]}}, {"id": "42492", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.575232114, 35.259452306], [139.575342114, 35.259553694], [139.575369611, 35.259469252], [139.575232114, 35.259452306]]]}}, {"id": "42493", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566609974, 35.271050135], [139.566556887, 35.271190027], [139.566653281, 35.271154721], [139.566609974, 35.271050135]]]}}, {"id": "42494", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.558843554, 35.269763054], [139.558994669, 35.269757505], [139.558857445, 35.269712505], [139.558843554, 35.269763054]]]}}, {"id": "42495", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557861336, 35.270698333], [139.557833839, 35.270799721], [139.557943839, 35.270754721], [139.557861336, 35.270698333]]]}}, {"id": "42496", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56525214, 35.265007802], [139.565409922, 35.265080865], [139.565409922, 35.265024468], [139.56525214, 35.265007802]]]}}, {"id": "42497", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.557950506, 35.270996946], [139.558005499, 35.271120838], [139.558060506, 35.271092775], [139.557950506, 35.270996946]]]}}, {"id": "42498", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.574380441, 35.25979036], [139.574500169, 35.259871198], [139.574496005, 35.259796468], [139.574380441, 35.25979036]]]}}, {"id": "42499", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571069637, 35.264652838], [139.571200195, 35.264624505], [139.571083528, 35.264579505], [139.571069637, 35.264652838]]]}}, {"id": "42500", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571937419, 35.265040333], [139.572025473, 35.264979225], [139.571858249, 35.264938946], [139.571937419, 35.265040333]]]}}, {"id": "42501", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567938029, 35.281087748], [139.568034968, 35.281168306], [139.56807358, 35.281113306], [139.567938029, 35.281087748]]]}}, {"id": "42502", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566165746, 35.266117802], [139.566268807, 35.266202252], [139.566275473, 35.266100865], [139.566165746, 35.266117802]]]}}, {"id": "42503", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56812358, 35.28058636], [139.568061634, 35.280704414], [139.568151362, 35.280679694], [139.56812358, 35.28058636]]]}}, {"id": "42504", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576258223, 35.258858694], [139.576360726, 35.258953135], [139.576388495, 35.258880081], [139.576258223, 35.258858694]]]}}, {"id": "42505", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566296329, 35.271143333], [139.566419948, 35.271081387], [139.566323281, 35.271049441], [139.566296329, 35.271143333]]]}}, {"id": "42506", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567258003, 35.271949171], [139.567354112, 35.271875838], [139.567244112, 35.271870279], [139.567258003, 35.271949171]]]}}, {"id": "42507", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566096031, 35.271471919], [139.566138275, 35.271577225], [139.566220778, 35.271543613], [139.566096031, 35.271471919]]]}}, {"id": "42508", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562351556, 35.271153532], [139.562240921, 35.271206], [139.562282412, 35.271287027], [139.562351556, 35.271153532]]]}}, {"id": "42509", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.573652698, 35.265334505], [139.57378214, 35.265416721], [139.573799637, 35.265379775], [139.573652698, 35.265334505]]]}}, {"id": "42510", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.575541284, 35.259649532], [139.575644332, 35.259587586], [139.575527665, 35.259559532], [139.575541284, 35.259649532]]]}}, {"id": "42511", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561520337, 35.270663892], [139.561462088, 35.270531532], [139.56141808, 35.270708279], [139.561520337, 35.270663892]]]}}, {"id": "42512", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565513645, 35.264706081], [139.565632529, 35.264777613], [139.565651946, 35.264767721], [139.565513645, 35.264706081]]]}}, {"id": "42513", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576448223, 35.258246468], [139.576581829, 35.258187586], [139.576482387, 35.258179252], [139.576448223, 35.258246468]]]}}, {"id": "42514", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565462581, 35.264291667], [139.565420726, 35.264185108], [139.56539131, 35.26424236], [139.565462581, 35.264291667]]]}}, {"id": "42515", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568404669, 35.271954721], [139.568425499, 35.271842225], [139.568329105, 35.271808333], [139.568404669, 35.271954721]]]}}, {"id": "42516", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568823839, 35.272016667], [139.568830778, 35.272106946], [139.568926887, 35.272078892], [139.568823839, 35.272016667]]]}}, {"id": "42517", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.578496835, 35.255367586], [139.578631829, 35.255317306], [139.578522387, 35.255311198], [139.578496835, 35.255367586]]]}}, {"id": "42518", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566096939, 35.285138838], [139.56622083, 35.285110775], [139.56611083, 35.285076892], [139.566096939, 35.285138838]]]}}, {"id": "42519", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566989948, 35.271396946], [139.56707978, 35.271495946], [139.567065499, 35.271391387], [139.566989948, 35.271396946]]]}}, {"id": "42520", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56115856, 35.270320838], [139.561199663, 35.270450279], [139.561261608, 35.270399721], [139.56115856, 35.270320838]]]}}, {"id": "42521", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568109364, 35.265464198], [139.568229922, 35.265428081], [139.56812214, 35.265385586], [139.568109364, 35.265464198]]]}}, {"id": "42522", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576590441, 35.258502865], [139.576716278, 35.258527586], [139.576722114, 35.258451748], [139.576590441, 35.258502865]]]}}, {"id": "42523", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56536869, 35.264529775], [139.565204838, 35.264626252], [139.5652307, 35.264651], [139.56536869, 35.264529775]]]}}, {"id": "42524", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569743891, 35.278000252], [139.569835577, 35.278053667], [139.569807445, 35.277950108], [139.569743891, 35.278000252]]]}}, {"id": "42525", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568761894, 35.273008333], [139.568880506, 35.273055838], [139.56881022, 35.272957505], [139.568761894, 35.273008333]]]}}, {"id": "42526", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57115214, 35.265396441], [139.571295746, 35.265423667], [139.571269079, 35.265368387], [139.57115214, 35.265396441]]]}}, {"id": "42527", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570156304, 35.269909468], [139.570135746, 35.270016414], [139.570218249, 35.26990364], [139.570156304, 35.269909468]]]}}, {"id": "42528", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.558795499, 35.269943054], [139.558919105, 35.26996], [139.55880939, 35.269887225], [139.558795499, 35.269943054]]]}}, {"id": "42529", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576708495, 35.258696468], [139.576839883, 35.258690919], [139.576718495, 35.258676198], [139.576708495, 35.258696468]]]}}, {"id": "42530", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56795131, 35.26545836], [139.568034086, 35.265541414], [139.56800131, 35.265465027], [139.56795131, 35.26545836]]]}}, {"id": "42531", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567080078, 35.271853775], [139.567096252, 35.271749892], [139.567027004, 35.27179564], [139.567080078, 35.271853775]]]}}, {"id": "42532", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566337419, 35.265379468], [139.566357977, 35.265475306], [139.566419922, 35.265464198], [139.566337419, 35.265379468]]]}}, {"id": "42533", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566571025, 35.265678081], [139.566653256, 35.265610586], [139.566550467, 35.265644468], [139.566571025, 35.265678081]]]}}, {"id": "42534", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.55869939, 35.270692505], [139.558795499, 35.270681387], [139.558712996, 35.270613613], [139.55869939, 35.270692505]]]}}, {"id": "42535", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569572477, 35.278400252], [139.569703022, 35.278473586], [139.569709974, 35.27845664], [139.569572477, 35.278400252]]]}}, {"id": "42536", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.560299948, 35.270303892], [139.560162438, 35.270241946], [139.560141894, 35.270258613], [139.560299948, 35.270303892]]]}}, {"id": "42537", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.573536861, 35.265290333], [139.573424358, 35.265340892], [139.573550195, 35.265340333], [139.573536861, 35.265290333]]]}}, {"id": "42538", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.558864112, 35.270996946], [139.558843554, 35.271098333], [139.558932996, 35.271053333], [139.558864112, 35.270996946]]]}}, {"id": "42539", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565925188, 35.265588081], [139.565973256, 35.265666973], [139.565987134, 35.265605027], [139.565925188, 35.265588081]]]}}, {"id": "42540", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.559571894, 35.26996], [139.559571894, 35.270084171], [139.559612996, 35.270061387], [139.559571894, 35.26996]]]}}, {"id": "42541", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57004131, 35.26574336], [139.570135473, 35.265703081], [139.570032698, 35.265672532], [139.57004131, 35.26574336]]]}}, {"id": "42542", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565793943, 35.271393441], [139.565862944, 35.271497775], [139.565884721, 35.271471387], [139.565793943, 35.271393441]]]}}, {"id": "42543", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568724112, 35.272816108], [139.568788275, 35.272752225], [139.568693281, 35.272720838], [139.568724112, 35.272816108]]]}}, {"id": "42544", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569028418, 35.279755288], [139.569281543, 35.279576468], [139.569009442, 35.279737216], [139.569028418, 35.279755288]]]}}, {"id": "42545", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56819131, 35.265720306], [139.568226304, 35.265650027], [139.568130752, 35.265642532], [139.56819131, 35.265720306]]]}}, {"id": "42546", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565965551, 35.264283387], [139.566081115, 35.264332775], [139.566072529, 35.264270748], [139.565965551, 35.264283387]]]}}, {"id": "42547", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56587572, 35.271621054], [139.565774721, 35.271646081], [139.565872166, 35.271697775], [139.56587572, 35.271621054]]]}}, {"id": "42548", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568499559, 35.272547559], [139.568601894, 35.272578892], [139.568508833, 35.272487775], [139.568499559, 35.272547559]]]}}, {"id": "42549", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.576112387, 35.259042865], [139.576015447, 35.258996198], [139.576012944, 35.259063973], [139.576112387, 35.259042865]]]}}, {"id": "42550", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.57838489, 35.255553694], [139.578446835, 35.255468973], [139.578379883, 35.255478414], [139.57838489, 35.255553694]]]}}, {"id": "42551", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.563995227, 35.271058892], [139.564009105, 35.27098], [139.563926615, 35.270996946], [139.563995227, 35.271058892]]]}}, {"id": "42552", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569908859, 35.278400252], [139.569855811, 35.278296387], [139.569848586, 35.278396081], [139.569908859, 35.278400252]]]}}, {"id": "42553", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568321634, 35.280796919], [139.568220804, 35.280751919], [139.568305525, 35.280848027], [139.568321634, 35.280796919]]]}}, {"id": "42554", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568083307, 35.28094664], [139.567987471, 35.280940252], [139.568075525, 35.280983586], [139.568083307, 35.28094664]]]}}, {"id": "42555", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571104086, 35.265588108], [139.571193528, 35.265571171], [139.571104086, 35.265543108], [139.571104086, 35.265588108]]]}}, {"id": "42556", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565876693, 35.264901279], [139.565861167, 35.264834694], [139.565781089, 35.264894108], [139.565876693, 35.264901279]]]}}, {"id": "42557", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568999948, 35.273110838], [139.569003554, 35.273217775], [139.569023281, 35.273207225], [139.568999948, 35.273110838]]]}}, {"id": "42558", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566756304, 35.267390865], [139.566804643, 35.267300865], [139.566749637, 35.267379748], [139.566756304, 35.267390865]]]}}, {"id": "42559", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566199922, 35.265689468], [139.566282412, 35.265610586], [139.566165746, 35.26563864], [139.566199922, 35.265689468]]]}}, {"id": "42560", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565168975, 35.265171], [139.56508131, 35.265191333], [139.565105331, 35.265238081], [139.565168975, 35.265171]]]}}, {"id": "42561", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569798003, 35.26580936], [139.569752192, 35.265715306], [139.569737328, 35.265750081], [139.569798003, 35.26580936]]]}}, {"id": "42562", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568647756, 35.280609973], [139.568563022, 35.280546919], [139.568563022, 35.280580532], [139.568647756, 35.280609973]]]}}, {"id": "42563", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569057471, 35.279544135], [139.568988586, 35.27947636], [139.56898192, 35.279555252], [139.569057471, 35.279544135]]]}}, {"id": "42564", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56810939, 35.271904171], [139.568013281, 35.271859171], [139.568047717, 35.271937775], [139.56810939, 35.271904171]]]}}, {"id": "42565", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568478106, 35.272208081], [139.568478106, 35.272281306], [139.568496161, 35.272258946], [139.568478106, 35.272208081]]]}}, {"id": "42566", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.575809339, 35.25872564], [139.575719883, 35.258731468], [139.575816005, 35.258765081], [139.575809339, 35.25872564]]]}}, {"id": "42567", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568914968, 35.27976636], [139.568819416, 35.279775532], [139.568926355, 35.279810532], [139.568914968, 35.27976636]]]}}, {"id": "42568", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566406057, 35.271436387], [139.566447445, 35.271368892], [139.566354942, 35.271364721], [139.566406057, 35.271436387]]]}}, {"id": "42569", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.559935772, 35.270376946], [139.559867173, 35.270320838], [139.559826057, 35.270371387], [139.559935772, 35.270376946]]]}}, {"id": "42570", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.571404086, 35.265310333], [139.571428054, 35.265222892], [139.571371855, 35.265250613], [139.571404086, 35.265310333]]]}}, {"id": "42571", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565671336, 35.271529171], [139.565600558, 35.271582306], [139.565632361, 35.271601468], [139.565671336, 35.271529171]]]}}, {"id": "42572", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.566605188, 35.267081414], [139.566632698, 35.266991135], [139.566577691, 35.267025027], [139.566605188, 35.267081414]]]}}, {"id": "42573", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568631608, 35.271165865], [139.568604112, 35.271092802], [139.568583281, 35.271120865], [139.568631608, 35.271165865]]]}}, {"id": "42574", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564693865, 35.265465613], [139.564586589, 35.265426865], [139.56457847, 35.265489333], [139.564693865, 35.265465613]]]}}, {"id": "42575", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.570332776, 35.277672054], [139.570295694, 35.277757748], [139.570363891, 35.277714279], [139.570332776, 35.277672054]]]}}, {"id": "42576", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561495162, 35.270466333], [139.561462049, 35.270407559], [139.561415473, 35.270539333], [139.561495162, 35.270466333]]]}}, {"id": "42577", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.5627707, 35.270811198], [139.562800636, 35.270733198], [139.562756498, 35.270790252], [139.5627707, 35.270811198]]]}}, {"id": "42578", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568630506, 35.272409441], [139.568709948, 35.272390559], [139.568642996, 35.272374721], [139.568630506, 35.272409441]]]}}, {"id": "42579", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.567818586, 35.281158586], [139.567745525, 35.281194135], [139.567820246, 35.281181919], [139.567818586, 35.281158586]]]}}, {"id": "42580", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562448885, 35.271134973], [139.562568444, 35.271076748], [139.562539144, 35.271032333], [139.562448885, 35.271134973]]]}}, {"id": "42581", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.568501051, 35.271008081], [139.568404669, 35.270974468], [139.568494112, 35.271041973], [139.568501051, 35.271008081]]]}}, {"id": "42582", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569048301, 35.279918865], [139.569118301, 35.279967198], [139.569105525, 35.279894135], [139.569048301, 35.279918865]]]}}, {"id": "42583", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562251362, 35.271070441], [139.562317224, 35.271095748], [139.562312633, 35.271020198], [139.562251362, 35.271070441]]]}}, {"id": "42584", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.561913839, 35.271002505], [139.561845227, 35.270951946], [139.561858833, 35.271019441], [139.561913839, 35.271002505]]]}}, {"id": "42585", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564085357, 35.265310838], [139.56407594, 35.265400667], [139.564125473, 35.265339387], [139.564085357, 35.265310838]]]}}, {"id": "42586", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565464189, 35.264636919], [139.565484968, 35.264703108], [139.565518392, 35.264634252], [139.565464189, 35.264636919]]]}}, {"id": "42587", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562635279, 35.270948171], [139.562667808, 35.270912441], [139.562662361, 35.270864306], [139.562635279, 35.270948171]]]}}, {"id": "42588", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562020661, 35.270870802], [139.561992698, 35.270820171], [139.561983476, 35.270850252], [139.562020661, 35.270870802]]]}}, {"id": "42589", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56293358, 35.270553306], [139.56289847, 35.270530667], [139.562916783, 35.270581387], [139.56293358, 35.270553306]]]}}, {"id": "42590", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565960856, 35.264404802], [139.566032088, 35.264440838], [139.566050272, 35.264420054], [139.565960856, 35.264404802]]]}}, {"id": "42591", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564704137, 35.264949279], [139.564698638, 35.265016414], [139.564763217, 35.264930027], [139.564704137, 35.264949279]]]}}, {"id": "42592", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562050311, 35.270612802], [139.562020973, 35.270577387], [139.562008586, 35.270636865], [139.562050311, 35.270612802]]]}}, {"id": "42593", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.56575428, 35.264940721], [139.565698444, 35.264983306], [139.565763865, 35.264970532], [139.56575428, 35.264940721]]]}}, {"id": "42594", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.569139974, 35.279363865], [139.569084968, 35.279329973], [139.569078029, 35.279363865], [139.569139974, 35.279363865]]]}}, {"id": "42595", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.563011167, 35.270659468], [139.563046472, 35.270582225], [139.563000363, 35.270636198], [139.563011167, 35.270659468]]]}}, {"id": "42596", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564633385, 35.265365586], [139.564634137, 35.265407054], [139.564668885, 35.265365387], [139.564633385, 35.265365586]]]}}, {"id": "42597", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565631362, 35.264572027], [139.565719001, 35.264557333], [139.565725746, 35.26454464], [139.56566489, 35.264531081], [139.565631362, 35.264572027]]]}}, {"id": "42598", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562347951, 35.270979], [139.562423217, 35.270951946], [139.562412283, 35.270937865], [139.562347951, 35.270979]]]}}, {"id": "42599", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565627328, 35.26415664], [139.565601894, 35.264206252], [139.565674034, 35.264194054], [139.565627328, 35.26415664]]]}}, {"id": "42600", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.562107756, 35.270961333], [139.562097665, 35.270918946], [139.56206856, 35.27097736], [139.562107756, 35.270961333]]]}}, {"id": "42601", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565530117, 35.264692108], [139.565577198, 35.264660505], [139.56553358, 35.264660414], [139.565530117, 35.264692108]]]}}, {"id": "42602", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.5646462, 35.265218333], [139.564673502, 35.265174306], [139.564637134, 35.265202171], [139.5646462, 35.265218333]]]}}, {"id": "42603", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.565746109, 35.264502865], [139.565730169, 35.264471919], [139.565733217, 35.264502532], [139.565746109, 35.264502865]]]}}, {"id": "42604", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564715525, 35.264889081], [139.564690856, 35.264869468], [139.564694942, 35.264900054], [139.564715525, 35.264889081]]]}}, {"id": "42605", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "三浦郡", "N03_004": "葉山町", "N03_005": null, "N03_007": "14301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.564723943, 35.265140441], [139.564707886, 35.265172946], [139.564747004, 35.265145613], [139.564723943, 35.265140441]]]}}, {"id": "42606", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "高座郡", "N03_004": "寒川町", "N03_005": null, "N03_007": "14321"}, "geometry": {"type": "Polygon", "coordinates": [[[139.371981855, 35.400681559], [139.403119585, 35.390129667], [139.395238249, 35.352081414], [139.370332698, 35.351277468], [139.371981855, 35.400681559]]]}}, {"id": "42607", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "中郡", "N03_004": "大磯町", "N03_005": null, "N03_007": "14341"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251224112, 35.328719414], [139.282730999, 35.333591892], [139.334069533, 35.323193838], [139.320472218, 35.304854441], [139.269274773, 35.297288009], [139.251224112, 35.328719414]]]}}, {"id": "42608", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "中郡", "N03_004": "大磯町", "N03_005": null, "N03_007": "14341"}, "geometry": {"type": "Polygon", "coordinates": [[[139.315767211, 35.305481919], [139.316095058, 35.305318892], [139.315888016, 35.305221901], [139.315767211, 35.305481919]]]}}, {"id": "42609", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "中郡", "N03_004": "二宮町", "N03_005": null, "N03_007": "14342"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233218275, 35.319831838], [139.249271336, 35.329849946], [139.269274773, 35.297288009], [139.234080804, 35.286442919], [139.233218275, 35.319831838]]]}}, {"id": "42610", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄上郡", "N03_004": "中井町", "N03_005": null, "N03_007": "14361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.246658586, 35.333078252], [139.203084449, 35.307221027], [139.186068859, 35.351074505], [139.250064773, 35.354532613], [139.246658586, 35.333078252]]]}}, {"id": "42611", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄上郡", "N03_004": "大井町", "N03_005": null, "N03_007": "14362"}, "geometry": {"type": "Polygon", "coordinates": [[[139.189715668, 35.324287225], [139.148641582, 35.313620586], [139.135594163, 35.336721919], [139.169765888, 35.359347], [139.196800999, 35.342756441], [139.189715668, 35.324287225]]]}}, {"id": "42612", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄上郡", "N03_004": "松田町", "N03_005": null, "N03_007": "14363"}, "geometry": {"type": "Polygon", "coordinates": [[[139.116336394, 35.358333468], [139.129607367, 35.374266027], [139.099831284, 35.390383613], [139.100880532, 35.418349441], [139.137490026, 35.445747054], [139.162356939, 35.349617559], [139.135594163, 35.336721919], [139.116336394, 35.358333468]]]}}, {"id": "42613", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄上郡", "N03_004": "山北町", "N03_005": null, "N03_007": "14364"}, "geometry": {"type": "Polygon", "coordinates": [[[139.016527393, 35.332378505], [138.999909559, 35.401651586], [138.916402918, 35.400613613], [138.937369663, 35.448867505], [139.027549442, 35.480967802], [139.048172309, 35.510247198], [139.102491115, 35.478926892], [139.162703645, 35.475091171], [139.160879533, 35.449775468], [139.12886808, 35.445640919], [139.100880532, 35.418349441], [139.099831284, 35.390383613], [139.129607367, 35.374266027], [139.114486978, 35.351971252], [139.053437912, 35.351151306], [139.016527393, 35.332378505]]]}}, {"id": "42614", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄上郡", "N03_004": "開成町", "N03_005": null, "N03_007": "14366"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139519144, 35.328327225], [139.121728029, 35.319610225], [139.106590363, 35.344747054], [139.129054189, 35.346804108], [139.139519144, 35.328327225]]]}}, {"id": "42615", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "箱根町", "N03_005": null, "N03_007": "14382"}, "geometry": {"type": "Polygon", "coordinates": [[[139.049535577, 35.28161636], [139.083404501, 35.233942532], [139.09189703, 35.24345564], [139.121152581, 35.238601892], [139.0419993, 35.177591135], [138.987677691, 35.200881198], [138.974320532, 35.25711864], [138.997208301, 35.28870164], [139.030261582, 35.274093865], [139.049535577, 35.28161636]]]}}, {"id": "42616", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.103022581, 35.187097559], [139.14339345, 35.172834667], [139.141653385, 35.152195225], [139.16180725, 35.141581505], [139.137695811, 35.148108414], [139.103022581, 35.187097559]]]}}, {"id": "42617", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.16255594, 35.137964171], [139.163871855, 35.137770532], [139.16399808, 35.137019919], [139.16255594, 35.137964171]]]}}, {"id": "42618", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148930519, 35.149775919], [139.149518262, 35.148959838], [139.149511842, 35.148887505], [139.149025084, 35.149099207], [139.148930519, 35.149775919]]]}}, {"id": "42619", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.149002374, 35.151457216], [139.149468379, 35.15240164], [139.148887419, 35.151135207], [139.149002374, 35.151457216]]]}}, {"id": "42620", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147058807, 35.152030306], [139.145820052, 35.152737559], [139.14720917, 35.152032108], [139.147058807, 35.152030306]]]}}, {"id": "42621", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146260778, 35.167440667], [139.146301894, 35.167080387], [139.146127691, 35.167431288], [139.146260778, 35.167440667]]]}}, {"id": "42622", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14088, 35.162974333], [139.140815525, 35.162803441], [139.140662361, 35.162912081], [139.14088, 35.162974333]]]}}, {"id": "42623", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145517821, 35.15358], [139.145140545, 35.153793396], [139.145604968, 35.153631703], [139.145517821, 35.15358]]]}}, {"id": "42624", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142490285, 35.163172631], [139.142429481, 35.162951432], [139.142325266, 35.163086955], [139.142490285, 35.163172631]]]}}, {"id": "42625", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14946559, 35.148093], [139.149375914, 35.148605405], [139.149244604, 35.148702739], [139.14943677, 35.148585378], [139.149557302, 35.148214757], [139.14946559, 35.148093]]]}}, {"id": "42626", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144345422, 35.156453405], [139.144200013, 35.156542], [139.144288353, 35.156713685], [139.144345422, 35.156453405]]]}}, {"id": "42627", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147618003, 35.166004279], [139.147528833, 35.166190108], [139.147679663, 35.166105667], [139.147618003, 35.166004279]]]}}, {"id": "42628", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.150435058, 35.140556748], [139.150345888, 35.140703135], [139.150483113, 35.140652586], [139.150435058, 35.140556748]]]}}, {"id": "42629", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144005344, 35.157148459], [139.143921323, 35.157115613], [139.143893645, 35.157156568], [139.144005344, 35.157148459]]]}}, {"id": "42630", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144846744, 35.155927207], [139.144922672, 35.155956306], [139.144975175, 35.155912252], [139.144846744, 35.155927207]]]}}, {"id": "42631", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14626642, 35.167003622], [139.146508547, 35.166968676], [139.146383748, 35.166941459], [139.14626642, 35.167003622]]]}}, {"id": "42632", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14435594, 35.156846937], [139.144246861, 35.156869036], [139.144277782, 35.156899315], [139.14435594, 35.156846937]]]}}, {"id": "42633", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144537185, 35.15600955], [139.144705136, 35.156033766], [139.144716148, 35.156015523], [139.144537185, 35.15600955]]]}}, {"id": "42634", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143412711, 35.16543118], [139.143529313, 35.165415171], [139.143518651, 35.165377883], [139.143412711, 35.16543118]]]}}, {"id": "42635", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148154436, 35.150328523], [139.148052205, 35.150360667], [139.148070246, 35.150394486], [139.148154436, 35.150328523]]]}}, {"id": "42636", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146595772, 35.167287613], [139.146503839, 35.167362054], [139.146637717, 35.167317054], [139.146595772, 35.167287613]]]}}, {"id": "42637", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146705499, 35.15091291], [139.146807095, 35.151178505], [139.146825331, 35.151170216], [139.146705499, 35.15091291]]]}}, {"id": "42638", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144850908, 35.154389937], [139.144814267, 35.154479964], [139.144901375, 35.15440609], [139.144850908, 35.154389937]]]}}, {"id": "42639", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144721725, 35.154194225], [139.144802023, 35.154213703], [139.144819339, 35.154150694], [139.144721725, 35.154194225]]]}}, {"id": "42640", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14228275, 35.164051514], [139.142332127, 35.164091721], [139.14231585, 35.164043405], [139.14228275, 35.164051514]]]}}, {"id": "42641", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144928794, 35.154525955], [139.144850674, 35.154523252], [139.144862166, 35.154553252], [139.144928794, 35.154525955]]]}}, {"id": "42642", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142421816, 35.164519333], [139.14249393, 35.164469351], [139.142453541, 35.164442351], [139.142421816, 35.164519333]]]}}, {"id": "42643", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144786913, 35.154639631], [139.144848366, 35.154692081], [139.144907108, 35.154663658], [139.144786913, 35.154639631]]]}}, {"id": "42644", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14668022, 35.167146225], [139.146757173, 35.167146225], [139.146732996, 35.167131505], [139.14668022, 35.167146225]]]}}, {"id": "42645", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144061323, 35.170626009], [139.144018301, 35.170573036], [139.144045875, 35.170635838], [139.144061323, 35.170626009]]]}}, {"id": "42646", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142363748, 35.16445473], [139.142440272, 35.164414514], [139.142420039, 35.164392486], [139.142363748, 35.16445473]]]}}, {"id": "42647", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144773256, 35.155765523], [139.14476358, 35.155819378], [139.14484511, 35.155783063], [139.144773256, 35.155765523]]]}}, {"id": "42648", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144674501, 35.154627721], [139.144693995, 35.154672541], [139.144766874, 35.15464691], [139.144674501, 35.154627721]]]}}, {"id": "42649", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143664099, 35.165586847], [139.143699468, 35.165531613], [139.143649364, 35.165563595], [139.143664099, 35.165586847]]]}}, {"id": "42650", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147473774, 35.166423189], [139.147478184, 35.166473514], [139.147496213, 35.166431523], [139.147473774, 35.166423189]]]}}, {"id": "42651", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144991725, 35.154768432], [139.144948301, 35.154829126], [139.145012892, 35.154783072], [139.144991725, 35.154768432]]]}}, {"id": "42652", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144310636, 35.158770243], [139.144344384, 35.15872518], [139.144296291, 35.158714], [139.144310636, 35.158770243]]]}}, {"id": "42653", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.159755888, 35.140598991], [139.159770765, 35.140538766], [139.159735837, 35.140596441], [139.159755888, 35.140598991]]]}}, {"id": "42654", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14138524, 35.163626775], [139.141351984, 35.163586919], [139.141344423, 35.163624378], [139.14138524, 35.163626775]]]}}, {"id": "42655", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141658106, 35.163693234], [139.141606537, 35.163677523], [139.141610376, 35.163691523], [139.141658106, 35.163693234]]]}}, {"id": "42656", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142440856, 35.164319054], [139.142489222, 35.164298324], [139.142469429, 35.164276577], [139.142440856, 35.164319054]]]}}, {"id": "42657", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144674708, 35.155540964], [139.144740571, 35.155553955], [139.144743217, 35.155538829], [139.144674708, 35.155540964]]]}}, {"id": "42658", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.162720752, 35.137665495], [139.162700661, 35.137627342], [139.162680013, 35.137656441], [139.162720752, 35.137665495]]]}}, {"id": "42659", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.142253359, 35.164165009], [139.142307069, 35.164160721], [139.142299767, 35.164141387], [139.142253359, 35.164165009]]]}}, {"id": "42660", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.164015447, 35.137849153], [139.163980156, 35.137871495], [139.164018431, 35.137873514], [139.164015447, 35.137849153]]]}}, {"id": "42661", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144323385, 35.17019482], [139.144282218, 35.170194586], [139.144303606, 35.170215802], [139.144323385, 35.17019482]]]}}, {"id": "42662", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144847951, 35.166557027], [139.144817549, 35.166581649], [139.14484773, 35.16658182], [139.144847951, 35.166557027]]]}}, {"id": "42663", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140885655, 35.163122541], [139.140855266, 35.163147162], [139.140885447, 35.163147333], [139.140885655, 35.163122541]]]}}, {"id": "42664", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144937925, 35.16689909], [139.144907951, 35.166874126], [139.144907743, 35.166898919], [139.144937925, 35.16689909]]]}}, {"id": "42665", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144646602, 35.166650712], [139.144616615, 35.166625757], [139.144616407, 35.166650541], [139.144646602, 35.166650712]]]}}, {"id": "42666", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144898599, 35.169012892], [139.144868197, 35.169037505], [139.144898392, 35.169037676], [139.144898599, 35.169012892]]]}}, {"id": "42667", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143307471, 35.173328342], [139.143277069, 35.173352955], [139.143307263, 35.173353126], [139.143307471, 35.173328342]]]}}, {"id": "42668", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141075733, 35.163115333], [139.141045344, 35.163139955], [139.141075525, 35.163140126], [139.141075733, 35.163115333]]]}}, {"id": "42669", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140928534, 35.163296135], [139.14089856, 35.163271171], [139.140898353, 35.163295964], [139.140928534, 35.163296135]]]}}, {"id": "42670", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.141061232, 35.163181604], [139.141031258, 35.16315664], [139.141031051, 35.163181423], [139.141061232, 35.163181604]]]}}, {"id": "42671", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145419092, 35.167157378], [139.145388703, 35.167181991], [139.145418885, 35.167182162], [139.145419092, 35.167157378]]]}}, {"id": "42672", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140811466, 35.163212532], [139.140781064, 35.163237144], [139.140811258, 35.163237324], [139.140811466, 35.163212532]]]}}, {"id": "42673", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140586913, 35.163104072], [139.140556939, 35.163079108], [139.140556732, 35.163103901], [139.140586913, 35.163104072]]]}}, {"id": "42674", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143303152, 35.17346245], [139.14327275, 35.173486973], [139.143302944, 35.173487234], [139.143303152, 35.17346245]]]}}, {"id": "42675", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140933722, 35.163189883], [139.140897899, 35.163206631], [139.140927977, 35.163206802], [139.140933722, 35.163189883]]]}}, {"id": "42676", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144075305, 35.17040082], [139.144039481, 35.170417568], [139.144069559, 35.170417739], [139.144075305, 35.17040082]]]}}, {"id": "42677", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140869974, 35.163238108], [139.140828885, 35.163228766], [139.140834228, 35.163245748], [139.140869974, 35.163238108]]]}}, {"id": "42678", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145619689, 35.16805282], [139.1455893, 35.168077351], [139.145619481, 35.168077523], [139.145619689, 35.16805282]]]}}, {"id": "42679", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145183632, 35.167261324], [139.145153645, 35.167236459], [139.145153437, 35.167261153], [139.145183632, 35.167261324]]]}}, {"id": "42680", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140967302, 35.163332775], [139.140931777, 35.163315622], [139.140931569, 35.163340414], [139.140967302, 35.163332775]]]}}, {"id": "42681", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140989287, 35.163147928], [139.140953761, 35.163130775], [139.140959209, 35.163147757], [139.140989287, 35.163147928]]]}}, {"id": "42682", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140789118, 35.163155072], [139.140759144, 35.163130207], [139.140758936, 35.163154901], [139.140789118, 35.163155072]]]}}, {"id": "42683", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14470607, 35.166640414], [139.144670545, 35.16662327], [139.144675992, 35.166640243], [139.14470607, 35.166640414]]]}}, {"id": "42684", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14812284, 35.166269739], [139.148092451, 35.16629427], [139.148122633, 35.166294441], [139.14812284, 35.166269739]]]}}, {"id": "42685", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143472931, 35.17328764], [139.143443061, 35.173262676], [139.143437419, 35.173279595], [139.143472931, 35.17328764]]]}}, {"id": "42686", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144408029, 35.166524423], [139.14437249, 35.16650736], [139.144377951, 35.166524252], [139.144408029, 35.166524423]]]}}, {"id": "42687", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144444501, 35.170673171], [139.144408962, 35.170656108], [139.144408755, 35.170680811], [139.144444501, 35.170673171]]]}}, {"id": "42688", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144438729, 35.166280937], [139.144403191, 35.166263883], [139.144402983, 35.166288577], [139.144438729, 35.166280937]]]}}, {"id": "42689", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144041971, 35.170877126], [139.144006433, 35.170860072], [139.144011894, 35.170876955], [139.144041971, 35.170877126]]]}}, {"id": "42690", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144452425, 35.166544144], [139.144416615, 35.166560793], [139.144452218, 35.166568838], [139.144452425, 35.166544144]]]}}, {"id": "42691", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.143919001, 35.170983063], [139.143888716, 35.171007595], [139.143918794, 35.171007766], [139.143919001, 35.170983063]]]}}, {"id": "42692", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144769261, 35.155561234], [139.144810428, 35.155560027], [139.144785006, 35.155542486], [139.144769261, 35.155561234]]]}}, {"id": "42693", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "真鶴町", "N03_005": null, "N03_007": "14383"}, "geometry": {"type": "Polygon", "coordinates": [[[139.144153684, 35.170010955], [139.144189209, 35.170028099], [139.144194851, 35.170011189], [139.144153684, 35.170010955]]]}}, {"id": "42694", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "足柄下郡", "N03_004": "湯河原町", "N03_005": null, "N03_007": "14384"}, "geometry": {"type": "Polygon", "coordinates": [[[139.074774034, 35.201255306], [139.126710506, 35.159312], [139.133172412, 35.154757838], [139.137133774, 35.150453108], [139.137553748, 35.149236171], [139.137357639, 35.148573387], [139.089843696, 35.140194721], [139.029006005, 35.150161135], [139.026135863, 35.173258919], [139.074774034, 35.201255306]]]}}, {"id": "42695", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "愛甲郡", "N03_004": "愛川町", "N03_005": null, "N03_007": "14401"}, "geometry": {"type": "Polygon", "coordinates": [[[139.347575525, 35.499891532], [139.307346304, 35.522709252], [139.270573359, 35.507030586], [139.247364423, 35.528899892], [139.249788716, 35.546909586], [139.294016498, 35.556571198], [139.325400272, 35.544007838], [139.354505136, 35.527467027], [139.347575525, 35.499891532]]]}}, {"id": "42696", "type": "Feature", "properties": {"N03_001": "神奈川県", "N03_002": null, "N03_003": "愛甲郡", "N03_004": "清川村", "N03_005": null, "N03_007": "14402"}, "geometry": {"type": "Polygon", "coordinates": [[[139.248130636, 35.542519306], [139.298729559, 35.477922694], [139.294069196, 35.462085775], [139.163388418, 35.454025468], [139.166702581, 35.483086171], [139.220259689, 35.534659586], [139.248130636, 35.542519306]]]}}, {"id": "42697", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "北区", "N03_007": "15101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247672866, 37.916664586], [139.266824578, 37.901540946], [139.260230921, 37.883619802], [139.24909642, 37.889781505], [139.227391829, 37.862136468], [139.178049416, 37.864080225], [139.127589105, 37.958807505], [139.201977639, 37.982941279], [139.231338457, 38.019862234], [139.214704799, 37.99374945], [139.23939144, 37.957068468], [139.227051388, 37.946297946], [139.259286809, 37.937727613], [139.247672866, 37.916664586]]]}}, {"id": "42698", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "北区", "N03_007": "15101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.169582257, 37.978899541], [139.171294981, 37.980103883], [139.171427795, 37.979962207], [139.169582257, 37.978899541]]]}}, {"id": "42699", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "北区", "N03_007": "15101"}, "geometry": {"type": "Polygon", "coordinates": [[[139.231707691, 37.966742964], [139.232288898, 37.966946405], [139.232296381, 37.966931847], [139.231707691, 37.966742964]]]}}, {"id": "42700", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "東区", "N03_007": "15102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.073245006, 37.90773136], [139.06967642, 37.95296864], [139.132042737, 37.962144234], [139.147628275, 37.913843586], [139.098868781, 37.889999946], [139.073245006, 37.90773136]]]}}, {"id": "42701", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "東区", "N03_007": "15102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.070050454, 37.954527991], [139.070696732, 37.955935892], [139.069753982, 37.953677009], [139.070050454, 37.954527991]]]}}, {"id": "42702", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "東区", "N03_007": "15102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.069447575, 37.952159315], [139.069236304, 37.950849441], [139.069429001, 37.952168405], [139.069447575, 37.952159315]]]}}, {"id": "42703", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "東区", "N03_007": "15102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.06976978, 37.953119198], [139.069726589, 37.953127252], [139.069947951, 37.953647865], [139.06976978, 37.953119198]]]}}, {"id": "42704", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "東区", "N03_007": "15102"}, "geometry": {"type": "Polygon", "coordinates": [[[139.069806329, 37.953404919], [139.069848755, 37.953666], [139.069892244, 37.953655441], [139.069806329, 37.953404919]]]}}, {"id": "42705", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.022958418, 37.875487694], [139.004833839, 37.914853225], [139.037851725, 37.930815784], [139.036750908, 37.934523649], [139.06119572, 37.944741883], [139.068754319, 37.958868721], [139.074490506, 37.900877135], [139.098868781, 37.889999946], [139.022958418, 37.875487694]]]}}, {"id": "42706", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.06839249, 37.961188279], [139.073381336, 37.972320099], [139.076351141, 37.975122838], [139.073619118, 37.972189117], [139.06839249, 37.961188279]]]}}, {"id": "42707", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.1, 37.962555514], [139.101569922, 37.962780793], [139.093775097, 37.961331991], [139.1, 37.962555514]]]}}, {"id": "42708", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.068802244, 37.959420838], [139.068563009, 37.960599468], [139.068652399, 37.960616847], [139.068802244, 37.959420838]]]}}, {"id": "42709", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.064073865, 37.946152505], [139.064103165, 37.946233], [139.064128145, 37.946165135], [139.064073865, 37.946152505]]]}}, {"id": "42710", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.063917224, 37.946112721], [139.063836744, 37.946166252], [139.063889974, 37.946179775], [139.063917224, 37.946112721]]]}}, {"id": "42711", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.063644643, 37.946040865], [139.063692866, 37.94609864], [139.06370939, 37.946056865], [139.063644643, 37.946040865]]]}}, {"id": "42712", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.063326005, 37.945974333], [139.063269857, 37.945997559], [139.063314189, 37.946007532], [139.063326005, 37.945974333]]]}}, {"id": "42713", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.063527445, 37.946027], [139.063472802, 37.946050775], [139.063514968, 37.946060667], [139.063527445, 37.946027]]]}}, {"id": "42714", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "中央区", "N03_007": "15103"}, "geometry": {"type": "Polygon", "coordinates": [[[139.064282192, 37.946226748], [139.064309248, 37.946268135], [139.064321751, 37.946236559], [139.064282192, 37.946226748]]]}}, {"id": "42715", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "江南区", "N03_007": "15104"}, "geometry": {"type": "Polygon", "coordinates": [[[139.152155383, 37.846468865], [139.173069559, 37.820860802], [139.11581511, 37.841405198], [139.039192776, 37.838247505], [139.020580195, 37.854667387], [139.022958418, 37.875487694], [139.072293554, 37.876708198], [139.147628275, 37.913843586], [139.178315525, 37.865432586], [139.152155383, 37.846468865]]]}}, {"id": "42716", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "秋葉区", "N03_007": "15105"}, "geometry": {"type": "Polygon", "coordinates": [[[139.064032283, 37.72393464], [139.061403671, 37.736855387], [139.067444553, 37.749296667], [139.063719805, 37.761133721], [139.071632387, 37.772417054], [139.058044423, 37.785760694], [139.061995811, 37.832712279], [139.112269468, 37.841769748], [139.165155616, 37.827431441], [139.151456667, 37.812397468], [139.179151997, 37.804317748], [139.174786329, 37.781903586], [139.188829105, 37.774780802], [139.148465058, 37.764010892], [139.108654228, 37.725964892], [139.09110856, 37.737022667], [139.064032283, 37.72393464]]]}}, {"id": "42717", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "南区", "N03_007": "15106"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968215837, 37.68107136], [138.990903502, 37.735175306], [138.973064423, 37.735632333], [138.971788197, 37.756976108], [138.994841193, 37.758643054], [138.979304228, 37.806073252], [139.006323502, 37.81544364], [139.020580195, 37.854667387], [139.061828301, 37.833099441], [139.061822361, 37.728551279], [139.032586861, 37.693465505], [139.015017665, 37.710362414], [138.992748392, 37.679772748], [138.968215837, 37.68107136]]]}}, {"id": "42718", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西区", "N03_007": "15107"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006323502, 37.81544364], [138.975268755, 37.803647225], [138.962703774, 37.831028252], [138.913277393, 37.803315225], [138.856161284, 37.807716694], [138.866676861, 37.837143694], [139.004238444, 37.909499171], [139.024826083, 37.867425252], [139.006323502, 37.81544364]]]}}, {"id": "42719", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西区", "N03_007": "15107"}, "geometry": {"type": "Polygon", "coordinates": [[[138.922875914, 37.873408108], [138.921512931, 37.873500874], [138.922877549, 37.873481784], [138.922875914, 37.873408108]]]}}, {"id": "42720", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西区", "N03_007": "15107"}, "geometry": {"type": "Polygon", "coordinates": [[[138.920511971, 37.873425559], [138.920384332, 37.873524991], [138.920514669, 37.873522721], [138.920511971, 37.873425559]]]}}, {"id": "42721", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970932361, 37.749596225], [138.978491141, 37.730158775], [138.990903502, 37.735175306], [138.976953476, 37.682048306], [138.959663061, 37.690682198], [138.965863217, 37.708666514], [138.946256239, 37.700726604], [138.930261556, 37.732123721], [138.865244449, 37.706727721], [138.81644572, 37.718408865], [138.808412944, 37.706811054], [138.785549831, 37.707239982], [138.815464449, 37.787123333], [138.859715901, 37.831849135], [138.856692698, 37.807008973], [138.913277393, 37.803315225], [138.965756135, 37.830991505], [138.994841193, 37.758643054], [138.970932361, 37.749596225]], [[138.965863878, 37.692606523], [138.964051064, 37.694493369], [138.96355716, 37.692383784], [138.965863878, 37.692606523]]]}}, {"id": "42722", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.84148546, 37.713911171], [138.841839689, 37.712710279], [138.841065331, 37.712913081], [138.84148546, 37.713911171]]]}}, {"id": "42723", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.815514163, 37.785986108], [138.815691388, 37.785569441], [138.815315551, 37.785743892], [138.815514163, 37.785986108]]]}}, {"id": "42724", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787808495, 37.724878468], [138.787574617, 37.724732081], [138.787673774, 37.724884027], [138.787808495, 37.724878468]]]}}, {"id": "42725", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78837489, 37.726291802], [138.788099053, 37.726134027], [138.78827572, 37.726331252], [138.78837489, 37.726291802]]]}}, {"id": "42726", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787179027, 37.710307108], [138.78688847, 37.710267667], [138.786923748, 37.710419333], [138.787179027, 37.710307108]]]}}, {"id": "42727", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787709339, 37.726612919], [138.787440169, 37.72665736], [138.78745406, 37.726714027], [138.787709339, 37.726612919]]]}}, {"id": "42728", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785754306, 37.720644306], [138.785640973, 37.720520694], [138.785541803, 37.720593748], [138.785754306, 37.720644306]]]}}, {"id": "42729", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785840143, 37.707677667], [138.785677354, 37.707784333], [138.785882633, 37.707823775], [138.785840143, 37.707677667]]]}}, {"id": "42730", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784507912, 37.716049892], [138.784373476, 37.716184892], [138.784500973, 37.716190721], [138.784507912, 37.716049892]]]}}, {"id": "42731", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785435694, 37.720650135], [138.785279857, 37.720728748], [138.785385966, 37.720802081], [138.785435694, 37.720650135]]]}}, {"id": "42732", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785669027, 37.720813198], [138.785669027, 37.720965414], [138.785782633, 37.720903468], [138.785669027, 37.720813198]]]}}, {"id": "42733", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.786732088, 37.721359306], [138.786753191, 37.721488748], [138.786809857, 37.721421252], [138.786732088, 37.721359306]]]}}, {"id": "42734", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784457912, 37.71861736], [138.784493191, 37.718775135], [138.784585422, 37.718684865], [138.784457912, 37.71861736]]]}}, {"id": "42735", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785372088, 37.719056532], [138.785237367, 37.71915236], [138.785385966, 37.719129865], [138.785372088, 37.719056532]]]}}, {"id": "42736", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.954753956, 37.702538676], [138.954717523, 37.702651306], [138.954744773, 37.702647351], [138.954753956, 37.702538676]]]}}, {"id": "42737", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955242335, 37.702895009], [138.955281427, 37.702974721], [138.955287536, 37.702890883], [138.955242335, 37.702895009]]]}}, {"id": "42738", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新潟市", "N03_005": "西蒲区", "N03_007": "15108"}, "geometry": {"type": "Polygon", "coordinates": [[[138.954210571, 37.702436216], [138.954275499, 37.702489036], [138.954279287, 37.702442207], [138.954210571, 37.702436216]]]}}, {"id": "42739", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.674167951, 37.237870468], [138.642938638, 37.289588387], [138.719071725, 37.382994468], [138.698711414, 37.399385532], [138.70870786, 37.418763252], [138.690817886, 37.441996775], [138.764142529, 37.529240919], [138.742355668, 37.543881721], [138.74910358, 37.562142505], [138.722337756, 37.569283865], [138.78540786, 37.707275198], [138.81121297, 37.701504748], [138.787255694, 37.655313802], [138.808100921, 37.63668636], [138.822923969, 37.64526], [138.837509689, 37.618194532], [138.831093696, 37.593670667], [138.883172776, 37.617657505], [138.871250311, 37.567501306], [138.893628716, 37.511561973], [138.884872607, 37.503994252], [138.910077613, 37.505417252], [138.901179222, 37.492057865], [138.932900726, 37.488649532], [138.948684617, 37.468280946], [138.966267173, 37.476269225], [138.95556275, 37.490480892], [138.990644838, 37.499574171], [138.981346252, 37.514057225], [139.000353022, 37.525765], [139.075203917, 37.529124108], [139.110252866, 37.515552171], [139.087574332, 37.467964135], [139.123256304, 37.409870838], [139.049812088, 37.412561748], [139.048377004, 37.396792054], [138.993964358, 37.371472721], [138.96867022, 37.383818054], [138.955331505, 37.370941973], [138.964655006, 37.351905865], [138.932900726, 37.338598135], [138.933496083, 37.303969306], [138.914518249, 37.292279306], [138.867425058, 37.320182865], [138.870890973, 37.351335333], [138.827340856, 37.334731414], [138.792636693, 37.38426136], [138.772554695, 37.383688054], [138.728016161, 37.230765306], [138.674167951, 37.237870468]], [[138.828424137, 37.618681441], [138.829223865, 37.618619505], [138.828707471, 37.618979505], [138.828424137, 37.618681441]], [[138.830929416, 37.618732559], [138.830819689, 37.619881441], [138.829109689, 37.619186721], [138.830929416, 37.618732559]], [[138.825890726, 37.624654081], [138.827588573, 37.625134559], [138.825717069, 37.625919072], [138.825890726, 37.624654081]], [[138.825129792, 37.626340477], [138.827691997, 37.625264874], [138.825435966, 37.626832892], [138.825129792, 37.626340477]], [[138.9467507, 37.464762892], [138.953346809, 37.460493441], [138.956258781, 37.463358441], [138.9467507, 37.464762892]]]}}, {"id": "42740", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.831530169, 37.226691333], [138.852362192, 37.250112694], [138.826090558, 37.278019559], [138.846803359, 37.307311198], [138.901303256, 37.28874236], [138.886132944, 37.274552946], [138.881208586, 37.225134694], [138.834874254, 37.176477532], [138.831530169, 37.226691333]]]}}, {"id": "42741", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75948022, 37.64021836], [138.756594916, 37.648052441], [138.759327471, 37.64262636], [138.759931388, 37.640693505], [138.75948022, 37.64021836]]]}}, {"id": "42742", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755147419, 37.648021], [138.756505863, 37.651089], [138.756641051, 37.651051027], [138.755147419, 37.648021]]]}}, {"id": "42743", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.728460052, 37.582322441], [138.72821978, 37.582193], [138.728481167, 37.582519667], [138.728460052, 37.582322441]]]}}, {"id": "42744", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.72725144, 37.580526054], [138.727074773, 37.580543], [138.727237276, 37.580621892], [138.72725144, 37.580526054]]]}}, {"id": "42745", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.729159533, 37.584197171], [138.729039533, 37.584298559], [138.729194812, 37.584354946], [138.729159533, 37.584197171]]]}}, {"id": "42746", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.727901725, 37.581528559], [138.727831167, 37.581658], [138.727986446, 37.581680505], [138.727901725, 37.581528559]]]}}, {"id": "42747", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.730811245, 37.589291748], [138.730918301, 37.590777505], [138.730935305, 37.590776586], [138.730811245, 37.589291748]]]}}, {"id": "42748", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.728678949, 37.582919108], [138.728714501, 37.583110505], [138.728770895, 37.583093559], [138.728678949, 37.582919108]]]}}, {"id": "42749", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.728933139, 37.583561054], [138.728905084, 37.583713], [138.729003969, 37.583673559], [138.728933139, 37.583561054]]]}}, {"id": "42750", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.727569494, 37.581049946], [138.727484773, 37.581145775], [138.727576719, 37.581145775], [138.727569494, 37.581049946]]]}}, {"id": "42751", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.729385642, 37.584816613], [138.72930786, 37.584934946], [138.729399805, 37.584923559], [138.729385642, 37.584816613]]]}}, {"id": "42752", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.732681971, 37.590403441], [138.732536446, 37.590034], [138.732561855, 37.59045736], [138.732681971, 37.590403441]]]}}, {"id": "42753", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.730724086, 37.588755054], [138.730739585, 37.588749532], [138.730353969, 37.588103586], [138.730724086, 37.588755054]]]}}, {"id": "42754", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.733333333, 37.592189171], [138.733387302, 37.592203586], [138.733137834, 37.591987171], [138.733333333, 37.592189171]]]}}, {"id": "42755", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.732985473, 37.59182536], [138.732826524, 37.591581748], [138.732799831, 37.591595414], [138.732985473, 37.59182536]]]}}, {"id": "42756", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.732719079, 37.591330946], [138.732688975, 37.591338748], [138.732796446, 37.591518027], [138.732719079, 37.591330946]]]}}, {"id": "42757", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "長岡市", "N03_005": null, "N03_007": "15202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.732587134, 37.590535892], [138.732557134, 37.590610027], [138.732588833, 37.590609613], [138.732587134, 37.590535892]]]}}, {"id": "42758", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "三条市", "N03_005": null, "N03_007": "15204"}, "geometry": {"type": "Polygon", "coordinates": [[[138.99980358, 37.52792], [138.981602827, 37.560559135], [138.954347419, 37.540748586], [138.872394916, 37.594301802], [138.883327912, 37.621934505], [138.932709248, 37.631010865], [138.920740363, 37.655438892], [138.950401284, 37.652665], [138.966922776, 37.680739973], [139.008746744, 37.676831081], [139.004626446, 37.660994441], [139.038941193, 37.638026135], [139.033921634, 37.617448694], [139.07586345, 37.611094279], [139.133342049, 37.566698892], [139.232413722, 37.558868613], [139.258717497, 37.535740667], [139.259778521, 37.512073414], [139.287371245, 37.507516054], [139.298372633, 37.48497436], [139.246489559, 37.44887736], [139.223306939, 37.449044081], [139.208303891, 37.416709135], [139.136526304, 37.397678333], [139.087574332, 37.467964135], [139.110170636, 37.515656892], [138.99980358, 37.52792]]]}}, {"id": "42759", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.419365357, 37.295130694], [138.436462672, 37.324721279], [138.542973087, 37.383256892], [138.530545383, 37.365281252], [138.551593139, 37.375631279], [138.588615058, 37.422056225], [138.584599494, 37.437243667], [138.586099676, 37.441995676], [138.589570856, 37.424273838], [138.617313696, 37.484066937], [138.658333346, 37.52273945], [138.678616161, 37.521985667], [138.675130947, 37.494802171], [138.695047691, 37.504206027], [138.721772335, 37.487436919], [138.678596978, 37.422935171], [138.719071725, 37.382994468], [138.642938638, 37.289588387], [138.677406861, 37.221970252], [138.645022244, 37.172933919], [138.622210143, 37.181295081], [138.608157173, 37.159851973], [138.565767588, 37.170359081], [138.551852503, 37.203952613], [138.536515811, 37.198418973], [138.504898833, 37.225967027], [138.538459144, 37.266120468], [138.432250947, 37.302949892], [138.419365357, 37.295130694]], [[138.603047756, 37.442880081], [138.593340246, 37.398954108], [138.670421608, 37.409978505], [138.631544358, 37.432011919], [138.634596783, 37.457680586], [138.603047756, 37.442880081]]]}}, {"id": "42760", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.52736144, 37.366249387], [138.52614869, 37.366840775], [138.526839805, 37.367043279], [138.52736144, 37.366249387]]]}}, {"id": "42761", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.650729364, 37.511940135], [138.648979922, 37.511514586], [138.650153256, 37.512038198], [138.650729364, 37.511940135]]]}}, {"id": "42762", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.528273385, 37.366626613], [138.527714527, 37.367031054], [138.528475642, 37.367103559], [138.528273385, 37.366626613]]]}}, {"id": "42763", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.478792477, 37.344972694], [138.479187471, 37.344477135], [138.478637471, 37.34445464], [138.478792477, 37.344972694]]]}}, {"id": "42764", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.565718807, 37.393405973], [138.566817691, 37.394519667], [138.56582725, 37.393317694], [138.565718807, 37.393405973]]]}}, {"id": "42765", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.51941489, 37.365346441], [138.519848859, 37.365575441], [138.518423281, 37.364405135], [138.51941489, 37.365346441]]]}}, {"id": "42766", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.525155447, 37.365452054], [138.526142827, 37.366023973], [138.524789196, 37.365076198], [138.525155447, 37.365452054]]]}}, {"id": "42767", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.65478834, 37.522385946], [138.65486917, 37.521700667], [138.654565279, 37.522460667], [138.65478834, 37.522385946]]]}}, {"id": "42768", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.523599416, 37.363840468], [138.524568638, 37.364844468], [138.524688949, 37.364776505], [138.523599416, 37.363840468]]]}}, {"id": "42769", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.486492218, 37.352027414], [138.48671083, 37.351638802], [138.486336939, 37.351729081], [138.486492218, 37.352027414]]]}}, {"id": "42770", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.512930778, 37.356934414], [138.512973217, 37.356845387], [138.511360467, 37.356456802], [138.512930778, 37.356934414]]]}}, {"id": "42771", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.466805863, 37.338015135], [138.466859585, 37.337962468], [138.465180752, 37.337290505], [138.466805863, 37.338015135]]]}}, {"id": "42772", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.47141022, 37.340704919], [138.470986887, 37.340536027], [138.471064669, 37.340772414], [138.47141022, 37.340704919]]]}}, {"id": "42773", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.556036304, 37.381816306], [138.55692847, 37.381163748], [138.555946589, 37.381723532], [138.556036304, 37.381816306]]]}}, {"id": "42774", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.646451855, 37.510428748], [138.646970467, 37.510895414], [138.647138807, 37.51092236], [138.646451855, 37.510428748]]]}}, {"id": "42775", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488882503, 37.353001027], [138.488551115, 37.352550748], [138.488410272, 37.35285464], [138.488882503, 37.353001027]]]}}, {"id": "42776", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.495285914, 37.353074054], [138.495665162, 37.35339436], [138.495509948, 37.352824559], [138.495285914, 37.353074054]]]}}, {"id": "42777", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.513086005, 37.35757536], [138.514112776, 37.357978946], [138.514164034, 37.357875306], [138.513086005, 37.35757536]]]}}, {"id": "42778", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.515766355, 37.358470225], [138.514693165, 37.358056387], [138.514648145, 37.358159559], [138.515766355, 37.358470225]]]}}, {"id": "42779", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.49514939, 37.351602171], [138.495160636, 37.351941865], [138.495307497, 37.351694387], [138.49514939, 37.351602171]]]}}, {"id": "42780", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.654380558, 37.522768441], [138.654168612, 37.522385667], [138.654211115, 37.522802054], [138.654380558, 37.522768441]]]}}, {"id": "42781", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.501964306, 37.355351171], [138.50201153, 37.35492364], [138.501790143, 37.354946027], [138.501964306, 37.355351171]]]}}, {"id": "42782", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.447316005, 37.328311], [138.447388495, 37.327917108], [138.447098223, 37.328126559], [138.447316005, 37.328311]]]}}, {"id": "42783", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.654196939, 37.522162892], [138.654642218, 37.521690108], [138.654507782, 37.521538171], [138.654196939, 37.522162892]]]}}, {"id": "42784", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487465551, 37.35177964], [138.487444163, 37.351391027], [138.48728917, 37.351723252], [138.487465551, 37.35177964]]]}}, {"id": "42785", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.654016939, 37.521069838], [138.653801946, 37.520779], [138.653821946, 37.521174838], [138.654016939, 37.521069838]]]}}, {"id": "42786", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.458470506, 37.337216279], [138.458940778, 37.337212946], [138.458965772, 37.337076838], [138.458470506, 37.337216279]]]}}, {"id": "42787", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.452444773, 37.329693252], [138.452476667, 37.329630973], [138.451085058, 37.329118802], [138.452444773, 37.329693252]]]}}, {"id": "42788", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.61657594, 37.479776054], [138.616236446, 37.478854694], [138.616493995, 37.479776054], [138.61657594, 37.479776054]]]}}, {"id": "42789", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.47215022, 37.341161027], [138.47196022, 37.340862694], [138.471664112, 37.340851306], [138.47215022, 37.341161027]]]}}, {"id": "42790", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.460185473, 37.336887387], [138.459989922, 37.336694613], [138.459781582, 37.336831], [138.460185473, 37.336887387]]]}}, {"id": "42791", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.450007665, 37.328499027], [138.449551505, 37.328356694], [138.45061856, 37.328794198], [138.450007665, 37.328499027]]]}}, {"id": "42792", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.513246304, 37.356933468], [138.513794306, 37.357204027], [138.513855473, 37.357095], [138.513246304, 37.356933468]]]}}, {"id": "42793", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435723411, 37.321923721], [138.4357893, 37.321883775], [138.435086861, 37.321225721], [138.435723411, 37.321923721]]]}}, {"id": "42794", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.653633424, 37.518519243], [138.654140571, 37.520036216], [138.653949896, 37.519027459], [138.653633424, 37.518519243]]]}}, {"id": "42795", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502204981, 37.354870135], [138.501999805, 37.354560622], [138.501898029, 37.354665081], [138.502204981, 37.354870135]]]}}, {"id": "42796", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487846109, 37.353395198], [138.48771917, 37.353226306], [138.487408612, 37.353401027], [138.487846109, 37.353395198]]]}}, {"id": "42797", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507723385, 37.356098279], [138.507738638, 37.355704108], [138.507624747, 37.355705225], [138.507723385, 37.356098279]]]}}, {"id": "42798", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.501994968, 37.353656324], [138.501841492, 37.353959387], [138.502116122, 37.353656324], [138.501994968, 37.353656324]]]}}, {"id": "42799", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.467922166, 37.338686468], [138.467965966, 37.338952532], [138.46807214, 37.338810721], [138.467922166, 37.338686468]]]}}, {"id": "42800", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.616801803, 37.477722802], [138.61686869, 37.478388468], [138.616883696, 37.477724306], [138.616801803, 37.477722802]]]}}, {"id": "42801", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.648933528, 37.511521802], [138.6486438, 37.511426252], [138.648537977, 37.511470973], [138.648933528, 37.511521802]]]}}, {"id": "42802", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.497114332, 37.352870198], [138.496914721, 37.352693225], [138.496943554, 37.352981667], [138.497114332, 37.352870198]]]}}, {"id": "42803", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.469929105, 37.339877414], [138.469696615, 37.340091306], [138.469943554, 37.340108252], [138.469929105, 37.339877414]]]}}, {"id": "42804", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.653235798, 37.518673937], [138.652878781, 37.518256162], [138.652798016, 37.51831945], [138.653235798, 37.518673937]]]}}, {"id": "42805", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.616839274, 37.476944171], [138.61689869, 37.477515171], [138.616921167, 37.476946838], [138.616839274, 37.476944171]]]}}, {"id": "42806", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.465356978, 37.336790505], [138.465330078, 37.336854333], [138.465987523, 37.337009387], [138.465356978, 37.336790505]]]}}, {"id": "42807", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.654995837, 37.521662333], [138.654778054, 37.521505108], [138.654739728, 37.521594838], [138.654995837, 37.521662333]]]}}, {"id": "42808", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.497740026, 37.353135198], [138.497687549, 37.352972766], [138.497442529, 37.353035198], [138.497740026, 37.353135198]]]}}, {"id": "42809", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488445551, 37.352477694], [138.488272776, 37.35264936], [138.488318612, 37.352708532], [138.488445551, 37.352477694]]]}}, {"id": "42810", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.496026693, 37.353250198], [138.495905577, 37.353421027], [138.496081971, 37.353453252], [138.496026693, 37.353250198]]]}}, {"id": "42811", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.468963554, 37.338937135], [138.468822438, 37.339139919], [138.469005772, 37.339077973], [138.468963554, 37.338937135]]]}}, {"id": "42812", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493796939, 37.35182464], [138.493670272, 37.351892135], [138.493783061, 37.351976586], [138.493796939, 37.35182464]]]}}, {"id": "42813", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.49015917, 37.352686027], [138.49003917, 37.352826865], [138.490206394, 37.35288464], [138.49015917, 37.352686027]]]}}, {"id": "42814", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.528581167, 37.366655505], [138.528623671, 37.366835225], [138.528701167, 37.366818279], [138.528581167, 37.366655505]]]}}, {"id": "42815", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.469088003, 37.339629919], [138.468878833, 37.339708532], [138.468998833, 37.339787414], [138.469088003, 37.339629919]]]}}, {"id": "42816", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.495419196, 37.354088532], [138.49515808, 37.353997973], [138.495351699, 37.35412464], [138.495419196, 37.354088532]]]}}, {"id": "42817", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.491209442, 37.352641027], [138.491138911, 37.352832414], [138.49130808, 37.352781865], [138.491209442, 37.352641027]]]}}, {"id": "42818", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.528602555, 37.366435225], [138.528743671, 37.366570505], [138.52876061, 37.366483559], [138.528602555, 37.366435225]]]}}, {"id": "42819", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488184163, 37.352522694], [138.487958612, 37.35258436], [138.487965837, 37.352640748], [138.488184163, 37.352522694]]]}}, {"id": "42820", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.527993969, 37.367774946], [138.527974812, 37.367949667], [138.528112581, 37.367931054], [138.527993969, 37.367774946]]]}}, {"id": "42821", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.647989079, 37.511638748], [138.6479338, 37.511762081], [138.648037691, 37.511679027], [138.647989079, 37.511638748]]]}}, {"id": "42822", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.527528418, 37.367075505], [138.52738703, 37.367121613], [138.527415914, 37.367154946], [138.527528418, 37.367075505]]]}}, {"id": "42823", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.474519663, 37.34042936], [138.474688833, 37.340496865], [138.474554942, 37.340401306], [138.474519663, 37.34042936]]]}}, {"id": "42824", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.516817276, 37.358719586], [138.51698153, 37.358626225], [138.516911971, 37.358550613], [138.516817276, 37.358719586]]]}}, {"id": "42825", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.458166615, 37.337561838], [138.458037445, 37.337502108], [138.458004112, 37.337598505], [138.458166615, 37.337561838]]]}}, {"id": "42826", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.50981153, 37.356109306], [138.5098093, 37.356291775], [138.509887717, 37.356123441], [138.50981153, 37.356109306]]]}}, {"id": "42827", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.510844747, 37.356116054], [138.510931971, 37.356529027], [138.510885746, 37.356112892], [138.510844747, 37.356116054]]]}}, {"id": "42828", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.518032944, 37.359945198], [138.51786808, 37.359863306], [138.518000778, 37.359998559], [138.518032944, 37.359945198]]]}}, {"id": "42829", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.478524695, 37.343210468], [138.478686641, 37.343238802], [138.47867275, 37.343176865], [138.478524695, 37.343210468]]]}}, {"id": "42830", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.645909637, 37.510431532], [138.64575131, 37.510471802], [138.64590297, 37.510498468], [138.645909637, 37.510431532]]]}}, {"id": "42831", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.501983645, 37.354242081], [138.502088664, 37.35413891], [138.502032114, 37.354128595], [138.501983645, 37.354242081]]]}}, {"id": "42832", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517301582, 37.358707721], [138.517324695, 37.358575775], [138.517242529, 37.35869764], [138.517301582, 37.358707721]]]}}, {"id": "42833", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502243748, 37.353923279], [138.502374604, 37.353969712], [138.502400454, 37.353884595], [138.502243748, 37.353923279]]]}}, {"id": "42834", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488558054, 37.350979919], [138.488537224, 37.351058802], [138.488600558, 37.351041865], [138.488558054, 37.350979919]]]}}, {"id": "42835", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.492245837, 37.351903532], [138.492281388, 37.352016027], [138.492330558, 37.351903532], [138.492245837, 37.351903532]]]}}, {"id": "42836", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.527117302, 37.367170225], [138.527163969, 37.367285225], [138.527232023, 37.367201333], [138.527117302, 37.367170225]]]}}, {"id": "42837", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.469985772, 37.33984936], [138.469950506, 37.339731027], [138.469851894, 37.33975936], [138.469985772, 37.33984936]]]}}, {"id": "42838", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.646216031, 37.510439586], [138.64608131, 37.51037236], [138.646034086, 37.510415414], [138.646216031, 37.510439586]]]}}, {"id": "42839", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.468364112, 37.33940464], [138.468455772, 37.339331306], [138.468258003, 37.339387694], [138.468364112, 37.33940464]]]}}, {"id": "42840", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.477657198, 37.342782694], [138.47771358, 37.342901027], [138.477749144, 37.342805198], [138.477657198, 37.342782694]]]}}, {"id": "42841", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502279287, 37.354435523], [138.502366524, 37.354512901], [138.502400454, 37.35447164], [138.502279287, 37.354435523]]]}}, {"id": "42842", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488010272, 37.351762414], [138.48788834, 37.351858252], [138.487923333, 37.351858252], [138.488010272, 37.351762414]]]}}, {"id": "42843", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.471903554, 37.341403252], [138.471931894, 37.341476306], [138.472002166, 37.341425748], [138.471903554, 37.341403252]]]}}, {"id": "42844", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517495642, 37.359723775], [138.517537886, 37.359822081], [138.517574228, 37.359796414], [138.517495642, 37.359723775]]]}}, {"id": "42845", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.447826005, 37.328127387], [138.447782114, 37.328199333], [138.447892944, 37.328196838], [138.447826005, 37.328127387]]]}}, {"id": "42846", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.477953307, 37.342929081], [138.477896913, 37.343007973], [138.478044968, 37.343013532], [138.477953307, 37.342929081]]]}}, {"id": "42847", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.458729416, 37.337382054], [138.458797224, 37.337436387], [138.458856939, 37.337359414], [138.458729416, 37.337382054]]]}}, {"id": "42848", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.474787445, 37.340778252], [138.474752438, 37.340665748], [138.474703281, 37.34069936], [138.474787445, 37.340778252]]]}}, {"id": "42849", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.516772918, 37.358261387], [138.516828716, 37.35833536], [138.516842477, 37.358259748], [138.516772918, 37.358261387]]]}}, {"id": "42850", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.468513554, 37.339536865], [138.468406329, 37.33953964], [138.468420506, 37.339573532], [138.468513554, 37.339536865]]]}}, {"id": "42851", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509062698, 37.356485748], [138.508998586, 37.356461775], [138.509038106, 37.356606414], [138.509062698, 37.356485748]]]}}, {"id": "42852", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.4633338, 37.336165748], [138.463239079, 37.336134919], [138.46324131, 37.336195468], [138.4633338, 37.336165748]]]}}, {"id": "42853", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.475006057, 37.340671306], [138.474914384, 37.34060936], [138.474928833, 37.340676865], [138.475006057, 37.340671306]]]}}, {"id": "42854", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509976329, 37.356122892], [138.509926446, 37.356038279], [138.509913917, 37.356109919], [138.509976329, 37.356122892]]]}}, {"id": "42855", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517753865, 37.359450171], [138.517673917, 37.359409279], [138.517667834, 37.35945064], [138.517753865, 37.359450171]]]}}, {"id": "42856", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.446943502, 37.328375721], [138.446865447, 37.328341559], [138.446861829, 37.328386279], [138.446943502, 37.328375721]]]}}, {"id": "42857", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.510536083, 37.356541946], [138.510581699, 37.356601694], [138.510590169, 37.356529414], [138.510536083, 37.356541946]]]}}, {"id": "42858", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517500778, 37.359946], [138.517489027, 37.359885441], [138.517458885, 37.359927279], [138.517500778, 37.359946]]]}}, {"id": "42859", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "柏崎市", "N03_005": null, "N03_007": "15205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517239559, 37.358572279], [138.51718594, 37.358548586], [138.517197691, 37.358589694], [138.517239559, 37.358572279]]]}}, {"id": "42860", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "新発田市", "N03_005": null, "N03_007": "15206"}, "geometry": {"type": "Polygon", "coordinates": [[[139.428918003, 37.815183387], [139.359930052, 37.823768468], [139.37054572, 37.844867613], [139.355554527, 37.853794532], [139.285739883, 37.863127586], [139.247649533, 37.916170694], [139.259286809, 37.937727613], [139.241650921, 37.949590135], [139.288647808, 37.952839198], [139.316274864, 37.984430135], [139.270991855, 37.994580532], [139.300565837, 38.014282306], [139.286005772, 38.00935264], [139.288312464, 38.030568514], [139.313573113, 38.049467739], [139.354494423, 38.017850613], [139.382484695, 38.033134973], [139.493004228, 37.998154505], [139.507104721, 37.888717306], [139.552296031, 37.882745054], [139.567287665, 37.861275946], [139.629317082, 37.893657468], [139.681852802, 37.84674336], [139.468952802, 37.788056198], [139.428918003, 37.815183387]]]}}, {"id": "42861", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "小千谷市", "N03_005": null, "N03_007": "15208"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757818755, 37.216349775], [138.720534475, 37.223193946], [138.747700778, 37.264751892], [138.772554695, 37.383688054], [138.792636693, 37.38426136], [138.827340856, 37.334731414], [138.870890973, 37.351335333], [138.867528664, 37.320051748], [138.914913839, 37.298861532], [138.901106304, 37.28874236], [138.846803359, 37.307311198], [138.826090558, 37.278019559], [138.852320532, 37.251235468], [138.831839689, 37.238901306], [138.839176939, 37.207605802], [138.782131115, 37.229383892], [138.757818755, 37.216349775]]]}}, {"id": "42862", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "加茂市", "N03_005": null, "N03_007": "15209"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224289274, 37.583243441], [139.226115914, 37.556259468], [139.133342049, 37.566698892], [139.07586345, 37.611094279], [139.033921634, 37.617448694], [139.03891703, 37.638079468], [139.004626446, 37.660994441], [139.010018418, 37.675509135], [138.989325616, 37.682447198], [138.991855084, 37.694284946], [139.016919053, 37.710612694], [139.046213528, 37.671102441], [139.098962672, 37.679493586], [139.109002866, 37.651868973], [139.134100441, 37.656784838], [139.154500532, 37.608515081], [139.180064358, 37.599537414], [139.198546887, 37.613560865], [139.224289274, 37.583243441]]]}}, {"id": "42863", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "十日町市", "N03_005": null, "N03_007": "15210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.712207445, 36.949040946], [138.695228145, 37.016709505], [138.683528949, 37.012862441], [138.686581141, 37.059209802], [138.667357173, 37.065438306], [138.564997717, 37.02099], [138.528536887, 37.024900306], [138.544501245, 37.085709135], [138.524532218, 37.106782946], [138.527389611, 37.13673264], [138.564657302, 37.170352946], [138.608157173, 37.159851973], [138.622210143, 37.181295081], [138.645022244, 37.172933919], [138.67255214, 37.207440027], [138.674703774, 37.237190748], [138.71835808, 37.235150865], [138.732083113, 37.217970919], [138.782053606, 37.229388613], [138.819503113, 37.215620802], [138.833596939, 37.205928613], [138.832662023, 37.177419748], [138.874536252, 37.139370387], [138.840183671, 37.117982919], [138.829992866, 37.075723], [138.775167523, 37.010010667], [138.764910272, 36.971775081], [138.780197198, 36.955056081], [138.700432724, 36.868222414], [138.653446615, 36.906628559], [138.685671025, 36.951500919], [138.689475422, 36.939377838], [138.712207445, 36.949040946]]]}}, {"id": "42864", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "見附市", "N03_005": null, "N03_007": "15211"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909608275, 37.5], [138.884872607, 37.503994252], [138.873550195, 37.592165973], [138.954347419, 37.540748586], [138.981602827, 37.560559135], [138.982606355, 37.540150559], [139.000727497, 37.533107775], [138.996088249, 37.514214721], [138.981346252, 37.514057225], [138.990644838, 37.499574171], [138.949945473, 37.482693414], [138.965006939, 37.487274225], [138.956927134, 37.470063973], [138.901179222, 37.492057865], [138.909608275, 37.5]]]}}, {"id": "42865", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "見附市", "N03_005": null, "N03_007": "15211"}, "geometry": {"type": "Polygon", "coordinates": [[[138.952590415, 37.460482613], [138.949384306, 37.463453441], [138.95625406, 37.463162054], [138.952590415, 37.460482613]]]}}, {"id": "42866", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.40834594, 38.122571505], [139.432194423, 38.18995736], [139.42052939, 38.186138081], [139.449801829, 38.23606164], [139.455802218, 38.393669414], [139.549214527, 38.553570694], [139.599828521, 38.522059865], [139.721764475, 38.496226333], [139.709805058, 38.386765225], [139.722635162, 38.393844], [139.732399689, 38.371600694], [139.770721725, 38.352905586], [139.848935577, 38.342846748], [139.898941051, 38.293027306], [139.860309222, 38.231160108], [139.786365694, 38.192244], [139.713223917, 38.20664436], [139.698636278, 38.202945748], [139.684726978, 38.159420892], [139.5878, 38.169807586], [139.55660834, 38.148554306], [139.510881803, 38.143463441], [139.511477134, 38.099921081], [139.486142218, 38.078480946], [139.45250572, 38.089701694], [139.443955305, 38.095119973], [139.442415616, 38.102526279], [139.44515786, 38.104223586], [139.435525331, 38.098270892], [139.426336472, 38.098910135], [139.40834594, 38.122571505]], [[139.44469725, 38.098915775], [139.44508061, 38.098433279], [139.445233943, 38.098751892], [139.44469725, 38.098915775]], [[139.445527004, 38.100039946], [139.445479222, 38.099316333], [139.445758949, 38.100002171], [139.445527004, 38.100039946]]]}}, {"id": "42867", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482994112, 38.445050414], [139.482163554, 38.444836532], [139.482059663, 38.445419027], [139.482994112, 38.445050414]]]}}, {"id": "42868", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505630661, 38.485413919], [139.505374838, 38.485522532], [139.506825668, 38.487119198], [139.505630661, 38.485413919]]]}}, {"id": "42869", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507179559, 38.480039198], [139.506427613, 38.48059364], [139.507269001, 38.480737252], [139.507179559, 38.480039198]]]}}, {"id": "42870", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418381479, 38.184398892], [139.419354695, 38.185321847], [139.417140337, 38.182933892], [139.418381479, 38.184398892]]]}}, {"id": "42871", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.418567808, 38.185425189], [139.419415032, 38.187062468], [139.419614578, 38.186997081], [139.418567808, 38.185425189]]]}}, {"id": "42872", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506444553, 38.484240532], [139.506512309, 38.485168865], [139.506680895, 38.484267892], [139.506444553, 38.484240532]]]}}, {"id": "42873", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45550917, 38.391566081], [139.455323333, 38.392056081], [139.45567, 38.39172664], [139.45550917, 38.391566081]]]}}, {"id": "42874", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462920337, 38.406641892], [139.463220895, 38.406931892], [139.463442555, 38.406585505], [139.462920337, 38.406641892]]]}}, {"id": "42875", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454322192, 38.391619694], [139.453685811, 38.391980252], [139.454483022, 38.39179136], [139.454322192, 38.391619694]]]}}, {"id": "42876", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504999831, 38.476471171], [139.504548716, 38.476707838], [139.504645383, 38.476843108], [139.504999831, 38.476471171]]]}}, {"id": "42877", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456799728, 38.396938559], [139.456896109, 38.397256892], [139.457093061, 38.396930775], [139.456799728, 38.396938559]]]}}, {"id": "42878", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481784112, 38.441141802], [139.481637445, 38.441533198], [139.482002438, 38.441384027], [139.481784112, 38.441141802]]]}}, {"id": "42879", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481580506, 38.439945135], [139.481838003, 38.44030264], [139.481981051, 38.440100135], [139.481580506, 38.439945135]]]}}, {"id": "42880", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44709022, 38.289231694], [139.446798418, 38.289079532], [139.446623774, 38.288970171], [139.44654275, 38.289028802], [139.44709022, 38.289231694]]]}}, {"id": "42881", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.522568664, 38.508958135], [139.523009403, 38.508707162], [139.522679481, 38.508597973], [139.522568664, 38.508958135]]]}}, {"id": "42882", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455519974, 38.387961919], [139.455201634, 38.388432198], [139.455786083, 38.387957198], [139.455519974, 38.387961919]]]}}, {"id": "42883", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455062192, 38.38867164], [139.455473307, 38.38893636], [139.455648586, 38.388758865], [139.455062192, 38.38867164]]]}}, {"id": "42884", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481372698, 38.43789764], [139.4811438, 38.438373748], [139.481574942, 38.437969306], [139.481372698, 38.43789764]]]}}, {"id": "42885", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446966939, 38.281845198], [139.447145279, 38.282141], [139.447313333, 38.281915441], [139.446966939, 38.281845198]]]}}, {"id": "42886", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504015383, 38.475567279], [139.504180117, 38.475874225], [139.504176498, 38.475595333], [139.504015383, 38.475567279]]]}}, {"id": "42887", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480717691, 38.435456252], [139.481233256, 38.435408468], [139.481147134, 38.435239865], [139.480717691, 38.435456252]]]}}, {"id": "42888", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483212438, 38.442741252], [139.483223281, 38.443270694], [139.483452996, 38.442889865], [139.483212438, 38.442741252]]]}}, {"id": "42889", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475609883, 38.427856279], [139.475856835, 38.428143505], [139.47575572, 38.427833505], [139.475609883, 38.427856279]]]}}, {"id": "42890", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.46201978, 38.402854667], [139.462538106, 38.402944667], [139.462538106, 38.402787171], [139.46201978, 38.402854667]]]}}, {"id": "42891", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456145525, 38.38441636], [139.455741634, 38.384695532], [139.456220804, 38.384582748], [139.456145525, 38.38441636]]]}}, {"id": "42892", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474170973, 38.425795171], [139.474451245, 38.425935721], [139.474417367, 38.425676838], [139.474170973, 38.425795171]]]}}, {"id": "42893", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452277198, 38.392531919], [139.452330804, 38.392757198], [139.452502477, 38.39259664], [139.452277198, 38.392531919]]]}}, {"id": "42894", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456266939, 38.397009108], [139.456463606, 38.397147171], [139.456715279, 38.396875775], [139.456266939, 38.397009108]]]}}, {"id": "42895", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.522667315, 38.509107901], [139.522400272, 38.508799514], [139.522467263, 38.509287757], [139.522667315, 38.509107901]]]}}, {"id": "42896", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507397886, 38.480675586], [139.507709274, 38.48061364], [139.507376226, 38.480540586], [139.507397886, 38.480675586]]]}}, {"id": "42897", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45515192, 38.384566081], [139.455219689, 38.384754694], [139.455348029, 38.384645252], [139.45515192, 38.384566081]]]}}, {"id": "42898", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503424812, 38.476082559], [139.503492581, 38.476299505], [139.503646744, 38.476068667], [139.503424812, 38.476082559]]]}}, {"id": "42899", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.517666796, 38.496979991], [139.517549442, 38.496730739], [139.517422296, 38.496965721], [139.517666796, 38.496979991]]]}}, {"id": "42900", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.50454511, 38.473235613], [139.504058444, 38.473413108], [139.504079831, 38.473438387], [139.50454511, 38.473235613]]]}}, {"id": "42901", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446794475, 38.293347946], [139.447040856, 38.293170721], [139.446765863, 38.293167667], [139.446794475, 38.293347946]]]}}, {"id": "42902", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.486666641, 38.449488441], [139.486856355, 38.449632054], [139.486888586, 38.449575667], [139.486666641, 38.449488441]]]}}, {"id": "42903", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.459259754, 38.398963559], [139.459298911, 38.398797171], [139.458952244, 38.398952171], [139.459259754, 38.398963559]]]}}, {"id": "42904", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481516031, 38.434459586], [139.481766615, 38.434583468], [139.481895499, 38.434445694], [139.481516031, 38.434459586]]]}}, {"id": "42905", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.458991414, 38.399087171], [139.459252529, 38.399256054], [139.459259754, 38.399048], [139.458991414, 38.399087171]]]}}, {"id": "42906", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504326783, 38.472765333], [139.504355383, 38.472948387], [139.504505668, 38.472768108], [139.504326783, 38.472765333]]]}}, {"id": "42907", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47511572, 38.425963775], [139.475372944, 38.425958505], [139.475287665, 38.425907667], [139.47511572, 38.425963775]]]}}, {"id": "42908", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506542607, 38.477034505], [139.506292049, 38.476995054], [139.506245383, 38.477189505], [139.506542607, 38.477034505]]]}}, {"id": "42909", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447259442, 38.284936838], [139.447227224, 38.284703225], [139.447184449, 38.284936838], [139.447259442, 38.284936838]]]}}, {"id": "42910", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.5414462, 38.531718288], [139.541772581, 38.531819162], [139.541879792, 38.531657757], [139.5414462, 38.531718288]]]}}, {"id": "42911", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480881362, 38.435624748], [139.481080558, 38.436254414], [139.48115511, 38.436226414], [139.480881362, 38.435624748]]]}}, {"id": "42912", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451130052, 38.350530892], [139.451232023, 38.350690973], [139.451359442, 38.350572667], [139.451130052, 38.350530892]]]}}, {"id": "42913", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466913969, 38.418436865], [139.467132023, 38.418583252], [139.467010636, 38.418296306], [139.466913969, 38.418436865]]]}}, {"id": "42914", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462337834, 38.402533559], [139.462616719, 38.402666054], [139.462713385, 38.402516892], [139.462337834, 38.402533559]]]}}, {"id": "42915", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507619831, 38.477721721], [139.507293722, 38.477860054], [139.507362049, 38.477938387], [139.507619831, 38.477721721]]]}}, {"id": "42916", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507669831, 38.481807532], [139.507357886, 38.481569468], [139.507283165, 38.481596414], [139.507669831, 38.481807532]]]}}, {"id": "42917", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462841725, 38.406374108], [139.462786446, 38.406159946], [139.462680895, 38.406261613], [139.462841725, 38.406374108]]]}}, {"id": "42918", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503152866, 38.471081441], [139.503235357, 38.470898387], [139.503052581, 38.470926721], [139.503152866, 38.471081441]]]}}, {"id": "42919", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475452387, 38.426645441], [139.475606278, 38.426400441], [139.475348495, 38.426611559], [139.475452387, 38.426645441]]]}}, {"id": "42920", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479443256, 38.432595441], [139.479679637, 38.432657667], [139.479724358, 38.432529054], [139.479443256, 38.432595441]]]}}, {"id": "42921", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482761336, 38.441552919], [139.48277939, 38.441823468], [139.482858003, 38.441648748], [139.482761336, 38.441552919]]]}}, {"id": "42922", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475244617, 38.427371838], [139.475349053, 38.427136279], [139.475162387, 38.427301559], [139.475244617, 38.427371838]]]}}, {"id": "42923", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.486526913, 38.448364559], [139.486669974, 38.448229559], [139.486423022, 38.448198441], [139.486526913, 38.448364559]]]}}, {"id": "42924", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481247419, 38.439224306], [139.481541336, 38.439337081], [139.481469663, 38.439184586], [139.481247419, 38.439224306]]]}}, {"id": "42925", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466592309, 38.417665468], [139.466881751, 38.417519081], [139.46657786, 38.417586586], [139.466592309, 38.417665468]]]}}, {"id": "42926", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499688106, 38.467702306], [139.499509222, 38.467606468], [139.499516161, 38.467651468], [139.499688106, 38.467702306]]]}}, {"id": "42927", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447171362, 38.272285468], [139.447257198, 38.272195468], [139.446939416, 38.272268532], [139.447171362, 38.272285468]]]}}, {"id": "42928", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4737307, 38.425417667], [139.473954578, 38.425390721], [139.473891803, 38.425341838], [139.4737307, 38.425417667]]]}}, {"id": "42929", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.471779857, 38.424122387], [139.4717693, 38.423894054], [139.471661803, 38.424074333], [139.471779857, 38.424122387]]]}}, {"id": "42930", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450334228, 38.307384532], [139.450124553, 38.307100081], [139.450059196, 38.307149108], [139.450334228, 38.307384532]]]}}, {"id": "42931", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499509222, 38.46726564], [139.499791997, 38.467237586], [139.499788392, 38.467133414], [139.499509222, 38.46726564]]]}}, {"id": "42932", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48135856, 38.439728198], [139.481440778, 38.439519865], [139.481226031, 38.439612919], [139.48135856, 38.439728198]]]}}, {"id": "42933", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450600558, 38.355034505], [139.450284838, 38.354971468], [139.450291284, 38.355041387], [139.450600558, 38.355034505]]]}}, {"id": "42934", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504706226, 38.477276721], [139.50482428, 38.477152838], [139.504573722, 38.477147279], [139.504706226, 38.477276721]]]}}, {"id": "42935", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450441777, 38.307560838], [139.45018594, 38.307709171], [139.450340246, 38.307850586], [139.450441777, 38.307560838]]]}}, {"id": "42936", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474654332, 38.425685171], [139.474662114, 38.425500441], [139.474489585, 38.425572667], [139.474654332, 38.425685171]]]}}, {"id": "42937", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443666304, 38.257006892], [139.443880752, 38.256916613], [139.443677419, 38.256767441], [139.443666304, 38.257006892]]]}}, {"id": "42938", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481716329, 38.439381802], [139.481895499, 38.439229865], [139.481680778, 38.439190414], [139.481716329, 38.439381802]]]}}, {"id": "42939", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449954358, 38.361492802], [139.450122412, 38.361363081], [139.450026031, 38.361312532], [139.449954358, 38.361492802]]]}}, {"id": "42940", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455437756, 38.390360802], [139.455739442, 38.390314973], [139.455455525, 38.39030164], [139.455437756, 38.390360802]]]}}, {"id": "42941", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475119339, 38.427777387], [139.475354332, 38.427683225], [139.475130169, 38.427676], [139.475119339, 38.427777387]]]}}, {"id": "42942", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.459641971, 38.399301054], [139.459653917, 38.399098279], [139.459506135, 38.399244667], [139.459641971, 38.399301054]]]}}, {"id": "42943", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447695188, 38.28819064], [139.447515058, 38.288309748], [139.447712049, 38.288306], [139.447695188, 38.28819064]]]}}, {"id": "42944", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506016226, 38.478890054], [139.505977056, 38.479115333], [139.506163165, 38.478943667], [139.506016226, 38.478890054]]]}}, {"id": "42945", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482328275, 38.443518468], [139.482453554, 38.443630973], [139.482532438, 38.443510135], [139.482328275, 38.443518468]]]}}, {"id": "42946", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.43971847, 38.246461333], [139.439830415, 38.246633], [139.439864578, 38.246508], [139.43971847, 38.246461333]]]}}, {"id": "42947", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45057856, 38.353192414], [139.450726913, 38.353025586], [139.450581829, 38.353042171], [139.45057856, 38.353192414]]]}}, {"id": "42948", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447586667, 38.28881464], [139.44742847, 38.288934468], [139.447580467, 38.288931081], [139.447586667, 38.28881464]]]}}, {"id": "42949", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445191388, 38.267446279], [139.445418521, 38.267602802], [139.445575811, 38.267558613], [139.445191388, 38.267446279]]]}}, {"id": "42950", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44358144, 38.254564694], [139.443397639, 38.254404468], [139.443259494, 38.254471667], [139.44358144, 38.254564694]]]}}, {"id": "42951", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44042489, 38.252548559], [139.440440441, 38.252737441], [139.440541284, 38.252641892], [139.44042489, 38.252548559]]]}}, {"id": "42952", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44157655, 38.251090775], [139.441399611, 38.251230775], [139.441587665, 38.251201333], [139.44157655, 38.251090775]]]}}, {"id": "42953", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482922438, 38.442319027], [139.48313022, 38.442355694], [139.483104942, 38.442257081], [139.482922438, 38.442319027]]]}}, {"id": "42954", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.486358586, 38.448488441], [139.486408586, 38.448297054], [139.486290532, 38.448305667], [139.486358586, 38.448488441]]]}}, {"id": "42955", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468461777, 38.419988532], [139.468422607, 38.420202694], [139.468569274, 38.420030748], [139.468461777, 38.419988532]]]}}, {"id": "42956", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.486684423, 38.449423721], [139.486974423, 38.449344838], [139.486644968, 38.449364559], [139.486684423, 38.449423721]]]}}, {"id": "42957", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.472846524, 38.424192667], [139.472696252, 38.424094054], [139.472649857, 38.424237667], [139.472846524, 38.424192667]]]}}, {"id": "42958", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449740895, 38.360223532], [139.449851673, 38.360314414], [139.449905746, 38.360205802], [139.449740895, 38.360223532]]]}}, {"id": "42959", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481916615, 38.440815135], [139.482095499, 38.44092764], [139.482117173, 38.440798198], [139.481916615, 38.440815135]]]}}, {"id": "42960", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482371336, 38.441310694], [139.482183839, 38.441291252], [139.482207717, 38.441456802], [139.482371336, 38.441310694]]]}}, {"id": "42961", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.519649637, 38.501823865], [139.519416861, 38.501922468], [139.519470467, 38.501987198], [139.519649637, 38.501823865]]]}}, {"id": "42962", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456328029, 38.384729414], [139.456416641, 38.384503027], [139.456345811, 38.384425252], [139.456328029, 38.384729414]]]}}, {"id": "42963", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.523657523, 38.508801225], [139.523495123, 38.508684991], [139.523464189, 38.508775712], [139.523657523, 38.508801225]]]}}, {"id": "42964", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497744773, 38.46205064], [139.49795978, 38.461900081], [139.497787562, 38.461901198], [139.497744773, 38.46205064]]]}}, {"id": "42965", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448609883, 38.361430586], [139.448599339, 38.361236414], [139.448520726, 38.361416414], [139.448609883, 38.361430586]]]}}, {"id": "42966", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454447198, 38.392112468], [139.454287756, 38.392043306], [139.45428275, 38.392134973], [139.454447198, 38.392112468]]]}}, {"id": "42967", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44286572, 38.251383559], [139.442780441, 38.251525225], [139.442941829, 38.251487171], [139.44286572, 38.251383559]]]}}, {"id": "42968", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481465746, 38.435388748], [139.481369079, 38.435259586], [139.481311855, 38.43544236], [139.481465746, 38.435388748]]]}}, {"id": "42969", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448850532, 38.278624252], [139.448955084, 38.278990387], [139.449007497, 38.278976586], [139.448850532, 38.278624252]]]}}, {"id": "42970", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475377108, 38.426346838], [139.475522672, 38.426156559], [139.475477393, 38.426104613], [139.475377108, 38.426346838]]]}}, {"id": "42971", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.470240947, 38.423224054], [139.470441505, 38.423311559], [139.470508444, 38.423239892], [139.470240947, 38.423224054]]]}}, {"id": "42972", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462387834, 38.405031054], [139.462256719, 38.404882441], [139.462137562, 38.404935505], [139.462387834, 38.405031054]]]}}, {"id": "42973", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.548368677, 38.552027072], [139.548178872, 38.552260937], [139.548403606, 38.552054324], [139.548368677, 38.552027072]]]}}, {"id": "42974", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.476182672, 38.427994333], [139.476132387, 38.427822667], [139.476075162, 38.427960441], [139.476182672, 38.427994333]]]}}, {"id": "42975", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449559274, 38.323241505], [139.449452607, 38.323072613], [139.449502335, 38.323252613], [139.449559274, 38.323241505]]]}}, {"id": "42976", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446068859, 38.269126306], [139.446026083, 38.269264081], [139.446234695, 38.26915464], [139.446068859, 38.269126306]]]}}, {"id": "42977", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.470799001, 38.423837946], [139.470858755, 38.423670171], [139.470702607, 38.423688505], [139.470799001, 38.423837946]]]}}, {"id": "42978", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450544358, 38.361636414], [139.450519364, 38.361470306], [139.45045131, 38.361574468], [139.450544358, 38.361636414]]]}}, {"id": "42979", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445957756, 38.269548532], [139.446136355, 38.269371027], [139.445872192, 38.269506306], [139.445957756, 38.269548532]]]}}, {"id": "42980", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506513722, 38.479318108], [139.506302335, 38.479247838], [139.506492049, 38.479366171], [139.506513722, 38.479318108]]]}}, {"id": "42981", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.501660363, 38.470123946], [139.501384527, 38.470177559], [139.5014062, 38.470228108], [139.501660363, 38.470123946]]]}}, {"id": "42982", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.517076031, 38.497019441], [139.517058249, 38.496850559], [139.51697214, 38.496884441], [139.517076031, 38.497019441]]]}}, {"id": "42983", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503399248, 38.475032838], [139.503532023, 38.475113946], [139.503600078, 38.475006721], [139.503399248, 38.475032838]]]}}, {"id": "42984", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455048029, 38.38909664], [139.45492275, 38.388967198], [139.454901362, 38.389136081], [139.455048029, 38.38909664]]]}}, {"id": "42985", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507036226, 38.477696441], [139.50683594, 38.477805892], [139.507086498, 38.477730054], [139.507036226, 38.477696441]]]}}, {"id": "42986", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467800389, 38.418000748], [139.467696783, 38.418172414], [139.467872049, 38.418011865], [139.467800389, 38.418000748]]]}}, {"id": "42987", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.453524968, 38.392222198], [139.453549974, 38.392064694], [139.45343192, 38.39214636], [139.453524968, 38.392222198]]]}}, {"id": "42988", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440441245, 38.248994387], [139.440565694, 38.249109667], [139.440590415, 38.249023838], [139.440441245, 38.248994387]]]}}, {"id": "42989", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444073606, 38.290872946], [139.444066394, 38.290698225], [139.44397, 38.290819333], [139.444073606, 38.290872946]]]}}, {"id": "42990", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441342802, 38.246908279], [139.441180078, 38.246862468], [139.441270973, 38.247003054], [139.441342802, 38.246908279]]]}}, {"id": "42991", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45639, 38.396834387], [139.456181388, 38.396823279], [139.456177782, 38.396862721], [139.45639, 38.396834387]]]}}, {"id": "42992", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.473245966, 38.424337532], [139.473155577, 38.424222108], [139.473065188, 38.424360198], [139.473245966, 38.424337532]]]}}, {"id": "42993", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450307717, 38.359976613], [139.450547782, 38.359981225], [139.450585746, 38.359913171], [139.450307717, 38.359976613]]]}}, {"id": "42994", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441294864, 38.248478559], [139.441257639, 38.248581613], [139.441363191, 38.248553559], [139.441294864, 38.248478559]]]}}, {"id": "42995", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.470742049, 38.423530721], [139.470573722, 38.423429333], [139.470541505, 38.423488505], [139.470742049, 38.423530721]]]}}, {"id": "42996", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474103191, 38.426408775], [139.474239027, 38.426307387], [139.474085136, 38.426361], [139.474103191, 38.426408775]]]}}, {"id": "42997", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48161939, 38.441040414], [139.481516057, 38.440922081], [139.481465772, 38.440998198], [139.48161939, 38.441040414]]]}}, {"id": "42998", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504137328, 38.472455613], [139.504101505, 38.472312], [139.504029831, 38.472404775], [139.504137328, 38.472455613]]]}}, {"id": "42999", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475430999, 38.428290171], [139.475251829, 38.428253505], [139.475316278, 38.428357387], [139.475430999, 38.428290171]]]}}, {"id": "43000", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.453532192, 38.391833586], [139.453596641, 38.39172664], [139.453449974, 38.39179136], [139.453532192, 38.391833586]]]}}, {"id": "43001", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483702724, 38.441964027], [139.483602724, 38.442088198], [139.483745772, 38.442045694], [139.483702724, 38.441964027]]]}}, {"id": "43002", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481519663, 38.437669865], [139.481444358, 38.437560135], [139.481390752, 38.437639027], [139.481519663, 38.437669865]]]}}, {"id": "43003", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.498635616, 38.463782306], [139.498692283, 38.46366036], [139.498535616, 38.463751198], [139.498635616, 38.463782306]]]}}, {"id": "43004", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503267588, 38.472824505], [139.503335357, 38.472669505], [139.503185084, 38.472787838], [139.503267588, 38.472824505]]]}}, {"id": "43005", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466567302, 38.413697973], [139.466556472, 38.41357964], [139.466434812, 38.413675468], [139.466567302, 38.413697973]]]}}, {"id": "43006", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456381388, 38.397484946], [139.456420558, 38.397358279], [139.456253606, 38.397420775], [139.456381388, 38.397484946]]]}}, {"id": "43007", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451160636, 38.342580279], [139.451113359, 38.342436198], [139.450934423, 38.342500586], [139.451160636, 38.342580279]]]}}, {"id": "43008", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441149027, 38.248831892], [139.441155136, 38.248968], [139.441284034, 38.248883279], [139.441149027, 38.248831892]]]}}, {"id": "43009", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.479976589, 38.435582919], [139.479924916, 38.43545764], [139.479858521, 38.435504306], [139.479976589, 38.435582919]]]}}, {"id": "43010", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448063645, 38.356602225], [139.447909805, 38.356504333], [139.447848521, 38.356596946], [139.448063645, 38.356602225]]]}}, {"id": "43011", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504119274, 38.476271441], [139.504119274, 38.476395333], [139.504251505, 38.476330333], [139.504119274, 38.476271441]]]}}, {"id": "43012", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.517190467, 38.496293333], [139.517079637, 38.496428333], [139.51727297, 38.496332775], [139.517190467, 38.496293333]]]}}, {"id": "43013", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475507393, 38.427857667], [139.475409339, 38.427853505], [139.475398781, 38.428070441], [139.475507393, 38.427857667]]]}}, {"id": "43014", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444632438, 38.243927946], [139.444825914, 38.244077505], [139.44486856, 38.244067306], [139.444632438, 38.243927946]]]}}, {"id": "43015", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44218489, 38.250703279], [139.442246835, 38.250846892], [139.442310441, 38.250731613], [139.44218489, 38.250703279]]]}}, {"id": "43016", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507508716, 38.484332802], [139.50733345, 38.484299198], [139.507528716, 38.484409748], [139.507508716, 38.484332802]]]}}, {"id": "43017", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505356226, 38.477192559], [139.505347056, 38.477363946], [139.505389831, 38.477217559], [139.505356226, 38.477192559]]]}}, {"id": "43018", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500055084, 38.469348973], [139.499985331, 38.469459225], [139.500099805, 38.469414225], [139.500055084, 38.469348973]]]}}, {"id": "43019", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456359728, 38.398031333], [139.456209728, 38.397960775], [139.456295551, 38.398098838], [139.456359728, 38.398031333]]]}}, {"id": "43020", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474768781, 38.425871279], [139.474597108, 38.425899333], [139.47463655, 38.425941279], [139.474768781, 38.425871279]]]}}, {"id": "43021", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443623528, 38.254908], [139.443509637, 38.254948279], [139.443609637, 38.255087171], [139.443623528, 38.254908]]]}}, {"id": "43022", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.486118859, 38.448556225], [139.486105811, 38.448390667], [139.486029416, 38.448525108], [139.486118859, 38.448556225]]]}}, {"id": "43023", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452221167, 38.347021333], [139.452255006, 38.346902333], [139.452040726, 38.346963505], [139.452221167, 38.347021333]]]}}, {"id": "43024", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442777691, 38.257312441], [139.442693256, 38.257450775], [139.442861855, 38.257377441], [139.442777691, 38.257312441]]]}}, {"id": "43025", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.50704345, 38.478000333], [139.507097056, 38.478104505], [139.507179559, 38.477963667], [139.50704345, 38.478000333]]]}}, {"id": "43026", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452021971, 38.347374135], [139.451791505, 38.347359532], [139.451761193, 38.347401225], [139.452021971, 38.347374135]]]}}, {"id": "43027", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482238833, 38.441119306], [139.482174384, 38.441017919], [139.482145772, 38.441074306], [139.482238833, 38.441119306]]]}}, {"id": "43028", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497809222, 38.461754802], [139.497719494, 38.46167036], [139.497687276, 38.46176064], [139.497809222, 38.461754802]]]}}, {"id": "43029", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482321051, 38.445726252], [139.482356887, 38.445599306], [139.482242438, 38.445635973], [139.482321051, 38.445726252]]]}}, {"id": "43030", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481766329, 38.44076736], [139.481655499, 38.440694027], [139.481623281, 38.440758748], [139.481766329, 38.44076736]]]}}, {"id": "43031", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451108029, 38.351039387], [139.450982724, 38.350939892], [139.45086808, 38.350974559], [139.451108029, 38.351039387]]]}}, {"id": "43032", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450919637, 38.36288364], [139.450897977, 38.362745586], [139.450801582, 38.362866694], [139.450919637, 38.36288364]]]}}, {"id": "43033", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.507559001, 38.480275865], [139.50751594, 38.480402532], [139.507630389, 38.480326414], [139.507559001, 38.480275865]]]}}, {"id": "43034", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.461705058, 38.403186892], [139.461547834, 38.403184108], [139.461565616, 38.403240505], [139.461705058, 38.403186892]]]}}, {"id": "43035", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44415297, 38.244021387], [139.444299001, 38.244155892], [139.444369728, 38.244113135], [139.44415297, 38.244021387]]]}}, {"id": "43036", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440655668, 38.247034054], [139.440538975, 38.246965387], [139.440503943, 38.247082387], [139.440655668, 38.247034054]]]}}, {"id": "43037", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445354384, 38.268148802], [139.445272166, 38.268022135], [139.445222166, 38.268089919], [139.445354384, 38.268148802]]]}}, {"id": "43038", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503178975, 38.474018108], [139.503149533, 38.473910333], [139.503073969, 38.473983946], [139.503178975, 38.474018108]]]}}, {"id": "43039", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441460441, 38.248638], [139.441607665, 38.248714108], [139.441637665, 38.248658838], [139.441460441, 38.248638]]]}}, {"id": "43040", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.498596446, 38.46826536], [139.49854978, 38.468169532], [139.498453113, 38.468279252], [139.498596446, 38.46826536]]]}}, {"id": "43041", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456846109, 38.397521613], [139.456738885, 38.397425775], [139.456713891, 38.397496333], [139.456846109, 38.397521613]]]}}, {"id": "43042", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504205383, 38.472114775], [139.504097886, 38.472064225], [139.504090947, 38.472131721], [139.504205383, 38.472114775]]]}}, {"id": "43043", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483956329, 38.442606532], [139.483939105, 38.442496532], [139.483806615, 38.442569586], [139.483956329, 38.442606532]]]}}, {"id": "43044", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444219105, 38.266203252], [139.444262166, 38.266067973], [139.444154942, 38.266152694], [139.444219105, 38.266203252]]]}}, {"id": "43045", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446400246, 38.269739919], [139.446403865, 38.269585198], [139.446328859, 38.269632973], [139.446400246, 38.269739919]]]}}, {"id": "43046", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503117302, 38.475577838], [139.503213411, 38.475643387], [139.503299533, 38.475555892], [139.503117302, 38.475577838]]]}}, {"id": "43047", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449957588, 38.353505721], [139.450288885, 38.353595919], [139.450320584, 38.353579279], [139.449957588, 38.353505721]]]}}, {"id": "43048", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450873476, 38.339053333], [139.450748781, 38.338929892], [139.450710947, 38.338970973], [139.450873476, 38.339053333]]]}}, {"id": "43049", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444218003, 38.265635198], [139.444062166, 38.265578252], [139.444101336, 38.265659919], [139.444218003, 38.265635198]]]}}, {"id": "43050", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456131115, 38.398173279], [139.456127497, 38.398321054], [139.456163333, 38.398236892], [139.456131115, 38.398173279]]]}}, {"id": "43051", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448831673, 38.275543252], [139.448653061, 38.27550964], [139.448767224, 38.275647694], [139.448831673, 38.275543252]]]}}, {"id": "43052", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451318495, 38.340592559], [139.451213502, 38.340540333], [139.451157393, 38.340655054], [139.451318495, 38.340592559]]]}}, {"id": "43053", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.482983281, 38.442763748], [139.483004942, 38.442620414], [139.482922438, 38.442729865], [139.482983281, 38.442763748]]]}}, {"id": "43054", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455652192, 38.388634973], [139.45550192, 38.388530802], [139.455473307, 38.388589973], [139.455652192, 38.388634973]]]}}, {"id": "43055", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506409559, 38.478137], [139.506227613, 38.478157838], [139.506267056, 38.478214225], [139.506409559, 38.478137]]]}}, {"id": "43056", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442252387, 38.256773], [139.442252387, 38.256618279], [139.442180999, 38.256759108], [139.442252387, 38.256773]]]}}, {"id": "43057", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.463410337, 38.407168279], [139.463263671, 38.407168279], [139.463406719, 38.407213279], [139.463410337, 38.407168279]]]}}, {"id": "43058", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456664163, 38.384478586], [139.456538859, 38.384523586], [139.456631946, 38.384566081], [139.456664163, 38.384478586]]]}}, {"id": "43059", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443027665, 38.253920775], [139.443052672, 38.253765775], [139.442959883, 38.253886892], [139.443027665, 38.253920775]]]}}, {"id": "43060", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504366226, 38.476944505], [139.504427056, 38.476786721], [139.504323165, 38.476888108], [139.504366226, 38.476944505]]]}}, {"id": "43061", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449938171, 38.30729164], [139.449782503, 38.307253532], [139.449802776, 38.307303306], [139.449938171, 38.30729164]]]}}, {"id": "43062", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451232996, 38.341485198], [139.451205227, 38.341380559], [139.451124475, 38.341473505], [139.451232996, 38.341485198]]]}}, {"id": "43063", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446083645, 38.294344892], [139.446001414, 38.294246279], [139.44594808, 38.294333505], [139.446083645, 38.294344892]]]}}, {"id": "43064", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454801089, 38.391797198], [139.454668859, 38.39172664], [139.454715253, 38.391828027], [139.454801089, 38.391797198]]]}}, {"id": "43065", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449810143, 38.355858892], [139.449757224, 38.355950027], [139.449828975, 38.355921027], [139.449810143, 38.355858892]]]}}, {"id": "43066", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462087004, 38.404652721], [139.461969494, 38.404741054], [139.462087004, 38.404695505], [139.462087004, 38.404652721]]]}}, {"id": "43067", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500101193, 38.466987306], [139.499945888, 38.467071468], [139.499960052, 38.467102306], [139.500101193, 38.466987306]]]}}, {"id": "43068", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450969637, 38.362534468], [139.450973256, 38.362430306], [139.450865746, 38.362489468], [139.450969637, 38.362534468]]]}}, {"id": "43069", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451046589, 38.343414838], [139.450967056, 38.343336748], [139.450955331, 38.343464081], [139.451046589, 38.343414838]]]}}, {"id": "43070", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468512892, 38.418765198], [139.46858345, 38.418856586], [139.46860511, 38.418800198], [139.468512892, 38.418765198]]]}}, {"id": "43071", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451179001, 38.349791252], [139.451136446, 38.349881586], [139.451241414, 38.349858252], [139.451179001, 38.349791252]]]}}, {"id": "43072", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.50389786, 38.472474505], [139.503725642, 38.472500613], [139.503722023, 38.472534505], [139.50389786, 38.472474505]]]}}, {"id": "43073", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450681803, 38.339210333], [139.450563476, 38.339294775], [139.450624306, 38.339337], [139.450681803, 38.339210333]]]}}, {"id": "43074", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45138642, 38.342468387], [139.451258223, 38.342557306], [139.451295253, 38.342593559], [139.45138642, 38.342468387]]]}}, {"id": "43075", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450146498, 38.355737775], [139.450124695, 38.355875667], [139.450237173, 38.355776387], [139.450146498, 38.355737775]]]}}, {"id": "43076", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450859144, 38.351180775], [139.450731362, 38.351302027], [139.450908171, 38.351245054], [139.450859144, 38.351180775]]]}}, {"id": "43077", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497073385, 38.457746748], [139.496957276, 38.457781468], [139.497064501, 38.457801198], [139.497073385, 38.457746748]]]}}, {"id": "43078", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.46810511, 38.419618252], [139.467938171, 38.419620748], [139.467972335, 38.419686306], [139.46810511, 38.419618252]]]}}, {"id": "43079", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449049728, 38.278722721], [139.449016304, 38.278551468], [139.448953087, 38.278557613], [139.449049728, 38.278722721]]]}}, {"id": "43080", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450860856, 38.339142279], [139.450703217, 38.339053468], [139.450706524, 38.339100838], [139.450860856, 38.339142279]]]}}, {"id": "43081", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454876355, 38.388632198], [139.454840532, 38.38851664], [139.454779689, 38.388547748], [139.454876355, 38.388632198]]]}}, {"id": "43082", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451213969, 38.350123225], [139.451139922, 38.350054225], [139.451068301, 38.350037225], [139.451213969, 38.350123225]]]}}, {"id": "43083", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451324527, 38.349980306], [139.451059144, 38.349950108], [139.451204812, 38.350036108], [139.451324527, 38.349980306]]]}}, {"id": "43084", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450004773, 38.307550919], [139.449969494, 38.307650333], [139.450036498, 38.307658919], [139.450004773, 38.307550919]]]}}, {"id": "43085", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466581479, 38.41406964], [139.466524254, 38.413971027], [139.466445642, 38.413996586], [139.466581479, 38.41406964]]]}}, {"id": "43086", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45108144, 38.338710198], [139.451127886, 38.338509441], [139.451004228, 38.33873964], [139.45108144, 38.338710198]]]}}, {"id": "43087", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450172503, 38.305372721], [139.45016, 38.305508505], [139.450228301, 38.305481946], [139.450172503, 38.305372721]]]}}, {"id": "43088", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483380778, 38.441716252], [139.48340939, 38.441603748], [139.483289663, 38.441673468], [139.483380778, 38.441716252]]]}}, {"id": "43089", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440741699, 38.247055613], [139.44083856, 38.247176441], [139.440874112, 38.247099532], [139.440741699, 38.247055613]]]}}, {"id": "43090", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.501294812, 38.470404775], [139.501144812, 38.470368946], [139.501126744, 38.470445054], [139.501294812, 38.470404775]]]}}, {"id": "43091", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448286913, 38.314407694], [139.448301725, 38.314312667], [139.44825022, 38.314330667], [139.448286913, 38.314407694]]]}}, {"id": "43092", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.457185837, 38.398011613], [139.457053606, 38.397986333], [139.457125006, 38.398062171], [139.457185837, 38.398011613]]]}}, {"id": "43093", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444955772, 38.260228279], [139.444958249, 38.260101892], [139.444907134, 38.260087171], [139.444955772, 38.260228279]]]}}, {"id": "43094", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441775447, 38.249183279], [139.441694617, 38.249118279], [139.441660441, 38.249206613], [139.441775447, 38.249183279]]]}}, {"id": "43095", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454733307, 38.389201081], [139.454615253, 38.389257198], [139.454704695, 38.389257198], [139.454733307, 38.389201081]]]}}, {"id": "43096", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45098655, 38.344034919], [139.450872244, 38.344026694], [139.450971829, 38.344138387], [139.45098655, 38.344034919]]]}}, {"id": "43097", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.517326589, 38.496448054], [139.517462698, 38.496429721], [139.517493528, 38.496373892], [139.517326589, 38.496448054]]]}}, {"id": "43098", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466735914, 38.414301586], [139.466831751, 38.414373802], [139.466878145, 38.414320198], [139.466735914, 38.414301586]]]}}, {"id": "43099", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448563165, 38.323556775], [139.448477613, 38.323503441], [139.448463165, 38.323525946], [139.448563165, 38.323556775]]]}}, {"id": "43100", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505740661, 38.477842559], [139.505919831, 38.477817279], [139.505752892, 38.477796171], [139.505740661, 38.477842559]]]}}, {"id": "43101", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455669728, 38.390537748], [139.455577224, 38.390608586], [139.45568083, 38.390639694], [139.455669728, 38.390537748]]]}}, {"id": "43102", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450782503, 38.354572387], [139.450828171, 38.354670387], [139.450888223, 38.354594468], [139.450782503, 38.354572387]]]}}, {"id": "43103", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448711946, 38.274881586], [139.448585551, 38.274971586], [139.448685279, 38.274982973], [139.448711946, 38.274881586]]]}}, {"id": "43104", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452888833, 38.370081387], [139.452735227, 38.370081108], [139.452857717, 38.370132505], [139.452888833, 38.370081387]]]}}, {"id": "43105", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499332555, 38.464993414], [139.499211997, 38.465069252], [139.499297834, 38.46508064], [139.499332555, 38.464993414]]]}}, {"id": "43106", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445112724, 38.259979108], [139.444994643, 38.259954946], [139.445026887, 38.260042171], [139.445112724, 38.259979108]]]}}, {"id": "43107", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445622802, 38.267882441], [139.445423891, 38.267867865], [139.4456162, 38.267923279], [139.445622802, 38.267882441]]]}}, {"id": "43108", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499614501, 38.466314802], [139.499477004, 38.466280081], [139.49946978, 38.466310919], [139.499614501, 38.466314802]]]}}, {"id": "43109", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451201855, 38.364165027], [139.451201855, 38.364271973], [139.451308807, 38.364226694], [139.451201855, 38.364165027]]]}}, {"id": "43110", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468154553, 38.416750198], [139.468040661, 38.416672414], [139.468022049, 38.416716586], [139.468154553, 38.416750198]]]}}, {"id": "43111", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451124721, 38.343906135], [139.451199274, 38.344015198], [139.451215006, 38.343920865], [139.451124721, 38.343906135]]]}}, {"id": "43112", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481088521, 38.438581532], [139.4812438, 38.438579306], [139.481236861, 38.438548198], [139.481088521, 38.438581532]]]}}, {"id": "43113", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444769663, 38.267811306], [139.444679663, 38.267881306], [139.444833281, 38.267872973], [139.444769663, 38.267811306]]]}}, {"id": "43114", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452273554, 38.345749333], [139.45223808, 38.345884081], [139.452354137, 38.345801613], [139.452273554, 38.345749333]]]}}, {"id": "43115", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444800117, 38.264084775], [139.44479856, 38.264171973], [139.44493, 38.264137135], [139.444800117, 38.264084775]]]}}, {"id": "43116", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467141751, 38.417002694], [139.467200078, 38.417093802], [139.467246472, 38.417037694], [139.467141751, 38.417002694]]]}}, {"id": "43117", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447531997, 38.272082081], [139.447439105, 38.271997748], [139.447362114, 38.272040559], [139.447531997, 38.272082081]]]}}, {"id": "43118", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444525642, 38.267462135], [139.444377497, 38.267445775], [139.444411997, 38.267494694], [139.444525642, 38.267462135]]]}}, {"id": "43119", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451176304, 38.363955306], [139.451044643, 38.363925586], [139.451076861, 38.363993081], [139.451176304, 38.363955306]]]}}, {"id": "43120", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440880921, 38.246980667], [139.440998495, 38.247047198], [139.440987665, 38.246967838], [139.440880921, 38.246980667]]]}}, {"id": "43121", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456652477, 38.384246252], [139.456539831, 38.384180505], [139.456533774, 38.384275775], [139.456652477, 38.384246252]]]}}, {"id": "43122", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443969663, 38.267315748], [139.443917717, 38.26721464], [139.443878003, 38.267306027], [139.443969663, 38.267315748]]]}}, {"id": "43123", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447324254, 38.319628721], [139.447249248, 38.319741505], [139.447370078, 38.319649], [139.447324254, 38.319628721]]]}}, {"id": "43124", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462602555, 38.402297171], [139.462676446, 38.402372721], [139.462700895, 38.402348], [139.462602555, 38.402297171]]]}}, {"id": "43125", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462559222, 38.406723559], [139.462637834, 38.406757171], [139.462744501, 38.406652721], [139.462559222, 38.406723559]]]}}, {"id": "43126", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449524553, 38.322411225], [139.449391777, 38.322410667], [139.449466783, 38.322464279], [139.449524553, 38.322411225]]]}}, {"id": "43127", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483694384, 38.442491532], [139.483574112, 38.442519027], [139.48369939, 38.442535973], [139.483694384, 38.442491532]]]}}, {"id": "43128", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448264669, 38.356554198], [139.448134578, 38.356636108], [139.448283774, 38.356581468], [139.448264669, 38.356554198]]]}}, {"id": "43129", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497204228, 38.460087586], [139.497107562, 38.460011468], [139.497103943, 38.460067865], [139.497204228, 38.460087586]]]}}, {"id": "43130", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456103333, 38.393895252], [139.455984721, 38.393953865], [139.456145551, 38.393945532], [139.456103333, 38.393895252]]]}}, {"id": "43131", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451082529, 38.338882694], [139.451073333, 38.338931279], [139.45117847, 38.338782802], [139.451082529, 38.338882694]]]}}, {"id": "43132", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481694942, 38.43851736], [139.481580506, 38.438629865], [139.481734384, 38.438556802], [139.481694942, 38.43851736]]]}}, {"id": "43133", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441406589, 38.247208135], [139.44127214, 38.247215532], [139.441377056, 38.247269532], [139.441406589, 38.247208135]]]}}, {"id": "43134", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504608444, 38.475997], [139.504563165, 38.476123108], [139.504653995, 38.476066721], [139.504608444, 38.475997]]]}}, {"id": "43135", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445725331, 38.268025081], [139.445636161, 38.267951973], [139.445639754, 38.268022252], [139.445725331, 38.268025081]]]}}, {"id": "43136", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.471522088, 38.422606279], [139.471411245, 38.422669333], [139.471525694, 38.422674892], [139.471522088, 38.422606279]]]}}, {"id": "43137", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.541570272, 38.531962495], [139.541654189, 38.531880667], [139.541519689, 38.531954838], [139.541570272, 38.531962495]]]}}, {"id": "43138", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451241673, 38.349022027], [139.451309728, 38.349107946], [139.451332581, 38.349012865], [139.451241673, 38.349022027]]]}}, {"id": "43139", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443267108, 38.253982721], [139.443277665, 38.253875775], [139.443209883, 38.253965775], [139.443267108, 38.253982721]]]}}, {"id": "43140", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441020726, 38.246358505], [139.440902944, 38.246414279], [139.440981582, 38.24643264], [139.441020726, 38.246358505]]]}}, {"id": "43141", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.454165253, 38.391548027], [139.454064695, 38.391495802], [139.454003865, 38.391538027], [139.454165253, 38.391548027]]]}}, {"id": "43142", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475298223, 38.426377108], [139.475183774, 38.426448225], [139.475209053, 38.426493225], [139.475298223, 38.426377108]]]}}, {"id": "43143", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445757717, 38.268439081], [139.44558, 38.268457613], [139.445771608, 38.268481865], [139.445757717, 38.268439081]]]}}, {"id": "43144", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451164228, 38.338740748], [139.45111153, 38.338739081], [139.451052309, 38.338781748], [139.451164228, 38.338740748]]]}}, {"id": "43145", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450327056, 38.324341198], [139.450250117, 38.324243973], [139.450234553, 38.324321468], [139.450327056, 38.324341198]]]}}, {"id": "43146", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449475888, 38.301149306], [139.449385888, 38.301204586], [139.449465331, 38.301185414], [139.449475888, 38.301149306]]]}}, {"id": "43147", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444422438, 38.267259081], [139.444372438, 38.267337973], [139.444473554, 38.26728436], [139.444422438, 38.267259081]]]}}, {"id": "43148", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.453342724, 38.370514441], [139.453221336, 38.370548613], [139.453303554, 38.370571108], [139.453342724, 38.370514441]]]}}, {"id": "43149", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450715694, 38.341605081], [139.450612944, 38.341525054], [139.450615136, 38.341554586], [139.450715694, 38.341605081]]]}}, {"id": "43150", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.506746226, 38.478127], [139.506846498, 38.478045333], [139.506710389, 38.478095892], [139.506746226, 38.478127]]]}}, {"id": "43151", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445919728, 38.26853], [139.445922335, 38.268662135], [139.445993217, 38.268627108], [139.445919728, 38.26853]]]}}, {"id": "43152", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448160363, 38.315693721], [139.448051193, 38.315706505], [139.44804703, 38.315750387], [139.448160363, 38.315693721]]]}}, {"id": "43153", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500280636, 38.468023414], [139.500153411, 38.467997865], [139.500178145, 38.468063694], [139.500280636, 38.468023414]]]}}, {"id": "43154", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481992724, 38.445239865], [139.481877173, 38.445269865], [139.48192022, 38.445329027], [139.481992724, 38.445239865]]]}}, {"id": "43155", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.463052827, 38.406481333], [139.463124228, 38.406399667], [139.462968392, 38.406442171], [139.463052827, 38.406481333]]]}}, {"id": "43156", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468633995, 38.420181027], [139.468547886, 38.420270198], [139.468647886, 38.420233532], [139.468633995, 38.420181027]]]}}, {"id": "43157", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450237613, 38.305305468], [139.45032, 38.305332225], [139.450325525, 38.305278054], [139.450237613, 38.305305468]]]}}, {"id": "43158", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443816394, 38.291268505], [139.443945006, 38.291272946], [139.443902218, 38.291239054], [139.443816394, 38.291268505]]]}}, {"id": "43159", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.49956061, 38.46652036], [139.499398106, 38.466522306], [139.499412555, 38.466553135], [139.49956061, 38.46652036]]]}}, {"id": "43160", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443250363, 38.244798252], [139.443417639, 38.244849613], [139.443258029, 38.244770748], [139.443250363, 38.244798252]]]}}, {"id": "43161", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.498438392, 38.467091198], [139.498324228, 38.467161468], [139.498395888, 38.467172865], [139.498438392, 38.467091198]]]}}, {"id": "43162", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444051336, 38.265887973], [139.444083554, 38.265983532], [139.444153839, 38.265911865], [139.444051336, 38.265887973]]]}}, {"id": "43163", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444565227, 38.265913252], [139.444515227, 38.266011865], [139.444611608, 38.265945468], [139.444565227, 38.265913252]]]}}, {"id": "43164", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44967406, 38.358106694], [139.449582672, 38.358183919], [139.44967406, 38.358149468], [139.44967406, 38.358106694]]]}}, {"id": "43165", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443455577, 38.244786054], [139.443538716, 38.244740387], [139.443401336, 38.244726027], [139.443455577, 38.244786054]]]}}, {"id": "43166", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449321051, 38.356947838], [139.449438392, 38.356902081], [139.449320558, 38.356907414], [139.449321051, 38.356947838]]]}}, {"id": "43167", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448572581, 38.319141505], [139.44866703, 38.319079559], [139.448577302, 38.319078441], [139.448572581, 38.319141505]]]}}, {"id": "43168", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468061505, 38.419016865], [139.468168716, 38.419045198], [139.468211777, 38.418991586], [139.468061505, 38.419016865]]]}}, {"id": "43169", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44671358, 38.289126135], [139.446701089, 38.289220135], [139.446785357, 38.289200414], [139.44671358, 38.289126135]]]}}, {"id": "43170", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468645668, 38.419048802], [139.468708716, 38.41914936], [139.46875511, 38.419124081], [139.468645668, 38.419048802]]]}}, {"id": "43171", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452992724, 38.370241667], [139.452992724, 38.370331946], [139.453083554, 38.370265279], [139.452992724, 38.370241667]]]}}, {"id": "43172", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.509884034, 38.487621694], [139.509788755, 38.487695865], [139.509842361, 38.487723919], [139.509884034, 38.487621694]]]}}, {"id": "43173", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443854189, 38.291026613], [139.443827497, 38.291118081], [139.443925616, 38.291077279], [139.443854189, 38.291026613]]]}}, {"id": "43174", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.501135914, 38.468801198], [139.501130363, 38.468887586], [139.501184527, 38.468829532], [139.501135914, 38.468801198]]]}}, {"id": "43175", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452129805, 38.336682892], [139.452194838, 38.336608532], [139.452097639, 38.336611414], [139.452129805, 38.336682892]]]}}, {"id": "43176", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.51746917, 38.496557198], [139.51745, 38.496645477], [139.517548158, 38.496581919], [139.51746917, 38.496557198]]]}}, {"id": "43177", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440936446, 38.245519108], [139.441005058, 38.245589559], [139.441003165, 38.245512946], [139.440936446, 38.245519108]]]}}, {"id": "43178", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467330636, 38.417825748], [139.467307302, 38.417927414], [139.467368145, 38.417902135], [139.467330636, 38.417825748]]]}}, {"id": "43179", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.453553839, 38.370312505], [139.453561051, 38.370410838], [139.453620506, 38.370298333], [139.453553839, 38.370312505]]]}}, {"id": "43180", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504083722, 38.472655613], [139.504015668, 38.472607559], [139.50399428, 38.472641441], [139.504083722, 38.472655613]]]}}, {"id": "43181", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443779883, 38.254481441], [139.443786031, 38.254405468], [139.443652412, 38.25440936], [139.443779883, 38.254481441]]]}}, {"id": "43182", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443992114, 38.244004973], [139.443957951, 38.24392164], [139.443929883, 38.243958586], [139.443992114, 38.244004973]]]}}, {"id": "43183", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442611829, 38.251008559], [139.442692672, 38.250931333], [139.442602387, 38.250926613], [139.442611829, 38.251008559]]]}}, {"id": "43184", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443979948, 38.264226333], [139.444085227, 38.264281054], [139.444123281, 38.264254667], [139.443979948, 38.264226333]]]}}, {"id": "43185", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448323943, 38.313860108], [139.448357665, 38.313779], [139.448249754, 38.313777775], [139.448323943, 38.313860108]]]}}, {"id": "43186", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441296809, 38.247022946], [139.441177134, 38.247068892], [139.441263256, 38.247114613], [139.441296809, 38.247022946]]]}}, {"id": "43187", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448000246, 38.319250306], [139.447926913, 38.319302946], [139.448001777, 38.319298802], [139.448000246, 38.319250306]]]}}, {"id": "43188", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451984384, 38.335522946], [139.452066446, 38.335590468], [139.451990558, 38.335450468], [139.451984384, 38.335522946]]]}}, {"id": "43189", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444523256, 38.258946892], [139.444451855, 38.259070775], [139.444541025, 38.258977721], [139.444523256, 38.258946892]]]}}, {"id": "43190", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452449637, 38.365406694], [139.452520467, 38.365495865], [139.4525438, 38.36547336], [139.452449637, 38.365406694]]]}}, {"id": "43191", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.457343061, 38.397915775], [139.457450272, 38.397966613], [139.457394163, 38.397878838], [139.457343061, 38.397915775]]]}}, {"id": "43192", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.457571946, 38.398093279], [139.457668612, 38.398031333], [139.457550558, 38.398070775], [139.457571946, 38.398093279]]]}}, {"id": "43193", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452689105, 38.365886946], [139.452603281, 38.365919441], [139.452707445, 38.365962505], [139.452689105, 38.365886946]]]}}, {"id": "43194", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48253939, 38.441277081], [139.482654112, 38.441229027], [139.482531051, 38.441224306], [139.48253939, 38.441277081]]]}}, {"id": "43195", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47517572, 38.426836838], [139.475083774, 38.426890441], [139.475137393, 38.426915721], [139.47517572, 38.426836838]]]}}, {"id": "43196", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.458135837, 38.397666892], [139.45810834, 38.397763838], [139.458179754, 38.397752441], [139.458135837, 38.397666892]]]}}, {"id": "43197", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455744968, 38.38483664], [139.455759416, 38.38492636], [139.455853307, 38.384886081], [139.455744968, 38.38483664]]]}}, {"id": "43198", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455863022, 38.387722468], [139.455851634, 38.387812198], [139.455902477, 38.38776136], [139.455863022, 38.387722468]]]}}, {"id": "43199", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.474947665, 38.427107108], [139.474958223, 38.427022667], [139.47489406, 38.427051], [139.474947665, 38.427107108]]]}}, {"id": "43200", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448221089, 38.315182252], [139.448354617, 38.315121108], [139.448198833, 38.315146667], [139.448221089, 38.315182252]]]}}, {"id": "43201", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499827834, 38.466257586], [139.499927834, 38.46630536], [139.499885888, 38.466228414], [139.499827834, 38.466257586]]]}}, {"id": "43202", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451990726, 38.335724532], [139.451925966, 38.335815919], [139.451990726, 38.335817306], [139.451990726, 38.335724532]]]}}, {"id": "43203", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497114773, 38.458099532], [139.497043113, 38.45804064], [139.497025058, 38.458096748], [139.497114773, 38.458099532]]]}}, {"id": "43204", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.470885136, 38.423570171], [139.470937082, 38.423472387], [139.470859857, 38.423505441], [139.470885136, 38.423570171]]]}}, {"id": "43205", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443119922, 38.257657441], [139.443123528, 38.257775225], [139.443177134, 38.257687171], [139.443119922, 38.257657441]]]}}, {"id": "43206", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497304501, 38.459575081], [139.497243385, 38.459665081], [139.497334501, 38.459617865], [139.497304501, 38.459575081]]]}}, {"id": "43207", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443552698, 38.253937721], [139.443584916, 38.254024946], [139.443618249, 38.253963559], [139.443552698, 38.253937721]]]}}, {"id": "43208", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44564939, 38.265757973], [139.445563839, 38.265691865], [139.445581336, 38.265767135], [139.44564939, 38.265757973]]]}}, {"id": "43209", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481387134, 38.437728748], [139.481340467, 38.437819027], [139.481421855, 38.437755414], [139.481387134, 38.437728748]]]}}, {"id": "43210", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450817367, 38.329508973], [139.450875694, 38.329437306], [139.45078153, 38.329456198], [139.450817367, 38.329508973]]]}}, {"id": "43211", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481444384, 38.438503198], [139.48153022, 38.438551252], [139.481496887, 38.438480135], [139.481444384, 38.438503198]]]}}, {"id": "43212", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444048755, 38.244486], [139.444154254, 38.244509441], [139.444120973, 38.244461081], [139.444048755, 38.244486]]]}}, {"id": "43213", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443209364, 38.258003559], [139.443166589, 38.258088], [139.4432738, 38.258048838], [139.443209364, 38.258003559]]]}}, {"id": "43214", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.426076861, 38.183601225], [139.426015447, 38.183686171], [139.426106978, 38.183634279], [139.426076861, 38.183601225]]]}}, {"id": "43215", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447237302, 38.289234919], [139.447246252, 38.289331333], [139.447325253, 38.289244171], [139.447237302, 38.289234919]]]}}, {"id": "43216", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451066394, 38.341343108], [139.45109, 38.341413468], [139.451117588, 38.341370586], [139.451066394, 38.341343108]]]}}, {"id": "43217", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446941141, 38.296125414], [139.446911971, 38.296203468], [139.446971141, 38.296154027], [139.446941141, 38.296125414]]]}}, {"id": "43218", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450141219, 38.323829252], [139.450048716, 38.323798414], [139.450058171, 38.323856468], [139.450141219, 38.323829252]]]}}, {"id": "43219", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449667004, 38.301806532], [139.449550337, 38.301784306], [139.449568106, 38.301837919], [139.449667004, 38.301806532]]]}}, {"id": "43220", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505984838, 38.476754775], [139.506052049, 38.476820613], [139.506091505, 38.476775333], [139.505984838, 38.476754775]]]}}, {"id": "43221", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456867497, 38.396482441], [139.45697083, 38.396435225], [139.456867497, 38.396448559], [139.456867497, 38.396482441]]]}}, {"id": "43222", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451285888, 38.350175], [139.451316005, 38.350226775], [139.451448521, 38.350194775], [139.451285888, 38.350175]]]}}, {"id": "43223", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445549416, 38.266228135], [139.445528911, 38.266295802], [139.445575863, 38.266275027], [139.445549416, 38.266228135]]]}}, {"id": "43224", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445779105, 38.268903532], [139.445832724, 38.268957135], [139.44587192, 38.268899919], [139.445779105, 38.268903532]]]}}, {"id": "43225", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449223917, 38.356528054], [139.449212944, 38.35659464], [139.44931406, 38.356546613], [139.449223917, 38.356528054]]]}}, {"id": "43226", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441094332, 38.246921468], [139.441143917, 38.247035667], [139.441196005, 38.246998694], [139.441094332, 38.246921468]]]}}, {"id": "43227", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451352672, 38.341303775], [139.451364747, 38.341203135], [139.451319442, 38.341217559], [139.451352672, 38.341303775]]]}}, {"id": "43228", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.500549533, 38.468317865], [139.500443411, 38.468349802], [139.500515084, 38.468377865], [139.500549533, 38.468317865]]]}}, {"id": "43229", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448038145, 38.312627892], [139.447928975, 38.312676775], [139.447987588, 38.312704279], [139.448038145, 38.312627892]]]}}, {"id": "43230", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449231388, 38.312233694], [139.449133359, 38.312307613], [139.449249468, 38.312252532], [139.449231388, 38.312233694]]]}}, {"id": "43231", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445646498, 38.268177559], [139.445666641, 38.268083198], [139.44562642, 38.268141171], [139.445646498, 38.268177559]]]}}, {"id": "43232", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450951025, 38.351339892], [139.450812944, 38.351355775], [139.45081061, 38.351382505], [139.450951025, 38.351339892]]]}}, {"id": "43233", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449485383, 38.323415387], [139.44951428, 38.323495387], [139.449560661, 38.323431505], [139.449485383, 38.323415387]]]}}, {"id": "43234", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45080214, 38.340150919], [139.450673671, 38.340152667], [139.450671777, 38.340212441], [139.45080214, 38.340150919]]]}}, {"id": "43235", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467736226, 38.418262694], [139.467825668, 38.418316027], [139.467823722, 38.418253532], [139.467736226, 38.418262694]]]}}, {"id": "43236", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446555447, 38.294263721], [139.446581725, 38.294321279], [139.446654617, 38.294290838], [139.446555447, 38.294263721]]]}}, {"id": "43237", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44814786, 38.319313721], [139.448174527, 38.319396775], [139.44824703, 38.319326225], [139.44814786, 38.319313721]]]}}, {"id": "43238", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451232529, 38.338544108], [139.451332114, 38.338535171], [139.451312866, 38.338495252], [139.451232529, 38.338544108]]]}}, {"id": "43239", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44537978, 38.267833775], [139.445444916, 38.267769973], [139.445355772, 38.267768586], [139.44537978, 38.267833775]]]}}, {"id": "43240", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451430052, 38.344048694], [139.451488495, 38.344117306], [139.451495032, 38.344062252], [139.451430052, 38.344048694]]]}}, {"id": "43241", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503757588, 38.475082838], [139.503761193, 38.474995613], [139.503725357, 38.475063108], [139.503757588, 38.475082838]]]}}, {"id": "43242", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.49896144, 38.465072027], [139.499050895, 38.465117306], [139.499072283, 38.465072027], [139.49896144, 38.465072027]]]}}, {"id": "43243", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448771946, 38.313081532], [139.448704384, 38.313030748], [139.448662776, 38.313053586], [139.448771946, 38.313081532]]]}}, {"id": "43244", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441034643, 38.247124559], [139.440993995, 38.247220505], [139.441110947, 38.247168252], [139.441034643, 38.247124559]]]}}, {"id": "43245", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448247302, 38.312796225], [139.448208975, 38.312737613], [139.448187588, 38.312767054], [139.448247302, 38.312796225]]]}}, {"id": "43246", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47248153, 38.423621], [139.472563748, 38.423671559], [139.472585422, 38.423618225], [139.47248153, 38.423621]]]}}, {"id": "43247", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45583083, 38.390481919], [139.455841115, 38.390405802], [139.455791673, 38.390428586], [139.45583083, 38.390481919]]]}}, {"id": "43248", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499717004, 38.465971748], [139.499655888, 38.466026468], [139.499748949, 38.466026468], [139.499717004, 38.465971748]]]}}, {"id": "43249", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449923969, 38.311611775], [139.449845914, 38.311676775], [139.44991703, 38.311655667], [139.449923969, 38.311611775]]]}}, {"id": "43250", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450922918, 38.331649802], [139.4508607, 38.331591468], [139.450821803, 38.331633973], [139.450922918, 38.331649802]]]}}, {"id": "43251", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450135837, 38.311483], [139.45005511, 38.311515279], [139.450163256, 38.311533387], [139.450135837, 38.311483]]]}}, {"id": "43252", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450919027, 38.327872586], [139.450805422, 38.327874802], [139.450887639, 38.32791036], [139.450919027, 38.327872586]]]}}, {"id": "43253", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449665914, 38.311655667], [139.449575084, 38.311677613], [139.449626472, 38.311695946], [139.449665914, 38.311655667]]]}}, {"id": "43254", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.467493165, 38.418065468], [139.467509001, 38.417961865], [139.467453969, 38.41801464], [139.467493165, 38.418065468]]]}}, {"id": "43255", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.497948664, 38.461155081], [139.498013113, 38.461230919], [139.497988106, 38.461146468], [139.497948664, 38.461155081]]]}}, {"id": "43256", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443927691, 38.253225225], [139.444011025, 38.253211333], [139.443987977, 38.253178559], [139.443927691, 38.253225225]]]}}, {"id": "43257", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45094192, 38.338630892], [139.451041505, 38.338604775], [139.451006355, 38.33857764], [139.45094192, 38.338630892]]]}}, {"id": "43258", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449819922, 38.354908613], [139.44969022, 38.354856108], [139.449816083, 38.354932694], [139.449819922, 38.354908613]]]}}, {"id": "43259", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.461968106, 38.404199946], [139.462029222, 38.404113279], [139.46196978, 38.404117441], [139.461968106, 38.404199946]]]}}, {"id": "43260", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441373165, 38.246270027], [139.441332387, 38.246355441], [139.441406641, 38.246309135], [139.441373165, 38.246270027]]]}}, {"id": "43261", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44983511, 38.357939333], [139.449728716, 38.357972973], [139.449803917, 38.357993135], [139.44983511, 38.357939333]]]}}, {"id": "43262", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445553385, 38.264960225], [139.445463113, 38.264939838], [139.445490973, 38.265028198], [139.445553385, 38.264960225]]]}}, {"id": "43263", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475097393, 38.427400441], [139.475066835, 38.427489892], [139.475141556, 38.427483225], [139.475097393, 38.427400441]]]}}, {"id": "43264", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449201089, 38.356396721], [139.449277977, 38.356334892], [139.449189663, 38.356370586], [139.449201089, 38.356396721]]]}}, {"id": "43265", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499101167, 38.465232586], [139.499197834, 38.465274532], [139.499211997, 38.465238414], [139.499101167, 38.465232586]]]}}, {"id": "43266", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451043113, 38.349535108], [139.45110275, 38.349455865], [139.451051751, 38.349444333], [139.451043113, 38.349535108]]]}}, {"id": "43267", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450763191, 38.33080564], [139.450675694, 38.330840081], [139.450746252, 38.330868135], [139.450763191, 38.33080564]]]}}, {"id": "43268", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443750752, 38.263836054], [139.443695473, 38.263759667], [139.443688807, 38.263836054], [139.443750752, 38.263836054]]]}}, {"id": "43269", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441583671, 38.245341748], [139.441469001, 38.245360973], [139.441572607, 38.245381919], [139.441583671, 38.245341748]]]}}, {"id": "43270", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.475223217, 38.427954892], [139.475291284, 38.428011279], [139.475312672, 38.427977387], [139.475223217, 38.427954892]]]}}, {"id": "43271", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450927665, 38.349443387], [139.451031556, 38.349500892], [139.45103406, 38.349464505], [139.450927665, 38.349443387]]]}}, {"id": "43272", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442523256, 38.261033279], [139.442476861, 38.261117721], [139.442558807, 38.261066054], [139.442523256, 38.261033279]]]}}, {"id": "43273", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.468117613, 38.419266027], [139.468093722, 38.419360468], [139.468147328, 38.419318252], [139.468117613, 38.419266027]]]}}, {"id": "43274", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450569442, 38.351504225], [139.450554449, 38.351585198], [139.450632387, 38.351542387], [139.450569442, 38.351504225]]]}}, {"id": "43275", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448429533, 38.319869], [139.448432581, 38.319785946], [139.448377588, 38.319829279], [139.448429533, 38.319869]]]}}, {"id": "43276", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4808538, 38.438410414], [139.480867977, 38.438489027], [139.480911582, 38.438445135], [139.4808538, 38.438410414]]]}}, {"id": "43277", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450625162, 38.351229414], [139.450564449, 38.351168414], [139.450537419, 38.351217171], [139.450625162, 38.351229414]]]}}, {"id": "43278", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456066667, 38.387669135], [139.455959689, 38.387674694], [139.456054449, 38.387710532], [139.456066667, 38.387669135]]]}}, {"id": "43279", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451120895, 38.343436027], [139.451097756, 38.343371532], [139.451058638, 38.343451279], [139.451120895, 38.343436027]]]}}, {"id": "43280", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45116275, 38.343497559], [139.451139611, 38.343433054], [139.451100506, 38.343512802], [139.45116275, 38.343497559]]]}}, {"id": "43281", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448563061, 38.31342164], [139.448683411, 38.313465], [139.448710337, 38.313440468], [139.448563061, 38.31342164]]]}}, {"id": "43282", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45020869, 38.308335694], [139.4500962, 38.308351252], [139.450178145, 38.308396252], [139.45020869, 38.308335694]]]}}, {"id": "43283", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480908249, 38.436119306], [139.48084297, 38.436160414], [139.480882412, 38.436165973], [139.480908249, 38.436119306]]]}}, {"id": "43284", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4515307, 38.341311613], [139.451419948, 38.341302667], [139.451414163, 38.341337865], [139.4515307, 38.341311613]]]}}, {"id": "43285", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443953022, 38.255926892], [139.444024695, 38.255886225], [139.443925447, 38.255858919], [139.443953022, 38.255926892]]]}}, {"id": "43286", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.499551997, 38.465654802], [139.499645058, 38.465683694], [139.499638106, 38.465621198], [139.499551997, 38.465654802]]]}}, {"id": "43287", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448288638, 38.313207748], [139.44822275, 38.313147108], [139.448253307, 38.313233333], [139.448288638, 38.313207748]]]}}, {"id": "43288", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44833594, 38.313348667], [139.448270052, 38.313288027], [139.44830061, 38.313374279], [139.44833594, 38.313348667]]]}}, {"id": "43289", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44133594, 38.247066414], [139.441283385, 38.247136441], [139.44137, 38.24715264], [139.44133594, 38.247066414]]]}}, {"id": "43290", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44217406, 38.255993838], [139.44213406, 38.256068838], [139.44221406, 38.256022171], [139.44217406, 38.255993838]]]}}, {"id": "43291", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443881855, 38.254079919], [139.443847445, 38.254174387], [139.443892672, 38.254087559], [139.443881855, 38.254079919]]]}}, {"id": "43292", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451192529, 38.352579198], [139.451104773, 38.352624225], [139.451195473, 38.352598171], [139.451192529, 38.352579198]]]}}, {"id": "43293", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450647834, 38.354564721], [139.4505807, 38.354628667], [139.450671608, 38.354578748], [139.450647834, 38.354564721]]]}}, {"id": "43294", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451291699, 38.339714802], [139.451325966, 38.339811532], [139.451341634, 38.339713694], [139.451291699, 38.339714802]]]}}, {"id": "43295", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441391362, 38.245669279], [139.441506524, 38.245688027], [139.441507756, 38.245645135], [139.441391362, 38.245669279]]]}}, {"id": "43296", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.505674838, 38.476665613], [139.505765668, 38.476665613], [139.50575511, 38.476628946], [139.505674838, 38.476665613]]]}}, {"id": "43297", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.48140131, 38.438269586], [139.481493281, 38.438244586], [139.481472996, 38.438196532], [139.48140131, 38.438269586]]]}}, {"id": "43298", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441358029, 38.246760027], [139.441273995, 38.246739613], [139.4412707, 38.246760721], [139.441358029, 38.246760027]]]}}, {"id": "43299", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447297977, 38.285611225], [139.447354475, 38.285651441], [139.447367665, 38.285609802], [139.447297977, 38.285611225]]]}}, {"id": "43300", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444383528, 38.264074505], [139.444413645, 38.263991306], [139.444339222, 38.264024946], [139.444383528, 38.264074505]]]}}, {"id": "43301", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445313839, 38.267110748], [139.445225227, 38.267133532], [139.445252724, 38.267175748], [139.445313839, 38.267110748]]]}}, {"id": "43302", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442502672, 38.254101054], [139.442591829, 38.254120775], [139.442597665, 38.254100775], [139.442502672, 38.254101054]]]}}, {"id": "43303", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.49904061, 38.464216198], [139.499114773, 38.464232306], [139.499084228, 38.464208135], [139.49904061, 38.464216198]]]}}, {"id": "43304", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446223087, 38.294527946], [139.44618725, 38.294460441], [139.446165863, 38.294491279], [139.446223087, 38.294527946]]]}}, {"id": "43305", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450894034, 38.330035919], [139.450845136, 38.32996064], [139.450825694, 38.329988973], [139.450894034, 38.330035919]]]}}, {"id": "43306", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449340246, 38.356375081], [139.449392309, 38.356429306], [139.449405499, 38.356378919], [139.449340246, 38.356375081]]]}}, {"id": "43307", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.541276174, 38.531889351], [139.541283489, 38.531824324], [139.541243826, 38.531865225], [139.541276174, 38.531889351]]]}}, {"id": "43308", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4430907, 38.245153171], [139.443126641, 38.245107171], [139.443074669, 38.245084387], [139.4430907, 38.245153171]]]}}, {"id": "43309", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480130752, 38.435918198], [139.480148521, 38.435988468], [139.480180195, 38.435926802], [139.480130752, 38.435918198]]]}}, {"id": "43310", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445235499, 38.260149946], [139.445164384, 38.260215225], [139.44521856, 38.260219108], [139.445235499, 38.260149946]]]}}, {"id": "43311", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44163131, 38.245311838], [139.441742309, 38.245352586], [139.441748495, 38.24532064], [139.44163131, 38.245311838]]]}}, {"id": "43312", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.481644942, 38.435760414], [139.481723554, 38.435752081], [139.481700778, 38.435690135], [139.481644942, 38.435760414]]]}}, {"id": "43313", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.455959728, 38.396947171], [139.456027497, 38.396992171], [139.456023061, 38.396941892], [139.455959728, 38.396947171]]]}}, {"id": "43314", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450956161, 38.339043775], [139.450961673, 38.339124613], [139.451010661, 38.33905036], [139.450956161, 38.339043775]]]}}, {"id": "43315", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450780558, 38.329595252], [139.450732387, 38.329526721], [139.450706913, 38.329557171], [139.450780558, 38.329595252]]]}}, {"id": "43316", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446690584, 38.296301802], [139.446755032, 38.296356802], [139.446733359, 38.296293198], [139.446690584, 38.296301802]]]}}, {"id": "43317", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448694475, 38.313160198], [139.44869022, 38.313107505], [139.448629663, 38.313113613], [139.448694475, 38.313160198]]]}}, {"id": "43318", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441038859, 38.247035225], [139.44105406, 38.24710964], [139.441116446, 38.24704164], [139.441038859, 38.247035225]]]}}, {"id": "43319", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.503608418, 38.479584505], [139.503606472, 38.479650054], [139.503656472, 38.479651441], [139.503608418, 38.479584505]]]}}, {"id": "43320", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44532275, 38.264626892], [139.44522978, 38.264671919], [139.445341997, 38.264668225], [139.44532275, 38.264626892]]]}}, {"id": "43321", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462211167, 38.404087721], [139.462267276, 38.404021892], [139.46220061, 38.404038279], [139.462211167, 38.404087721]]]}}, {"id": "43322", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447595357, 38.272482027], [139.447672049, 38.272432441], [139.447598975, 38.272426171], [139.447595357, 38.272482027]]]}}, {"id": "43323", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451762166, 38.334420306], [139.451800467, 38.334346865], [139.451732607, 38.334410694], [139.451762166, 38.334420306]]]}}, {"id": "43324", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451313891, 38.351327775], [139.451253256, 38.351398586], [139.451329468, 38.351359306], [139.451313891, 38.351327775]]]}}, {"id": "43325", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450965227, 38.351412171], [139.450904578, 38.351482973], [139.450980804, 38.351443667], [139.450965227, 38.351412171]]]}}, {"id": "43326", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451069585, 38.351339613], [139.451008949, 38.351410414], [139.451085162, 38.351371108], [139.451069585, 38.351339613]]]}}, {"id": "43327", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443817977, 38.255871892], [139.443810467, 38.255942721], [139.443879079, 38.255914108], [139.443817977, 38.255871892]]]}}, {"id": "43328", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451022607, 38.338524027], [139.451084527, 38.338553054], [139.451100532, 38.338480505], [139.451022607, 38.338524027]]]}}, {"id": "43329", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451140467, 38.338464721], [139.451202412, 38.338493748], [139.451218392, 38.338421198], [139.451140467, 38.338464721]]]}}, {"id": "43330", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451232776, 38.342207694], [139.451146978, 38.342263946], [139.4512493, 38.342244838], [139.451232776, 38.342207694]]]}}, {"id": "43331", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450601582, 38.359008919], [139.450670467, 38.358992802], [139.450662698, 38.358943919], [139.450601582, 38.359008919]]]}}, {"id": "43332", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451035253, 38.351058919], [139.451067328, 38.35112264], [139.451113061, 38.35107164], [139.451035253, 38.351058919]]]}}, {"id": "43333", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444640506, 38.264612171], [139.444647717, 38.264679946], [139.444686057, 38.264646613], [139.444640506, 38.264612171]]]}}, {"id": "43334", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441440363, 38.245598838], [139.441492283, 38.245549198], [139.441429637, 38.245527198], [139.441440363, 38.245598838]]]}}, {"id": "43335", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45063083, 38.338637387], [139.450714189, 38.338669027], [139.450687523, 38.338605973], [139.45063083, 38.338637387]]]}}, {"id": "43336", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446619494, 38.294086306], [139.446705357, 38.294103775], [139.446726083, 38.294049748], [139.446619494, 38.294086306]]]}}, {"id": "43337", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450047082, 38.310783892], [139.450095188, 38.310847468], [139.450106057, 38.310792559], [139.450047082, 38.310783892]]]}}, {"id": "43338", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449927588, 38.308155468], [139.449914034, 38.308208306], [139.4499593, 38.308194586], [139.449927588, 38.308155468]]]}}, {"id": "43339", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44838489, 38.318930559], [139.448449857, 38.318988387], [139.448478029, 38.318960721], [139.44838489, 38.318930559]]]}}, {"id": "43340", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447791051, 38.35676064], [139.447784112, 38.35671636], [139.44772358, 38.356783775], [139.447791051, 38.35676064]]]}}, {"id": "43341", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450203411, 38.303538748], [139.450175084, 38.303457081], [139.450160636, 38.303535973], [139.450203411, 38.303538748]]]}}, {"id": "43342", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.472392088, 38.423823775], [139.472403191, 38.423755721], [139.472370415, 38.423792667], [139.472392088, 38.423823775]]]}}, {"id": "43343", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450536278, 38.324387775], [139.450623022, 38.324407441], [139.450564617, 38.324372775], [139.450536278, 38.324387775]]]}}, {"id": "43344", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452185447, 38.335824252], [139.452119339, 38.335887027], [139.452177393, 38.335883135], [139.452185447, 38.335824252]]]}}, {"id": "43345", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449193969, 38.312334], [139.4491162, 38.312371225], [139.449197302, 38.312357892], [139.449193969, 38.312334]]]}}, {"id": "43346", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443424086, 38.254641613], [139.443508249, 38.254683838], [139.443505746, 38.254652721], [139.443424086, 38.254641613]]]}}, {"id": "43347", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446421751, 38.272994802], [139.446367588, 38.272940414], [139.446347808, 38.272994694], [139.446421751, 38.272994802]]]}}, {"id": "43348", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445568975, 38.260072865], [139.445553476, 38.259976694], [139.445533165, 38.259991613], [139.445568975, 38.260072865]]]}}, {"id": "43349", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441289442, 38.245956252], [139.44136725, 38.245980252], [139.441365837, 38.245940198], [139.441289442, 38.245956252]]]}}, {"id": "43350", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449277977, 38.356223667], [139.449321777, 38.356177414], [139.449249663, 38.356179081], [139.449277977, 38.356223667]]]}}, {"id": "43351", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451338106, 38.344170171], [139.451319974, 38.344216694], [139.451368716, 38.344192414], [139.451338106, 38.344170171]]]}}, {"id": "43352", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44842703, 38.313210946], [139.448404527, 38.313285387], [139.448455642, 38.313240108], [139.44842703, 38.313210946]]]}}, {"id": "43353", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443241582, 38.254863279], [139.443218521, 38.254925505], [139.443283528, 38.254934667], [139.443241582, 38.254863279]]]}}, {"id": "43354", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450108833, 38.355947054], [139.450194942, 38.355956198], [139.450214112, 38.35593636], [139.450108833, 38.355947054]]]}}, {"id": "43355", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451222866, 38.342796198], [139.451195966, 38.342719775], [139.451182802, 38.34273536], [139.451222866, 38.342796198]]]}}, {"id": "43356", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44770572, 38.356299468], [139.44770572, 38.35634364], [139.447797665, 38.356317532], [139.44770572, 38.356299468]]]}}, {"id": "43357", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450733411, 38.339161919], [139.450726161, 38.339222414], [139.450787471, 38.339202946], [139.450733411, 38.339161919]]]}}, {"id": "43358", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448106809, 38.274152586], [139.448114137, 38.274099802], [139.448076005, 38.274113468], [139.448106809, 38.274152586]]]}}, {"id": "43359", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452179248, 38.347213505], [139.452084501, 38.347267721], [139.452192049, 38.347238721], [139.452179248, 38.347213505]]]}}, {"id": "43360", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444797665, 38.267711973], [139.444821089, 38.267801081], [139.444863774, 38.267793694], [139.444797665, 38.267711973]]]}}, {"id": "43361", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446036861, 38.262981135], [139.4460262, 38.263052946], [139.4461138, 38.263005135], [139.446036861, 38.262981135]]]}}, {"id": "43362", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462191167, 38.402325225], [139.462123385, 38.402280225], [139.462155616, 38.402344946], [139.462191167, 38.402325225]]]}}, {"id": "43363", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.480870752, 38.438209865], [139.48084297, 38.438145694], [139.480810752, 38.438201802], [139.480870752, 38.438209865]]]}}, {"id": "43364", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451428003, 38.343979333], [139.451506135, 38.343953387], [139.451497665, 38.343917613], [139.451428003, 38.343979333]]]}}, {"id": "43365", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450062503, 38.304889225], [139.450027562, 38.304923054], [139.450130532, 38.304918694], [139.450062503, 38.304889225]]]}}, {"id": "43366", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448714228, 38.275676973], [139.448725032, 38.275617135], [139.448645914, 38.275634667], [139.448714228, 38.275676973]]]}}, {"id": "43367", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.461880337, 38.402798279], [139.461815888, 38.402747171], [139.461808664, 38.402775775], [139.461880337, 38.402798279]]]}}, {"id": "43368", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443685551, 38.244310892], [139.44376275, 38.244287775], [139.443660947, 38.244268198], [139.443685551, 38.244310892]]]}}, {"id": "43369", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44689808, 38.286067721], [139.446952114, 38.286030081], [139.446848275, 38.286036973], [139.44689808, 38.286067721]]]}}, {"id": "43370", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443132477, 38.244806775], [139.443211634, 38.244797], [139.443101751, 38.244773279], [139.443132477, 38.244806775]]]}}, {"id": "43371", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444356615, 38.266707973], [139.444306329, 38.266656306], [139.444274112, 38.26666964], [139.444356615, 38.266707973]]]}}, {"id": "43372", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441894306, 38.245304667], [139.44187153, 38.245244532], [139.441859611, 38.245250946], [139.441894306, 38.245304667]]]}}, {"id": "43373", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450944449, 38.350461108], [139.450973645, 38.350510775], [139.451009857, 38.350483775], [139.450944449, 38.350461108]]]}}, {"id": "43374", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44553917, 38.265964802], [139.4454862, 38.265934306], [139.445465837, 38.265945], [139.44553917, 38.265964802]]]}}, {"id": "43375", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4813438, 38.438685973], [139.48138131, 38.438744865], [139.481398249, 38.438723468], [139.4813438, 38.438685973]]]}}, {"id": "43376", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.483334112, 38.44237264], [139.483401894, 38.44235264], [139.483337717, 38.442335973], [139.483334112, 38.44237264]]]}}, {"id": "43377", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449665811, 38.312207559], [139.449655253, 38.312149306], [139.449615279, 38.312162279], [139.449665811, 38.312207559]]]}}, {"id": "43378", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450630804, 38.310379802], [139.450586887, 38.310431505], [139.450670169, 38.310390054], [139.450630804, 38.310379802]]]}}, {"id": "43379", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449203671, 38.312564838], [139.449249974, 38.312628441], [139.449263606, 38.312579108], [139.449203671, 38.312564838]]]}}, {"id": "43380", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45171572, 38.335671468], [139.451771479, 38.335637279], [139.451711855, 38.335650414], [139.45171572, 38.335671468]]]}}, {"id": "43381", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446133022, 38.268717414], [139.446068586, 38.268684081], [139.446072192, 38.268729081], [139.446133022, 38.268717414]]]}}, {"id": "43382", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445786031, 38.266891225], [139.445714578, 38.266880532], [139.445784449, 38.266907387], [139.445786031, 38.266891225]]]}}, {"id": "43383", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445597717, 38.265196694], [139.445528781, 38.265238027], [139.445613113, 38.265214865], [139.445597717, 38.265196694]]]}}, {"id": "43384", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448773969, 38.278490027], [139.448772918, 38.278408468], [139.448738145, 38.27840736], [139.448773969, 38.278490027]]]}}, {"id": "43385", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448886226, 38.278485613], [139.448885162, 38.278404054], [139.448850389, 38.278402919], [139.448886226, 38.278485613]]]}}, {"id": "43386", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.457121388, 38.397552441], [139.45703917, 38.397569387], [139.45711083, 38.397589108], [139.457121388, 38.397552441]]]}}, {"id": "43387", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443975837, 38.244063306], [139.444055642, 38.244034559], [139.443965642, 38.244031748], [139.443975837, 38.244063306]]]}}, {"id": "43388", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462245058, 38.403572721], [139.462277562, 38.403509387], [139.462216446, 38.403544667], [139.462245058, 38.403572721]]]}}, {"id": "43389", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.466837302, 38.412047135], [139.466854812, 38.412103532], [139.466877588, 38.412055468], [139.466837302, 38.412047135]]]}}, {"id": "43390", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441575577, 38.24549836], [139.441653333, 38.245518802], [139.441576057, 38.245467414], [139.441575577, 38.24549836]]]}}, {"id": "43391", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441767665, 38.245213559], [139.441775162, 38.245164613], [139.441718444, 38.245167387], [139.441767665, 38.245213559]]]}}, {"id": "43392", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442341829, 38.251399279], [139.442300169, 38.251347586], [139.442281025, 38.251382892], [139.442341829, 38.251399279]]]}}, {"id": "43393", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441502918, 38.246196108], [139.441522503, 38.24612636], [139.441448392, 38.246182505], [139.441502918, 38.246196108]]]}}, {"id": "43394", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441184112, 38.246167225], [139.441249339, 38.246181441], [139.441254228, 38.246144865], [139.441184112, 38.246167225]]]}}, {"id": "43395", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449126667, 38.311618586], [139.44921, 38.31158136], [139.449123748, 38.311599613], [139.449126667, 38.311618586]]]}}, {"id": "43396", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446567588, 38.293830505], [139.446608171, 38.293784721], [139.446547523, 38.293807279], [139.446567588, 38.293830505]]]}}, {"id": "43397", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451263087, 38.339930613], [139.451322503, 38.339972306], [139.451322023, 38.339936441], [139.451263087, 38.339930613]]]}}, {"id": "43398", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450284189, 38.35526436], [139.450359468, 38.355292171], [139.450370117, 38.355257108], [139.450284189, 38.35526436]]]}}, {"id": "43399", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451377198, 38.342738], [139.451430415, 38.342782559], [139.451454864, 38.342742279], [139.451377198, 38.342738]]]}}, {"id": "43400", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44717808, 38.289282135], [139.447131479, 38.289327919], [139.447194968, 38.289315306], [139.44717808, 38.289282135]]]}}, {"id": "43401", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450632438, 38.339556], [139.450648301, 38.339607198], [139.450687056, 38.339570333], [139.450632438, 38.339556]]]}}, {"id": "43402", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.461944501, 38.403139108], [139.461940052, 38.403081613], [139.461885888, 38.403100775], [139.461944501, 38.403139108]]]}}, {"id": "43403", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445043748, 38.264622108], [139.444964332, 38.264613613], [139.445000415, 38.264648468], [139.445043748, 38.264622108]]]}}, {"id": "43404", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4485438, 38.313829532], [139.448590636, 38.313796081], [139.448535331, 38.313794441], [139.4485438, 38.313829532]]]}}, {"id": "43405", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448420195, 38.313648414], [139.44846703, 38.313615], [139.448411699, 38.313613333], [139.448420195, 38.313648414]]]}}, {"id": "43406", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44957703, 38.311859027], [139.449642361, 38.311807171], [139.449619948, 38.311797505], [139.44957703, 38.311859027]]]}}, {"id": "43407", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449824332, 38.359554468], [139.449789883, 38.359498919], [139.449757665, 38.359549748], [139.449824332, 38.359554468]]]}}, {"id": "43408", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45010489, 38.357865865], [139.450029611, 38.357857532], [139.450094617, 38.357886135], [139.45010489, 38.357865865]]]}}, {"id": "43409", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448624747, 38.313744505], [139.448569689, 38.31369364], [139.448550415, 38.313720505], [139.448624747, 38.313744505]]]}}, {"id": "43410", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450290311, 38.306720387], [139.450256109, 38.306764946], [139.450311388, 38.306763802], [139.450290311, 38.306720387]]]}}, {"id": "43411", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445281115, 38.264582586], [139.445193217, 38.264536892], [139.44517192, 38.264543387], [139.445281115, 38.264582586]]]}}, {"id": "43412", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448546693, 38.355968414], [139.44855489, 38.355910694], [139.448505253, 38.355936414], [139.448546693, 38.355968414]]]}}, {"id": "43413", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447749416, 38.29336064], [139.447733774, 38.293295892], [139.447710246, 38.293322667], [139.447749416, 38.29336064]]]}}, {"id": "43414", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450815058, 38.330060748], [139.450804475, 38.330001775], [139.450758612, 38.330040838], [139.450815058, 38.330060748]]]}}, {"id": "43415", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.541593904, 38.531159676], [139.541657847, 38.53114018], [139.541631115, 38.531107901], [139.541593904, 38.531159676]]]}}, {"id": "43416", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45108, 38.344037171], [139.451066446, 38.344092108], [139.451100584, 38.344042613], [139.45108, 38.344037171]]]}}, {"id": "43417", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.50477428, 38.475865892], [139.504827886, 38.475829225], [139.504747328, 38.475818108], [139.50477428, 38.475865892]]]}}, {"id": "43418", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449115422, 38.277698], [139.449158833, 38.277745441], [139.449146615, 38.277697748], [139.449115422, 38.277698]]]}}, {"id": "43419", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444383385, 38.243862775], [139.444441051, 38.24384336], [139.44437131, 38.243823532], [139.444383385, 38.243862775]]]}}, {"id": "43420", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450691115, 38.358973721], [139.450748495, 38.359011532], [139.450759144, 38.358977559], [139.450691115, 38.358973721]]]}}, {"id": "43421", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450742892, 38.358794054], [139.450800246, 38.358831865], [139.450810921, 38.358797892], [139.450742892, 38.358794054]]]}}, {"id": "43422", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450582944, 38.358762559], [139.450640311, 38.35880036], [139.450650947, 38.358766387], [139.450582944, 38.358762559]]]}}, {"id": "43423", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450624189, 38.352890721], [139.45068703, 38.352920441], [139.450645447, 38.352878613], [139.450624189, 38.352890721]]]}}, {"id": "43424", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443644086, 38.254804387], [139.443580195, 38.254806333], [139.443604358, 38.254825505], [139.443644086, 38.254804387]]]}}, {"id": "43425", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44796594, 38.312724], [139.448042802, 38.312736721], [139.44802917, 38.312715748], [139.44796594, 38.312724]]]}}, {"id": "43426", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449630999, 38.35606364], [139.449648145, 38.356101748], [139.449699222, 38.356082748], [139.449630999, 38.35606364]]]}}, {"id": "43427", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448163865, 38.273928748], [139.44823144, 38.273916946], [139.448218521, 38.273881892], [139.448163865, 38.273928748]]]}}, {"id": "43428", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445783943, 38.2684], [139.445758392, 38.268354532], [139.445747834, 38.268364441], [139.445783943, 38.2684]]]}}, {"id": "43429", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445756615, 38.268216054], [139.445731051, 38.268170559], [139.445720506, 38.268180468], [139.445756615, 38.268216054]]]}}, {"id": "43430", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445569948, 38.268185919], [139.445544423, 38.268140414], [139.445533839, 38.268150333], [139.445569948, 38.268185919]]]}}, {"id": "43431", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451363502, 38.351679468], [139.451335447, 38.351635306], [139.451332944, 38.351667252], [139.451363502, 38.351679468]]]}}, {"id": "43432", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445288054, 38.263659748], [139.44535572, 38.263655694], [139.445333943, 38.26362564], [139.445288054, 38.263659748]]]}}, {"id": "43433", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448513411, 38.313935775], [139.448440804, 38.313906135], [139.448505694, 38.313958333], [139.448513411, 38.313935775]]]}}, {"id": "43434", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446143476, 38.243228054], [139.446158612, 38.243191865], [139.446112633, 38.243194081], [139.446143476, 38.243228054]]]}}, {"id": "43435", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449958366, 38.355363387], [139.449991025, 38.355316108], [139.44995214, 38.355312054], [139.449958366, 38.355363387]]]}}, {"id": "43436", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443974254, 38.254546694], [139.443919364, 38.254573135], [139.443969442, 38.254587532], [139.443974254, 38.254546694]]]}}, {"id": "43437", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450234254, 38.30371764], [139.450252023, 38.303665973], [139.450227302, 38.303681252], [139.450234254, 38.30371764]]]}}, {"id": "43438", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.461966161, 38.403462721], [139.461894501, 38.403440505], [139.461908949, 38.403471333], [139.461966161, 38.403462721]]]}}, {"id": "43439", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445348859, 38.265397586], [139.445397224, 38.265416892], [139.445411894, 38.265377387], [139.445348859, 38.265397586]]]}}, {"id": "43440", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448563865, 38.313582441], [139.448558612, 38.313521333], [139.448535694, 38.313541892], [139.448563865, 38.313582441]]]}}, {"id": "43441", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450435305, 38.358076225], [139.450492477, 38.35809764], [139.450478106, 38.358059505], [139.450435305, 38.358076225]]]}}, {"id": "43442", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452384669, 38.348016694], [139.452299728, 38.348002613], [139.452386809, 38.348044802], [139.452384669, 38.348016694]]]}}, {"id": "43443", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445645811, 38.265835613], [139.445610363, 38.265783892], [139.445598301, 38.265816306], [139.445645811, 38.265835613]]]}}, {"id": "43444", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441842607, 38.248728081], [139.441925551, 38.248735135], [139.441842412, 38.248714721], [139.441842607, 38.248728081]]]}}, {"id": "43445", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451840856, 38.335691559], [139.451891336, 38.335731919], [139.451892023, 38.335715748], [139.451840856, 38.335691559]]]}}, {"id": "43446", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.47523406, 38.427554892], [139.475252114, 38.427499333], [139.475226835, 38.427524054], [139.47523406, 38.427554892]]]}}, {"id": "43447", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448091479, 38.31938336], [139.448107977, 38.319419081], [139.448159364, 38.319390559], [139.448091479, 38.31938336]]]}}, {"id": "43448", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448805772, 38.312888559], [139.448805084, 38.312835838], [139.448774086, 38.312851559], [139.448805772, 38.312888559]]]}}, {"id": "43449", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45030061, 38.339233946], [139.45032703, 38.339275919], [139.450368716, 38.339258], [139.45030061, 38.339233946]]]}}, {"id": "43450", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450686498, 38.341001505], [139.450702802, 38.340951441], [139.450653995, 38.340972252], [139.450686498, 38.341001505]]]}}, {"id": "43451", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450526304, 38.328019865], [139.45060192, 38.328006613], [139.450523359, 38.327999505], [139.450526304, 38.328019865]]]}}, {"id": "43452", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450133385, 38.30377236], [139.45015869, 38.303799586], [139.450193307, 38.303788054], [139.450133385, 38.30377236]]]}}, {"id": "43453", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451210752, 38.340907108], [139.451277977, 38.340930468], [139.451295551, 38.34091136], [139.451210752, 38.340907108]]]}}, {"id": "43454", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45146345, 38.333448414], [139.45146725, 38.333397054], [139.451426524, 38.333422], [139.45146345, 38.333448414]]]}}, {"id": "43455", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450722244, 38.359765333], [139.450691089, 38.359716387], [139.450673774, 38.359770081], [139.450722244, 38.359765333]]]}}, {"id": "43456", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452140078, 38.344918333], [139.452084942, 38.344933559], [139.452128833, 38.344946559], [139.452140078, 38.344918333]]]}}, {"id": "43457", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442688807, 38.251073027], [139.442640117, 38.251030532], [139.442620856, 38.251055279], [139.442688807, 38.251073027]]]}}, {"id": "43458", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444440389, 38.264142775], [139.444355863, 38.264152613], [139.444456589, 38.264153892], [139.444440389, 38.264142775]]]}}, {"id": "43459", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451404254, 38.344166279], [139.451383217, 38.344127775], [139.451356589, 38.344137838], [139.451404254, 38.344166279]]]}}, {"id": "43460", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.456899728, 38.397637171], [139.456899728, 38.397699108], [139.456949728, 38.397654667], [139.456899728, 38.397637171]]]}}, {"id": "43461", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.446563891, 38.294088054], [139.446574332, 38.294130775], [139.446611245, 38.294122054], [139.446563891, 38.294088054]]]}}, {"id": "43462", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451298444, 38.350110838], [139.451386005, 38.350120667], [139.45139725, 38.350092441], [139.451298444, 38.350110838]]]}}, {"id": "43463", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450994643, 38.341470775], [139.451043995, 38.341492171], [139.451044332, 38.341449973], [139.450994643, 38.341470775]]]}}, {"id": "43464", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450058911, 38.305277387], [139.450002633, 38.305270108], [139.450001051, 38.305287], [139.450058911, 38.305277387]]]}}, {"id": "43465", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448345551, 38.314452919], [139.448353333, 38.314503441], [139.448377276, 38.314492721], [139.448345551, 38.314452919]]]}}, {"id": "43466", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441277134, 38.246213505], [139.441330973, 38.246242586], [139.441345837, 38.246220694], [139.441277134, 38.246213505]]]}}, {"id": "43467", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451392088, 38.350145081], [139.451456109, 38.350127694], [139.451433671, 38.35011664], [139.451392088, 38.350145081]]]}}, {"id": "43468", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452279663, 38.337256919], [139.452250726, 38.337295108], [139.452321946, 38.337285387], [139.452279663, 38.337256919]]]}}, {"id": "43469", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441108029, 38.246278919], [139.441110895, 38.24622264], [139.441084968, 38.246217225], [139.441108029, 38.246278919]]]}}, {"id": "43470", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450880947, 38.338421919], [139.450939533, 38.33839964], [139.450851971, 38.338389108], [139.450880947, 38.338421919]]]}}, {"id": "43471", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462402283, 38.403141892], [139.462380895, 38.403096892], [139.462366446, 38.403127721], [139.462402283, 38.403141892]]]}}, {"id": "43472", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45113847, 38.342298414], [139.451143281, 38.342323694], [139.451198975, 38.342284586], [139.45113847, 38.342298414]]]}}, {"id": "43473", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441685253, 38.245420252], [139.441716031, 38.24538836], [139.441676809, 38.245386559], [139.441685253, 38.245420252]]]}}, {"id": "43474", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.462574773, 38.406527441], [139.462583385, 38.406484667], [139.46256061, 38.406505505], [139.462574773, 38.406527441]]]}}, {"id": "43475", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441291556, 38.246427694], [139.441337562, 38.246472306], [139.441331673, 38.246429468], [139.441291556, 38.246427694]]]}}, {"id": "43476", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450016252, 38.355584802], [139.450052827, 38.355626027], [139.45005939, 38.355595387], [139.450016252, 38.355584802]]]}}, {"id": "43477", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450425383, 38.355474054], [139.450438586, 38.355421468], [139.450408664, 38.355467613], [139.450425383, 38.355474054]]]}}, {"id": "43478", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452390272, 38.346699586], [139.452433554, 38.346732973], [139.452442218, 38.346713252], [139.452390272, 38.346699586]]]}}, {"id": "43479", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440826304, 38.246842946], [139.440867691, 38.246874225], [139.440874358, 38.246838333], [139.440826304, 38.246842946]]]}}, {"id": "43480", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448497367, 38.31829036], [139.448559222, 38.318316586], [139.448557224, 38.318299721], [139.448497367, 38.31829036]]]}}, {"id": "43481", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450666615, 38.338774586], [139.450633281, 38.338750946], [139.450631167, 38.338793135], [139.450666615, 38.338774586]]]}}, {"id": "43482", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450269079, 38.310917586], [139.45032192, 38.310934027], [139.450309974, 38.310908108], [139.450269079, 38.310917586]]]}}, {"id": "43483", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448739611, 38.288203838], [139.448696329, 38.288169586], [139.448697951, 38.288208081], [139.448739611, 38.288203838]]]}}, {"id": "43484", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.504411219, 38.476046441], [139.504361505, 38.476088946], [139.504383165, 38.476099225], [139.504411219, 38.476046441]]]}}, {"id": "43485", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450220389, 38.303813171], [139.450251946, 38.303839613], [139.450278444, 38.303820414], [139.450220389, 38.303813171]]]}}, {"id": "43486", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448272724, 38.313408279], [139.448261777, 38.313456892], [139.448296226, 38.313431279], [139.448272724, 38.313408279]]]}}, {"id": "43487", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450737808, 38.338548802], [139.450769442, 38.338580892], [139.450786939, 38.338555414], [139.450737808, 38.338548802]]]}}, {"id": "43488", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442701362, 38.256404802], [139.442723061, 38.25636036], [139.442672309, 38.256362171], [139.442701362, 38.256404802]]]}}, {"id": "43489", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443363165, 38.245013279], [139.44332978, 38.245048], [139.443398197, 38.245034775], [139.443363165, 38.245013279]]]}}, {"id": "43490", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445593333, 38.266046], [139.445633839, 38.266007694], [139.445578885, 38.26603136], [139.445593333, 38.266046]]]}}, {"id": "43491", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444764721, 38.26460164], [139.444805305, 38.264639279], [139.444815746, 38.264619532], [139.444764721, 38.26460164]]]}}, {"id": "43492", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45060834, 38.330760559], [139.450589144, 38.330794441], [139.450649883, 38.330801], [139.45060834, 38.330760559]]]}}, {"id": "43493", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450241971, 38.305636252], [139.45029939, 38.305664586], [139.450292866, 38.305640027], [139.450241971, 38.305636252]]]}}, {"id": "43494", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451088521, 38.327927027], [139.451113165, 38.327969721], [139.451135058, 38.32794], [139.451088521, 38.327927027]]]}}, {"id": "43495", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443696329, 38.253487613], [139.443637691, 38.253432559], [139.443619857, 38.253431279], [139.443696329, 38.253487613]]]}}, {"id": "43496", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442067173, 38.249686414], [139.442066835, 38.249730694], [139.442094228, 38.249712919], [139.442067173, 38.249686414]]]}}, {"id": "43497", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451486005, 38.349106613], [139.451543411, 38.349129333], [139.451543217, 38.349115279], [139.451486005, 38.349106613]]]}}, {"id": "43498", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45140572, 38.340888559], [139.451394423, 38.340842946], [139.451372283, 38.340855775], [139.45140572, 38.340888559]]]}}, {"id": "43499", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451547302, 38.340732721], [139.451536005, 38.340687135], [139.451513865, 38.340699973], [139.451547302, 38.340732721]]]}}, {"id": "43500", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451002944, 38.340615667], [139.451061025, 38.34062336], [139.451075058, 38.340602252], [139.451002944, 38.340615667]]]}}, {"id": "43501", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451252892, 38.344008973], [139.451282724, 38.344039667], [139.451308145, 38.344004306], [139.451252892, 38.344008973]]]}}, {"id": "43502", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442768249, 38.245300198], [139.44275703, 38.245260225], [139.442717886, 38.245265441], [139.442768249, 38.245300198]]]}}, {"id": "43503", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450751245, 38.352822973], [139.450772283, 38.352862865], [139.450802438, 38.352849973], [139.450751245, 38.352822973]]]}}, {"id": "43504", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440664423, 38.247124586], [139.440600169, 38.247118054], [139.440615616, 38.247141135], [139.440664423, 38.247124586]]]}}, {"id": "43505", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450996057, 38.339647468], [139.450935525, 38.339658505], [139.450946394, 38.339671775], [139.450996057, 38.339647468]]]}}, {"id": "43506", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450656978, 38.353708279], [139.450717004, 38.35372536], [139.450718444, 38.353700748], [139.450656978, 38.353708279]]]}}, {"id": "43507", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448916252, 38.278327865], [139.448913333, 38.278377802], [139.448937198, 38.278360721], [139.448916252, 38.278327865]]]}}, {"id": "43508", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448926498, 38.278429721], [139.448972892, 38.278432865], [139.448951946, 38.2784], [139.448926498, 38.278429721]]]}}, {"id": "43509", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450861997, 38.331435135], [139.450848249, 38.331407838], [139.450820973, 38.331435468], [139.450861997, 38.331435135]]]}}, {"id": "43510", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451149494, 38.342371333], [139.45116786, 38.342340973], [139.451126939, 38.342349748], [139.451149494, 38.342371333]]]}}, {"id": "43511", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448587912, 38.318866279], [139.448606329, 38.318909], [139.448634695, 38.318895414], [139.448587912, 38.318866279]]]}}, {"id": "43512", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450713191, 38.330726838], [139.450720921, 38.330772441], [139.450743839, 38.330751171], [139.450713191, 38.330726838]]]}}, {"id": "43513", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4496593, 38.310536387], [139.449694527, 38.310569865], [139.449706693, 38.310544441], [139.4496593, 38.310536387]]]}}, {"id": "43514", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449625772, 38.310701171], [139.449660999, 38.31073464], [139.449673139, 38.310709225], [139.449625772, 38.310701171]]]}}, {"id": "43515", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449506472, 38.310372414], [139.449541699, 38.310405865], [139.449553839, 38.310380468], [139.449506472, 38.310372414]]]}}, {"id": "43516", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440926446, 38.247181802], [139.440945422, 38.247131748], [139.440901505, 38.247181306], [139.440926446, 38.247181802]]]}}, {"id": "43517", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445345447, 38.264938694], [139.445305642, 38.264960802], [139.445379611, 38.264961613], [139.445345447, 38.264938694]]]}}, {"id": "43518", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443861479, 38.254334694], [139.443825447, 38.254304054], [139.443776472, 38.254307252], [139.443861479, 38.254334694]]]}}, {"id": "43519", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443666978, 38.254315892], [139.44368978, 38.254355081], [139.443703022, 38.254346532], [139.443666978, 38.254315892]]]}}, {"id": "43520", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452380752, 38.34811564], [139.452373022, 38.348080667], [139.452351414, 38.348093], [139.452380752, 38.34811564]]]}}, {"id": "43521", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442279105, 38.245202748], [139.442275006, 38.245169306], [139.442241479, 38.245187775], [139.442279105, 38.245202748]]]}}, {"id": "43522", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442078911, 38.245262171], [139.442061089, 38.24530536], [139.442098638, 38.245289802], [139.442078911, 38.245262171]]]}}, {"id": "43523", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450311193, 38.305021946], [139.450362361, 38.30504964], [139.450344968, 38.30501464], [139.450311193, 38.305021946]]]}}, {"id": "43524", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.439994034, 38.247054919], [139.439986355, 38.247013505], [139.439950272, 38.24704964], [139.439994034, 38.247054919]]]}}, {"id": "43525", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452092944, 38.336410973], [139.452091608, 38.336446865], [139.452125331, 38.336431802], [139.452092944, 38.336410973]]]}}, {"id": "43526", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441538418, 38.245805468], [139.441487471, 38.245793919], [139.441536783, 38.245816721], [139.441538418, 38.245805468]]]}}, {"id": "43527", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448787717, 38.318715054], [139.4487738, 38.318674387], [139.448740169, 38.318692946], [139.448787717, 38.318715054]]]}}, {"id": "43528", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444352218, 38.264363279], [139.444372361, 38.264404613], [139.444374864, 38.264391946], [139.444352218, 38.264363279]]]}}, {"id": "43529", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441158664, 38.246495306], [139.44120642, 38.246537802], [139.4412062, 38.246519532], [139.441158664, 38.246495306]]]}}, {"id": "43530", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44436144, 38.264527721], [139.444381582, 38.264569027], [139.444384086, 38.26455636], [139.44436144, 38.264527721]]]}}, {"id": "43531", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444665863, 38.267873919], [139.444625914, 38.267885505], [139.444680558, 38.267907559], [139.444665863, 38.267873919]]]}}, {"id": "43532", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443493748, 38.256555054], [139.443507562, 38.256590775], [139.443527082, 38.256582919], [139.443493748, 38.256555054]]]}}, {"id": "43533", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44170131, 38.245108171], [139.441665136, 38.245135865], [139.441737082, 38.245118414], [139.44170131, 38.245108171]]]}}, {"id": "43534", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448589079, 38.313373225], [139.448528495, 38.313377919], [139.448553748, 38.313398802], [139.448589079, 38.313373225]]]}}, {"id": "43535", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450776744, 38.327443468], [139.450736135, 38.327475441], [139.450774643, 38.327486387], [139.450776744, 38.327443468]]]}}, {"id": "43536", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448592049, 38.288381802], [139.448610804, 38.28834664], [139.448569222, 38.288356919], [139.448592049, 38.288381802]]]}}, {"id": "43537", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44849655, 38.318367], [139.448539248, 38.318356802], [139.44847847, 38.318347468], [139.44849655, 38.318367]]]}}, {"id": "43538", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448691089, 38.317548802], [139.448743865, 38.317560333], [139.448689027, 38.317527027], [139.448691089, 38.317548802]]]}}, {"id": "43539", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441075577, 38.245278279], [139.441030467, 38.24530536], [139.441079364, 38.245295838], [139.441075577, 38.245278279]]]}}, {"id": "43540", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445686615, 38.265465171], [139.445702166, 38.26549736], [139.445718145, 38.265492333], [139.445686615, 38.265465171]]]}}, {"id": "43541", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445544617, 38.265443108], [139.445560195, 38.265475333], [139.445576161, 38.265470279], [139.445544617, 38.265443108]]]}}, {"id": "43542", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441463774, 38.247251468], [139.441423671, 38.247250387], [139.441445357, 38.247275532], [139.441463774, 38.247251468]]]}}, {"id": "43543", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442798418, 38.250421171], [139.442848418, 38.250427775], [139.442823087, 38.250399171], [139.442798418, 38.250421171]]]}}, {"id": "43544", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442471505, 38.250494802], [139.442455032, 38.250530775], [139.442496809, 38.250523414], [139.442471505, 38.250494802]]]}}, {"id": "43545", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45218978, 38.336086721], [139.452230272, 38.336114505], [139.452230778, 38.336085667], [139.45218978, 38.336086721]]]}}, {"id": "43546", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450681777, 38.341952054], [139.450669001, 38.341999279], [139.450695331, 38.341964613], [139.450681777, 38.341952054]]]}}, {"id": "43547", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452224228, 38.336007135], [139.452264578, 38.336023694], [139.452273256, 38.336005333], [139.452224228, 38.336007135]]]}}, {"id": "43548", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443269883, 38.244824559], [139.443240169, 38.244869108], [139.443277471, 38.244861054], [139.443269883, 38.244824559]]]}}, {"id": "43549", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449099274, 38.278745441], [139.449061284, 38.278771054], [139.449111167, 38.278769252], [139.449099274, 38.278745441]]]}}, {"id": "43550", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450434449, 38.339212694], [139.450422309, 38.339240225], [139.450479416, 38.339242586], [139.450434449, 38.339212694]]]}}, {"id": "43551", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45073939, 38.33927], [139.45072725, 38.339297505], [139.450784384, 38.339299865], [139.45073939, 38.33927]]]}}, {"id": "43552", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450443528, 38.339159198], [139.450431414, 38.339186721], [139.450488521, 38.339189054], [139.450443528, 38.339159198]]]}}, {"id": "43553", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450653671, 38.359817279], [139.450622672, 38.359781468], [139.450611971, 38.359812171], [139.450653671, 38.359817279]]]}}, {"id": "43554", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450927497, 38.33851336], [139.450932335, 38.338471865], [139.450903943, 38.338486135], [139.450927497, 38.33851336]]]}}, {"id": "43555", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450921167, 38.338710973], [139.450925966, 38.338669468], [139.450897613, 38.338683748], [139.450921167, 38.338710973]]]}}, {"id": "43556", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450839559, 38.338539387], [139.450844358, 38.338497865], [139.450816005, 38.338512171], [139.450839559, 38.338539387]]]}}, {"id": "43557", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44314214, 38.245005387], [139.443161362, 38.245043892], [139.443185006, 38.245012054], [139.44314214, 38.245005387]]]}}, {"id": "43558", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449839494, 38.311722252], [139.449833671, 38.311685748], [139.449814137, 38.311690838], [139.449839494, 38.311722252]]]}}, {"id": "43559", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44962856, 38.311547505], [139.449677445, 38.311534441], [139.449624721, 38.311527135], [139.44962856, 38.311547505]]]}}, {"id": "43560", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449567302, 38.311363081], [139.4496162, 38.311350054], [139.449563476, 38.311342748], [139.449567302, 38.311363081]]]}}, {"id": "43561", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443007639, 38.256556748], [139.442999079, 38.256587027], [139.443011505, 38.256581306], [139.443007639, 38.256556748]]]}}, {"id": "43562", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442928716, 38.256589721], [139.44292022, 38.25662], [139.442932607, 38.256614279], [139.442928716, 38.256589721]]]}}, {"id": "43563", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450620558, 38.339044333], [139.450665188, 38.339048198], [139.450652387, 38.339022973], [139.450620558, 38.339044333]]]}}, {"id": "43564", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451499831, 38.344021468], [139.451511777, 38.343980586], [139.451492309, 38.343993414], [139.451499831, 38.344021468]]]}}, {"id": "43565", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451136278, 38.350161667], [139.451114306, 38.350189252], [139.451141803, 38.350174973], [139.451136278, 38.350161667]]]}}, {"id": "43566", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451204112, 38.350165333], [139.451182166, 38.350192919], [139.451209637, 38.35017864], [139.451204112, 38.350165333]]]}}, {"id": "43567", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450824228, 38.338683667], [139.450873217, 38.338679054], [139.450839144, 38.338664559], [139.450824228, 38.338683667]]]}}, {"id": "43568", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448333865, 38.277681108], [139.448322802, 38.277723387], [139.448346744, 38.277712667], [139.448333865, 38.277681108]]]}}, {"id": "43569", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450496913, 38.352933775], [139.450468911, 38.352907973], [139.450458418, 38.352924252], [139.450496913, 38.352933775]]]}}, {"id": "43570", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44296, 38.250745333], [139.44296131, 38.250779054], [139.442997613, 38.250759802], [139.44296, 38.250745333]]]}}, {"id": "43571", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450965253, 38.331378694], [139.451007977, 38.331369919], [139.450979274, 38.331359613], [139.450965253, 38.331378694]]]}}, {"id": "43572", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451429079, 38.341467468], [139.451440052, 38.341420973], [139.451408418, 38.341457081], [139.451429079, 38.341467468]]]}}, {"id": "43573", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450155772, 38.311355532], [139.450167639, 38.311307613], [139.450134942, 38.311331775], [139.450155772, 38.311355532]]]}}, {"id": "43574", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450246861, 38.311228252], [139.450258716, 38.311180333], [139.450226031, 38.311204505], [139.450246861, 38.311228252]]]}}, {"id": "43575", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450139053, 38.311236838], [139.450150921, 38.311188946], [139.450118249, 38.311213108], [139.450139053, 38.311236838]]]}}, {"id": "43576", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450739728, 38.341631225], [139.450796978, 38.341642], [139.450803022, 38.341627892], [139.450739728, 38.341631225]]]}}, {"id": "43577", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451026083, 38.331720198], [139.450979805, 38.331729], [139.450997886, 38.331747838], [139.451026083, 38.331720198]]]}}, {"id": "43578", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448853061, 38.275731387], [139.448871388, 38.275769225], [139.448895188, 38.275750054], [139.448853061, 38.275731387]]]}}, {"id": "43579", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449924916, 38.30707736], [139.449925279, 38.307036586], [139.449904864, 38.307045171], [139.449924916, 38.30707736]]]}}, {"id": "43580", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448055032, 38.319257108], [139.44806345, 38.319217667], [139.448042088, 38.319222054], [139.448055032, 38.319257108]]]}}, {"id": "43581", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450913061, 38.351815838], [139.450920804, 38.351862171], [139.450935966, 38.351862054], [139.450913061, 38.351815838]]]}}, {"id": "43582", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451040078, 38.351840802], [139.451047834, 38.351887135], [139.451062996, 38.351887027], [139.451040078, 38.351840802]]]}}, {"id": "43583", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449805058, 38.307849198], [139.449774332, 38.307817108], [139.449776355, 38.307836054], [139.449805058, 38.307849198]]]}}, {"id": "43584", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449980804, 38.307788], [139.44998297, 38.307747919], [139.44996083, 38.307759333], [139.449980804, 38.307788]]]}}, {"id": "43585", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444492529, 38.267066225], [139.444530467, 38.267037108], [139.444472802, 38.267055838], [139.444492529, 38.267066225]]]}}, {"id": "43586", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452231284, 38.336567198], [139.452254034, 38.336531865], [139.452233606, 38.336541171], [139.452231284, 38.336567198]]]}}, {"id": "43587", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450151777, 38.303585613], [139.450154838, 38.303546198], [139.45012939, 38.303578027], [139.450151777, 38.303585613]]]}}, {"id": "43588", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451219611, 38.342409441], [139.451253865, 38.342435171], [139.451259027, 38.342421775], [139.451219611, 38.342409441]]]}}, {"id": "43589", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451160726, 38.342409919], [139.451194968, 38.342435667], [139.451200143, 38.342422252], [139.451160726, 38.342409919]]]}}, {"id": "43590", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441569857, 38.245588613], [139.441589079, 38.245556108], [139.441558807, 38.245557775], [139.441569857, 38.245588613]]]}}, {"id": "43591", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451152503, 38.35107364], [139.451200441, 38.351054973], [139.451145162, 38.351058225], [139.451152503, 38.35107364]]]}}, {"id": "43592", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449500532, 38.355806], [139.449527886, 38.35577736], [139.449491946, 38.355787505], [139.449500532, 38.355806]]]}}, {"id": "43593", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450579468, 38.330683108], [139.450575447, 38.330717586], [139.450602023, 38.330702613], [139.450579468, 38.330683108]]]}}, {"id": "43594", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443748586, 38.253635468], [139.443707886, 38.253588694], [139.443691855, 38.253590225], [139.443748586, 38.253635468]]]}}, {"id": "43595", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450992438, 38.338350865], [139.4510207, 38.338327414], [139.450974228, 38.338322198], [139.450992438, 38.338350865]]]}}, {"id": "43596", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451074384, 38.338408559], [139.451102633, 38.338385108], [139.451056161, 38.338379865], [139.451074384, 38.338408559]]]}}, {"id": "43597", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450859222, 38.330095532], [139.450890726, 38.330117775], [139.450903774, 38.330093081], [139.450859222, 38.330095532]]]}}, {"id": "43598", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449655746, 38.356128775], [139.449708638, 38.35614364], [139.449712633, 38.356130505], [139.449655746, 38.356128775]]]}}, {"id": "43599", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445174747, 38.264789225], [139.44514572, 38.264818279], [139.445181219, 38.264806027], [139.445174747, 38.264789225]]]}}, {"id": "43600", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444387613, 38.267538468], [139.444429364, 38.267528306], [139.444388145, 38.267511054], [139.444387613, 38.267538468]]]}}, {"id": "43601", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443031582, 38.256695559], [139.443010921, 38.256681667], [139.442994332, 38.256709225], [139.443031582, 38.256695559]]]}}, {"id": "43602", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444466329, 38.267564586], [139.44450808, 38.267554387], [139.444466887, 38.267537171], [139.444466329, 38.267564586]]]}}, {"id": "43603", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44450153, 38.267528414], [139.444543281, 38.267518252], [139.444502049, 38.267501], [139.44450153, 38.267528414]]]}}, {"id": "43604", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451023917, 38.32697664], [139.451043217, 38.326952559], [139.451022802, 38.326960468], [139.451023917, 38.32697664]]]}}, {"id": "43605", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450609585, 38.327076306], [139.450628885, 38.327052252], [139.45060847, 38.327060171], [139.450609585, 38.327076306]]]}}, {"id": "43606", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45083022, 38.327033721], [139.450849533, 38.327009667], [139.450829105, 38.327017586], [139.45083022, 38.327033721]]]}}, {"id": "43607", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450912166, 38.327025333], [139.450931479, 38.327001279], [139.450911051, 38.327009198], [139.450912166, 38.327025333]]]}}, {"id": "43608", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450747782, 38.32707236], [139.450767082, 38.327048306], [139.450746667, 38.327056225], [139.450747782, 38.32707236]]]}}, {"id": "43609", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448525863, 38.319154171], [139.448568975, 38.319177], [139.448567912, 38.31916436], [139.448525863, 38.319154171]]]}}, {"id": "43610", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445269883, 38.268190081], [139.445303917, 38.268201748], [139.445288301, 38.268165333], [139.445269883, 38.268190081]]]}}, {"id": "43611", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441730117, 38.245220892], [139.441703359, 38.245232135], [139.441737588, 38.245240892], [139.441730117, 38.245220892]]]}}, {"id": "43612", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441109027, 38.246352225], [139.441116498, 38.246307865], [139.441093502, 38.246322802], [139.441109027, 38.246352225]]]}}, {"id": "43613", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450950117, 38.35107], [139.450920117, 38.351096973], [139.450939805, 38.351101721], [139.450950117, 38.35107]]]}}, {"id": "43614", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450116161, 38.308038027], [139.45010144, 38.308071198], [139.450117173, 38.308045748], [139.450116161, 38.308038027]]]}}, {"id": "43615", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443550441, 38.244293171], [139.443546446, 38.244258748], [139.443514475, 38.244266721], [139.443550441, 38.244293171]]]}}, {"id": "43616", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440998249, 38.24770264], [139.440990726, 38.247671775], [139.440975136, 38.24770636], [139.440998249, 38.24770264]]]}}, {"id": "43617", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441871751, 38.24556236], [139.441889442, 38.245527892], [139.441859689, 38.245542414], [139.441871751, 38.24556236]]]}}, {"id": "43618", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450958781, 38.330138333], [139.450974384, 38.330171252], [139.45098834, 38.330147225], [139.450958781, 38.330138333]]]}}, {"id": "43619", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450434695, 38.353085532], [139.450462049, 38.353062081], [139.450414773, 38.353063198], [139.450434695, 38.353085532]]]}}, {"id": "43620", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45080153, 38.32926836], [139.450818003, 38.329300586], [139.450837367, 38.329280721], [139.45080153, 38.32926836]]]}}, {"id": "43621", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450704449, 38.329347198], [139.450720921, 38.329379387], [139.450740272, 38.329359559], [139.450704449, 38.329347198]]]}}, {"id": "43622", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441245668, 38.248639586], [139.441265888, 38.248660865], [139.441285473, 38.248633532], [139.441245668, 38.248639586]]]}}, {"id": "43623", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450367198, 38.310405865], [139.450322412, 38.310392171], [139.450329857, 38.310415306], [139.450367198, 38.310405865]]]}}, {"id": "43624", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450436719, 38.310403892], [139.450391946, 38.310390198], [139.45039939, 38.310413333], [139.450436719, 38.310403892]]]}}, {"id": "43625", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451406304, 38.33336636], [139.45135703, 38.333349919], [139.451358975, 38.333363252], [139.451406304, 38.33336636]]]}}, {"id": "43626", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451336135, 38.333390135], [139.451286861, 38.333373667], [139.451288807, 38.333387], [139.451336135, 38.333390135]]]}}, {"id": "43627", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450611894, 38.355414613], [139.450625357, 38.355382802], [139.450586667, 38.355396225], [139.450611894, 38.355414613]]]}}, {"id": "43628", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44563406, 38.264250505], [139.445627276, 38.264277973], [139.445652166, 38.264271441], [139.44563406, 38.264250505]]]}}, {"id": "43629", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445290078, 38.264249748], [139.445283307, 38.264277225], [139.445308171, 38.264270694], [139.445290078, 38.264249748]]]}}, {"id": "43630", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451128418, 38.332673586], [139.451142477, 38.332707081], [139.451162192, 38.332687613], [139.451128418, 38.332673586]]]}}, {"id": "43631", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451123359, 38.341029586], [139.451111388, 38.341000865], [139.451098444, 38.341035414], [139.451123359, 38.341029586]]]}}, {"id": "43632", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452052503, 38.336096252], [139.452070026, 38.336140414], [139.452084137, 38.33612764], [139.452052503, 38.336096252]]]}}, {"id": "43633", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4428107, 38.244963441], [139.442836161, 38.245004721], [139.442852918, 38.244991225], [139.4428107, 38.244963441]]]}}, {"id": "43634", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450451362, 38.310822559], [139.450465227, 38.310789387], [139.450446472, 38.310788865], [139.450451362, 38.310822559]]]}}, {"id": "43635", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450231582, 38.310789198], [139.450245422, 38.310756027], [139.450226667, 38.310755468], [139.450231582, 38.310789198]]]}}, {"id": "43636", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450156783, 38.310796802], [139.45017061, 38.310763667], [139.450151894, 38.310763108], [139.450156783, 38.310796802]]]}}, {"id": "43637", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450904228, 38.352652973], [139.450928612, 38.352675279], [139.450935357, 38.352644973], [139.450904228, 38.352652973]]]}}, {"id": "43638", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443211803, 38.245103081], [139.443202387, 38.245134108], [139.443220078, 38.245123414], [139.443211803, 38.245103081]]]}}, {"id": "43639", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451099533, 38.351364135], [139.451116109, 38.351336586], [139.451098366, 38.351343054], [139.451099533, 38.351364135]]]}}, {"id": "43640", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443462335, 38.255046505], [139.443484112, 38.255007667], [139.443461051, 38.255014892], [139.443462335, 38.255046505]]]}}, {"id": "43641", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445253411, 38.267849559], [139.44528489, 38.267869694], [139.445280973, 38.267843721], [139.445253411, 38.267849559]]]}}, {"id": "43642", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445319922, 38.267890505], [139.445351362, 38.26791064], [139.445347471, 38.267884667], [139.445319922, 38.267890505]]]}}, {"id": "43643", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449504449, 38.312163135], [139.449523139, 38.312194306], [139.449532335, 38.31217336], [139.449504449, 38.312163135]]]}}, {"id": "43644", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449533606, 38.356452586], [139.449535227, 38.356479306], [139.449556809, 38.356465586], [139.449533606, 38.356452586]]]}}, {"id": "43645", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449585188, 38.35636364], [139.449586783, 38.356390333], [139.449608366, 38.35637664], [139.449585188, 38.35636364]]]}}, {"id": "43646", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450893554, 38.331802838], [139.450908223, 38.331832252], [139.450930169, 38.33180536], [139.450893554, 38.331802838]]]}}, {"id": "43647", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449042335, 38.27591236], [139.449012802, 38.275928838], [139.449017056, 38.275937468], [139.449042335, 38.27591236]]]}}, {"id": "43648", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452441725, 38.347947225], [139.452476304, 38.347930748], [139.452420052, 38.347929108], [139.452441725, 38.347947225]]]}}, {"id": "43649", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441399364, 38.24615836], [139.441408781, 38.246128027], [139.441381388, 38.246147946], [139.441399364, 38.24615836]]]}}, {"id": "43650", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450999079, 38.343572919], [139.451027912, 38.343593081], [139.451037471, 38.343572613], [139.450999079, 38.343572919]]]}}, {"id": "43651", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45086703, 38.330499441], [139.450853191, 38.330533306], [139.450879805, 38.330522532], [139.45086703, 38.330499441]]]}}, {"id": "43652", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450804527, 38.343360081], [139.450833333, 38.343380225], [139.450842892, 38.343359748], [139.450804527, 38.343360081]]]}}, {"id": "43653", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451042776, 38.343501559], [139.451071582, 38.343521721], [139.451081141, 38.343501252], [139.451042776, 38.343501559]]]}}, {"id": "43654", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443281855, 38.254753973], [139.443312802, 38.254734748], [139.443291414, 38.254736306], [139.443281855, 38.254753973]]]}}, {"id": "43655", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450867134, 38.343441135], [139.45089594, 38.343461279], [139.450905499, 38.343440802], [139.450867134, 38.343441135]]]}}, {"id": "43656", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44311834, 38.254718027], [139.443149274, 38.254698802], [139.443127912, 38.254700387], [139.44311834, 38.254718027]]]}}, {"id": "43657", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450769754, 38.330627748], [139.450807302, 38.330633748], [139.450804501, 38.330622532], [139.450769754, 38.330627748]]]}}, {"id": "43658", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443722724, 38.255223441], [139.443684475, 38.25522936], [139.443688171, 38.255239198], [139.443722724, 38.255223441]]]}}, {"id": "43659", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450926978, 38.327781414], [139.450892218, 38.327785198], [139.450921829, 38.327799027], [139.450926978, 38.327781414]]]}}, {"id": "43660", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45068275, 38.327727865], [139.450648029, 38.327731667], [139.450677639, 38.327745468], [139.45068275, 38.327727865]]]}}, {"id": "43661", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443044306, 38.253990171], [139.443048392, 38.253960586], [139.443020117, 38.253980505], [139.443044306, 38.253990171]]]}}, {"id": "43662", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448549144, 38.318226667], [139.448563865, 38.318192802], [139.448543385, 38.318196505], [139.448549144, 38.318226667]]]}}, {"id": "43663", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450576693, 38.353480559], [139.450578949, 38.353446973], [139.450553476, 38.353456802], [139.450576693, 38.353480559]]]}}, {"id": "43664", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45189192, 38.335520198], [139.451865279, 38.335529559], [139.451921582, 38.335538946], [139.45189192, 38.335520198]]]}}, {"id": "43665", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449445551, 38.311095387], [139.449449637, 38.311066532], [139.449433696, 38.311075108], [139.449445551, 38.311095387]]]}}, {"id": "43666", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450741025, 38.331753414], [139.450744163, 38.331789252], [139.450760895, 38.331772252], [139.450741025, 38.331753414]]]}}, {"id": "43667", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443639948, 38.253649505], [139.44366192, 38.253624694], [139.443630804, 38.253630586], [139.443639948, 38.253649505]]]}}, {"id": "43668", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44127345, 38.247293252], [139.441281894, 38.247325532], [139.441293969, 38.247295919], [139.44127345, 38.247293252]]]}}, {"id": "43669", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441250169, 38.246728441], [139.441214721, 38.246744919], [139.441250272, 38.246736892], [139.441250169, 38.246728441]]]}}, {"id": "43670", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443018003, 38.251187279], [139.442993385, 38.251214198], [139.443022827, 38.251216775], [139.443018003, 38.251187279]]]}}, {"id": "43671", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443106109, 38.251181667], [139.44308153, 38.251208559], [139.443110947, 38.251211135], [139.443106109, 38.251181667]]]}}, {"id": "43672", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445165914, 38.264174721], [139.445188521, 38.264201252], [139.445207004, 38.264182802], [139.445165914, 38.264174721]]]}}, {"id": "43673", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44554428, 38.264283441], [139.445566887, 38.264309973], [139.445585383, 38.264291559], [139.44554428, 38.264283441]]]}}, {"id": "43674", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445196498, 38.264336171], [139.445219144, 38.264362694], [139.445237613, 38.264344279], [139.445196498, 38.264336171]]]}}, {"id": "43675", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44219428, 38.249029667], [139.44220275, 38.249064775], [139.44222131, 38.249054054], [139.44219428, 38.249029667]]]}}, {"id": "43676", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449299728, 38.311893171], [139.449299274, 38.311859441], [139.449280856, 38.311882775], [139.449299728, 38.311893171]]]}}, {"id": "43677", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441558495, 38.245205838], [139.441546355, 38.24523264], [139.441580195, 38.245229586], [139.441558495, 38.245205838]]]}}, {"id": "43678", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443652918, 38.252364586], [139.443687951, 38.252384667], [139.443696667, 38.252371252], [139.443652918, 38.252364586]]]}}, {"id": "43679", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442162944, 38.245068802], [139.442127419, 38.245069468], [139.442148444, 38.245084], [139.442162944, 38.245068802]]]}}, {"id": "43680", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451044864, 38.342800225], [139.451041777, 38.342769306], [139.451027523, 38.342771532], [139.451044864, 38.342800225]]]}}, {"id": "43681", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451306835, 38.342775586], [139.451303748, 38.342744667], [139.451289494, 38.342746892], [139.451306835, 38.342775586]]]}}, {"id": "43682", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451404553, 38.333210586], [139.451403256, 38.333247135], [139.451417393, 38.333237198], [139.451404553, 38.333210586]]]}}, {"id": "43683", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443036083, 38.250941135], [139.4430338, 38.250974198], [139.443055058, 38.250963468], [139.443036083, 38.250941135]]]}}, {"id": "43684", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443016161, 38.251001252], [139.443013943, 38.251034306], [139.443035188, 38.251023613], [139.443016161, 38.251001252]]]}}, {"id": "43685", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451060143, 38.327665027], [139.45106144, 38.32769736], [139.451079974, 38.327681054], [139.451060143, 38.327665027]]]}}, {"id": "43686", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451017497, 38.328020414], [139.451018807, 38.328052748], [139.451037328, 38.328036414], [139.451017497, 38.328020414]]]}}, {"id": "43687", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450870999, 38.327798748], [139.450872309, 38.327831081], [139.45089083, 38.327814748], [139.450870999, 38.327798748]]]}}, {"id": "43688", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450872529, 38.327573748], [139.450873839, 38.327606081], [139.450892361, 38.327589775], [139.450872529, 38.327573748]]]}}, {"id": "43689", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450803165, 38.327589775], [139.450804475, 38.327622108], [139.450822996, 38.327605775], [139.450803165, 38.327589775]]]}}, {"id": "43690", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451115058, 38.328047054], [139.451141505, 38.32802364], [139.451126304, 38.328019532], [139.451115058, 38.328047054]]]}}, {"id": "43691", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441072244, 38.246269892], [139.441042698, 38.246258892], [139.441068003, 38.246286108], [139.441072244, 38.246269892]]]}}, {"id": "43692", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450436252, 38.32743036], [139.450437588, 38.327462694], [139.450456083, 38.32744636], [139.450436252, 38.32743036]]]}}, {"id": "43693", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450808495, 38.32779364], [139.450809805, 38.327825946], [139.450828301, 38.32780964], [139.450808495, 38.32779364]]]}}, {"id": "43694", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450771193, 38.327738387], [139.450772529, 38.327770721], [139.450791025, 38.327754414], [139.450771193, 38.327738387]]]}}, {"id": "43695", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450917977, 38.328945279], [139.450953411, 38.328927414], [139.450915966, 38.328929108], [139.450917977, 38.328945279]]]}}, {"id": "43696", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441347756, 38.246609802], [139.44134275, 38.246635135], [139.441360467, 38.246627279], [139.441347756, 38.246609802]]]}}, {"id": "43697", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441072114, 38.247124532], [139.44112297, 38.247129027], [139.441124643, 38.247119865], [139.441072114, 38.247124532]]]}}, {"id": "43698", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444012672, 38.254626027], [139.44399808, 38.254600838], [139.443982412, 38.254629081], [139.444012672, 38.254626027]]]}}, {"id": "43699", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443216939, 38.255029946], [139.443176005, 38.255035198], [139.443218833, 38.25503836], [139.443216939, 38.255029946]]]}}, {"id": "43700", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441128911, 38.246875468], [139.441099416, 38.246866559], [139.441111505, 38.246907946], [139.441128911, 38.246875468]]]}}, {"id": "43701", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450458197, 38.323993667], [139.450419079, 38.324003838], [139.450454838, 38.324008468], [139.450458197, 38.323993667]]]}}, {"id": "43702", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450086861, 38.323969973], [139.450125966, 38.323959838], [139.450090246, 38.323957306], [139.450086861, 38.323969973]]]}}, {"id": "43703", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443075499, 38.256337387], [139.443105253, 38.256363171], [139.443110467, 38.256353279], [139.443075499, 38.256337387]]]}}, {"id": "43704", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450752477, 38.331648892], [139.450771505, 38.33167264], [139.450769442, 38.331650135], [139.450752477, 38.331648892]]]}}, {"id": "43705", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450762776, 38.326908748], [139.450744423, 38.326937027], [139.450767367, 38.326917865], [139.450762776, 38.326908748]]]}}, {"id": "43706", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450735136, 38.330890198], [139.450723917, 38.330917694], [139.450745227, 38.330910468], [139.450735136, 38.330890198]]]}}, {"id": "43707", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450742088, 38.331445721], [139.450712866, 38.331462135], [139.450743995, 38.331456946], [139.450742088, 38.331445721]]]}}, {"id": "43708", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445507445, 38.265080306], [139.445534475, 38.265101892], [139.445545006, 38.265089135], [139.445507445, 38.265080306]]]}}, {"id": "43709", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450974384, 38.342932468], [139.45098834, 38.342907054], [139.450971505, 38.342916333], [139.450974384, 38.342932468]]]}}, {"id": "43710", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450807328, 38.342845946], [139.450821284, 38.342820532], [139.450804449, 38.342829802], [139.450807328, 38.342845946]]]}}, {"id": "43711", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451337393, 38.333004586], [139.451345966, 38.332977775], [139.451316615, 38.332985775], [139.451337393, 38.333004586]]]}}, {"id": "43712", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441048392, 38.24745964], [139.441008638, 38.247486667], [139.441013165, 38.247492279], [139.441048392, 38.24745964]]]}}, {"id": "43713", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440259494, 38.246863252], [139.440282192, 38.246895414], [139.440288301, 38.246884838], [139.440259494, 38.246863252]]]}}, {"id": "43714", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442008301, 38.248978441], [139.442067198, 38.248985], [139.442068003, 38.248978667], [139.442008301, 38.248978441]]]}}, {"id": "43715", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442885084, 38.245011973], [139.442886978, 38.245033613], [139.442921336, 38.245029946], [139.442885084, 38.245011973]]]}}, {"id": "43716", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450986135, 38.33103464], [139.451009585, 38.331052748], [139.451026304, 38.331035721], [139.450986135, 38.33103464]]]}}, {"id": "43717", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450974812, 38.328590748], [139.450975279, 38.328559108], [139.450956693, 38.328569108], [139.450974812, 38.328590748]]]}}, {"id": "43718", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441455084, 38.246103333], [139.441473191, 38.246125694], [139.441489974, 38.246113613], [139.441455084, 38.246103333]]]}}, {"id": "43719", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445618392, 38.268278306], [139.445640337, 38.268254225], [139.445607393, 38.268255198], [139.445618392, 38.268278306]]]}}, {"id": "43720", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44569406, 38.268203892], [139.445716031, 38.268179802], [139.445683087, 38.268180775], [139.44569406, 38.268203892]]]}}, {"id": "43721", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445633113, 38.268522135], [139.445655084, 38.268498054], [139.44562214, 38.268499027], [139.445633113, 38.268522135]]]}}, {"id": "43722", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445578444, 38.268358775], [139.445600389, 38.268334694], [139.445567445, 38.268335667], [139.445578444, 38.268358775]]]}}, {"id": "43723", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442283995, 38.249408], [139.442282555, 38.249434721], [139.442302944, 38.249426135], [139.442283995, 38.249408]]]}}, {"id": "43724", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442538664, 38.249327225], [139.442537224, 38.249353946], [139.442557613, 38.249345333], [139.442538664, 38.249327225]]]}}, {"id": "43725", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44225655, 38.249212775], [139.44225511, 38.249239505], [139.442275499, 38.249230919], [139.44225655, 38.249212775]]]}}, {"id": "43726", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.440714669, 38.247598586], [139.440677173, 38.247593279], [139.440680026, 38.247608027], [139.440714669, 38.247598586]]]}}, {"id": "43727", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442945811, 38.245346892], [139.44292834, 38.245374468], [139.442955888, 38.245369306], [139.442945811, 38.245346892]]]}}, {"id": "43728", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450742529, 38.331275838], [139.450743061, 38.331247721], [139.450730636, 38.331252748], [139.450742529, 38.331275838]]]}}, {"id": "43729", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442933022, 38.245039171], [139.442960143, 38.245059108], [139.442952892, 38.245038387], [139.442933022, 38.245039171]]]}}, {"id": "43730", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450532607, 38.327915171], [139.450559494, 38.327887532], [139.45053083, 38.327893721], [139.450532607, 38.327915171]]]}}, {"id": "43731", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449609883, 38.312220667], [139.449575136, 38.31222236], [139.449587756, 38.312232802], [139.449609883, 38.312220667]]]}}, {"id": "43732", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44303655, 38.245200586], [139.443045136, 38.245177306], [139.443025551, 38.245177468], [139.44303655, 38.245200586]]]}}, {"id": "43733", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443325837, 38.255033559], [139.443294423, 38.255015532], [139.443283891, 38.255027559], [139.443325837, 38.255033559]]]}}, {"id": "43734", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.452230506, 38.336131387], [139.452213774, 38.336149775], [139.452256524, 38.336142414], [139.452230506, 38.336131387]]]}}, {"id": "43735", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441187224, 38.246237306], [139.441202996, 38.246216081], [139.441163891, 38.246224838], [139.441187224, 38.246237306]]]}}, {"id": "43736", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444153359, 38.244707441], [139.444146809, 38.244736919], [139.444164501, 38.24472764], [139.444153359, 38.244707441]]]}}, {"id": "43737", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451964112, 38.335584306], [139.45192489, 38.335586721], [139.451929494, 38.33559864], [139.451964112, 38.335584306]]]}}, {"id": "43738", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441050726, 38.247539946], [139.441059274, 38.247512441], [139.441038223, 38.247537225], [139.441050726, 38.247539946]]]}}, {"id": "43739", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4418693, 38.24879536], [139.441839689, 38.248779414], [139.441831894, 38.248794252], [139.4418693, 38.24879536]]]}}, {"id": "43740", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450447613, 38.353395838], [139.450455331, 38.353372559], [139.450425058, 38.353376333], [139.450447613, 38.353395838]]]}}, {"id": "43741", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443018444, 38.245247135], [139.443014501, 38.245219748], [139.442995888, 38.245224802], [139.443018444, 38.245247135]]]}}, {"id": "43742", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451242218, 38.342582054], [139.451211751, 38.342572468], [139.45123703, 38.342594775], [139.451242218, 38.342582054]]]}}, {"id": "43743", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450925058, 38.339477135], [139.450944449, 38.339458], [139.450910467, 38.339454054], [139.450925058, 38.339477135]]]}}, {"id": "43744", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451115084, 38.339680892], [139.451134475, 38.339661748], [139.451100532, 38.339657802], [139.451115084, 38.339680892]]]}}, {"id": "43745", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441436693, 38.245311775], [139.441448612, 38.245337], [139.441461725, 38.245317919], [139.441436693, 38.245311775]]]}}, {"id": "43746", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442128029, 38.249144108], [139.442140921, 38.249174946], [139.442146744, 38.249144667], [139.442128029, 38.249144108]]]}}, {"id": "43747", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44152786, 38.246087441], [139.441510726, 38.246071414], [139.44151022, 38.246103054], [139.44152786, 38.246087441]]]}}, {"id": "43748", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44857358, 38.319223721], [139.448572335, 38.319197], [139.448558301, 38.319215414], [139.44857358, 38.319223721]]]}}, {"id": "43749", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442791141, 38.250772532], [139.442789689, 38.250801135], [139.442805811, 38.250783838], [139.442791141, 38.250772532]]]}}, {"id": "43750", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448301673, 38.277588946], [139.448317328, 38.277561387], [139.448289079, 38.277582], [139.448301673, 38.277588946]]]}}, {"id": "43751", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444422607, 38.243914721], [139.444405006, 38.243930333], [139.444435331, 38.243935], [139.444422607, 38.243914721]]]}}, {"id": "43752", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441608145, 38.245102279], [139.44163153, 38.245118946], [139.441641115, 38.245102694], [139.441608145, 38.245102279]]]}}, {"id": "43753", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448099857, 38.277272171], [139.448123865, 38.27726636], [139.448111167, 38.277251694], [139.448099857, 38.277272171]]]}}, {"id": "43754", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44554275, 38.265574559], [139.445564423, 38.265596892], [139.445566135, 38.265591946], [139.44554275, 38.265574559]]]}}, {"id": "43755", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44560856, 38.265425027], [139.44563022, 38.265447333], [139.445631946, 38.265442414], [139.44560856, 38.265425027]]]}}, {"id": "43756", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445646472, 38.265395198], [139.445668171, 38.265417505], [139.445669857, 38.265412586], [139.445646472, 38.265395198]]]}}, {"id": "43757", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451402581, 38.341419892], [139.451425473, 38.341397198], [139.451396135, 38.341404468], [139.451402581, 38.341419892]]]}}, {"id": "43758", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441150973, 38.246457919], [139.441185837, 38.24646536], [139.441154423, 38.246449468], [139.441150973, 38.246457919]]]}}, {"id": "43759", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447993645, 38.282704748], [139.448004864, 38.282725468], [139.448020778, 38.282710748], [139.447993645, 38.282704748]]]}}, {"id": "43760", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445318444, 38.268222721], [139.445346226, 38.268233748], [139.445343307, 38.268216198], [139.445318444, 38.268222721]]]}}, {"id": "43761", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443415694, 38.251610225], [139.443425279, 38.251591865], [139.443404838, 38.251596225], [139.443415694, 38.251610225]]]}}, {"id": "43762", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443295058, 38.245075414], [139.443310973, 38.245066865], [139.443276913, 38.245050252], [139.443295058, 38.245075414]]]}}, {"id": "43763", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443794112, 38.244149838], [139.443824475, 38.244154505], [139.443824254, 38.24413764], [139.443794112, 38.244149838]]]}}, {"id": "43764", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442067224, 38.248802892], [139.442073696, 38.248823946], [139.442088612, 38.248804135], [139.442067224, 38.248802892]]]}}, {"id": "43765", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441102114, 38.247475441], [139.441076083, 38.247459468], [139.441092477, 38.247487468], [139.441102114, 38.247475441]]]}}, {"id": "43766", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442198716, 38.245127694], [139.442175551, 38.245121225], [139.442178418, 38.245134865], [139.442198716, 38.245127694]]]}}, {"id": "43767", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451267756, 38.34317036], [139.451268054, 38.343143973], [139.451258197, 38.343153946], [139.451267756, 38.34317036]]]}}, {"id": "43768", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451106161, 38.344193586], [139.451118392, 38.344173802], [139.451103333, 38.344180973], [139.451106161, 38.344193586]]]}}, {"id": "43769", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442973995, 38.245187721], [139.442998275, 38.245203694], [139.443000752, 38.245187505], [139.442973995, 38.245187721]]]}}, {"id": "43770", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443563061, 38.253559414], [139.443577588, 38.253579694], [139.443588145, 38.253569054], [139.443563061, 38.253559414]]]}}, {"id": "43771", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44268489, 38.245237559], [139.442682866, 38.245212667], [139.442665616, 38.245223973], [139.44268489, 38.245237559]]]}}, {"id": "43772", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44225808, 38.249331586], [139.44223642, 38.249309973], [139.442226744, 38.249319892], [139.44225808, 38.249331586]]]}}, {"id": "43773", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443441245, 38.245065892], [139.443447276, 38.24505036], [139.443437562, 38.245056081], [139.443441245, 38.245065892]]]}}, {"id": "43774", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442108885, 38.249350865], [139.44213834, 38.249352748], [139.442104254, 38.249335441], [139.442108885, 38.249350865]]]}}, {"id": "43775", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.449010558, 38.275861748], [139.449032218, 38.275873838], [139.449036109, 38.275855775], [139.449010558, 38.275861748]]]}}, {"id": "43776", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450992166, 38.331582505], [139.451001388, 38.331607027], [139.451008275, 38.331587306], [139.450992166, 38.331582505]]]}}, {"id": "43777", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443644086, 38.255056694], [139.443659027, 38.255040414], [139.443638521, 38.255040586], [139.443644086, 38.255056694]]]}}, {"id": "43778", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443071582, 38.254688171], [139.443094916, 38.254699225], [139.443091025, 38.254676054], [139.443071582, 38.254688171]]]}}, {"id": "43779", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442890311, 38.245340505], [139.442890973, 38.245321505], [139.442862503, 38.245323838], [139.442890311, 38.245340505]]]}}, {"id": "43780", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448984773, 38.278526414], [139.4489907, 38.278501748], [139.448979274, 38.278513802], [139.448984773, 38.278526414]]]}}, {"id": "43781", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.447989559, 38.282991414], [139.447994643, 38.282971], [139.447977886, 38.282986586], [139.447989559, 38.282991414]]]}}, {"id": "43782", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444072438, 38.244750252], [139.444085253, 38.244772], [139.444091634, 38.244755306], [139.444072438, 38.244750252]]]}}, {"id": "43783", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442229611, 38.249006198], [139.442205577, 38.249009919], [139.442222581, 38.249013279], [139.442229611, 38.249006198]]]}}, {"id": "43784", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443053554, 38.251246586], [139.443064527, 38.251266171], [139.443075914, 38.251252027], [139.443053554, 38.251246586]]]}}, {"id": "43785", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443097497, 38.251267892], [139.443108444, 38.251287468], [139.443119857, 38.251273333], [139.443097497, 38.251267892]]]}}, {"id": "43786", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44303642, 38.251271838], [139.443058859, 38.251283586], [139.443049754, 38.251268198], [139.44303642, 38.251271838]]]}}, {"id": "43787", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443142218, 38.251058892], [139.443135642, 38.251033667], [139.443122387, 38.251041505], [139.443142218, 38.251058892]]]}}, {"id": "43788", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450851388, 38.328308171], [139.450871245, 38.328325586], [139.450875616, 38.328317802], [139.450851388, 38.328308171]]]}}, {"id": "43789", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450889689, 38.328234721], [139.450900143, 38.328214973], [139.450887691, 38.328217892], [139.450889689, 38.328234721]]]}}, {"id": "43790", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443618833, 38.255183505], [139.443591388, 38.255197081], [139.443617224, 38.255196865], [139.443618833, 38.255183505]]]}}, {"id": "43791", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44373131, 38.252433532], [139.44374, 38.252415198], [139.443729364, 38.252420892], [139.44373131, 38.252433532]]]}}, {"id": "43792", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443655162, 38.252261919], [139.443663839, 38.252243559], [139.443653191, 38.252249279], [139.443655162, 38.252261919]]]}}, {"id": "43793", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450986887, 38.341076748], [139.450985914, 38.341052919], [139.450977004, 38.341076135], [139.450986887, 38.341076748]]]}}, {"id": "43794", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442794449, 38.250889775], [139.442814501, 38.250896748], [139.442807108, 38.250886802], [139.442794449, 38.250889775]]]}}, {"id": "43795", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443741946, 38.244123748], [139.443760467, 38.244108135], [139.443742776, 38.244118108], [139.443741946, 38.244123748]]]}}, {"id": "43796", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45143725, 38.333355108], [139.451462218, 38.333353505], [139.451446913, 38.333342387], [139.45143725, 38.333355108]]]}}, {"id": "43797", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44823808, 38.277464892], [139.448258664, 38.27747036], [139.44824869, 38.277457775], [139.44823808, 38.277464892]]]}}, {"id": "43798", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441229611, 38.247210667], [139.441234332, 38.247230306], [139.441242309, 38.247226721], [139.441229611, 38.247210667]]]}}, {"id": "43799", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441329754, 38.247306865], [139.441347808, 38.247325], [139.441355694, 38.247315081], [139.441329754, 38.247306865]]]}}, {"id": "43800", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441281141, 38.247267892], [139.441276446, 38.247248252], [139.441263087, 38.247249748], [139.441281141, 38.247267892]]]}}, {"id": "43801", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441238638, 38.247149414], [139.441256693, 38.247167559], [139.441264578, 38.24715764], [139.441238638, 38.247149414]]]}}, {"id": "43802", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441423502, 38.247320865], [139.441441556, 38.247339], [139.441449442, 38.247329108], [139.441423502, 38.247320865]]]}}, {"id": "43803", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441205162, 38.247179225], [139.441223217, 38.24719736], [139.441231115, 38.247187441], [139.441205162, 38.247179225]]]}}, {"id": "43804", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441377302, 38.247331081], [139.441395357, 38.247349225], [139.441403217, 38.247339306], [139.441377302, 38.247331081]]]}}, {"id": "43805", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442681556, 38.251507306], [139.442703722, 38.251497973], [139.442695551, 38.251486802], [139.442681556, 38.251507306]]]}}, {"id": "43806", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448430947, 38.282148559], [139.448429611, 38.282130919], [139.44842345, 38.282143613], [139.448430947, 38.282148559]]]}}, {"id": "43807", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448462529, 38.282052081], [139.448461193, 38.282034441], [139.448455032, 38.282047171], [139.448462529, 38.282052081]]]}}, {"id": "43808", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442701051, 38.251208108], [139.442692776, 38.251188505], [139.44268939, 38.251201171], [139.442701051, 38.251208108]]]}}, {"id": "43809", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443752244, 38.255834306], [139.443739494, 38.255813306], [139.443726252, 38.255822559], [139.443752244, 38.255834306]]]}}, {"id": "43810", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.441969364, 38.249378], [139.441985305, 38.249371559], [139.441971946, 38.249371667], [139.441969364, 38.249378]]]}}, {"id": "43811", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.444096135, 38.244746171], [139.44409655, 38.244726892], [139.44408703, 38.244730892], [139.444096135, 38.244746171]]]}}, {"id": "43812", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.451079974, 38.342298667], [139.451089637, 38.34228664], [139.451064669, 38.342287532], [139.451079974, 38.342298667]]]}}, {"id": "43813", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450893696, 38.342447802], [139.450903333, 38.342435775], [139.450878366, 38.342436694], [139.450893696, 38.342447802]]]}}, {"id": "43814", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442742244, 38.250513054], [139.442762866, 38.250520613], [139.442762698, 38.250507252], [139.442742244, 38.250513054]]]}}, {"id": "43815", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44296939, 38.250715081], [139.442989974, 38.250722667], [139.442989805, 38.250709306], [139.44296939, 38.250715081]]]}}, {"id": "43816", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442916887, 38.250720441], [139.442937471, 38.250728], [139.442937302, 38.25071464], [139.442916887, 38.250720441]]]}}, {"id": "43817", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443413774, 38.251667171], [139.443398444, 38.25165464], [139.44339144, 38.251663135], [139.443413774, 38.251667171]]]}}, {"id": "43818", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443456161, 38.251638], [139.443440856, 38.251625468], [139.443433839, 38.251633973], [139.443456161, 38.251638]]]}}, {"id": "43819", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44299786, 38.250835721], [139.443013554, 38.250833892], [139.443001997, 38.250818135], [139.44299786, 38.250835721]]]}}, {"id": "43820", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443016304, 38.250892054], [139.443031997, 38.250890198], [139.443020441, 38.250874441], [139.443016304, 38.250892054]]]}}, {"id": "43821", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.442967756, 38.250846441], [139.44298345, 38.250844613], [139.442971894, 38.250828865], [139.442967756, 38.250846441]]]}}, {"id": "43822", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.4484262, 38.277856973], [139.44843978, 38.277869081], [139.448437082, 38.277856892], [139.4484262, 38.277856973]]]}}, {"id": "43823", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44851572, 38.278024279], [139.4485293, 38.278036387], [139.448526615, 38.278024198], [139.44851572, 38.278024279]]]}}, {"id": "43824", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448451855, 38.282091892], [139.448461777, 38.282079171], [139.448454721, 38.282082441], [139.448451855, 38.282091892]]]}}, {"id": "43825", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450797588, 38.338602532], [139.450777977, 38.338605505], [139.450789663, 38.338611027], [139.450797588, 38.338602532]]]}}, {"id": "43826", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450901946, 38.338738775], [139.450882361, 38.338741748], [139.450894034, 38.338747279], [139.450901946, 38.338738775]]]}}, {"id": "43827", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.45148214, 38.333375838], [139.451461699, 38.333380946], [139.451480441, 38.333382892], [139.45148214, 38.333375838]]]}}, {"id": "43828", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448019637, 38.282670333], [139.44801153, 38.282656838], [139.448005006, 38.282662802], [139.448019637, 38.282670333]]]}}, {"id": "43829", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44802939, 38.282760252], [139.448039364, 38.282748], [139.448024034, 38.282753333], [139.44802939, 38.282760252]]]}}, {"id": "43830", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448044773, 38.282665694], [139.448054747, 38.282653441], [139.44803939, 38.282658775], [139.448044773, 38.282665694]]]}}, {"id": "43831", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448962866, 38.275955946], [139.448973645, 38.275942505], [139.44896406, 38.275942586], [139.448962866, 38.275955946]]]}}, {"id": "43832", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44800214, 38.282938946], [139.448017588, 38.282944027], [139.448009144, 38.282933694], [139.44800214, 38.282938946]]]}}, {"id": "43833", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448295694, 38.282256748], [139.448281051, 38.282268171], [139.448305642, 38.282260135], [139.448295694, 38.282256748]]]}}, {"id": "43834", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443663217, 38.244156559], [139.443658586, 38.244141135], [139.443648003, 38.244148946], [139.443663217, 38.244156559]]]}}, {"id": "43835", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.450579442, 38.355537468], [139.450590415, 38.355525694], [139.450575642, 38.355528721], [139.450579442, 38.355537468]]]}}, {"id": "43836", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448010389, 38.282830721], [139.448009027, 38.282816081], [139.448001362, 38.282824892], [139.448010389, 38.282830721]]]}}, {"id": "43837", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443024617, 38.251320441], [139.443039468, 38.251311468], [139.443023917, 38.251314559], [139.443024617, 38.251320441]]]}}, {"id": "43838", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44810022, 38.282490441], [139.448103502, 38.282501802], [139.448112412, 38.282494802], [139.44810022, 38.282490441]]]}}, {"id": "43839", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448169805, 38.282335802], [139.448166835, 38.282348225], [139.448175746, 38.282341225], [139.448169805, 38.282335802]]]}}, {"id": "43840", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448203502, 38.282336838], [139.448206783, 38.282348198], [139.448215694, 38.282341171], [139.448203502, 38.282336838]]]}}, {"id": "43841", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448141479, 38.282439468], [139.448144747, 38.282450838], [139.448153671, 38.282443838], [139.448141479, 38.282439468]]]}}, {"id": "43842", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448194034, 38.282281198], [139.448197302, 38.282292559], [139.448206226, 38.282285559], [139.448194034, 38.282281198]]]}}, {"id": "43843", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448170947, 38.282374559], [139.448174228, 38.282385919], [139.448183139, 38.282378919], [139.448170947, 38.282374559]]]}}, {"id": "43844", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448227367, 38.282300252], [139.448230636, 38.282311613], [139.448239559, 38.282304613], [139.448227367, 38.282300252]]]}}, {"id": "43845", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443027134, 38.250920892], [139.443030143, 38.250909054], [139.443023087, 38.250914721], [139.443027134, 38.250920892]]]}}, {"id": "43846", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.443039585, 38.250855586], [139.443042581, 38.250843748], [139.443035525, 38.250849441], [139.443039585, 38.250855586]]]}}, {"id": "43847", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448008949, 38.282906279], [139.447994527, 38.282902748], [139.447999222, 38.282908586], [139.448008949, 38.282906279]]]}}, {"id": "43848", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "村上市", "N03_005": null, "N03_007": "15212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.448413061, 38.282090748], [139.44841144, 38.282081919], [139.4484093, 38.282088694], [139.448413061, 38.282090748]]]}}, {"id": "43849", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787376809, 37.658989081], [138.803855966, 37.679367721], [138.852489637, 37.673556387], [138.838661245, 37.658761667], [138.843849027, 37.655983613], [138.869523022, 37.672629171], [138.867505577, 37.709341333], [138.92663655, 37.731861865], [138.946256239, 37.700726604], [138.955837899, 37.703147694], [138.963537626, 37.709084486], [138.965863217, 37.708666514], [138.959663061, 37.690682198], [138.974300026, 37.68188164], [138.950401284, 37.652665], [138.920740363, 37.655438892], [138.932709248, 37.631010865], [138.831093696, 37.593670667], [138.837509689, 37.618194532], [138.822923969, 37.64526], [138.808100921, 37.63668636], [138.787376809, 37.658989081]], [[138.954275499, 37.702489036], [138.954210571, 37.702436216], [138.954279287, 37.702442207], [138.954275499, 37.702489036]], [[138.954753956, 37.702538676], [138.954717523, 37.702651306], [138.954692555, 37.702544739], [138.954753956, 37.702538676]], [[138.955232866, 37.702965459], [138.955287536, 37.702890883], [138.955281427, 37.702974721], [138.955232866, 37.702965459]]]}}, {"id": "43850", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.96355716, 37.692383784], [138.965534838, 37.694711523], [138.965863878, 37.692606523], [138.96355716, 37.692383784]]]}}, {"id": "43851", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825890726, 37.624654081], [138.827588573, 37.625134559], [138.828311933, 37.624005757], [138.825890726, 37.624654081]]]}}, {"id": "43852", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.830028586, 37.618619505], [138.830819689, 37.619881441], [138.83132275, 37.618245333], [138.830028586, 37.618619505]]]}}, {"id": "43853", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825435966, 37.626832892], [138.827691997, 37.625264874], [138.825129792, 37.626340477], [138.825435966, 37.626832892]]]}}, {"id": "43854", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "燕市", "N03_005": null, "N03_007": "15213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.828867471, 37.618997838], [138.829009416, 37.618099775], [138.828424137, 37.618681441], [138.828867471, 37.618997838]]]}}, {"id": "43855", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.762444812, 36.766155135], [137.711298418, 36.944087613], [137.666506109, 36.950239027], [137.634984747, 36.979797946], [137.912194449, 37.060782919], [138.072662944, 37.145369387], [138.107836939, 36.946878108], [138.013737951, 36.904020721], [137.86647358, 36.915302721], [137.876522412, 36.86639736], [137.83097511, 36.808013], [137.762444812, 36.766155135]]]}}, {"id": "43856", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.849821634, 37.052212721], [137.845119442, 37.050625667], [137.844986304, 37.050883838], [137.849821634, 37.052212721]]]}}, {"id": "43857", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.993040117, 37.108830532], [137.99256939, 37.109419441], [137.993553995, 37.110593135], [137.993040117, 37.108830532]]]}}, {"id": "43858", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.048203696, 37.137228838], [138.048808521, 37.137691198], [138.048085331, 37.135550775], [138.048203696, 37.137228838]]]}}, {"id": "43859", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.050904527, 37.135167441], [138.050730506, 37.135120946], [138.050394112, 37.135622505], [138.050904527, 37.135167441]]]}}, {"id": "43860", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.929335499, 37.072927838], [137.93032083, 37.074379802], [137.930541894, 37.074473865], [137.929335499, 37.072927838]]]}}, {"id": "43861", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.993722633, 37.112118559], [137.994125966, 37.112462441], [137.993834306, 37.111937441], [137.993722633, 37.112118559]]]}}, {"id": "43862", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.015567134, 37.114959946], [138.01588214, 37.115261333], [138.015785473, 37.114943838], [138.015567134, 37.114959946]]]}}, {"id": "43863", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.005164112, 37.115377279], [138.005676498, 37.11537464], [138.005147108, 37.115297081], [138.005164112, 37.115377279]]]}}, {"id": "43864", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.001756498, 37.113757748], [138.002108911, 37.113639081], [138.001875162, 37.113514171], [138.001756498, 37.113757748]]]}}, {"id": "43865", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.004166355, 37.114714775], [138.004224423, 37.11493664], [138.004472555, 37.114902081], [138.004166355, 37.114714775]]]}}, {"id": "43866", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.663123139, 36.987020919], [137.663352309, 36.987214252], [137.663385642, 36.987003414], [137.663123139, 36.987020919]]]}}, {"id": "43867", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.686212387, 36.99219336], [137.686135447, 36.991951414], [137.686002114, 36.99210364], [137.686212387, 36.99219336]]]}}, {"id": "43868", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.707841051, 36.998475586], [137.707613839, 36.998309468], [137.707641051, 36.998487252], [137.707841051, 36.998475586]]]}}, {"id": "43869", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.006485914, 37.115408775], [138.006789079, 37.115547333], [138.006801634, 37.115443775], [138.006485914, 37.115408775]]]}}, {"id": "43870", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.734781051, 37.006885306], [137.735071051, 37.006897802], [137.734927717, 37.006735306], [137.734781051, 37.006885306]]]}}, {"id": "43871", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.734101051, 37.006919468], [137.733871051, 37.006922532], [137.733924384, 37.007116414], [137.734101051, 37.006919468]]]}}, {"id": "43872", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.678830143, 36.991372838], [137.678971803, 36.991198946], [137.678802918, 36.991216721], [137.678830143, 36.991372838]]]}}, {"id": "43873", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.675695136, 36.989007838], [137.6759493, 36.989021441], [137.675893191, 36.988955054], [137.675695136, 36.989007838]]]}}, {"id": "43874", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.001217393, 37.113651667], [138.001014747, 37.113828279], [138.001343748, 37.113734468], [138.001217393, 37.113651667]]]}}, {"id": "43875", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.70153856, 36.995999748], [137.70130939, 36.995950865], [137.70135939, 36.996059468], [137.70153856, 36.995999748]]]}}, {"id": "43876", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.677784306, 36.990763667], [137.678004864, 36.990787279], [137.677911245, 36.990681721], [137.677784306, 36.990763667]]]}}, {"id": "43877", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.716014968, 36.999852802], [137.715918859, 37.000014775], [137.716065136, 36.999956108], [137.716014968, 36.999852802]]]}}, {"id": "43878", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.001498586, 37.11362864], [138.001708171, 37.113621225], [138.001623943, 37.113558748], [138.001498586, 37.11362864]]]}}, {"id": "43879", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.007270169, 37.114935775], [138.007307665, 37.115094108], [138.007386835, 37.115054667], [138.007270169, 37.114935775]]]}}, {"id": "43880", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.0134738, 37.116388559], [138.01345214, 37.116248559], [138.013347691, 37.116281054], [138.0134738, 37.116388559]]]}}, {"id": "43881", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.676419857, 36.989816441], [137.676332361, 36.989695333], [137.676274034, 36.989795054], [137.676419857, 36.989816441]]]}}, {"id": "43882", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.992949585, 37.110722171], [137.992876252, 37.110856333], [137.993019585, 37.110790775], [137.992949585, 37.110722171]]]}}, {"id": "43883", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.041044189, 37.127510225], [138.040887808, 37.127567721], [138.041048366, 37.127598838], [138.041044189, 37.127510225]]]}}, {"id": "43884", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.993339585, 37.111015775], [137.993176252, 37.111028279], [137.993309585, 37.111056333], [137.993339585, 37.111015775]]]}}, {"id": "43885", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.058174838, 37.139333], [138.058272335, 37.139413279], [138.058309274, 37.139248279], [138.058174838, 37.139333]]]}}, {"id": "43886", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.001423061, 37.113844279], [138.00159703, 37.113838721], [138.001498301, 37.113776532], [138.001423061, 37.113844279]]]}}, {"id": "43887", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.011606304, 37.116329387], [138.011536304, 37.116197441], [138.011474643, 37.116286333], [138.011606304, 37.116329387]]]}}, {"id": "43888", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.012287419, 37.116628], [138.012249637, 37.116514946], [138.012128521, 37.116552721], [138.012287419, 37.116628]]]}}, {"id": "43889", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.005685447, 37.115858279], [138.005674617, 37.115723559], [138.005600726, 37.115799667], [138.005685447, 37.115858279]]]}}, {"id": "43890", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.013890752, 37.116568838], [138.014025473, 37.116654946], [138.014041582, 37.116625505], [138.013890752, 37.116568838]]]}}, {"id": "43891", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.001059053, 37.114619108], [138.001178495, 37.114562721], [138.001078781, 37.114543], [138.001059053, 37.114619108]]]}}, {"id": "43892", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.006403502, 37.114949387], [138.00650655, 37.114874387], [138.006425162, 37.114823279], [138.006403502, 37.114949387]]]}}, {"id": "43893", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.993605966, 37.111522171], [137.993512633, 37.111637721], [137.993635966, 37.111603279], [137.993605966, 37.111522171]]]}}, {"id": "43894", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.058280661, 37.141183279], [138.058340661, 37.141096054], [138.058248171, 37.141097441], [138.058280661, 37.141183279]]]}}, {"id": "43895", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.993652633, 37.111778], [137.9937193, 37.111853], [137.993755966, 37.111753279], [137.993652633, 37.111778]]]}}, {"id": "43896", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.058326783, 37.139113838], [138.05841345, 37.139137721], [138.05841345, 37.139055225], [138.058326783, 37.139113838]]]}}, {"id": "43897", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.961897808, 37.090904721], [137.961957639, 37.090986225], [137.961961699, 37.090924], [137.961897808, 37.090904721]]]}}, {"id": "43898", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.049815914, 37.137076054], [138.049850636, 37.137130225], [138.049909248, 37.137082441], [138.049815914, 37.137076054]]]}}, {"id": "43899", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.006998223, 37.115637721], [138.007001284, 37.115575225], [138.00695655, 37.115605505], [138.006998223, 37.115637721]]]}}, {"id": "43900", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.012879364, 37.116765225], [138.012787977, 37.116768], [138.012839079, 37.116821892], [138.012879364, 37.116765225]]]}}, {"id": "43901", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.005878495, 37.116159667], [138.005798223, 37.116181333], [138.005822114, 37.116248279], [138.005878495, 37.116159667]]]}}, {"id": "43902", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.013091582, 37.116945505], [138.013062412, 37.116864946], [138.013040752, 37.116937441], [138.013091582, 37.116945505]]]}}, {"id": "43903", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.04974869, 37.137458], [138.049794254, 37.137399387], [138.049724812, 37.137399387], [138.04974869, 37.137458]]]}}, {"id": "43904", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.00743572, 37.115416054], [138.007377393, 37.115421333], [138.007440999, 37.115433838], [138.00743572, 37.115416054]]]}}, {"id": "43905", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.005724617, 37.116025225], [138.005757108, 37.116068838], [138.005770169, 37.116025225], [138.005724617, 37.116025225]]]}}, {"id": "43906", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.007409611, 37.115321333], [138.007397108, 37.115273279], [138.007371284, 37.115294108], [138.007409611, 37.115321333]]]}}, {"id": "43907", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "糸魚川市", "N03_005": null, "N03_007": "15216"}, "geometry": {"type": "Polygon", "coordinates": [[[138.007336835, 37.115163], [138.007311829, 37.115188], [138.007339053, 37.115188], [138.007336835, 37.115163]]]}}, {"id": "43908", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "妙高市", "N03_005": null, "N03_007": "15217"}, "geometry": {"type": "Polygon", "coordinates": [[[138.114799883, 36.850378721], [138.053402503, 36.799978892], [138.003461479, 36.826413613], [138.032496005, 36.88096764], [138.016020778, 36.911412108], [138.107672218, 36.946722], [138.107096394, 36.976108721], [138.153843217, 36.941601802], [138.208876667, 36.953892721], [138.221339079, 36.940889721], [138.250196394, 36.97825336], [138.247805422, 37.01139], [138.206625642, 36.979249667], [138.219303748, 37.001956081], [138.174180169, 36.970357667], [138.133706913, 36.968894559], [138.13790703, 37.030971027], [138.182885914, 37.044333559], [138.177681803, 37.061201892], [138.279659364, 37.065666306], [138.267239222, 37.049452468], [138.283018171, 37.042692387], [138.295826978, 36.997708919], [138.38219856, 36.976593], [138.343204449, 36.920796748], [138.296325694, 36.910820081], [138.287612438, 36.845706532], [138.271837471, 36.842625171], [138.254708171, 36.870021252], [138.213788275, 36.871149865], [138.169017756, 36.845072532], [138.114799883, 36.850378721]]]}}, {"id": "43909", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "五泉市", "N03_005": null, "N03_007": "15218"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257682724, 37.52202536], [139.218927302, 37.602038775], [139.195524112, 37.614274748], [139.169996861, 37.599080721], [139.134100441, 37.656784838], [139.109194812, 37.651778414], [139.099875668, 37.669653892], [139.098668612, 37.719244081], [139.16895655, 37.774606667], [139.211446031, 37.764099919], [139.227911479, 37.742643748], [139.297014617, 37.736501946], [139.280258885, 37.701550198], [139.308377471, 37.691391586], [139.321908586, 37.647099027], [139.348067912, 37.629682946], [139.34855834, 37.600817802], [139.319700078, 37.594581802], [139.308685473, 37.564916252], [139.320646329, 37.539998054], [139.281011193, 37.50992636], [139.257682724, 37.52202536]], [[139.225224799, 37.741096532], [139.224213982, 37.742858207], [139.22354917, 37.742363162], [139.225224799, 37.741096532]]]}}, {"id": "43910", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.098583891, 36.973576225], [138.095651556, 37.061936586], [138.074193022, 37.091526306], [138.084442581, 37.120845775], [138.067769883, 37.148166054], [138.087031115, 37.169259135], [138.151632944, 37.161130973], [138.231456252, 37.174055775], [138.246915772, 37.18401473], [138.2463307, 37.185086559], [138.246299027, 37.186415748], [138.253025759, 37.205130279], [138.256794565, 37.208563126], [138.246395888, 37.186368766], [138.249396524, 37.182512468], [138.2757493, 37.198242667], [138.272244591, 37.215336333], [138.287026589, 37.205066171], [138.418097808, 37.306586279], [138.418300363, 37.294341532], [138.432250947, 37.302949892], [138.541234137, 37.263227973], [138.504923839, 37.228686198], [138.56888869, 37.178994081], [138.562445357, 37.155663027], [138.527389611, 37.13673264], [138.524532218, 37.106782946], [138.544501245, 37.085709135], [138.524667808, 37.030377946], [138.455132049, 37.019614667], [138.350504501, 36.976117468], [138.287902866, 37.005313108], [138.283018171, 37.042692387], [138.267204501, 37.049604414], [138.279659364, 37.065666306], [138.207830143, 37.070724973], [138.177273748, 37.060893838], [138.182699248, 37.044224946], [138.13790703, 37.030971027], [138.129592218, 36.974692333], [138.174180169, 36.970357667], [138.219303748, 37.001956081], [138.222116226, 36.993879973], [138.207905668, 36.983142441], [138.206625642, 36.979249667], [138.248499857, 37.011272775], [138.23129808, 36.944213252], [138.210486641, 36.941802468], [138.208876667, 36.953892721], [138.153843217, 36.941601802], [138.098583891, 36.973576225]]]}}, {"id": "43911", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.254239844, 37.208236144], [138.275431323, 37.228080468], [138.275610882, 37.227955324], [138.255348612, 37.208603045], [138.254239844, 37.208236144]]]}}, {"id": "43912", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.266458781, 37.199933441], [138.259826667, 37.201068054], [138.267565603, 37.200483955], [138.266458781, 37.199933441]]]}}, {"id": "43913", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.256823333, 37.197401333], [138.260433748, 37.199283667], [138.254635383, 37.196165568], [138.256823333, 37.197401333]]]}}, {"id": "43914", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.243707302, 37.187969252], [138.243114306, 37.185295441], [138.24287406, 37.184966108], [138.243707302, 37.187969252]]]}}, {"id": "43915", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.166340389, 37.16241], [138.166666667, 37.162253306], [138.166321167, 37.162285198], [138.166340389, 37.16241]]]}}, {"id": "43916", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.167750441, 37.162131387], [138.168866939, 37.162430613], [138.168896913, 37.162329171], [138.167750441, 37.162131387]]]}}, {"id": "43917", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.170708911, 37.163538721], [138.169720726, 37.163144946], [138.16967153, 37.163240973], [138.170708911, 37.163538721]]]}}, {"id": "43918", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.17500725, 37.164533694], [138.17461131, 37.164526613], [138.175708716, 37.164734081], [138.17500725, 37.164533694]]]}}, {"id": "43919", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.191645032, 37.169801252], [138.190749948, 37.169432225], [138.19164297, 37.169822748], [138.191645032, 37.169801252]]]}}, {"id": "43920", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.088384086, 37.166471306], [138.08832655, 37.166494694], [138.088557134, 37.167531973], [138.088384086, 37.166471306]]]}}, {"id": "43921", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.208032438, 37.169484559], [138.209052412, 37.169652559], [138.209083528, 37.169610973], [138.208032438, 37.169484559]]]}}, {"id": "43922", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.210110078, 37.169822], [138.209898418, 37.169660694], [138.209743307, 37.169717198], [138.210110078, 37.169822]]]}}, {"id": "43923", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.15113786, 37.161324027], [138.15114428, 37.161370802], [138.152131725, 37.161376441], [138.15113786, 37.161324027]]]}}, {"id": "43924", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.136802361, 37.164106919], [138.136169001, 37.163848973], [138.136087004, 37.163927892], [138.136802361, 37.164106919]]]}}, {"id": "43925", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.137821505, 37.16435564], [138.137192361, 37.164071919], [138.137119663, 37.164139198], [138.137821505, 37.16435564]]]}}, {"id": "43926", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.092509274, 37.172606441], [138.091929585, 37.172065892], [138.091846226, 37.172122], [138.092509274, 37.172606441]]]}}, {"id": "43927", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238134864, 37.179678279], [138.237540117, 37.179242252], [138.237454669, 37.179330108], [138.238134864, 37.179678279]]]}}, {"id": "43928", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.138672166, 37.164572802], [138.138145227, 37.164302946], [138.138077419, 37.164370279], [138.138672166, 37.164572802]]]}}, {"id": "43929", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239909248, 37.180454279], [138.239247173, 37.180117054], [138.239163217, 37.180199973], [138.239848003, 37.180549306], [138.239909248, 37.180454279]]]}}, {"id": "43930", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.191680778, 37.169955586], [138.192204086, 37.170384198], [138.192294695, 37.170349306], [138.191680778, 37.169955586]]]}}, {"id": "43931", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.134665525, 37.163967973], [138.134039196, 37.163940559], [138.133971362, 37.164019054], [138.134665525, 37.163967973]]]}}, {"id": "43932", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.192544916, 37.170933838], [138.192151025, 37.170520333], [138.192075188, 37.170550387], [138.192544916, 37.170933838]]]}}, {"id": "43933", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.13512725, 37.163910027], [138.135732672, 37.163807748], [138.135085525, 37.163875919], [138.13512725, 37.163910027]]]}}, {"id": "43934", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.193007665, 37.17124936], [138.192807445, 37.171002198], [138.19273856, 37.171034108], [138.193007665, 37.17124936]]]}}, {"id": "43935", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.13531834, 37.164420973], [138.135399689, 37.164265108], [138.135247613, 37.164367135], [138.13531834, 37.164420973]]]}}, {"id": "43936", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.186721777, 37.168424721], [138.186659637, 37.168275306], [138.18657642, 37.168397721], [138.186721777, 37.168424721]]]}}, {"id": "43937", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.186830311, 37.167879387], [138.18661856, 37.167886135], [138.186860856, 37.167973919], [138.186830311, 37.167879387]]]}}, {"id": "43938", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.193598106, 37.171836108], [138.193570052, 37.171694721], [138.193475331, 37.171793613], [138.193598106, 37.171836108]]]}}, {"id": "43939", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.196955888, 37.171866387], [138.196949494, 37.171720838], [138.196824773, 37.171771387], [138.196955888, 37.171866387]]]}}, {"id": "43940", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.124237523, 37.170121081], [138.124120856, 37.170004135], [138.12412725, 37.17010164], [138.124237523, 37.170121081]]]}}, {"id": "43941", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.136071582, 37.164795027], [138.136228949, 37.164705775], [138.13608572, 37.164749694], [138.136071582, 37.164795027]]]}}, {"id": "43942", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.13688847, 37.164555586], [138.136732802, 37.164618027], [138.13688847, 37.164622171], [138.13688847, 37.164555586]]]}}, {"id": "43943", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.135723217, 37.164100748], [138.13584703, 37.164214108], [138.135852309, 37.164124838], [138.135723217, 37.164100748]]]}}, {"id": "43944", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.136687782, 37.165145], [138.136800947, 37.165051505], [138.136631193, 37.165085505], [138.136687782, 37.165145]]]}}, {"id": "43945", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.198454228, 37.170703892], [138.198345331, 37.170640279], [138.198316446, 37.170760559], [138.198454228, 37.170703892]]]}}, {"id": "43946", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.13633061, 37.164262279], [138.13641725, 37.164175838], [138.136251051, 37.164192865], [138.13633061, 37.164262279]]]}}, {"id": "43947", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.19829061, 37.170994721], [138.198248664, 37.170851387], [138.198225888, 37.171002775], [138.19829061, 37.170994721]]]}}, {"id": "43948", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.137217328, 37.164651919], [138.137339339, 37.164731279], [138.137337588, 37.164654748], [138.137217328, 37.164651919]]]}}, {"id": "43949", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.198385331, 37.170356946], [138.198264773, 37.170397225], [138.198389494, 37.170437505], [138.198385331, 37.170356946]]]}}, {"id": "43950", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.196717276, 37.172011667], [138.196687004, 37.171896667], [138.196624773, 37.171963054], [138.196717276, 37.172011667]]]}}, {"id": "43951", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.196727834, 37.171496946], [138.19675144, 37.171626108], [138.196811725, 37.171535279], [138.196727834, 37.171496946]]]}}, {"id": "43952", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.196693385, 37.171426387], [138.196593995, 37.171393081], [138.196618106, 37.171444441], [138.196693385, 37.171426387]]]}}, {"id": "43953", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.13746489, 37.16442664], [138.137418911, 37.164517333], [138.137486083, 37.164497468], [138.13746489, 37.16442664]]]}}, {"id": "43954", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.186787108, 37.167771333], [138.186690195, 37.167708865], [138.186674384, 37.167743468], [138.186787108, 37.167771333]]]}}, {"id": "43955", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "上越市", "N03_005": null, "N03_007": "15222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.199311167, 37.171145838], [138.199351997, 37.171216387], [138.199356161, 37.171151946], [138.199311167, 37.171145838]]]}}, {"id": "43956", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "阿賀野市", "N03_005": null, "N03_007": "15223"}, "geometry": {"type": "Polygon", "coordinates": [[[139.283963061, 37.734493892], [139.225868975, 37.743341532], [139.175452438, 37.780792748], [139.179397004, 37.803998027], [139.150868638, 37.814742468], [139.17771655, 37.828269946], [139.158396783, 37.836173586], [139.152083722, 37.843730532], [139.154273191, 37.849833027], [139.176909416, 37.865377171], [139.227391829, 37.862136468], [139.260439559, 37.892177054], [139.296785473, 37.856668414], [139.330682412, 37.864022306], [139.370475447, 37.845008973], [139.364120895, 37.814913198], [139.324392866, 37.770402198], [139.289513748, 37.757038027], [139.283963061, 37.734493892]]]}}, {"id": "43957", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "阿賀野市", "N03_005": null, "N03_007": "15223"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224666654, 37.741569243], [139.224213982, 37.742858207], [139.225224799, 37.741096532], [139.224666654, 37.741569243]]]}}, {"id": "43958", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249858249, 37.803411505], [138.216182114, 37.80981764], [138.205397082, 37.828490135], [138.269209416, 37.847838414], [138.289855551, 37.885459252], [138.284625227, 37.919458973], [138.343713606, 37.965712414], [138.298036304, 38.007165838], [138.274080597, 38.002160396], [138.254876615, 37.964687946], [138.227182581, 37.979718919], [138.234442944, 38.004130505], [138.221260558, 38.022202586], [138.238422412, 38.027953135], [138.241848833, 38.086652225], [138.290045616, 38.13386936], [138.324413191, 38.198634252], [138.36380856, 38.212882802], [138.401934423, 38.254568279], [138.437267237, 38.262040063], [138.458204747, 38.321831775], [138.514919027, 38.332090613], [138.492499442, 38.203737541], [138.450074812, 38.146119414], [138.434162218, 38.088431333], [138.481416602, 38.062314757], [138.563177445, 38.088066225], [138.574559611, 38.062679748], [138.499991362, 37.920201387], [138.359678781, 37.830491973], [138.249858249, 37.803411505]]]}}, {"id": "43959", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.48396144, 38.336652306], [138.483110078, 38.331629252], [138.480350895, 38.334263414], [138.48396144, 38.336652306]]]}}, {"id": "43960", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241074942, 38.086901279], [138.239486161, 38.081801802], [138.23930275, 38.080506856], [138.238845811, 38.079852162], [138.239586057, 38.086964613], [138.241074942, 38.086901279]]]}}, {"id": "43961", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.391767419, 38.246514694], [138.391777691, 38.248232748], [138.39307131, 38.247539973], [138.391767419, 38.246514694]]]}}, {"id": "43962", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247240272, 38.094400586], [138.24734, 38.093145279], [138.246233606, 38.093655865], [138.247240272, 38.094400586]]]}}, {"id": "43963", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.266785746, 37.806666775], [138.265273528, 37.806794], [138.266327134, 37.807811505], [138.266785746, 37.806666775]]]}}, {"id": "43964", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.307646498, 38.170067054], [138.307203165, 38.168857613], [138.30687511, 38.169711775], [138.307646498, 38.170067054]]]}}, {"id": "43965", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.387286252, 38.244462748], [138.38850489, 38.243709973], [138.387166252, 38.243717748], [138.387286252, 38.244462748]]]}}, {"id": "43966", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.452722283, 38.310566505], [138.453703385, 38.309441505], [138.452863943, 38.309475387], [138.452722283, 38.310566505]]]}}, {"id": "43967", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339538301, 38.201779297], [138.335767639, 38.199970667], [138.335550233, 38.199624829], [138.335574591, 38.200117793], [138.339538301, 38.201779297]]]}}, {"id": "43968", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.436375888, 38.291106802], [138.437337562, 38.29065764], [138.436436719, 38.289988748], [138.436375888, 38.291106802]]]}}, {"id": "43969", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228312698, 37.992731559], [138.227315188, 37.992366838], [138.227087977, 37.993005721], [138.228312698, 37.992731559]]]}}, {"id": "43970", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445747198, 38.081428973], [138.44582153, 38.081505532], [138.450278833, 38.080875387], [138.450260169, 38.080772865], [138.445747198, 38.081428973]]]}}, {"id": "43971", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.222347951, 38.017183775], [138.220842114, 38.017582387], [138.223040169, 38.017565171], [138.222347951, 38.017183775]]]}}, {"id": "43972", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.438430778, 38.089161225], [138.438695447, 38.087110333], [138.440971115, 38.085063919], [138.438568003, 38.087072748], [138.438095162, 38.08829336], [138.438430778, 38.089161225]]]}}, {"id": "43973", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.325300415, 38.200501468], [138.324818755, 38.200679532], [138.325006809, 38.201448973], [138.325300415, 38.200501468]]]}}, {"id": "43974", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220451284, 38.016835171], [138.218893217, 38.016534333], [138.218572944, 38.016915721], [138.220451284, 38.016835171]]]}}, {"id": "43975", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241662192, 37.966949306], [138.240443865, 37.967139865], [138.241768301, 37.967306532], [138.241662192, 37.966949306]]]}}, {"id": "43976", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.373492802, 38.229269441], [138.373063359, 38.228502225], [138.372464189, 38.229324171], [138.373492802, 38.229269441]]]}}, {"id": "43977", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488897004, 38.338380081], [138.48879869, 38.337471198], [138.488444812, 38.337739252], [138.488897004, 38.338380081]]]}}, {"id": "43978", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487349533, 38.333553414], [138.486145084, 38.33289536], [138.487302023, 38.333883973], [138.487349533, 38.333553414]]]}}, {"id": "43979", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.433866719, 38.286844613], [138.432727562, 38.287341], [138.434361997, 38.287225171], [138.433866719, 38.286844613]]]}}, {"id": "43980", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228270467, 37.991202667], [138.228376589, 37.991893505], [138.228765746, 37.991897387], [138.228270467, 37.991202667]]]}}, {"id": "43981", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239111336, 37.805186505], [138.237864384, 37.805743721], [138.23841939, 37.805944279], [138.239111336, 37.805186505]]]}}, {"id": "43982", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.393104086, 38.246575252], [138.393299364, 38.24578636], [138.392166589, 38.245929414], [138.393104086, 38.246575252]]]}}, {"id": "43983", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220712672, 38.011674333], [138.221805447, 38.011450171], [138.220601829, 38.011527387], [138.220712672, 38.011674333]]]}}, {"id": "43984", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339392607, 37.974993505], [138.339688859, 37.975], [138.340394423, 37.973548387], [138.339392607, 37.974993505]]]}}, {"id": "43985", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238709922, 38.082797667], [138.237808807, 38.082167108], [138.237329637, 38.082191], [138.238096589, 38.082858505], [138.238709922, 38.082797667]]]}}, {"id": "43986", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.449633671, 38.308480414], [138.449712555, 38.307686532], [138.449014228, 38.307402919], [138.449633671, 38.308480414]]]}}, {"id": "43987", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548899079, 38.081772081], [138.548933256, 38.082580414], [138.549328807, 38.082505414], [138.548899079, 38.081772081]]]}}, {"id": "43988", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2280938, 37.978781252], [138.228432412, 37.978287919], [138.227796304, 37.978312919], [138.2280938, 37.978781252]]]}}, {"id": "43989", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213669922, 37.834220667], [138.213149053, 37.833634279], [138.21267406, 37.833994279], [138.213669922, 37.834220667]]]}}, {"id": "43990", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435242555, 38.290481838], [138.435220337, 38.289597667], [138.434797834, 38.290035441], [138.435242555, 38.290481838]]]}}, {"id": "43991", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440799754, 38.090630973], [138.441454449, 38.088389108], [138.440666835, 38.090602892], [138.440799754, 38.090630973]]]}}, {"id": "43992", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294059416, 37.814577982], [138.294078521, 37.814684982], [138.295104293, 37.814207694], [138.294059416, 37.814577982]]]}}, {"id": "43993", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.398191894, 38.247408559], [138.397903839, 38.248256613], [138.398204669, 38.248340225], [138.398191894, 38.247408559]]]}}, {"id": "43994", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228383528, 37.98482736], [138.229019637, 37.984664865], [138.228804358, 37.984395973], [138.228383528, 37.98482736]]]}}, {"id": "43995", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.289803346, 37.814166577], [138.289859481, 37.814118018], [138.288596407, 37.812312586], [138.289803346, 37.814166577]]]}}, {"id": "43996", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440530026, 38.305354865], [138.440071414, 38.304920135], [138.439805577, 38.305221252], [138.440530026, 38.305354865]]]}}, {"id": "43997", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246630778, 38.097897946], [138.247004112, 38.098120721], [138.247139105, 38.097782667], [138.246630778, 38.097897946]]]}}, {"id": "43998", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.397093943, 38.250479838], [138.396685772, 38.250753279], [138.397134669, 38.251118838], [138.397093943, 38.250479838]]]}}, {"id": "43999", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.209027665, 37.829437333], [138.208568781, 37.828947333], [138.208529053, 37.829559], [138.209027665, 37.829437333]]]}}, {"id": "44000", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.319230415, 38.206367865], [138.318432633, 38.206142865], [138.318403191, 38.206509802], [138.319230415, 38.206367865]]]}}, {"id": "44001", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.446497834, 38.307832081], [138.446103385, 38.307197081], [138.446425888, 38.308067081], [138.446497834, 38.307832081]]]}}, {"id": "44002", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.444781414, 38.307048198], [138.444319468, 38.307319865], [138.444730584, 38.307458468], [138.444781414, 38.307048198]]]}}, {"id": "44003", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.237559922, 38.067402387], [138.237208521, 38.066982387], [138.23674214, 38.067282946], [138.237559922, 38.067402387]]]}}, {"id": "44004", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246873839, 38.091611279], [138.247371608, 38.091048775], [138.246577717, 38.091453225], [138.246873839, 38.091611279]]]}}, {"id": "44005", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.215434358, 37.839179279], [138.215365746, 37.838494], [138.215117419, 37.838178441], [138.215042698, 37.838830108], [138.215434358, 37.839179279]]]}}, {"id": "44006", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445433385, 38.307207081], [138.444885305, 38.306995973], [138.445028366, 38.307634586], [138.445433385, 38.307207081]]]}}, {"id": "44007", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.353468755, 37.829294225], [138.353101245, 37.828944775], [138.352628197, 37.829378108], [138.353468755, 37.829294225]]]}}, {"id": "44008", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.203517367, 37.821569306], [138.202997912, 37.82202736], [138.203472633, 37.822015973], [138.203517367, 37.821569306]]]}}, {"id": "44009", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228198249, 37.990122387], [138.228067134, 37.990782108], [138.228439364, 37.990800171], [138.228198249, 37.990122387]]]}}, {"id": "44010", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229848521, 37.999132667], [138.229819364, 37.998696279], [138.229407691, 37.999002387], [138.229848521, 37.999132667]]]}}, {"id": "44011", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.340989689, 37.970799027], [138.340958223, 37.969781198], [138.340737302, 37.970749865], [138.340989689, 37.970799027]]]}}, {"id": "44012", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.437130337, 38.291578198], [138.436636161, 38.291850135], [138.437206161, 38.291885135], [138.437130337, 38.291578198]]]}}, {"id": "44013", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230698521, 38.040918775], [138.230143528, 38.040289333], [138.230474916, 38.040974892], [138.230698521, 38.040918775]]]}}, {"id": "44014", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212941556, 37.833377333], [138.212496835, 37.833763171], [138.213048781, 37.833586775], [138.212941556, 37.833377333]]]}}, {"id": "44015", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442504747, 38.292825703], [138.441179702, 38.29179136], [138.442401816, 38.292892865], [138.442504747, 38.292825703]]]}}, {"id": "44016", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.392394916, 38.246221919], [138.392045473, 38.246526081], [138.392510467, 38.246459135], [138.392394916, 38.246221919]]]}}, {"id": "44017", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.522220999, 38.32517336], [138.521619339, 38.325288919], [138.52186489, 38.32557864], [138.522220999, 38.32517336]]]}}, {"id": "44018", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.26457978, 37.978069559], [138.264306329, 37.980362694], [138.2644138, 37.98037], [138.26457978, 37.978069559]]]}}, {"id": "44019", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374903281, 37.839184468], [138.375327717, 37.839185306], [138.375001894, 37.838754748], [138.374903281, 37.839184468]]]}}, {"id": "44020", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239505772, 38.086257946], [138.239111855, 38.086022108], [138.2391038, 38.086647667], [138.239505772, 38.086257946]]]}}, {"id": "44021", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239680195, 37.971555865], [138.241149248, 37.970727694], [138.23960572, 37.971458054], [138.239680195, 37.971555865]]]}}, {"id": "44022", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246933139, 37.968086333], [138.246847471, 37.96797964], [138.245526913, 37.968617333], [138.246933139, 37.968086333]]]}}, {"id": "44023", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43679703, 38.289715973], [138.436428145, 38.289135171], [138.436275888, 38.289408775], [138.43679703, 38.289715973]]]}}, {"id": "44024", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241485772, 37.805004559], [138.242012166, 37.805495946], [138.242308003, 37.805440946], [138.241485772, 37.805004559]]]}}, {"id": "44025", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.206453515, 37.819215766], [138.206887717, 37.81913909], [138.206718872, 37.819007207], [138.206453515, 37.819215766]]]}}, {"id": "44026", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.372617808, 38.228753613], [138.372221699, 38.228513613], [138.372107808, 38.228755559], [138.372617808, 38.228753613]]]}}, {"id": "44027", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.210727665, 37.830025108], [138.210221556, 37.830251505], [138.210727665, 37.830350108], [138.210727665, 37.830025108]]]}}, {"id": "44028", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242965811, 37.967458468], [138.242597198, 37.967129586], [138.242458859, 37.967409306], [138.242965811, 37.967458468]]]}}, {"id": "44029", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441388418, 38.293984306], [138.441164254, 38.293439586], [138.440866472, 38.293409865], [138.441388418, 38.293984306]]]}}, {"id": "44030", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.461359468, 38.324121505], [138.460533917, 38.323826775], [138.460301699, 38.323946225], [138.461359468, 38.324121505]]]}}, {"id": "44031", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.57263572, 38.068076973], [138.57222406, 38.068361414], [138.572635162, 38.06854364], [138.57263572, 38.068076973]]]}}, {"id": "44032", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.251062438, 37.803216523], [138.251678534, 37.802395523], [138.250913217, 37.80311673], [138.251062438, 37.803216523]]]}}, {"id": "44033", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.45176153, 38.140234793], [138.451894786, 38.142311378], [138.451853826, 38.140233658], [138.45176153, 38.140234793]]]}}, {"id": "44034", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.465134228, 38.324493171], [138.465610337, 38.324272613], [138.464986719, 38.324218171], [138.465134228, 38.324493171]]]}}, {"id": "44035", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.439270052, 38.293285973], [138.438910337, 38.293061532], [138.438987004, 38.29347264], [138.439270052, 38.293285973]]]}}, {"id": "44036", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445867276, 38.307359027], [138.445631725, 38.307699865], [138.445873359, 38.30815236], [138.445867276, 38.307359027]]]}}, {"id": "44037", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.461105032, 38.324305667], [138.460652802, 38.324558721], [138.461277808, 38.324461225], [138.461105032, 38.324305667]]]}}, {"id": "44038", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.431486135, 38.293374613], [138.431281141, 38.292883775], [138.431050856, 38.292913225], [138.431486135, 38.293374613]]]}}, {"id": "44039", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22055406, 38.016671], [138.22038655, 38.016166559], [138.220089611, 38.016162667], [138.22055406, 38.016671]]]}}, {"id": "44040", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.461322114, 38.068175559], [138.462550195, 38.067624108], [138.460808612, 38.068291225], [138.461322114, 38.068175559]]]}}, {"id": "44041", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571796887, 38.086898973], [138.572021608, 38.08643036], [138.571777717, 38.086417027], [138.571796887, 38.086898973]]]}}, {"id": "44042", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.204034864, 37.828724027], [138.203922361, 37.828218198], [138.203683476, 37.828222081], [138.204034864, 37.828724027]]]}}, {"id": "44043", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233114358, 38.057686838], [138.232717977, 38.057991279], [138.233146304, 38.057928505], [138.233114358, 38.057686838]]]}}, {"id": "44044", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573908184, 38.073216198], [138.573474189, 38.073477486], [138.573103372, 38.073896595], [138.573908184, 38.073216198]]]}}, {"id": "44045", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232949728, 37.993645135], [138.23281192, 37.99364736], [138.232983645, 37.994897081], [138.232949728, 37.993645135]]]}}, {"id": "44046", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.525130973, 38.072958838], [138.525184864, 38.073316613], [138.525402088, 38.073179667], [138.525130973, 38.072958838]]]}}, {"id": "44047", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.438834617, 38.266151], [138.43839489, 38.266325441], [138.438961284, 38.266445171], [138.438834617, 38.266151]]]}}, {"id": "44048", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.218893256, 37.838220667], [138.218981025, 37.837669], [138.21868131, 37.838069279], [138.218893256, 37.838220667]]]}}, {"id": "44049", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.549518249, 38.082915694], [138.549082698, 38.082952081], [138.5495538, 38.083129586], [138.549518249, 38.082915694]]]}}, {"id": "44050", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.459394228, 38.313313171], [138.458985616, 38.313651505], [138.459530337, 38.313539279], [138.459394228, 38.313313171]]]}}, {"id": "44051", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.512538495, 38.311776171], [138.512432114, 38.311459225], [138.512207951, 38.311579505], [138.512538495, 38.311776171]]]}}, {"id": "44052", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.252501089, 38.095173225], [138.252290804, 38.095342946], [138.253000804, 38.095570171], [138.252501089, 38.095173225]]]}}, {"id": "44053", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244254112, 38.087211559], [138.244234942, 38.087616279], [138.244603281, 38.087317387], [138.244254112, 38.087211559]]]}}, {"id": "44054", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213557393, 37.812039027], [138.213416005, 37.811648748], [138.213285162, 37.811749306], [138.213557393, 37.812039027]]]}}, {"id": "44055", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.215252698, 37.837991775], [138.214842412, 37.837768721], [138.21512131, 37.838098171], [138.215252698, 37.837991775]]]}}, {"id": "44056", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.371502581, 37.83673491], [138.370854669, 37.836779279], [138.371692088, 37.836873748], [138.371502581, 37.83673491]]]}}, {"id": "44057", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.202715694, 37.821541802], [138.202348755, 37.821625414], [138.202738755, 37.822004027], [138.202715694, 37.821541802]]]}}, {"id": "44058", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.267376693, 38.113416279], [138.267163645, 38.113136], [138.266915577, 38.113520171], [138.267376693, 38.113416279]]]}}, {"id": "44059", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244006226, 37.969259054], [138.24524297, 37.968530919], [138.243952309, 37.969168694], [138.244006226, 37.969259054]]]}}, {"id": "44060", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213410999, 37.835225946], [138.212908223, 37.835249838], [138.213300999, 37.835481225], [138.213410999, 37.835225946]]]}}, {"id": "44061", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.354255422, 38.210152559], [138.353942361, 38.209757559], [138.353920973, 38.210007279], [138.354255422, 38.210152559]]]}}, {"id": "44062", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242510999, 37.970099], [138.243496978, 37.969432505], [138.242423502, 37.969990838], [138.242510999, 37.970099]]]}}, {"id": "44063", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.324734034, 38.197928414], [138.324497367, 38.197538973], [138.324347367, 38.19770064], [138.324734034, 38.197928414]]]}}, {"id": "44064", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.4409662, 38.085333252], [138.441666667, 38.085117108], [138.442211193, 38.084850252], [138.4409662, 38.085333252]]]}}, {"id": "44065", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296010661, 38.145980973], [138.295631777, 38.145662919], [138.295564838, 38.145808468], [138.296010661, 38.145980973]]]}}, {"id": "44066", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.261564086, 37.803699279], [138.2610338, 37.803862892], [138.261624643, 37.803796775], [138.261564086, 37.803699279]]]}}, {"id": "44067", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.461422244, 38.324012333], [138.460994747, 38.323612892], [138.460778911, 38.323644279], [138.461422244, 38.324012333]]]}}, {"id": "44068", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235890246, 37.840994532], [138.236315811, 37.840797027], [138.236375525, 37.840446748], [138.235890246, 37.840994532]]]}}, {"id": "44069", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.443671997, 38.297170694], [138.443151997, 38.297005694], [138.443530337, 38.297428748], [138.443671997, 38.297170694]]]}}, {"id": "44070", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440740921, 38.293547081], [138.440269248, 38.293420135], [138.440732309, 38.293828468], [138.440740921, 38.293547081]]]}}, {"id": "44071", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.260447224, 38.099043225], [138.260131115, 38.098724892], [138.260023333, 38.098952387], [138.260447224, 38.099043225]]]}}, {"id": "44072", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.459873671, 38.312927054], [138.459337276, 38.312730108], [138.459786446, 38.313034], [138.459873671, 38.312927054]]]}}, {"id": "44073", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296878042, 38.159412045], [138.29647192, 38.159177532], [138.296285149, 38.159425054], [138.296878042, 38.159412045]]]}}, {"id": "44074", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231129144, 37.839088135], [138.231568859, 37.839047865], [138.231331362, 37.838762027], [138.231129144, 37.839088135]]]}}, {"id": "44075", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.302336031, 38.005254892], [138.301251115, 38.005441775], [138.302367419, 38.005368973], [138.302336031, 38.005254892]]]}}, {"id": "44076", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231237173, 37.974603748], [138.231202724, 37.975010694], [138.231507173, 37.974954865], [138.231237173, 37.974603748]]]}}, {"id": "44077", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.317926809, 38.206109532], [138.317531245, 38.20571564], [138.317762361, 38.206148694], [138.317926809, 38.206109532]]]}}, {"id": "44078", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.472571634, 38.06512764], [138.471234812, 38.065616586], [138.471285525, 38.065694135], [138.472571634, 38.06512764]]]}}, {"id": "44079", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.57254904, 38.072345586], [138.57302786, 38.072919685], [138.573157237, 38.072814901], [138.57254904, 38.072345586]]]}}, {"id": "44080", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232765188, 38.059147108], [138.232527691, 38.058900441], [138.232406304, 38.059078225], [138.232765188, 38.059147108]]]}}, {"id": "44081", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.245718275, 38.090383505], [138.24571856, 38.090034892], [138.245499105, 38.090313775], [138.245718275, 38.090383505]]]}}, {"id": "44082", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232889079, 38.060581279], [138.232470467, 38.060536838], [138.232539364, 38.060889613], [138.232889079, 38.060581279]]]}}, {"id": "44083", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434440052, 38.290812946], [138.434132827, 38.290537667], [138.43432978, 38.290875171], [138.434440052, 38.290812946]]]}}, {"id": "44084", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.439352283, 38.292942919], [138.439663943, 38.29334736], [138.439350921, 38.292718468], [138.439352283, 38.292942919]]]}}, {"id": "44085", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214998807, 37.836747892], [138.214725473, 37.836331775], [138.214875188, 37.836806505], [138.214998807, 37.836747892]]]}}, {"id": "44086", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235877173, 37.807775667], [138.235366887, 37.807676775], [138.235518833, 37.807990108], [138.235877173, 37.807775667]]]}}, {"id": "44087", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228608521, 37.977684306], [138.22821131, 37.977454027], [138.228103256, 37.97750736], [138.228608521, 37.977684306]]]}}, {"id": "44088", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.255919689, 37.844284252], [138.255326083, 37.844482865], [138.256059144, 37.844386748], [138.255919689, 37.844284252]]]}}, {"id": "44089", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509881362, 38.286138387], [138.50974192, 38.286518946], [138.510014137, 38.286175333], [138.509881362, 38.286138387]]]}}, {"id": "44090", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232497419, 37.987009586], [138.232673256, 37.986684865], [138.232388249, 37.986996252], [138.232497419, 37.987009586]]]}}, {"id": "44091", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.381422335, 38.233758333], [138.381152892, 38.233557225], [138.381171505, 38.233884441], [138.381422335, 38.233758333]]]}}, {"id": "44092", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440867367, 38.277170441], [138.440662361, 38.276771559], [138.440560143, 38.276846279], [138.440867367, 38.277170441]]]}}, {"id": "44093", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.34503144, 38.202895054], [138.344578638, 38.202636721], [138.344530584, 38.202744505], [138.34503144, 38.202895054]]]}}, {"id": "44094", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239773554, 38.085229892], [138.239844384, 38.085534613], [138.240014384, 38.085269054], [138.239773554, 38.085229892]]]}}, {"id": "44095", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228677445, 37.84316564], [138.228371051, 37.842873973], [138.228327173, 37.843191198], [138.228677445, 37.84316564]]]}}, {"id": "44096", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442647912, 38.280460973], [138.442304553, 38.280626532], [138.442608197, 38.280705414], [138.442647912, 38.280460973]]]}}, {"id": "44097", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.468674228, 38.323825108], [138.468847276, 38.323518171], [138.468611167, 38.323803721], [138.468674228, 38.323825108]]]}}, {"id": "44098", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21785214, 37.838625946], [138.217915188, 37.838257613], [138.217678249, 37.838415946], [138.21785214, 37.838625946]]]}}, {"id": "44099", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235380467, 38.025611054], [138.236376252, 38.025966171], [138.23644061, 38.025896613], [138.235669196, 38.025561027], [138.235380467, 38.025611054]]]}}, {"id": "44100", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232374384, 37.975796252], [138.232774942, 37.975551252], [138.232724669, 37.975450694], [138.232374384, 37.975796252]]]}}, {"id": "44101", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249423865, 37.840904802], [138.249065525, 37.84066064], [138.249146083, 37.841039252], [138.249423865, 37.840904802]]]}}, {"id": "44102", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240708859, 37.971653468], [138.240543022, 37.971312081], [138.24043275, 37.971595135], [138.240708859, 37.971653468]]]}}, {"id": "44103", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21106489, 37.830116225], [138.21084406, 37.830419559], [138.211228223, 37.830510387], [138.21106489, 37.830116225]]]}}, {"id": "44104", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214859364, 37.835895108], [138.214642698, 37.835859], [138.214956861, 37.836041505], [138.214859364, 37.835895108]]]}}, {"id": "44105", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.293323139, 38.143664586], [138.292999805, 38.143487919], [138.292748975, 38.143627919], [138.293323139, 38.143664586]]]}}, {"id": "44106", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241716641, 37.839584802], [138.241998029, 37.839628135], [138.241820804, 37.839212586], [138.241716641, 37.839584802]]]}}, {"id": "44107", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.351528418, 38.20602764], [138.35121511, 38.205783667], [138.351195383, 38.205952559], [138.351528418, 38.20602764]]]}}, {"id": "44108", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.31537786, 37.999842748], [138.315920311, 37.999292198], [138.315273839, 37.999750973], [138.31537786, 37.999842748]]]}}, {"id": "44109", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22019572, 38.015148505], [138.219855447, 38.014842108], [138.220039611, 38.015232108], [138.22019572, 38.015148505]]]}}, {"id": "44110", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.430997523, 38.293436559], [138.430728638, 38.293606279], [138.431184475, 38.293717387], [138.430997523, 38.293436559]]]}}, {"id": "44111", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485825084, 38.332946198], [138.485582581, 38.33273064], [138.4854262, 38.332863135], [138.485825084, 38.332946198]]]}}, {"id": "44112", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275257665, 37.809535108], [138.275731284, 37.809561775], [138.275301284, 37.809443721], [138.275257665, 37.809535108]]]}}, {"id": "44113", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.418109805, 38.254932973], [138.417809533, 38.25464464], [138.417884812, 38.255002414], [138.418109805, 38.254932973]]]}}, {"id": "44114", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.295666096, 38.158026829], [138.295480195, 38.15782473], [138.295240402, 38.158120432], [138.295666096, 38.158026829]]]}}, {"id": "44115", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229922412, 37.994896559], [138.229680195, 37.994607946], [138.229636031, 37.994874054], [138.229922412, 37.994896559]]]}}, {"id": "44116", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.519004034, 38.328528946], [138.518592361, 38.328329775], [138.518969857, 38.328627559], [138.519004034, 38.328528946]]]}}, {"id": "44117", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244682166, 38.089395441], [138.24458856, 38.089123775], [138.244443281, 38.089349613], [138.244682166, 38.089395441]]]}}, {"id": "44118", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.211164332, 37.830808441], [138.210660999, 37.830752054], [138.210578781, 37.830879559], [138.211164332, 37.830808441]]]}}, {"id": "44119", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572067691, 38.072389225], [138.571731582, 38.072484225], [138.572019637, 38.072620892], [138.572067691, 38.072389225]]]}}, {"id": "44120", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.398840246, 38.246613279], [138.398805811, 38.246351333], [138.398571634, 38.246548279], [138.398840246, 38.246613279]]]}}, {"id": "44121", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.463223217, 38.067471171], [138.463850584, 38.067162387], [138.462902361, 38.06750736], [138.463223217, 38.067471171]]]}}, {"id": "44122", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233464163, 37.98411536], [138.233555616, 37.984056333], [138.233104163, 37.983913532], [138.233464163, 37.98411536]]]}}, {"id": "44123", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.272466329, 38.117354135], [138.27246511, 38.117749505], [138.272640804, 38.118210505], [138.272466329, 38.117354135]]]}}, {"id": "44124", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.258903969, 37.974409586], [138.25934594, 37.975385838], [138.259428755, 37.975353387], [138.258903969, 37.974409586]]]}}, {"id": "44125", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.274508275, 37.813517946], [138.274117834, 37.81402736], [138.274567056, 37.813565054], [138.274508275, 37.813517946]]]}}, {"id": "44126", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.225, 37.837580685], [138.224021077, 37.837356505], [138.224001089, 37.837473865], [138.225, 37.837580685]]]}}, {"id": "44127", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493847588, 38.341909775], [138.493363969, 38.341804505], [138.493883969, 38.342018946], [138.493847588, 38.341909775]]]}}, {"id": "44128", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.303464423, 37.824769532], [138.304089974, 37.825252306], [138.304202477, 37.825204532], [138.303464423, 37.824769532]]]}}, {"id": "44129", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43617978, 38.289215171], [138.435716161, 38.288853775], [138.43617978, 38.289273775], [138.43617978, 38.289215171]]]}}, {"id": "44130", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22745297, 37.979277919], [138.22723131, 37.978978748], [138.227181025, 37.979365694], [138.22745297, 37.979277919]]]}}, {"id": "44131", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441609248, 38.294346532], [138.441307302, 38.294042919], [138.441135357, 38.294083748], [138.441609248, 38.294346532]]]}}, {"id": "44132", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.388436005, 38.234488027], [138.388045447, 38.234306081], [138.38807406, 38.234525532], [138.388436005, 38.234488027]]]}}, {"id": "44133", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229910467, 38.004849054], [138.230100467, 38.004650441], [138.229902412, 38.004654613], [138.229910467, 38.004849054]]]}}, {"id": "44134", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43439978, 38.288591], [138.434160052, 38.288305721], [138.434048392, 38.288384333], [138.43439978, 38.288591]]]}}, {"id": "44135", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.292909611, 38.006204613], [138.293878833, 38.006216802], [138.292889079, 38.006168468], [138.292909611, 38.006204613]]]}}, {"id": "44136", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.500654916, 38.072502315], [138.500646368, 38.072451315], [138.499874851, 38.072266793], [138.500654916, 38.072502315]]]}}, {"id": "44137", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.448952555, 38.307769586], [138.448652283, 38.307790414], [138.448891997, 38.307975694], [138.448952555, 38.307769586]]]}}, {"id": "44138", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242960778, 38.072259613], [138.24330022, 38.072109892], [138.242891051, 38.072156838], [138.242960778, 38.072259613]]]}}, {"id": "44139", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.321971699, 37.824626748], [138.321736135, 37.824736748], [138.321911699, 37.824822027], [138.321971699, 37.824626748]]]}}, {"id": "44140", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.329845746, 38.19988536], [138.329826589, 38.200193414], [138.330097419, 38.199979802], [138.329845746, 38.19988536]]]}}, {"id": "44141", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.260862776, 38.105853775], [138.260709442, 38.105679613], [138.260398885, 38.105859892], [138.260862776, 38.105853775]]]}}, {"id": "44142", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232891051, 37.973029586], [138.232894112, 37.97325264], [138.233048833, 37.973215694], [138.232891051, 37.973029586]]]}}, {"id": "44143", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.37388725, 38.229715559], [138.373555305, 38.229543892], [138.373552802, 38.229664721], [138.37388725, 38.229715559]]]}}, {"id": "44144", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244823333, 37.96135264], [138.244548612, 37.961235973], [138.244504449, 37.961428468], [138.244823333, 37.96135264]]]}}, {"id": "44145", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296875006, 38.006251865], [138.295870856, 38.006257306], [138.295878054, 38.006341532], [138.296875006, 38.006251865]]]}}, {"id": "44146", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229274384, 37.976858748], [138.229299948, 37.976494306], [138.229077445, 37.976675135], [138.229274384, 37.976858748]]]}}, {"id": "44147", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296592698, 38.158521234], [138.296407471, 38.158760784], [138.296570337, 38.15869018], [138.296592698, 38.158521234]]]}}, {"id": "44148", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.215389922, 37.836000667], [138.215111855, 37.836153721], [138.215148521, 37.836359], [138.215389922, 37.836000667]]]}}, {"id": "44149", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.258883476, 37.973636559], [138.2586793, 37.973062946], [138.258542607, 37.973118892], [138.258883476, 37.973636559]]]}}, {"id": "44150", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.448513671, 38.307565414], [138.448225331, 38.307630414], [138.448551167, 38.30791264], [138.448513671, 38.307565414]]]}}, {"id": "44151", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.287607652, 37.810675045], [138.28820856, 37.811711072], [138.288272815, 37.811684423], [138.287607652, 37.810675045]]]}}, {"id": "44152", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294491582, 38.006242892], [138.295599533, 38.006337198], [138.295599754, 38.006261468], [138.294491582, 38.006242892]]]}}, {"id": "44153", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233277134, 38.003401838], [138.23316297, 38.003704892], [138.233307419, 38.003701559], [138.233277134, 38.003401838]]]}}, {"id": "44154", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493768145, 38.332997], [138.493464527, 38.332829505], [138.493633139, 38.333112559], [138.493768145, 38.332997]]]}}, {"id": "44155", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239403307, 37.839192865], [138.23913192, 37.839345081], [138.239320246, 37.839432306], [138.239403307, 37.839192865]]]}}, {"id": "44156", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294075383, 38.143673468], [138.293768975, 38.143555414], [138.293887588, 38.14384764], [138.294075383, 38.143673468]]]}}, {"id": "44157", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.29024939, 37.820650108], [138.289888003, 37.820785108], [138.290292166, 37.820773721], [138.29024939, 37.820650108]]]}}, {"id": "44158", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296335538, 38.157295874], [138.295937964, 38.157259315], [138.296207808, 38.157448423], [138.296335538, 38.157295874]]]}}, {"id": "44159", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.325970143, 38.201374532], [138.325598197, 38.201364252], [138.325580415, 38.201553414], [138.325970143, 38.201374532]]]}}, {"id": "44160", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.204487367, 37.828244865], [138.203982918, 37.828067081], [138.204457912, 37.828354027], [138.204487367, 37.828244865]]]}}, {"id": "44161", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493225357, 38.339112838], [138.493478418, 38.339033946], [138.493262309, 38.338953667], [138.493225357, 38.339112838]]]}}, {"id": "44162", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242546329, 37.839883892], [138.24234572, 37.83960936], [138.242070584, 37.83966345], [138.242546329, 37.839883892]]]}}, {"id": "44163", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.259763333, 38.100238505], [138.259481673, 38.100041559], [138.259252218, 38.100183775], [138.259763333, 38.100238505]]]}}, {"id": "44164", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.430262672, 38.256910721], [138.430051556, 38.256610441], [138.430027665, 38.256849333], [138.430262672, 38.256910721]]]}}, {"id": "44165", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.345063385, 38.202119225], [138.344643385, 38.202097279], [138.345092283, 38.202247], [138.345063385, 38.202119225]]]}}, {"id": "44166", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.215124086, 37.836906505], [138.2152938, 37.836567054], [138.215188249, 37.836539559], [138.215124086, 37.836906505]]]}}, {"id": "44167", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.330076355, 37.951715721], [138.33000083, 37.95173936], [138.330524254, 37.952612973], [138.330076355, 37.951715721]]]}}, {"id": "44168", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.326412088, 38.199706748], [138.326054578, 38.199799252], [138.32621153, 38.19991536], [138.326412088, 38.199706748]]]}}, {"id": "44169", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238603969, 38.031436802], [138.238342438, 38.031060586], [138.238410778, 38.031457613], [138.238603969, 38.031436802]]]}}, {"id": "44170", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247027471, 37.839040081], [138.247208301, 37.83932536], [138.247286641, 37.839224532], [138.247027471, 37.839040081]]]}}, {"id": "44171", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.3420962, 37.962434135], [138.341863774, 37.961898748], [138.342226809, 37.962778973], [138.3420962, 37.962434135]]]}}, {"id": "44172", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249373891, 37.961579306], [138.249366667, 37.96128736], [138.249256667, 37.961579865], [138.249373891, 37.961579306]]]}}, {"id": "44173", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.298871505, 38.006016135], [138.299918301, 38.005747054], [138.298850999, 38.005947919], [138.298871505, 38.006016135]]]}}, {"id": "44174", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.54470131, 38.082138505], [138.544287419, 38.082029892], [138.544677691, 38.082214613], [138.54470131, 38.082138505]]]}}, {"id": "44175", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23106297, 37.990423775], [138.231257134, 37.990648225], [138.231344643, 37.990458775], [138.23106297, 37.990423775]]]}}, {"id": "44176", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493335914, 38.342048667], [138.493116472, 38.342213667], [138.493507588, 38.342226721], [138.493335914, 38.342048667]]]}}, {"id": "44177", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228796304, 37.978106532], [138.228607134, 37.978328468], [138.228865188, 37.978324306], [138.228796304, 37.978106532]]]}}, {"id": "44178", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244611634, 37.838952027], [138.244608859, 37.838722586], [138.244338301, 37.838997027], [138.244611634, 37.838952027]]]}}, {"id": "44179", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231799948, 37.97395236], [138.23174022, 37.974204027], [138.232004669, 37.974264865], [138.231799948, 37.97395236]]]}}, {"id": "44180", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227584643, 37.807475108], [138.227327134, 37.807368171], [138.227358249, 37.807494], [138.227584643, 37.807475108]]]}}, {"id": "44181", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.280767276, 38.005045775], [138.280730778, 38.005128532], [138.281581466, 38.005273144], [138.280767276, 38.005045775]]]}}, {"id": "44182", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.29911511, 38.154659586], [138.298923722, 38.154418468], [138.298825383, 38.154596532], [138.29911511, 38.154659586]]]}}, {"id": "44183", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296779533, 38.15599736], [138.296433969, 38.155918468], [138.296518145, 38.156086532], [138.296779533, 38.15599736]]]}}, {"id": "44184", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.259948885, 38.102504054], [138.259685279, 38.102346279], [138.259649728, 38.102566], [138.259948885, 38.102504054]]]}}, {"id": "44185", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220166304, 37.837105667], [138.220444669, 37.837000387], [138.220213554, 37.836866775], [138.220166304, 37.837105667]]]}}, {"id": "44186", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.469172827, 38.065599838], [138.468099105, 38.065778973], [138.467804358, 38.065876054], [138.469172827, 38.065599838]]]}}, {"id": "44187", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.465919248, 38.066457919], [138.464615279, 38.066887838], [138.464609079, 38.066899], [138.465919248, 38.066457919]]]}}, {"id": "44188", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.474117302, 38.176829613], [138.474063139, 38.176520171], [138.473860078, 38.176737667], [138.474117302, 38.176829613]]]}}, {"id": "44189", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374589611, 38.225579171], [138.37465441, 38.225623297], [138.374630506, 38.225312252], [138.374589611, 38.225579171]]]}}, {"id": "44190", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.446862581, 38.296122081], [138.4465662, 38.296239027], [138.446830363, 38.296333468], [138.446862581, 38.296122081]]]}}, {"id": "44191", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.324343476, 38.19839564], [138.324079585, 38.198257027], [138.324052918, 38.19838064], [138.324343476, 38.19839564]]]}}, {"id": "44192", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21657297, 37.838385108], [138.216686589, 37.838126225], [138.216544358, 37.838170946], [138.21657297, 37.838385108]]]}}, {"id": "44193", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.342784643, 37.965579081], [138.342573839, 37.964907171], [138.342678495, 37.965589667], [138.342784643, 37.965579081]]]}}, {"id": "44194", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.342313839, 37.963015054], [138.342404527, 37.963881135], [138.342481336, 37.963868721], [138.342313839, 37.963015054]]]}}, {"id": "44195", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.466165279, 38.06636164], [138.467487471, 38.066014171], [138.467491025, 38.066007198], [138.466165279, 38.06636164]]]}}, {"id": "44196", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.396813554, 38.249961054], [138.39653511, 38.249997721], [138.396783554, 38.250111333], [138.396813554, 38.249961054]]]}}, {"id": "44197", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485142581, 38.330139532], [138.484780078, 38.330118973], [138.485161479, 38.330248694], [138.485142581, 38.330139532]]]}}, {"id": "44198", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242128807, 37.970834892], [138.242053995, 37.970834721], [138.242455551, 37.971246108], [138.242128807, 37.970834892]]]}}, {"id": "44199", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.314884137, 38.000034225], [138.314415136, 38.000453775], [138.314965551, 38.000112], [138.314884137, 38.000034225]]]}}, {"id": "44200", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214568807, 37.837101505], [138.214324916, 37.836850667], [138.2141438, 37.836737054], [138.214290467, 37.837101505], [138.214568807, 37.837101505]]]}}, {"id": "44201", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241364643, 37.970637946], [138.241974838, 37.970479505], [138.241915305, 37.970390613], [138.241364643, 37.970637946]]]}}, {"id": "44202", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.258427782, 37.97372264], [138.258763411, 37.974360721], [138.258860726, 37.974329559], [138.258427782, 37.97372264]]]}}, {"id": "44203", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.218371855, 37.838379], [138.218588521, 37.838104279], [138.218402698, 37.838107892], [138.218371855, 37.838379]]]}}, {"id": "44204", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241201362, 37.83889536], [138.24081275, 37.838802865], [138.240883022, 37.838934532], [138.241201362, 37.83889536]]]}}, {"id": "44205", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.419907613, 38.254783532], [138.419653722, 38.254615468], [138.419554553, 38.254763532], [138.419907613, 38.254783532]]]}}, {"id": "44206", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.385649585, 38.236872748], [138.385378197, 38.236822198], [138.385342633, 38.237063865], [138.385649585, 38.236872748]]]}}, {"id": "44207", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445793139, 38.295210414], [138.445492023, 38.295192919], [138.445542866, 38.295443198], [138.445793139, 38.295210414]]]}}, {"id": "44208", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.420637056, 38.254642135], [138.420341505, 38.254659081], [138.420600117, 38.254868532], [138.420637056, 38.254642135]]]}}, {"id": "44209", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24994358, 37.843927306], [138.249786913, 37.844048414], [138.249958859, 37.844022306], [138.24994358, 37.843927306]]]}}, {"id": "44210", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213527419, 37.834828721], [138.213236005, 37.834869279], [138.213543256, 37.835081505], [138.213527419, 37.834828721]]]}}, {"id": "44211", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548120493, 38.082742595], [138.547701764, 38.083024441], [138.548176096, 38.082866712], [138.548120493, 38.082742595]]]}}, {"id": "44212", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233281582, 38.056637667], [138.232986861, 38.056465171], [138.233238249, 38.056747108], [138.233281582, 38.056637667]]]}}, {"id": "44213", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296966342, 38.158526279], [138.296892892, 38.158813739], [138.29713559, 38.158576712], [138.296966342, 38.158526279]]]}}, {"id": "44214", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.427339027, 38.254439919], [138.427179857, 38.254633252], [138.427542088, 38.254633252], [138.427339027, 38.254439919]]]}}, {"id": "44215", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442632361, 38.275715694], [138.442328197, 38.275600973], [138.442352088, 38.275815694], [138.442632361, 38.275715694]]]}}, {"id": "44216", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.465196719, 38.323989], [138.465507562, 38.323761775], [138.465207834, 38.323759838], [138.465196719, 38.323989]]]}}, {"id": "44217", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236277134, 38.064459054], [138.235979637, 38.064299333], [138.236118521, 38.064586559], [138.236277134, 38.064459054]]]}}, {"id": "44218", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.288862776, 37.888955919], [138.288589442, 37.889056468], [138.288862776, 37.889127027], [138.288862776, 37.888955919]]]}}, {"id": "44219", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.420742892, 38.255135748], [138.42043345, 38.255135748], [138.420664838, 38.255283532], [138.420742892, 38.255135748]]]}}, {"id": "44220", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.29891594, 38.14753736], [138.298590947, 38.147618748], [138.298926783, 38.147691802], [138.29891594, 38.14753736]]]}}, {"id": "44221", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231588833, 37.974144027], [138.231492166, 37.974404586], [138.23176022, 37.974471252], [138.231588833, 37.974144027]]]}}, {"id": "44222", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.317057523, 37.998723586], [138.317354838, 37.998358613], [138.316954916, 37.998628279], [138.317057523, 37.998723586]]]}}, {"id": "44223", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.347674254, 38.203347559], [138.347458949, 38.203599775], [138.347578106, 38.203630054], [138.347674254, 38.203347559]]]}}, {"id": "44224", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.25432275, 38.095223505], [138.254184968, 38.095053775], [138.254123022, 38.095177108], [138.25432275, 38.095223505]]]}}, {"id": "44225", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.28978, 37.890141468], [138.289432776, 37.89025036], [138.289811388, 37.890287027], [138.28978, 37.890141468]]]}}, {"id": "44226", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.257843061, 38.096921], [138.25755834, 38.096902387], [138.25767, 38.097060721], [138.257843061, 38.096921]]]}}, {"id": "44227", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.342585447, 37.969001198], [138.342611608, 37.968385], [138.342477082, 37.968988532], [138.342585447, 37.969001198]]]}}, {"id": "44228", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.385592918, 38.231617748], [138.385574864, 38.231438586], [138.385176524, 38.231572468], [138.385592918, 38.231617748]]]}}, {"id": "44229", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.286787782, 37.882337865], [138.28663917, 37.882591198], [138.286885279, 37.882474252], [138.286787782, 37.882337865]]]}}, {"id": "44230", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.449624812, 38.298773748], [138.449373969, 38.298983468], [138.449560078, 38.298988748], [138.449624812, 38.298773748]]]}}, {"id": "44231", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.342575551, 37.967348441], [138.342637977, 37.966671532], [138.342543113, 37.966678559], [138.342575551, 37.967348441]]]}}, {"id": "44232", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509283839, 38.291390613], [138.509005772, 38.291583387], [138.509131336, 38.291727], [138.509283839, 38.291390613]]]}}, {"id": "44233", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.495382944, 38.219367892], [138.495096278, 38.219512892], [138.495376524, 38.219526225], [138.495382944, 38.219367892]]]}}, {"id": "44234", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214666031, 37.836819279], [138.214461855, 37.836541505], [138.214596861, 37.836844279], [138.214666031, 37.836819279]]]}}, {"id": "44235", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485791751, 38.332641198], [138.48578786, 38.332368694], [138.48570786, 38.332391748], [138.485791751, 38.332641198]]]}}, {"id": "44236", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244769689, 37.968063198], [138.244735811, 37.968263198], [138.245037471, 37.968292081], [138.244769689, 37.968063198]]]}}, {"id": "44237", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248453022, 37.840543694], [138.248080804, 37.840397306], [138.248028586, 37.840462306], [138.248453022, 37.840543694]]]}}, {"id": "44238", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.465467834, 38.324754279], [138.465710895, 38.324632892], [138.465436719, 38.324656775], [138.465467834, 38.324754279]]]}}, {"id": "44239", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.218491855, 37.838942333], [138.218205746, 37.839029559], [138.2184938, 37.839125108], [138.218491855, 37.838942333]]]}}, {"id": "44240", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.310214812, 38.172777306], [138.310009585, 38.172581225], [138.309913061, 38.172758505], [138.310214812, 38.172777306]]]}}, {"id": "44241", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43479978, 38.290572667], [138.43472978, 38.290207387], [138.434645331, 38.290623225], [138.43479978, 38.290572667]]]}}, {"id": "44242", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214484916, 37.835984], [138.214581025, 37.836237054], [138.214830467, 37.836105667], [138.214484916, 37.835984]]]}}, {"id": "44243", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.535009585, 38.079230423], [138.534070208, 38.078960757], [138.534046874, 38.079037712], [138.535009585, 38.079230423]]]}}, {"id": "44244", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507502283, 38.260867865], [138.507851997, 38.260864775], [138.507541725, 38.260775081], [138.507502283, 38.260867865]]]}}, {"id": "44245", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23477214, 38.054468225], [138.235137419, 38.054498505], [138.234774916, 38.054392387], [138.23477214, 38.054468225]]]}}, {"id": "44246", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.312860973, 38.174529279], [138.312601245, 38.174334279], [138.312582088, 38.174522333], [138.312860973, 38.174529279]]]}}, {"id": "44247", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.258191051, 37.97296764], [138.258210778, 37.973575973], [138.258308054, 37.973561], [138.258191051, 37.97296764]]]}}, {"id": "44248", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.254155525, 37.844606198], [138.253714137, 37.844577027], [138.253679416, 37.844651748], [138.254155525, 37.844606198]]]}}, {"id": "44249", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.245352996, 38.090400441], [138.24493939, 38.090392387], [138.244938003, 38.090466279], [138.245352996, 38.090400441]]]}}, {"id": "44250", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239281051, 38.085009892], [138.239180467, 38.084776838], [138.239035746, 38.085136559], [138.239281051, 38.085009892]]]}}, {"id": "44251", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507773671, 38.257566198], [138.507421167, 38.257693414], [138.507691167, 38.257787586], [138.507773671, 38.257566198]]]}}, {"id": "44252", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.514983191, 38.333024225], [138.514719585, 38.332860892], [138.514773748, 38.333148108], [138.514983191, 38.333024225]]]}}, {"id": "44253", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.50179249, 38.071388117], [138.501015175, 38.071729883], [138.501955811, 38.071393793], [138.50179249, 38.071388117]]]}}, {"id": "44254", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.317886913, 37.998124667], [138.31833083, 37.997706586], [138.317802192, 37.998065586], [138.317886913, 37.998124667]]]}}, {"id": "44255", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.335004669, 38.198517306], [138.334676887, 38.19849036], [138.335008003, 38.198583414], [138.335004669, 38.198517306]]]}}, {"id": "44256", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.255054137, 38.096264613], [138.254845253, 38.096499054], [138.255007756, 38.096500721], [138.255054137, 38.096264613]]]}}, {"id": "44257", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.510954358, 38.299381721], [138.510740752, 38.299678387], [138.511007977, 38.299525892], [138.510954358, 38.299381721]]]}}, {"id": "44258", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.26699642, 38.112902108], [138.266693645, 38.112949333], [138.26670725, 38.113024333], [138.26699642, 38.112902108]]]}}, {"id": "44259", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229203256, 37.998729613], [138.228839922, 37.998589613], [138.228831582, 37.998681], [138.229203256, 37.998729613]]]}}, {"id": "44260", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.262378612, 38.105186279], [138.262272503, 38.104996], [138.262043333, 38.105115721], [138.262378612, 38.105186279]]]}}, {"id": "44261", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.357049053, 38.213729468], [138.356749611, 38.213703919], [138.356749611, 38.21378836], [138.357049053, 38.213729468]]]}}, {"id": "44262", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.279770389, 38.004711694], [138.279727173, 38.004799387], [138.280332555, 38.004885108], [138.279770389, 38.004711694]]]}}, {"id": "44263", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.390860726, 38.24717636], [138.390562114, 38.247100252], [138.390526278, 38.247296919], [138.390860726, 38.24717636]]]}}, {"id": "44264", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.297756498, 38.153366532], [138.297453995, 38.153423468], [138.297585668, 38.153512919], [138.297756498, 38.153366532]]]}}, {"id": "44265", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.501830389, 38.333894505], [138.501580661, 38.333789775], [138.501578716, 38.333962559], [138.501830389, 38.333894505]]]}}, {"id": "44266", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247598275, 38.091334613], [138.247342438, 38.091424054], [138.247520506, 38.091540171], [138.247598275, 38.091334613]]]}}, {"id": "44267", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.347166719, 38.202738387], [138.347087834, 38.203020892], [138.347216719, 38.203014225], [138.347166719, 38.202738387]]]}}, {"id": "44268", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.398983022, 38.246239108], [138.398743022, 38.246015225], [138.398674968, 38.246143279], [138.398983022, 38.246239108]]]}}, {"id": "44269", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.302150117, 38.161860414], [138.302082049, 38.162036802], [138.302229559, 38.161992081], [138.302150117, 38.161860414]]]}}, {"id": "44270", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.253024137, 37.844432865], [138.253036641, 37.844700081], [138.253150246, 37.844646198], [138.253024137, 37.844432865]]]}}, {"id": "44271", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.297275383, 38.147369027], [138.297027886, 38.147226252], [138.296999831, 38.147340973], [138.297275383, 38.147369027]]]}}, {"id": "44272", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.237537082, 38.028999892], [138.237408054, 38.029046559], [138.23773808, 38.029347613], [138.237537082, 38.028999892]]]}}, {"id": "44273", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.272621414, 38.117331108], [138.27266725, 38.116835559], [138.272563891, 38.116841198], [138.272621414, 38.117331108]]]}}, {"id": "44274", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23325131, 38.057104054], [138.233197977, 38.057338225], [138.233435188, 38.057245441], [138.23325131, 38.057104054]]]}}, {"id": "44275", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234156304, 37.994607667], [138.233963528, 37.994483505], [138.234044916, 37.994667667], [138.234156304, 37.994607667]]]}}, {"id": "44276", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232954112, 37.976197919], [138.232680506, 37.976110414], [138.23273856, 37.976339865], [138.232954112, 37.976197919]]]}}, {"id": "44277", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.291307173, 37.821117892], [138.291086329, 37.821004559], [138.291115772, 37.821235387], [138.291307173, 37.821117892]]]}}, {"id": "44278", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.49402786, 38.341542838], [138.493923139, 38.341735892], [138.494100078, 38.341667279], [138.49402786, 38.341542838]]]}}, {"id": "44279", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.279356304, 38.004686306], [138.279402218, 38.004603667], [138.278818366, 38.004499018], [138.279356304, 38.004686306]]]}}, {"id": "44280", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441143995, 38.280808748], [138.440775668, 38.280766802], [138.440881777, 38.280919027], [138.441143995, 38.280808748]]]}}, {"id": "44281", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507397328, 38.332053108], [138.507368716, 38.332323667], [138.507438171, 38.332333108], [138.507397328, 38.332053108]]]}}, {"id": "44282", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.289487497, 37.889376468], [138.289328612, 37.889594252], [138.289551115, 37.88952564], [138.289487497, 37.889376468]]]}}, {"id": "44283", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440915383, 38.281343748], [138.44079345, 38.281147081], [138.44072594, 38.281335694], [138.440915383, 38.281343748]]]}}, {"id": "44284", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509426005, 38.263703919], [138.509379922, 38.263976081], [138.509525551, 38.263905694], [138.509426005, 38.263703919]]]}}, {"id": "44285", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2142438, 37.835939], [138.214297419, 37.836147613], [138.214385473, 37.836113441], [138.2142438, 37.835939]]]}}, {"id": "44286", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.372838418, 37.837741811], [138.372625447, 37.837846297], [138.372851051, 37.837882081], [138.372838418, 37.837741811]]]}}, {"id": "44287", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213998249, 37.834695387], [138.213706589, 37.834805946], [138.213760195, 37.834929], [138.213998249, 37.834695387]]]}}, {"id": "44288", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24287, 37.962278748], [138.242441673, 37.962094586], [138.242407782, 37.962160135], [138.24287, 37.962278748]]]}}, {"id": "44289", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242040778, 38.087189892], [138.241818003, 38.087052946], [138.24177856, 38.087199054], [138.242040778, 38.087189892]]]}}, {"id": "44290", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.341988366, 38.199989505], [138.341797808, 38.200132], [138.342076693, 38.200113387], [138.341988366, 38.199989505]]]}}, {"id": "44291", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.388437393, 38.244714414], [138.388216278, 38.244578586], [138.388153217, 38.244818027], [138.388437393, 38.244714414]]]}}, {"id": "44292", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.342671362, 37.967620613], [138.342564617, 37.968101946], [138.342670337, 37.968102081], [138.342671362, 37.967620613]]]}}, {"id": "44293", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238601051, 37.806084], [138.238661894, 37.806347613], [138.238735227, 37.806110108], [138.238601051, 37.806084]]]}}, {"id": "44294", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.29109083, 38.006567667], [138.290471167, 38.006485054], [138.290470661, 38.006565414], [138.29109083, 38.006567667]]]}}, {"id": "44295", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.313369585, 38.175604279], [138.313222088, 38.175829], [138.313359585, 38.175852613], [138.313369585, 38.175604279]]]}}, {"id": "44296", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219958781, 38.022776838], [138.219701829, 38.022954613], [138.220011556, 38.022852667], [138.219958781, 38.022776838]]]}}, {"id": "44297", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.354237912, 38.210311721], [138.354008197, 38.210549225], [138.354289585, 38.210438946], [138.354237912, 38.210311721]]]}}, {"id": "44298", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.298325383, 38.153690135], [138.298116498, 38.153765135], [138.298297613, 38.153785694], [138.298325383, 38.153690135]]]}}, {"id": "44299", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.295268949, 38.157444649], [138.295307756, 38.157643901], [138.295409455, 38.157580802], [138.295268949, 38.157444649]]]}}, {"id": "44300", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.354446524, 38.209476441], [138.354261803, 38.209673667], [138.354474034, 38.209665333], [138.354446524, 38.209476441]]]}}, {"id": "44301", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.288071582, 37.811975946], [138.287957134, 37.812202333], [138.288131025, 37.812169838], [138.288071582, 37.811975946]]]}}, {"id": "44302", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.289756446, 38.006482721], [138.289136135, 38.006553721], [138.289754812, 38.006561802], [138.289756446, 38.006482721]]]}}, {"id": "44303", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.564342438, 38.084850667], [138.564196615, 38.084587613], [138.564087445, 38.084735946], [138.564342438, 38.084850667]]]}}, {"id": "44304", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563864462, 38.086304829], [138.563216641, 38.086602694], [138.563894034, 38.086355541], [138.563864462, 38.086304829]]]}}, {"id": "44305", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435056446, 38.288237667], [138.434718392, 38.288301], [138.434676719, 38.288361], [138.435056446, 38.288237667]]]}}, {"id": "44306", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213836835, 37.812277919], [138.214006835, 37.812469306], [138.214089339, 37.812430414], [138.213836835, 37.812277919]]]}}, {"id": "44307", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.46353144, 38.323745387], [138.463295058, 38.323708441], [138.46331061, 38.323761225], [138.46353144, 38.323745387]]]}}, {"id": "44308", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.463325331, 38.317553721], [138.463113943, 38.317389], [138.46320061, 38.317645387], [138.463325331, 38.317553721]]]}}, {"id": "44309", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.290920778, 37.813028721], [138.290802996, 37.813219279], [138.291067445, 37.813226225], [138.290920778, 37.813028721]]]}}, {"id": "44310", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.312722361, 38.178899279], [138.31272428, 38.178684279], [138.31263847, 38.178731775], [138.312722361, 38.178899279]]]}}, {"id": "44311", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.351162607, 38.205039775], [138.351038171, 38.205186441], [138.351302335, 38.205209505], [138.351162607, 38.205039775]]]}}, {"id": "44312", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.318511803, 38.205703135], [138.318175694, 38.20576564], [138.318537082, 38.205813414], [138.318511803, 38.205703135]]]}}, {"id": "44313", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.51516847, 38.332765054], [138.514929027, 38.332647279], [138.514900973, 38.332712], [138.51516847, 38.332765054]]]}}, {"id": "44314", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493468781, 38.211460946], [138.493189883, 38.211600667], [138.493350441, 38.211699279], [138.493468781, 38.211460946]]]}}, {"id": "44315", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2793338, 37.810541505], [138.279275746, 37.810727054], [138.279457977, 37.810693721], [138.2793338, 37.810541505]]]}}, {"id": "44316", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247151115, 37.965255135], [138.246906109, 37.965368748], [138.24725834, 37.96540264], [138.247151115, 37.965255135]]]}}, {"id": "44317", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.215439079, 37.836640387], [138.215571855, 37.836292892], [138.21548214, 37.836246775], [138.215439079, 37.836640387]]]}}, {"id": "44318", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.315167912, 38.186413721], [138.314968755, 38.186415387], [138.315107912, 38.186559], [138.315167912, 38.186413721]]]}}, {"id": "44319", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.300965383, 38.151293748], [138.300717328, 38.151234306], [138.300951505, 38.15139236], [138.300965383, 38.151293748]]]}}, {"id": "44320", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.428434332, 38.25445964], [138.428131556, 38.254471306], [138.42813655, 38.254546027], [138.428434332, 38.25445964]]]}}, {"id": "44321", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.224722698, 38.000314613], [138.224490195, 38.000388775], [138.224578807, 38.000501], [138.224722698, 38.000314613]]]}}, {"id": "44322", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231944384, 37.973478748], [138.232122438, 37.973418748], [138.231845772, 37.973331252], [138.231944384, 37.973478748]]]}}, {"id": "44323", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296910636, 38.155566802], [138.296634812, 38.155609586], [138.296802023, 38.155730694], [138.296910636, 38.155566802]]]}}, {"id": "44324", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212375447, 37.833143721], [138.212072114, 37.833189838], [138.21223489, 37.833357054], [138.212375447, 37.833143721]]]}}, {"id": "44325", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.282684669, 37.914473973], [138.282929948, 37.914578414], [138.283019948, 37.914460919], [138.282684669, 37.914473973]]]}}, {"id": "44326", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240953554, 37.804873441], [138.240790506, 37.804975108], [138.240988003, 37.805005946], [138.240953554, 37.804873441]]]}}, {"id": "44327", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507914501, 38.259469802], [138.507770337, 38.259647027], [138.507994773, 38.259593973], [138.507914501, 38.259469802]]]}}, {"id": "44328", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219460195, 37.837434], [138.219204643, 37.837493441], [138.219407977, 37.837570667], [138.219460195, 37.837434]]]}}, {"id": "44329", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.210508781, 37.830479559], [138.210299339, 37.830581775], [138.210580169, 37.830602333], [138.210508781, 37.830479559]]]}}, {"id": "44330", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.512486304, 38.302179775], [138.512796861, 38.302107559], [138.51241131, 38.302124505], [138.512486304, 38.302179775]]]}}, {"id": "44331", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441368664, 38.294894306], [138.441175888, 38.294977081], [138.441443943, 38.295093748], [138.441368664, 38.294894306]]]}}, {"id": "44332", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.261212503, 38.105570441], [138.260957224, 38.105545721], [138.26118, 38.105662667], [138.261212503, 38.105570441]]]}}, {"id": "44333", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.291582412, 38.006493387], [138.292188275, 38.006560892], [138.292187834, 38.006490946], [138.291582412, 38.006493387]]]}}, {"id": "44334", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.437405642, 38.290355973], [138.437453969, 38.290583198], [138.437537588, 38.290549865], [138.437405642, 38.290355973]]]}}, {"id": "44335", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.269425577, 38.113521838], [138.269209468, 38.113684613], [138.269467808, 38.113599892], [138.269425577, 38.113521838]]]}}, {"id": "44336", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244052192, 37.838961468], [138.24379275, 37.838881198], [138.243803307, 37.839072027], [138.244052192, 37.838961468]]]}}, {"id": "44337", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.323604306, 38.195957306], [138.323445422, 38.196168694], [138.323685136, 38.196071198], [138.323604306, 38.195957306]]]}}, {"id": "44338", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502186226, 38.332765333], [138.502200947, 38.333006441], [138.502302607, 38.332820333], [138.502186226, 38.332765333]]]}}, {"id": "44339", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.359470169, 37.830410027], [138.359649883, 37.83029364], [138.359300169, 37.830309748], [138.359470169, 37.830410027]]]}}, {"id": "44340", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.391558249, 38.240817198], [138.391712412, 38.24061164], [138.391499922, 38.240634414], [138.391558249, 38.240817198]]]}}, {"id": "44341", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.366366965, 37.835462919], [138.366129001, 37.835583721], [138.366433982, 37.835608054], [138.366366965, 37.835462919]]]}}, {"id": "44342", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.299890389, 38.151228198], [138.299818716, 38.151430414], [138.29997594, 38.151275694], [138.299890389, 38.151228198]]]}}, {"id": "44343", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.252472387, 37.80288755], [138.252375655, 37.802947712], [138.252729974, 37.803148036], [138.252472387, 37.80288755]]]}}, {"id": "44344", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435346446, 38.288869333], [138.435222555, 38.288622667], [138.435110895, 38.288829613], [138.435346446, 38.288869333]]]}}, {"id": "44345", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231036861, 37.990857108], [138.231349922, 37.990882667], [138.231425746, 37.990819613], [138.231036861, 37.990857108]]]}}, {"id": "44346", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.206776252, 37.826063468], [138.207065136, 37.825954027], [138.2067107, 37.825961252], [138.206776252, 37.826063468]]]}}, {"id": "44347", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.448314812, 38.296291802], [138.448234527, 38.29649764], [138.448325084, 38.296523468], [138.448314812, 38.296291802]]]}}, {"id": "44348", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.211369611, 37.831541225], [138.211330169, 37.831732054], [138.211472672, 37.831643721], [138.211369611, 37.831541225]]]}}, {"id": "44349", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.470094838, 38.065313667], [138.469444501, 38.065546279], [138.470124916, 38.065357838], [138.470094838, 38.065313667]]]}}, {"id": "44350", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.287012412, 37.809950667], [138.286966861, 37.810160387], [138.287077134, 37.810107613], [138.287012412, 37.809950667]]]}}, {"id": "44351", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229877717, 37.978387081], [138.229776589, 37.978537081], [138.229908807, 37.97857264], [138.229877717, 37.978387081]]]}}, {"id": "44352", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230414086, 37.999279892], [138.230147977, 37.999397667], [138.230466031, 37.999328775], [138.230414086, 37.999279892]]]}}, {"id": "44353", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.256893087, 37.967901532], [138.25668808, 37.967889306], [138.256764475, 37.968081252], [138.256893087, 37.967901532]]]}}, {"id": "44354", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.358168223, 38.212803081], [138.358026278, 38.212932252], [138.35829655, 38.212893081], [138.358168223, 38.212803081]]]}}, {"id": "44355", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22133406, 38.016307667], [138.221384332, 38.016526], [138.221493217, 38.016371559], [138.22133406, 38.016307667]]]}}, {"id": "44356", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213314617, 37.837294279], [138.213568495, 37.837203721], [138.213210999, 37.837192054], [138.213314617, 37.837294279]]]}}, {"id": "44357", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.330362555, 37.953416613], [138.330214643, 37.95298236], [138.330276109, 37.953424171], [138.330362555, 37.953416613]]]}}, {"id": "44358", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.204330973, 37.823578748], [138.204307367, 37.823779865], [138.204450973, 37.823777919], [138.204330973, 37.823578748]]]}}, {"id": "44359", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248915006, 37.964826252], [138.248718054, 37.96477736], [138.248680558, 37.964919865], [138.248915006, 37.964826252]]]}}, {"id": "44360", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.451622283, 38.308475135], [138.451650337, 38.308670135], [138.451769494, 38.308623198], [138.451622283, 38.308475135]]]}}, {"id": "44361", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.390060999, 38.24021636], [138.389879611, 38.24031636], [138.390077665, 38.24035136], [138.390060999, 38.24021636]]]}}, {"id": "44362", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.20482847, 37.828559586], [138.205056524, 37.828681802], [138.205140143, 37.828573198], [138.20482847, 37.828559586]]]}}, {"id": "44363", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235197691, 38.064314054], [138.235035473, 38.064475171], [138.235147977, 38.064537387], [138.235197691, 38.064314054]]]}}, {"id": "44364", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.272672244, 38.117456], [138.272589196, 38.117671838], [138.272753359, 38.117561559], [138.272672244, 38.117456]]]}}, {"id": "44365", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22053022, 37.836880946], [138.220369948, 37.836834838], [138.220452996, 37.836950108], [138.22053022, 37.836880946]]]}}, {"id": "44366", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212869053, 37.831889559], [138.212651556, 37.832000667], [138.212699053, 37.832107613], [138.212869053, 37.831889559]]]}}, {"id": "44367", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24149022, 38.074169613], [138.241268003, 38.074270441], [138.24144939, 38.074330441], [138.24149022, 38.074169613]]]}}, {"id": "44368", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.27568406, 37.808649279], [138.27566489, 37.808851775], [138.275756278, 37.808680667], [138.27568406, 37.808649279]]]}}, {"id": "44369", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228465746, 37.984396532], [138.228591025, 37.984439027], [138.228604643, 37.984248198], [138.228465746, 37.984396532]]]}}, {"id": "44370", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241426887, 38.069310721], [138.24123856, 38.069405721], [138.241497717, 38.069387387], [138.241426887, 38.069310721]]]}}, {"id": "44371", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.318015966, 38.187130108], [138.317951803, 38.187341775], [138.318113748, 38.187264279], [138.318015966, 38.187130108]]]}}, {"id": "44372", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212773217, 37.832356505], [138.212981556, 37.832487892], [138.21303406, 37.832439279], [138.212773217, 37.832356505]]]}}, {"id": "44373", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.431156005, 38.257393775], [138.430957665, 38.257501], [138.431161829, 38.257456559], [138.431156005, 38.257393775]]]}}, {"id": "44374", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.361088495, 37.83096836], [138.361105162, 37.831142252], [138.361189611, 37.831128919], [138.361088495, 37.83096836]]]}}, {"id": "44375", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242683839, 38.074853775], [138.242394112, 38.074767667], [138.242679948, 38.074899892], [138.242683839, 38.074853775]]]}}, {"id": "44376", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493906835, 38.216894559], [138.493647665, 38.217067054], [138.493909883, 38.216987613], [138.493906835, 38.216894559]]]}}, {"id": "44377", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23287214, 37.986339027], [138.232762412, 37.986180973], [138.232697419, 37.986310973], [138.23287214, 37.986339027]]]}}, {"id": "44378", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23008131, 38.001287387], [138.229999364, 38.001466838], [138.230178249, 38.001336559], [138.23008131, 38.001287387]]]}}, {"id": "44379", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219597691, 37.837830108], [138.219453256, 37.837889559], [138.219487977, 37.837928171], [138.219597691, 37.837830108]]]}}, {"id": "44380", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.250120272, 37.964527919], [138.249969728, 37.964407081], [138.24993834, 37.964579027], [138.250120272, 37.964527919]]]}}, {"id": "44381", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.425702218, 38.293730171], [138.42548917, 38.293838775], [138.425524163, 38.293895441], [138.425702218, 38.293730171]]]}}, {"id": "44382", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.515164034, 38.333920333], [138.514935422, 38.333876171], [138.515016524, 38.333980613], [138.515164034, 38.333920333]]]}}, {"id": "44383", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.298641777, 38.154004306], [138.298490947, 38.154106252], [138.298633995, 38.154141252], [138.298641777, 38.154004306]]]}}, {"id": "44384", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.358152387, 38.213320027], [138.357839339, 38.213269748], [138.357808781, 38.213310586], [138.358152387, 38.213320027]]]}}, {"id": "44385", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.289102724, 37.819392054], [138.289046057, 37.819534279], [138.289239663, 37.819475387], [138.289102724, 37.819392054]]]}}, {"id": "44386", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563773554, 38.085524279], [138.563536329, 38.085465387], [138.563788275, 38.085650667], [138.563773554, 38.085524279]]]}}, {"id": "44387", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228498521, 37.983411252], [138.228690752, 37.983430973], [138.22864297, 37.98334736], [138.228498521, 37.983411252]]]}}, {"id": "44388", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296392957, 38.158832036], [138.296546226, 38.158983306], [138.296596524, 38.158860396], [138.296392957, 38.158832036]]]}}, {"id": "44389", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.269875188, 37.810271225], [138.270041855, 37.810392613], [138.270106031, 37.810297613], [138.269875188, 37.810271225]]]}}, {"id": "44390", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.360991855, 38.218606694], [138.360876589, 38.218762802], [138.361047419, 38.218705306], [138.360991855, 38.218606694]]]}}, {"id": "44391", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.323607393, 38.191422306], [138.323572944, 38.191626468], [138.323691284, 38.191619802], [138.323607393, 38.191422306]]]}}, {"id": "44392", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.44596786, 38.296012081], [138.445923411, 38.296177081], [138.446071751, 38.29616264], [138.44596786, 38.296012081]]]}}, {"id": "44393", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.288300687, 38.006491919], [138.287844669, 38.006565162], [138.288302049, 38.006567865], [138.288300687, 38.006491919]]]}}, {"id": "44394", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22845131, 37.977902081], [138.228160467, 37.97793236], [138.228467419, 37.977944306], [138.22845131, 37.977902081]]]}}, {"id": "44395", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244643554, 38.079092667], [138.244444112, 38.079154892], [138.244584112, 38.079200441], [138.244643554, 38.079092667]]]}}, {"id": "44396", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.438857393, 38.265376], [138.438685447, 38.265509613], [138.438896005, 38.265486], [138.438857393, 38.265376]]]}}, {"id": "44397", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434562827, 38.287249892], [138.434591997, 38.287494892], [138.434652555, 38.287282946], [138.434562827, 38.287249892]]]}}, {"id": "44398", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.505059274, 38.245186468], [138.505111219, 38.245002306], [138.504913165, 38.245096198], [138.505059274, 38.245186468]]]}}, {"id": "44399", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.237629689, 37.839242027], [138.23781358, 37.839457865], [138.237845811, 37.839379802], [138.237629689, 37.839242027]]]}}, {"id": "44400", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236646057, 37.805701225], [138.236879105, 37.805829], [138.237004669, 37.805755387], [138.236646057, 37.805701225]]]}}, {"id": "44401", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.515937367, 38.331107838], [138.515864864, 38.330880054], [138.515770415, 38.330900892], [138.515937367, 38.331107838]]]}}, {"id": "44402", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.468008664, 38.324194279], [138.467814228, 38.324186225], [138.467976446, 38.324290108], [138.468008664, 38.324194279]]]}}, {"id": "44403", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442940973, 38.280334306], [138.442714034, 38.280230694], [138.442781803, 38.280413198], [138.442940973, 38.280334306]]]}}, {"id": "44404", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234979948, 37.971452081], [138.234768003, 37.97133736], [138.234825772, 37.97151264], [138.234979948, 37.971452081]]]}}, {"id": "44405", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.285096913, 37.899230919], [138.285293307, 37.899351198], [138.285376641, 37.899252865], [138.285096913, 37.899230919]]]}}, {"id": "44406", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227024086, 37.979288748], [138.226937977, 37.979367919], [138.227094916, 37.979433748], [138.227024086, 37.979288748]]]}}, {"id": "44407", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.51542847, 38.332377559], [138.515452633, 38.332607559], [138.515592918, 38.332550054], [138.51542847, 38.332377559]]]}}, {"id": "44408", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232171025, 38.058422946], [138.232472412, 38.058418225], [138.232149637, 38.058366], [138.232171025, 38.058422946]]]}}, {"id": "44409", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230255746, 37.999685721], [138.230112698, 37.999469333], [138.230029637, 37.999499613], [138.230255746, 37.999685721]]]}}, {"id": "44410", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275283787, 38.002697153], [138.274997108, 38.002373198], [138.274932192, 38.002422432], [138.275283787, 38.002697153]]]}}, {"id": "44411", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248380661, 37.967488081], [138.248123502, 37.967832198], [138.248197056, 37.967861973], [138.248380661, 37.967488081]]]}}, {"id": "44412", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.261892412, 37.803751505], [138.262019637, 37.803912613], [138.262080752, 37.803772054], [138.261892412, 37.803751505]]]}}, {"id": "44413", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.282032361, 38.00549382], [138.281689222, 38.005308757], [138.281654929, 38.005386577], [138.282032361, 38.00549382]]]}}, {"id": "44414", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235636861, 38.046906838], [138.235700752, 38.046724333], [138.235564643, 38.046745441], [138.235636861, 38.046906838]]]}}, {"id": "44415", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536910169, 38.082222694], [138.536797951, 38.082321865], [138.537028781, 38.082391586], [138.536910169, 38.082222694]]]}}, {"id": "44416", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.260214163, 38.102517946], [138.260221388, 38.102707667], [138.260336394, 38.102664333], [138.260214163, 38.102517946]]]}}, {"id": "44417", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248281946, 37.961104865], [138.248129728, 37.961192919], [138.248264163, 37.96127764], [138.248281946, 37.961104865]]]}}, {"id": "44418", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.446364812, 38.296005414], [138.446265914, 38.296204306], [138.446364812, 38.296217919], [138.446364812, 38.296005414]]]}}, {"id": "44419", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.494667639, 38.070377108], [138.494784306, 38.070171532], [138.494701803, 38.070133225], [138.494667639, 38.070377108]]]}}, {"id": "44420", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.467063113, 38.324138441], [138.467018949, 38.324345387], [138.467161167, 38.324190387], [138.467063113, 38.324138441]]]}}, {"id": "44421", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502893217, 38.333260225], [138.50289511, 38.333477559], [138.502967328, 38.333449225], [138.502893217, 38.333260225]]]}}, {"id": "44422", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.302188716, 38.162270694], [138.302016498, 38.16238264], [138.302241219, 38.162356802], [138.302188716, 38.162270694]]]}}, {"id": "44423", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233996031, 38.047107387], [138.234030752, 38.047321], [138.234104916, 38.047260721], [138.233996031, 38.047107387]]]}}, {"id": "44424", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.462705966, 38.323736667], [138.462733113, 38.323911225], [138.462816719, 38.323744279], [138.462705966, 38.323736667]]]}}, {"id": "44425", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275999053, 37.809132054], [138.275801284, 37.809164559], [138.275963502, 37.809219838], [138.275999053, 37.809132054]]]}}, {"id": "44426", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.277164384, 37.90786564], [138.277186329, 37.907700919], [138.27707939, 37.907697027], [138.277164384, 37.90786564]]]}}, {"id": "44427", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.268297523, 38.113071559], [138.268043645, 38.113054892], [138.268266135, 38.113132387], [138.268297523, 38.113071559]]]}}, {"id": "44428", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.472061167, 38.322832586], [138.472051725, 38.323009802], [138.472149494, 38.322939532], [138.472061167, 38.322832586]]]}}, {"id": "44429", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.243764968, 37.838624802], [138.243556641, 37.83871064], [138.243679974, 37.838796468], [138.243764968, 37.838624802]]]}}, {"id": "44430", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247833606, 37.966053468], [138.247630558, 37.966108468], [138.247902503, 37.966183748], [138.247833606, 37.966053468]]]}}, {"id": "44431", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.286366394, 37.882065919], [138.286316667, 37.882287865], [138.286432218, 37.882205081], [138.286366394, 37.882065919]]]}}, {"id": "44432", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275476291, 38.002752847], [138.275784682, 38.003057874], [138.275836926, 38.003008901], [138.275476291, 38.002752847]]]}}, {"id": "44433", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.44682786, 38.295557081], [138.446681751, 38.295683468], [138.446850636, 38.295609865], [138.44682786, 38.295557081]]]}}, {"id": "44434", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226221582, 38.023038775], [138.226079364, 38.022946], [138.226106861, 38.023142946], [138.226221582, 38.023038775]]]}}, {"id": "44435", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.228127977, 37.983062919], [138.228086031, 37.983276252], [138.228200467, 37.983269306], [138.228127977, 37.983062919]]]}}, {"id": "44436", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.243629974, 37.839361748], [138.243444968, 37.839274252], [138.243463307, 37.839384802], [138.243629974, 37.839361748]]]}}, {"id": "44437", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.459204773, 38.311937054], [138.45943786, 38.312010387], [138.459452309, 38.311906775], [138.459204773, 38.311937054]]]}}, {"id": "44438", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.313239857, 38.178221775], [138.313291803, 38.178403721], [138.313396524, 38.178326225], [138.313239857, 38.178221775]]]}}, {"id": "44439", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.459459196, 38.322809559], [138.459444475, 38.322977613], [138.459575863, 38.322926775], [138.459459196, 38.322809559]]]}}, {"id": "44440", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434161997, 38.287647667], [138.43390061, 38.287748775], [138.434188106, 38.287692667], [138.434161997, 38.287647667]]]}}, {"id": "44441", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434148664, 38.286673505], [138.434085331, 38.286788775], [138.434247834, 38.286776], [138.434148664, 38.286673505]]]}}, {"id": "44442", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.217828249, 37.838803721], [138.217585473, 37.838701225], [138.217819637, 37.838842613], [138.217828249, 37.838803721]]]}}, {"id": "44443", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.368613281, 37.835682892], [138.368826407, 37.835694243], [138.368510415, 37.835579847], [138.368613281, 37.835682892]]]}}, {"id": "44444", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240780506, 38.077953505], [138.240870778, 38.078162667], [138.240939663, 38.078114892], [138.240780506, 38.077953505]]]}}, {"id": "44445", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.505280661, 38.24537064], [138.505139001, 38.245515081], [138.505342607, 38.245506198], [138.505280661, 38.24537064]]]}}, {"id": "44446", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.433204501, 38.287917387], [138.433375616, 38.287759613], [138.433178392, 38.287858225], [138.433204501, 38.287917387]]]}}, {"id": "44447", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374156719, 38.227809721], [138.37403725, 38.227972775], [138.374175616, 38.227959441], [138.374156719, 38.227809721]]]}}, {"id": "44448", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244643839, 38.073613775], [138.244434384, 38.073589333], [138.244676057, 38.073693775], [138.244643839, 38.073613775]]]}}, {"id": "44449", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.318453748, 38.205273135], [138.318489027, 38.205443414], [138.318639585, 38.205406468], [138.318453748, 38.205273135]]]}}, {"id": "44450", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232070506, 37.974102919], [138.232279105, 37.974034027], [138.23205939, 37.973980135], [138.232070506, 37.974102919]]]}}, {"id": "44451", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.312943191, 38.174632892], [138.312929027, 38.174765946], [138.313013748, 38.174669838], [138.312943191, 38.174632892]]]}}, {"id": "44452", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.448177004, 38.307877081], [138.448017276, 38.307706532], [138.448043943, 38.307939586], [138.448177004, 38.307877081]]]}}, {"id": "44453", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.211631829, 37.832844279], [138.211640169, 37.832987054], [138.211872114, 37.833024838], [138.211631829, 37.832844279]]]}}, {"id": "44454", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.313428755, 38.175086225], [138.313584034, 38.175155667], [138.313617367, 38.175013721], [138.313428755, 38.175086225]]]}}, {"id": "44455", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281373022, 37.903230919], [138.281261089, 37.903369252], [138.281358586, 37.903419802], [138.281373022, 37.903230919]]]}}, {"id": "44456", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226737134, 37.98361736], [138.2266038, 37.983803468], [138.226755746, 37.983691802], [138.226737134, 37.98361736]]]}}, {"id": "44457", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.430834332, 38.257002667], [138.430616835, 38.256947667], [138.43081655, 38.257051838], [138.430834332, 38.257002667]]]}}, {"id": "44458", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356729857, 37.829554225], [138.356590973, 37.829622559], [138.356875694, 37.829626721], [138.356729857, 37.829554225]]]}}, {"id": "44459", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.285146913, 37.899631468], [138.285198859, 37.899798973], [138.285343307, 37.899735919], [138.285146913, 37.899631468]]]}}, {"id": "44460", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248044423, 37.840170081], [138.248106641, 37.84032064], [138.248194423, 37.84023036], [138.248044423, 37.840170081]]]}}, {"id": "44461", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241226329, 38.087065171], [138.240998275, 38.087165441], [138.241025499, 38.087213775], [138.241226329, 38.087065171]]]}}, {"id": "44462", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275206278, 37.809434], [138.274991556, 37.809387892], [138.274967108, 37.809457054], [138.275206278, 37.809434]]]}}, {"id": "44463", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232650752, 38.003354054], [138.232664358, 38.003509054], [138.232724358, 38.003364892], [138.232650752, 38.003354054]]]}}, {"id": "44464", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434363113, 38.290182387], [138.43456978, 38.290221559], [138.434430895, 38.290085441], [138.434363113, 38.290182387]]]}}, {"id": "44465", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.206114864, 37.827500135], [138.206247082, 37.827440414], [138.206137912, 37.827333198], [138.206114864, 37.827500135]]]}}, {"id": "44466", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220759339, 38.013579613], [138.22059655, 38.013426], [138.220549883, 38.013546], [138.220759339, 38.013579613]]]}}, {"id": "44467", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43178725, 38.292898775], [138.431646135, 38.292749613], [138.431640856, 38.292878225], [138.43178725, 38.292898775]]]}}, {"id": "44468", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.301926226, 38.162064586], [138.301857056, 38.162167081], [138.302015383, 38.162118198], [138.301926226, 38.162064586]]]}}, {"id": "44469", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445570584, 38.308160414], [138.445429754, 38.308258468], [138.44548725, 38.308289586], [138.445570584, 38.308160414]]]}}, {"id": "44470", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573063502, 38.067071135], [138.573133217, 38.067237802], [138.573238223, 38.067093919], [138.573063502, 38.067071135]]]}}, {"id": "44471", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227191582, 37.983891532], [138.22701297, 37.983840135], [138.22707297, 37.984008748], [138.227191582, 37.983891532]]]}}, {"id": "44472", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441854838, 38.28044736], [138.442036783, 38.280348468], [138.441782607, 38.280356532], [138.441854838, 38.28044736]]]}}, {"id": "44473", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.278927108, 37.810798171], [138.279164916, 37.810857613], [138.279174916, 37.810809559], [138.278927108, 37.810798171]]]}}, {"id": "44474", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.313812088, 38.174729279], [138.313692361, 38.174869], [138.31388847, 38.174866775], [138.313812088, 38.174729279]]]}}, {"id": "44475", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247593333, 37.965261802], [138.247571673, 37.965460135], [138.247661673, 37.965314027], [138.247593333, 37.965261802]]]}}, {"id": "44476", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517532361, 38.327621721], [138.517469585, 38.327419775], [138.517412361, 38.327562279], [138.517532361, 38.327621721]]]}}, {"id": "44477", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.282317471, 37.91170036], [138.282059948, 37.911608135], [138.282316913, 37.911737865], [138.282317471, 37.91170036]]]}}, {"id": "44478", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.415758145, 38.252152414], [138.415849533, 38.252293252], [138.415894812, 38.252215468], [138.415758145, 38.252152414]]]}}, {"id": "44479", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230460467, 38.039739613], [138.230244643, 38.039779054], [138.230467419, 38.039845171], [138.230460467, 38.039739613]]]}}, {"id": "44480", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227180195, 37.989759054], [138.227072698, 37.989894054], [138.22719214, 37.989852946], [138.227180195, 37.989759054]]]}}, {"id": "44481", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.384161245, 38.231433892], [138.384029585, 38.231548333], [138.384161245, 38.231568054], [138.384161245, 38.231433892]]]}}, {"id": "44482", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219665188, 37.809908748], [138.219854916, 37.809840414], [138.219635746, 37.809797081], [138.219665188, 37.809908748]]]}}, {"id": "44483", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.436224228, 38.291383748], [138.436101725, 38.291509586], [138.436162555, 38.29153736], [138.436224228, 38.291383748]]]}}, {"id": "44484", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24423939, 38.073567946], [138.244139663, 38.073694054], [138.24426856, 38.073656559], [138.24423939, 38.073567946]]]}}, {"id": "44485", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23901214, 38.084271559], [138.238900467, 38.084444054], [138.239054643, 38.084302946], [138.23901214, 38.084271559]]]}}, {"id": "44486", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212749053, 37.832984838], [138.212836005, 37.833130667], [138.212879883, 37.833054559], [138.212749053, 37.832984838]]]}}, {"id": "44487", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441266524, 38.276844027], [138.441236524, 38.277025694], [138.44133153, 38.276997081], [138.441266524, 38.276844027]]]}}, {"id": "44488", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.217163256, 37.838243441], [138.217158521, 37.838138171], [138.216997134, 37.838130108], [138.217163256, 37.838243441]]]}}, {"id": "44489", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24937192, 37.841089802], [138.249340246, 37.841278414], [138.249407471, 37.841089802], [138.24937192, 37.841089802]]]}}, {"id": "44490", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232178807, 37.990152108], [138.232073528, 37.990235441], [138.2321938, 37.990227108], [138.232178807, 37.990152108]]]}}, {"id": "44491", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.518092633, 38.327811721], [138.518162918, 38.327972279], [138.518197082, 38.327848387], [138.518092633, 38.327811721]]]}}, {"id": "44492", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212064617, 37.831219279], [138.212280441, 37.831157054], [138.212057665, 37.831185667], [138.212064617, 37.831219279]]]}}, {"id": "44493", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.295094916, 38.158673198], [138.295303281, 38.158735595], [138.295288911, 38.15863727], [138.295094916, 38.158673198]]]}}, {"id": "44494", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493881284, 38.217060667], [138.493954617, 38.217208441], [138.494038223, 38.217098171], [138.493881284, 38.217060667]]]}}, {"id": "44495", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294853995, 38.145109586], [138.29496345, 38.145243198], [138.294969559, 38.14510764], [138.294853995, 38.145109586]]]}}, {"id": "44496", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220225162, 38.021532667], [138.220387613, 38.021574802], [138.220331284, 38.021486], [138.220225162, 38.021532667]]]}}, {"id": "44497", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246277497, 37.961121532], [138.246488612, 37.961054865], [138.246242503, 37.961044865], [138.246277497, 37.961121532]]]}}, {"id": "44498", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213688249, 37.835178721], [138.213823528, 37.835143721], [138.213674916, 37.835025387], [138.213688249, 37.835178721]]]}}, {"id": "44499", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.460450856, 38.323317613], [138.46062642, 38.323395667], [138.460641971, 38.323308171], [138.460450856, 38.323317613]]]}}, {"id": "44500", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493377393, 38.213215108], [138.493259053, 38.213360946], [138.493379053, 38.213361505], [138.493377393, 38.213215108]]]}}, {"id": "44501", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22541214, 37.807928748], [138.225539079, 37.808053721], [138.225566304, 37.807905414], [138.22541214, 37.807928748]]]}}, {"id": "44502", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241010778, 37.805277054], [138.240881608, 37.805354838], [138.241072438, 37.805351225], [138.241010778, 37.805277054]]]}}, {"id": "44503", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.223410467, 37.808144586], [138.223517691, 37.80830764], [138.223542698, 37.808249586], [138.223410467, 37.808144586]]]}}, {"id": "44504", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.25782642, 37.969265135], [138.257720311, 37.969387919], [138.25780808, 37.96943764], [138.25782642, 37.969265135]]]}}, {"id": "44505", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236764423, 37.840753694], [138.236614695, 37.840836468], [138.236729416, 37.840911748], [138.236764423, 37.840753694]]]}}, {"id": "44506", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.534327108, 38.077490468], [138.534244332, 38.077672694], [138.534312672, 38.077684919], [138.534327108, 38.077490468]]]}}, {"id": "44507", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.260451946, 38.104610441], [138.26041834, 38.104751559], [138.260560272, 38.104727667], [138.260451946, 38.104610441]]]}}, {"id": "44508", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.290891388, 38.142032748], [138.291020078, 38.142176532], [138.291055642, 38.142108748], [138.290891388, 38.142032748]]]}}, {"id": "44509", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.252486693, 37.96402764], [138.252372218, 37.964140414], [138.252506978, 37.964148198], [138.252486693, 37.96402764]]]}}, {"id": "44510", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.329379883, 37.951029532], [138.329310778, 37.951070892], [138.329587691, 37.951247387], [138.329379883, 37.951029532]]]}}, {"id": "44511", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.322247523, 37.823124532], [138.322288911, 37.823262865], [138.322394747, 37.823125919], [138.322247523, 37.823124532]]]}}, {"id": "44512", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.319458755, 38.205960919], [138.319365694, 38.20615564], [138.319473476, 38.206163414], [138.319458755, 38.205960919]]]}}, {"id": "44513", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.284712192, 37.900846748], [138.284869144, 37.90083564], [138.284719974, 37.900746468], [138.284712192, 37.900846748]]]}}, {"id": "44514", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231760752, 37.997272946], [138.231562698, 37.997370441], [138.23176131, 37.997359333], [138.231760752, 37.997272946]]]}}, {"id": "44515", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229031025, 37.984957919], [138.229104643, 37.984771252], [138.228928807, 37.984978468], [138.229031025, 37.984957919]]]}}, {"id": "44516", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509185811, 38.284510054], [138.509370532, 38.284513667], [138.509207198, 38.284463387], [138.509185811, 38.284510054]]]}}, {"id": "44517", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.276316005, 37.809810108], [138.276359611, 37.809936225], [138.276450169, 37.809882054], [138.276316005, 37.809810108]]]}}, {"id": "44518", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.515331245, 38.333189505], [138.515200143, 38.333327838], [138.515353476, 38.333298387], [138.515331245, 38.333189505]]]}}, {"id": "44519", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.298610389, 38.149073748], [138.298469001, 38.149246252], [138.298632049, 38.149134027], [138.298610389, 38.149073748]]]}}, {"id": "44520", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212691829, 37.831670387], [138.212671829, 37.831837054], [138.212816278, 37.831674279], [138.212691829, 37.831670387]]]}}, {"id": "44521", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241863554, 38.074389054], [138.241752438, 38.074259054], [138.241731894, 38.074304892], [138.241863554, 38.074389054]]]}}, {"id": "44522", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281091362, 37.902731468], [138.28126275, 37.902657306], [138.281076913, 37.902652306], [138.281091362, 37.902731468]]]}}, {"id": "44523", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.330775058, 37.824394532], [138.330969494, 37.824370919], [138.330775331, 37.824324252], [138.330775058, 37.824394532]]]}}, {"id": "44524", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.460452529, 38.322868441], [138.460351699, 38.322789], [138.460289196, 38.322942333], [138.460452529, 38.322868441]]]}}, {"id": "44525", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.390669339, 38.241189973], [138.39076406, 38.241338306], [138.390797134, 38.241202468], [138.390669339, 38.241189973]]]}}, {"id": "44526", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226548249, 37.979381532], [138.226820467, 37.979427081], [138.226539079, 37.979361802], [138.226548249, 37.979381532]]]}}, {"id": "44527", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.440483645, 38.304191802], [138.440294475, 38.304168748], [138.440425863, 38.304278468], [138.440483645, 38.304191802]]]}}, {"id": "44528", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.225632672, 38.023022946], [138.225656835, 38.023205171], [138.225746304, 38.023171], [138.225632672, 38.023022946]]]}}, {"id": "44529", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.203870415, 37.821082081], [138.203990143, 37.82093736], [138.203809027, 37.820980135], [138.203870415, 37.821082081]]]}}, {"id": "44530", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.204587367, 37.828365973], [138.204777912, 37.828401532], [138.2047107, 37.828284586], [138.204587367, 37.828365973]]]}}, {"id": "44531", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231157691, 37.989187387], [138.231236031, 37.989314333], [138.231319637, 37.989211], [138.231157691, 37.989187387]]]}}, {"id": "44532", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509987198, 38.289597279], [138.509905525, 38.289762559], [138.510037198, 38.289703108], [138.509987198, 38.289597279]]]}}, {"id": "44533", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442446005, 37.882852081], [138.442332944, 37.882990135], [138.442441284, 37.883013198], [138.442446005, 37.882852081]]]}}, {"id": "44534", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.48848869, 38.337312586], [138.488528418, 38.337141468], [138.48844703, 38.337142306], [138.48848869, 38.337312586]]]}}, {"id": "44535", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493353774, 38.212979838], [138.493371284, 38.213140946], [138.493460999, 38.213032613], [138.493353774, 38.212979838]]]}}, {"id": "44536", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.506780661, 38.331874505], [138.506733722, 38.332008108], [138.506901219, 38.331970892], [138.506780661, 38.331874505]]]}}, {"id": "44537", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552109144, 38.024902667], [138.552066641, 38.025065721], [138.552180532, 38.025027667], [138.552109144, 38.024902667]]]}}, {"id": "44538", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232488275, 37.973601532], [138.232486887, 37.973747919], [138.232604384, 37.973753198], [138.232488275, 37.973601532]]]}}, {"id": "44539", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485570921, 38.332371748], [138.485434254, 38.332277586], [138.4854262, 38.332410081], [138.485570921, 38.332371748]]]}}, {"id": "44540", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242052438, 38.074467108], [138.242238003, 38.074559333], [138.242147445, 38.074423505], [138.242052438, 38.074467108]]]}}, {"id": "44541", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374400337, 38.227292225], [138.374467276, 38.227421387], [138.374505331, 38.227323333], [138.374400337, 38.227292225]]]}}, {"id": "44542", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.26143192, 37.843556748], [138.261613022, 37.843631198], [138.261658029, 37.843560919], [138.26143192, 37.843556748]]]}}, {"id": "44543", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.206797082, 37.826892081], [138.206830143, 37.827006802], [138.20692153, 37.826921802], [138.206797082, 37.826892081]]]}}, {"id": "44544", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.391278807, 38.241370802], [138.391109922, 38.241484973], [138.391301025, 38.241397468], [138.391278807, 38.241370802]]]}}, {"id": "44545", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.504363165, 38.335552], [138.504277056, 38.335720333], [138.504394838, 38.335587838], [138.504363165, 38.335552]]]}}, {"id": "44546", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236556641, 37.840343973], [138.236616355, 37.840527027], [138.236671362, 37.840374252], [138.236556641, 37.840343973]]]}}, {"id": "44547", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.513552944, 38.313147279], [138.51362489, 38.313002279], [138.513517756, 38.313048586], [138.513552944, 38.313147279]]]}}, {"id": "44548", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493620726, 38.217422333], [138.493713217, 38.217556505], [138.493740169, 38.217470946], [138.493620726, 38.217422333]]]}}, {"id": "44549", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.501856783, 38.334150333], [138.501709559, 38.334100613], [138.501721777, 38.334183387], [138.501856783, 38.334150333]]]}}, {"id": "44550", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219029079, 37.838470108], [138.218928807, 37.838557613], [138.219046589, 37.838618441], [138.219029079, 37.838470108]]]}}, {"id": "44551", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.276215447, 37.809674279], [138.276377393, 37.809598171], [138.276257951, 37.809571505], [138.276215447, 37.809674279]]]}}, {"id": "44552", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.49846847, 38.07086736], [138.498365422, 38.070977081], [138.498460973, 38.070981802], [138.49846847, 38.07086736]]]}}, {"id": "44553", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442352361, 38.276233198], [138.442359027, 38.276386252], [138.442466252, 38.276400694], [138.442352361, 38.276233198]]]}}, {"id": "44554", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.442171803, 38.276349586], [138.442177639, 38.276500414], [138.442297367, 38.276481252], [138.442171803, 38.276349586]]]}}, {"id": "44555", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509704669, 38.291745613], [138.509867173, 38.291759505], [138.509826057, 38.291679225], [138.509704669, 38.291745613]]]}}, {"id": "44556", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230784086, 38.055724613], [138.230882412, 38.055881838], [138.230865746, 38.055695721], [138.230784086, 38.055724613]]]}}, {"id": "44557", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.284931089, 37.90065036], [138.285058859, 37.900523694], [138.284877471, 37.900554802], [138.284931089, 37.90065036]]]}}, {"id": "44558", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219646031, 37.837121225], [138.219712412, 37.836935667], [138.219582412, 37.837072892], [138.219646031, 37.837121225]]]}}, {"id": "44559", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229270195, 37.995356279], [138.229104916, 37.995456559], [138.22926297, 37.995413775], [138.229270195, 37.995356279]]]}}, {"id": "44560", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.453544228, 38.307731505], [138.453631634, 38.307595586], [138.453465616, 38.307664], [138.453544228, 38.307731505]]]}}, {"id": "44561", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.361010441, 37.83069364], [138.361196278, 37.830688919], [138.361060726, 37.830625865], [138.361010441, 37.83069364]]]}}, {"id": "44562", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229026693, 37.979206279], [138.229265966, 37.978842], [138.228983891, 37.979185802], [138.229026693, 37.979206279]]]}}, {"id": "44563", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.323751556, 38.19136036], [138.323905447, 38.191463135], [138.323812387, 38.191329532], [138.323751556, 38.19136036]]]}}, {"id": "44564", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236908859, 37.840573135], [138.236940532, 37.840732586], [138.23703358, 37.84069036], [138.236908859, 37.840573135]]]}}, {"id": "44565", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239187756, 37.838804252], [138.239308586, 37.838926198], [138.239303307, 37.838797586], [138.239187756, 37.838804252]]]}}, {"id": "44566", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240294112, 37.805574279], [138.240165227, 37.805457892], [138.240138833, 37.805546775], [138.240294112, 37.805574279]]]}}, {"id": "44567", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214324916, 37.836589838], [138.214318521, 37.836451505], [138.214201582, 37.836474838], [138.214324916, 37.836589838]]]}}, {"id": "44568", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.522312672, 38.323320586], [138.522165162, 38.32321836], [138.522137108, 38.323278081], [138.522312672, 38.323320586]]]}}, {"id": "44569", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.289286394, 37.89366064], [138.289464721, 37.893728694], [138.289467782, 37.89369036], [138.289286394, 37.89366064]]]}}, {"id": "44570", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.261689689, 37.84352564], [138.261805811, 37.843426748], [138.261685525, 37.843463694], [138.261689689, 37.84352564]]]}}, {"id": "44571", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234419948, 37.994737667], [138.234256615, 37.994766838], [138.234292724, 37.994849892], [138.234419948, 37.994737667]]]}}, {"id": "44572", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.207156835, 37.825858198], [138.207045422, 37.82576764], [138.206987639, 37.82580736], [138.207156835, 37.825858198]]]}}, {"id": "44573", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.32366655, 38.190888973], [138.323595162, 38.191012865], [138.323728495, 38.190982027], [138.32366655, 38.190888973]]]}}, {"id": "44574", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553744643, 38.082043198], [138.553707626, 38.082139865], [138.553820921, 38.08215791], [138.553744643, 38.082043198]]]}}, {"id": "44575", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.511747419, 38.303081441], [138.511826809, 38.303224667], [138.511858885, 38.303118], [138.511747419, 38.303081441]]]}}, {"id": "44576", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.348504553, 37.827477], [138.348657056, 37.827489505], [138.348520389, 37.827403387], [138.348504553, 37.827477]]]}}, {"id": "44577", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.565990506, 38.084158721], [138.565871336, 38.084199279], [138.56597022, 38.084208171], [138.565990506, 38.084158721]]]}}, {"id": "44578", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.486587302, 38.334927306], [138.486732581, 38.335003135], [138.486691751, 38.334885081], [138.486587302, 38.334927306]]]}}, {"id": "44579", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.360775447, 37.831220027], [138.360920999, 37.831291414], [138.360914332, 37.83118336], [138.360775447, 37.831220027]]]}}, {"id": "44580", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572972776, 38.065884369], [138.573089351, 38.065993595], [138.573104202, 38.065798604], [138.572972776, 38.065884369]]]}}, {"id": "44581", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493613217, 38.212360387], [138.493746005, 38.212411225], [138.493774617, 38.212321225], [138.493613217, 38.212360387]]]}}, {"id": "44582", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.329416161, 37.824621748], [138.329384501, 37.824752586], [138.329513113, 37.824749252], [138.329416161, 37.824621748]]]}}, {"id": "44583", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.259023061, 38.099740171], [138.259008885, 38.099919054], [138.259094449, 38.099779613], [138.259023061, 38.099740171]]]}}, {"id": "44584", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220010467, 37.809777919], [138.220039364, 37.809625694], [138.219959079, 37.809636532], [138.220010467, 37.809777919]]]}}, {"id": "44585", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.313207082, 38.175317892], [138.313214306, 38.175470387], [138.313278755, 38.175381225], [138.313207082, 38.175317892]]]}}, {"id": "44586", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573896278, 38.06336864], [138.573767393, 38.06338864], [138.573946278, 38.06346336], [138.573896278, 38.06336864]]]}}, {"id": "44587", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231345746, 37.988957108], [138.231462698, 37.989050721], [138.231438249, 37.988917081], [138.231345746, 37.988957108]]]}}, {"id": "44588", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.290421751, 38.142525414], [138.290528418, 38.142474865], [138.290400363, 38.142424027], [138.290421751, 38.142525414]]]}}, {"id": "44589", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.236298003, 37.970648468], [138.236114112, 37.97056236], [138.236314942, 37.970703468], [138.236298003, 37.970648468]]]}}, {"id": "44590", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.287061595, 37.810281198], [138.2870362, 37.810304676], [138.28749358, 37.810575], [138.287061595, 37.810281198]]]}}, {"id": "44591", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235160195, 38.053215171], [138.235325746, 38.053279613], [138.235304643, 38.053211279], [138.235160195, 38.053215171]]]}}, {"id": "44592", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.500669416, 37.927500252], [138.500555811, 37.927582198], [138.500708301, 37.927624414], [138.500669416, 37.927500252]]]}}, {"id": "44593", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.321616978, 37.823452865], [138.321719754, 37.823534802], [138.32176642, 37.82341536], [138.321616978, 37.823452865]]]}}, {"id": "44594", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435058106, 38.288032108], [138.435195227, 38.288076441], [138.435164501, 38.288008135], [138.435058106, 38.288032108]]]}}, {"id": "44595", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.39748939, 38.248782721], [138.397506057, 38.248931892], [138.397593839, 38.248881613], [138.39748939, 38.248782721]]]}}, {"id": "44596", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214321556, 37.839026775], [138.214230441, 37.838886505], [138.214192114, 37.839011775], [138.214321556, 37.839026775]]]}}, {"id": "44597", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.384923191, 38.231484694], [138.384765422, 38.231559135], [138.384954864, 38.231530802], [138.384923191, 38.231484694]]]}}, {"id": "44598", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232415227, 37.976148748], [138.232426615, 37.97627264], [138.232506887, 37.976261252], [138.232415227, 37.976148748]]]}}, {"id": "44599", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.255922477, 37.844679252], [138.255890246, 37.844553973], [138.255783307, 37.84458064], [138.255922477, 37.844679252]]]}}, {"id": "44600", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249364137, 37.842039252], [138.249221634, 37.842070081], [138.249405253, 37.842127586], [138.249364137, 37.842039252]]]}}, {"id": "44601", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247169105, 38.097432946], [138.247048833, 38.097554333], [138.247156615, 38.097496838], [138.247169105, 38.097432946]]]}}, {"id": "44602", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.297111219, 38.147599027], [138.297183995, 38.147705694], [138.297230117, 38.14764764], [138.297111219, 38.147599027]]]}}, {"id": "44603", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247895837, 37.965103748], [138.247855837, 37.965227919], [138.247938885, 37.965256802], [138.247895837, 37.965103748]]]}}, {"id": "44604", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212483217, 37.837201775], [138.212409883, 37.837060667], [138.212288495, 37.837068441], [138.212483217, 37.837201775]]]}}, {"id": "44605", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240134695, 37.970653748], [138.240195811, 37.97077764], [138.240277756, 37.970685973], [138.240134695, 37.970653748]]]}}, {"id": "44606", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.278459235, 38.00432582], [138.27825965, 38.004159856], [138.278221816, 38.004212901], [138.278459235, 38.00432582]]]}}, {"id": "44607", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.296536135, 38.157737712], [138.296411582, 38.157654495], [138.296357289, 38.157750315], [138.296536135, 38.157737712]]]}}, {"id": "44608", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.277396329, 37.907477865], [138.277542166, 37.90745564], [138.277369105, 37.907373694], [138.277396329, 37.907477865]]]}}, {"id": "44609", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.510430804, 38.289472279], [138.510612477, 38.289494505], [138.510413865, 38.289414775], [138.510430804, 38.289472279]]]}}, {"id": "44610", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493509883, 38.216116225], [138.493478781, 38.216254838], [138.493596005, 38.216158171], [138.493509883, 38.216116225]]]}}, {"id": "44611", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.354640415, 37.829137], [138.354793476, 37.829027279], [138.354636252, 37.829080892], [138.354640415, 37.829137]]]}}, {"id": "44612", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.217304916, 37.838257892], [138.217402412, 37.838314279], [138.217482412, 37.838159], [138.217304916, 37.838257892]]]}}, {"id": "44613", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.222147665, 38.010752667], [138.222301284, 38.010733775], [138.22218489, 38.010705721], [138.222147665, 38.010752667]]]}}, {"id": "44614", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240558003, 38.069447667], [138.240516887, 38.069590171], [138.240618003, 38.069563225], [138.240558003, 38.069447667]]]}}, {"id": "44615", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242748586, 37.966048468], [138.242842477, 37.965989027], [138.242699144, 37.965976532], [138.242748586, 37.966048468]]]}}, {"id": "44616", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.384398197, 38.231310559], [138.384407639, 38.231462775], [138.384502088, 38.231439171], [138.384398197, 38.231310559]]]}}, {"id": "44617", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503527756, 37.936128838], [138.503573022, 37.936246333], [138.503675525, 37.936194946], [138.503527756, 37.936128838]]]}}, {"id": "44618", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507704553, 38.331813946], [138.507835383, 38.331958667], [138.507865383, 38.331909225], [138.507704553, 38.331813946]]]}}, {"id": "44619", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.277868833, 37.907756198], [138.277930778, 37.907632865], [138.277821336, 37.907672306], [138.277868833, 37.907756198]]]}}, {"id": "44620", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.428386005, 38.254645198], [138.428466835, 38.254727414], [138.428492114, 38.254658802], [138.428386005, 38.254645198]]]}}, {"id": "44621", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227109922, 37.992429333], [138.227161855, 37.992556559], [138.227185188, 37.992472946], [138.227109922, 37.992429333]]]}}, {"id": "44622", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554242412, 38.08266236], [138.554131025, 38.082598198], [138.554185473, 38.082769586], [138.554242412, 38.08266236]]]}}, {"id": "44623", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.514411245, 38.333046441], [138.514532918, 38.333148108], [138.5144507, 38.333019775], [138.514411245, 38.333046441]]]}}, {"id": "44624", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.275994942, 37.906041468], [138.276118275, 37.906191198], [138.276065227, 37.906016468], [138.275994942, 37.906041468]]]}}, {"id": "44625", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247750558, 37.967888748], [138.247642218, 37.96812964], [138.247811284, 37.967905892], [138.247750558, 37.967888748]]]}}, {"id": "44626", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240021336, 38.068171838], [138.240141608, 38.068099054], [138.240025227, 38.068079613], [138.240021336, 38.068171838]]]}}, {"id": "44627", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249246109, 37.960836252], [138.249143333, 37.960903198], [138.249289728, 37.960924027], [138.249246109, 37.960836252]]]}}, {"id": "44628", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.205588755, 37.824254586], [138.205592361, 37.824120135], [138.205502633, 37.824188468], [138.205588755, 37.824254586]]]}}, {"id": "44629", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281839663, 37.913229532], [138.282019105, 37.913196468], [138.281876057, 37.91316064], [138.281839663, 37.913229532]]]}}, {"id": "44630", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249480532, 37.843023973], [138.24965275, 37.843044532], [138.249609416, 37.842973973], [138.249480532, 37.843023973]]]}}, {"id": "44631", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.451641167, 38.305584865], [138.451669222, 38.305744027], [138.451728949, 38.305615135], [138.451641167, 38.305584865]]]}}, {"id": "44632", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.441676667, 38.291618532], [138.441852633, 38.291498775], [138.441621492, 38.291564441], [138.441676667, 38.291618532]]]}}, {"id": "44633", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244403022, 37.839246198], [138.244351362, 37.839388694], [138.244459416, 37.83930036], [138.244403022, 37.839246198]]]}}, {"id": "44634", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434698392, 38.287660171], [138.434817562, 38.287755171], [138.434781167, 38.287603505], [138.434698392, 38.287660171]]]}}, {"id": "44635", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.259768612, 38.102820721], [138.25987834, 38.102872667], [138.259952503, 38.102775441], [138.259768612, 38.102820721]]]}}, {"id": "44636", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.291219533, 38.141906252], [138.291333411, 38.141996252], [138.291302387, 38.141909694], [138.291219533, 38.141906252]]]}}, {"id": "44637", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509672581, 38.292469532], [138.509606057, 38.292312279], [138.509602438, 38.292475838], [138.509672581, 38.292469532]]]}}, {"id": "44638", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.280508249, 37.810534], [138.280465746, 37.810409838], [138.280409079, 37.810545108], [138.280508249, 37.810534]]]}}, {"id": "44639", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22001214, 37.809943468], [138.220133256, 37.809863748], [138.220004643, 37.80985236], [138.22001214, 37.809943468]]]}}, {"id": "44640", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.361369883, 37.831416135], [138.361517951, 37.831373919], [138.361382387, 37.831377252], [138.361369883, 37.831416135]]]}}, {"id": "44641", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.499231362, 37.925464973], [138.499317756, 37.925372468], [138.499243865, 37.925338586], [138.499231362, 37.925464973]]]}}, {"id": "44642", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.365532023, 37.835682243], [138.36570166, 37.835670793], [138.365575331, 37.835607811], [138.365532023, 37.835682243]]]}}, {"id": "44643", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.437028949, 38.290194586], [138.437081725, 38.290335973], [138.437168975, 38.290293468], [138.437028949, 38.290194586]]]}}, {"id": "44644", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.277449948, 37.906800919], [138.277502724, 37.906945919], [138.277548275, 37.906875919], [138.277449948, 37.906800919]]]}}, {"id": "44645", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.310440973, 38.172594838], [138.310557808, 38.172703441], [138.310561284, 38.172593748], [138.310440973, 38.172594838]]]}}, {"id": "44646", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249489144, 37.841564252], [138.24946275, 37.841683694], [138.249554968, 37.841665919], [138.249489144, 37.841564252]]]}}, {"id": "44647", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294982127, 38.157281586], [138.295120428, 38.157208117], [138.29497939, 38.157196153], [138.294982127, 38.157281586]]]}}, {"id": "44648", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281662698, 37.810967613], [138.2817538, 37.810846505], [138.281638521, 37.810877054], [138.281662698, 37.810967613]]]}}, {"id": "44649", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238164086, 38.085157946], [138.238073256, 38.085278775], [138.238211025, 38.085191279], [138.238164086, 38.085157946]]]}}, {"id": "44650", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.279609105, 37.910775081], [138.27965856, 37.910871198], [138.279717717, 37.910835081], [138.279609105, 37.910775081]]]}}, {"id": "44651", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.434729805, 38.286880441], [138.434672283, 38.287011559], [138.434792309, 38.286975721], [138.434729805, 38.286880441]]]}}, {"id": "44652", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281992412, 37.810807333], [138.282137977, 37.810822613], [138.282114643, 37.810755108], [138.281992412, 37.810807333]]]}}, {"id": "44653", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356532633, 37.830134225], [138.356435136, 37.830028108], [138.356419857, 37.830107279], [138.356532633, 37.830134225]]]}}, {"id": "44654", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.278336615, 37.906417865], [138.278454942, 37.906341468], [138.278326887, 37.906376198], [138.278336615, 37.906417865]]]}}, {"id": "44655", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.437423113, 38.290794306], [138.437571167, 38.290913198], [138.437461193, 38.29075764], [138.437423113, 38.290794306]]]}}, {"id": "44656", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.389742114, 38.23990636], [138.389862672, 38.239994135], [138.389799611, 38.239884135], [138.389742114, 38.23990636]]]}}, {"id": "44657", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239977173, 38.079813505], [138.240104112, 38.079885441], [138.240089105, 38.079802387], [138.239977173, 38.079813505]]]}}, {"id": "44658", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212697108, 37.831470667], [138.212795447, 37.831527054], [138.212842944, 37.831434], [138.212697108, 37.831470667]]]}}, {"id": "44659", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.350589857, 37.828282559], [138.350724034, 37.828273108], [138.350605422, 37.828167838], [138.350589857, 37.828282559]]]}}, {"id": "44660", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.288281855, 37.812376225], [138.288339637, 37.812267892], [138.288207691, 37.812294279], [138.288281855, 37.812376225]]]}}, {"id": "44661", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.243511608, 38.071972108], [138.243601336, 38.071883775], [138.243442996, 38.071901279], [138.243511608, 38.071972108]]]}}, {"id": "44662", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.380573307, 37.842553892], [138.380409416, 37.84257], [138.380399689, 37.842612775], [138.380573307, 37.842553892]]]}}, {"id": "44663", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.337639805, 37.825517279], [138.337785084, 37.825473387], [138.33763703, 37.825439505], [138.337639805, 37.825517279]]]}}, {"id": "44664", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.284179689, 37.900687027], [138.284201089, 37.900557586], [138.284077471, 37.900583973], [138.284179689, 37.900687027]]]}}, {"id": "44665", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213147665, 37.812289586], [138.21335572, 37.812289586], [138.213361556, 37.812259027], [138.213147665, 37.812289586]]]}}, {"id": "44666", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249651634, 37.842361198], [138.249660804, 37.842471748], [138.249760246, 37.842445919], [138.249651634, 37.842361198]]]}}, {"id": "44667", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445873139, 38.295469586], [138.445954527, 38.295579586], [138.445977302, 38.295474586], [138.445873139, 38.295469586]]]}}, {"id": "44668", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.27871856, 37.90610036], [138.278693554, 37.906212586], [138.278797717, 37.906173414], [138.27871856, 37.90610036]]]}}, {"id": "44669", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23706358, 37.840567865], [138.237149974, 37.840496748], [138.236940532, 37.840448135], [138.23706358, 37.840567865]]]}}, {"id": "44670", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.253523359, 37.96406736], [138.253416978, 37.964145973], [138.253523359, 37.964162919], [138.253523359, 37.96406736]]]}}, {"id": "44671", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.346830778, 37.827365919], [138.346907886, 37.827265333], [138.346786498, 37.827334505], [138.346830778, 37.827365919]]]}}, {"id": "44672", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.285696355, 37.898501468], [138.285819974, 37.898574532], [138.28586275, 37.898530081], [138.285696355, 37.898501468]]]}}, {"id": "44673", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.543157665, 38.081119054], [138.543190726, 38.081286559], [138.543197665, 38.081125171], [138.543157665, 38.081119054]]]}}, {"id": "44674", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248792503, 37.96436236], [138.248866939, 37.964504306], [138.248900272, 37.964459027], [138.248792503, 37.96436236]]]}}, {"id": "44675", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.286241946, 37.881641468], [138.286350558, 37.881712306], [138.286304721, 37.881592586], [138.286241946, 37.881641468]]]}}, {"id": "44676", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249697198, 37.84294036], [138.24976192, 37.842836468], [138.24965275, 37.842853135], [138.249697198, 37.84294036]]]}}, {"id": "44677", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.259025279, 38.101930721], [138.259133061, 38.101972946], [138.25912834, 38.101885441], [138.259025279, 38.101930721]]]}}, {"id": "44678", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21597131, 37.839500387], [138.216005188, 37.839383441], [138.215907419, 37.839404838], [138.21597131, 37.839500387]]]}}, {"id": "44679", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.446452023, 38.295679586], [138.446525084, 38.295788198], [138.446523696, 38.295685414], [138.446452023, 38.295679586]]]}}, {"id": "44680", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249053022, 37.841054802], [138.248985525, 37.841143694], [138.249101089, 37.841141198], [138.249053022, 37.841054802]]]}}, {"id": "44681", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.479287445, 37.907328667], [138.479278833, 37.907420333], [138.479391336, 37.907417559], [138.479287445, 37.907328667]]]}}, {"id": "44682", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.373199326, 37.838423009], [138.373341907, 37.838494577], [138.373372594, 37.838417288], [138.373199326, 37.838423009]]]}}, {"id": "44683", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.43864655, 38.266888775], [138.438731556, 38.266968505], [138.43873655, 38.266866838], [138.43864655, 38.266888775]]]}}, {"id": "44684", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554920195, 38.082860973], [138.554984643, 38.083010694], [138.555004358, 38.082973468], [138.554920195, 38.082860973]]]}}, {"id": "44685", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249908612, 37.964119586], [138.249881673, 37.964225973], [138.249963333, 37.964230414], [138.249908612, 37.964119586]]]}}, {"id": "44686", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232161336, 37.975810414], [138.232206057, 37.975909306], [138.232238275, 37.975813198], [138.232161336, 37.975810414]]]}}, {"id": "44687", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.519916005, 38.320280333], [138.520006835, 38.320384505], [138.520033774, 38.320353387], [138.519916005, 38.320280333]]]}}, {"id": "44688", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.520538197, 38.320569387], [138.520380726, 38.320493667], [138.520376835, 38.320534225], [138.520538197, 38.320569387]]]}}, {"id": "44689", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219021582, 37.837475387], [138.219023528, 37.837610667], [138.219098249, 37.837497613], [138.219021582, 37.837475387]]]}}, {"id": "44690", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248225188, 37.803248171], [138.248267134, 37.803142333], [138.248169364, 37.803224838], [138.248225188, 37.803248171]]]}}, {"id": "44691", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.28018214, 37.810376225], [138.280338807, 37.810339279], [138.280287419, 37.810304559], [138.28018214, 37.810376225]]]}}, {"id": "44692", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.555127691, 38.08282236], [138.555214643, 38.082978198], [138.55523131, 38.082840135], [138.555127691, 38.08282236]]]}}, {"id": "44693", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.263739364, 37.805997892], [138.263821582, 37.805918171], [138.263684916, 37.805938441], [138.263739364, 37.805997892]]]}}, {"id": "44694", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.321551414, 37.825289532], [138.321629196, 37.825205081], [138.321531141, 37.825237306], [138.321551414, 37.825289532]]]}}, {"id": "44695", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229221894, 37.976228468], [138.22925939, 37.976313198], [138.229337717, 37.976246532], [138.229221894, 37.976228468]]]}}, {"id": "44696", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239935772, 38.079530721], [138.240008833, 38.079668225], [138.24005022, 38.079648505], [138.239935772, 38.079530721]]]}}, {"id": "44697", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.230925473, 38.000882667], [138.231063528, 38.000812387], [138.230890195, 38.000820441], [138.230925473, 38.000882667]]]}}, {"id": "44698", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.438683502, 38.265870441], [138.438760726, 38.265980721], [138.438728495, 38.265870171], [138.438683502, 38.265870441]]]}}, {"id": "44699", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.543824916, 38.081489333], [138.543797691, 38.081637667], [138.543869637, 38.081607108], [138.543824916, 38.081489333]]]}}, {"id": "44700", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.520942114, 38.321839775], [138.521069339, 38.321924775], [138.52103406, 38.321838387], [138.520942114, 38.321839775]]]}}, {"id": "44701", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23220131, 38.003342387], [138.232160752, 38.003441838], [138.2322838, 38.003422667], [138.23220131, 38.003342387]]]}}, {"id": "44702", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.242390532, 37.83887564], [138.242247198, 37.838937586], [138.242415525, 37.838908973], [138.242390532, 37.83887564]]]}}, {"id": "44703", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281157756, 37.902507586], [138.281280246, 37.902447306], [138.281114137, 37.902451198], [138.281157756, 37.902507586]]]}}, {"id": "44704", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234281582, 38.056700171], [138.234280752, 38.056802667], [138.234376861, 38.056751], [138.234281582, 38.056700171]]]}}, {"id": "44705", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.484710415, 38.064345225], [138.484602361, 38.064434946], [138.484712361, 38.064439667], [138.484710415, 38.064345225]]]}}, {"id": "44706", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485572361, 38.065076333], [138.48550847, 38.064976613], [138.485472918, 38.065041892], [138.485572361, 38.065076333]]]}}, {"id": "44707", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553489144, 38.029076865], [138.553420532, 38.029226027], [138.553456355, 38.029244081], [138.553489144, 38.029076865]]]}}, {"id": "44708", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.239785253, 37.970790694], [138.239868029, 37.970878468], [138.239894695, 37.970819586], [138.239785253, 37.970790694]]]}}, {"id": "44709", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.38322192, 37.844719721], [138.383361634, 37.844769721], [138.383269689, 37.84468], [138.38322192, 37.844719721]]]}}, {"id": "44710", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.448832555, 38.30827264], [138.448938392, 38.30819764], [138.448789222, 38.308217081], [138.448832555, 38.30827264]]]}}, {"id": "44711", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235024112, 37.972246532], [138.235066615, 37.972349027], [138.235139663, 37.972302919], [138.235024112, 37.972246532]]]}}, {"id": "44712", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374417899, 37.839206342], [138.374538379, 37.83918273], [138.374411128, 37.83913764], [138.374417899, 37.839206342]]]}}, {"id": "44713", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.265798482, 38.122519532], [138.265937108, 38.122507171], [138.265874189, 38.122435802], [138.265798482, 38.122519532]]]}}, {"id": "44714", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.433032555, 38.287450721], [138.433125616, 38.287518775], [138.433181725, 38.287450721], [138.433032555, 38.287450721]]]}}, {"id": "44715", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.508423554, 38.295373387], [138.508303839, 38.295399225], [138.508386887, 38.295450892], [138.508423554, 38.295373387]]]}}, {"id": "44716", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240116057, 38.069561], [138.240140506, 38.069443505], [138.240061336, 38.069430441], [138.240116057, 38.069561]]]}}, {"id": "44717", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.217528249, 37.838264279], [138.217579637, 37.838350387], [138.217626589, 37.838225387], [138.217528249, 37.838264279]]]}}, {"id": "44718", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.380091362, 37.842663892], [138.380168029, 37.842744721], [138.380188859, 37.842711667], [138.380091362, 37.842663892]]]}}, {"id": "44719", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233229079, 38.052943505], [138.233326304, 38.052834054], [138.233211025, 38.052901838], [138.233229079, 38.052943505]]]}}, {"id": "44720", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.213840169, 37.812149027], [138.213675162, 37.812147081], [138.213681556, 37.812200414], [138.213840169, 37.812149027]]]}}, {"id": "44721", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233849922, 38.052943225], [138.233969079, 38.053019333], [138.233931025, 38.052911559], [138.233849922, 38.052943225]]]}}, {"id": "44722", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.28635834, 37.898859252], [138.286454721, 37.898923414], [138.286525837, 37.898843135], [138.28635834, 37.898859252]]]}}, {"id": "44723", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.214306861, 37.836738441], [138.21428214, 37.836601505], [138.21421297, 37.836647333], [138.214306861, 37.836738441]]]}}, {"id": "44724", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.54864297, 38.082477919], [138.548607419, 38.082610414], [138.54863131, 38.082631532], [138.54864297, 38.082477919]]]}}, {"id": "44725", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234571855, 38.056784333], [138.234600752, 38.056900171], [138.234685188, 38.056867387], [138.234571855, 38.056784333]]]}}, {"id": "44726", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.451205616, 38.304965414], [138.451250337, 38.30503736], [138.451241245, 38.304974306], [138.451205616, 38.304965414]]]}}, {"id": "44727", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.28168297, 37.810671775], [138.281748521, 37.810528171], [138.281708249, 37.810527333], [138.28168297, 37.810671775]]]}}, {"id": "44728", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.549040467, 38.083084865], [138.549162412, 38.083180135], [138.549164358, 38.083123468], [138.549040467, 38.083084865]]]}}, {"id": "44729", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233201582, 38.059511838], [138.233314643, 38.059572387], [138.233305188, 38.059514333], [138.233201582, 38.059511838]]]}}, {"id": "44730", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509742192, 38.287002559], [138.509669974, 38.287110613], [138.509786641, 38.287079505], [138.509742192, 38.287002559]]]}}, {"id": "44731", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554690467, 38.082719027], [138.554778521, 38.082715973], [138.554679079, 38.082630135], [138.554690467, 38.082719027]]]}}, {"id": "44732", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.479958418, 38.327594252], [138.480022581, 38.327693694], [138.480028418, 38.32758536], [138.479958418, 38.327594252]]]}}, {"id": "44733", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247141608, 38.090847108], [138.247019948, 38.090903225], [138.247064384, 38.090941559], [138.247141608, 38.090847108]]]}}, {"id": "44734", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.398064112, 38.246916613], [138.398045499, 38.247052441], [138.398126887, 38.246936333], [138.398064112, 38.246916613]]]}}, {"id": "44735", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.524332387, 38.322606135], [138.52426572, 38.32271364], [138.524373502, 38.322671414], [138.524332387, 38.322606135]]]}}, {"id": "44736", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234558807, 38.052544333], [138.234433528, 38.052616838], [138.234591025, 38.052598775], [138.234558807, 38.052544333]]]}}, {"id": "44737", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572116498, 38.071723135], [138.571981362, 38.071544108], [138.572109948, 38.071749171], [138.572116498, 38.071723135]]]}}, {"id": "44738", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.34231511, 37.825067], [138.342429831, 37.824983946], [138.342289001, 37.825025054], [138.34231511, 37.825067]]]}}, {"id": "44739", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.264461388, 38.107573775], [138.264367224, 38.107672667], [138.264518054, 38.107606], [138.264461388, 38.107573775]]]}}, {"id": "44740", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248333606, 37.964360135], [138.248343333, 37.964456532], [138.248453333, 37.964439306], [138.248333606, 37.964360135]]]}}, {"id": "44741", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503187198, 37.941029667], [138.503198029, 37.941143279], [138.503248029, 37.941058838], [138.503187198, 37.941029667]]]}}, {"id": "44742", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.394278638, 37.85418664], [138.394361284, 37.854274099], [138.394369274, 37.854168126], [138.394278638, 37.85418664]]]}}, {"id": "44743", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.264073865, 37.84411064], [138.264030804, 37.844009802], [138.263982192, 37.844088694], [138.264073865, 37.84411064]]]}}, {"id": "44744", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.405464449, 38.255479946], [138.405550558, 38.255548559], [138.405567224, 38.255493838], [138.405464449, 38.255479946]]]}}, {"id": "44745", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281171089, 37.902046468], [138.281035525, 37.902107865], [138.281190804, 37.902110919], [138.281171089, 37.902046468]]]}}, {"id": "44746", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227640467, 37.983400135], [138.227627977, 37.983516532], [138.227690752, 37.983429586], [138.227640467, 37.983400135]]]}}, {"id": "44747", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233924916, 38.057049333], [138.233937419, 38.057164892], [138.233994916, 38.057078225], [138.233924916, 38.057049333]]]}}, {"id": "44748", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.319292633, 38.205706748], [138.319290415, 38.205778973], [138.319380415, 38.205775081], [138.319292633, 38.205706748]]]}}, {"id": "44749", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.255392244, 37.965930694], [138.255373645, 37.966036532], [138.255455305, 37.966009306], [138.255392244, 37.965930694]]]}}, {"id": "44750", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.337980921, 37.825720333], [138.338106472, 37.825665333], [138.337967588, 37.825667279], [138.337980921, 37.825720333]]]}}, {"id": "44751", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.240760804, 37.839097865], [138.24080192, 37.838994252], [138.24073192, 37.839007027], [138.240760804, 37.839097865]]]}}, {"id": "44752", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.286207224, 37.898684802], [138.286216667, 37.898782027], [138.28628917, 37.898763135], [138.286207224, 37.898684802]]]}}, {"id": "44753", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238307691, 38.084728775], [138.238279079, 38.084842108], [138.238351582, 38.084775721], [138.238307691, 38.084728775]]]}}, {"id": "44754", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.484115136, 38.063815505], [138.484023476, 38.063719387], [138.484008755, 38.063795505], [138.484115136, 38.063815505]]]}}, {"id": "44755", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445157367, 38.131044171], [138.445154034, 38.131151667], [138.445221245, 38.131134171], [138.445157367, 38.131044171]]]}}, {"id": "44756", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.366421349, 37.835134297], [138.366372633, 37.835036973], [138.366341946, 37.835119991], [138.366421349, 37.835134297]]]}}, {"id": "44757", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229938521, 37.978880414], [138.230011582, 37.978807919], [138.229912698, 37.978833748], [138.229938521, 37.978880414]]]}}, {"id": "44758", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.514053217, 38.314178667], [138.514046278, 38.314066171], [138.51397489, 38.314133667], [138.514053217, 38.314178667]]]}}, {"id": "44759", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.287313528, 37.810690387], [138.287224643, 37.810602333], [138.287180195, 37.810674838], [138.287313528, 37.810690387]]]}}, {"id": "44760", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338250921, 37.825977559], [138.338333411, 37.825907838], [138.338229805, 37.825901441], [138.338250921, 37.825977559]]]}}, {"id": "44761", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356815136, 37.829383387], [138.356914228, 37.82934464], [138.356804864, 37.829347279], [138.356815136, 37.829383387]]]}}, {"id": "44762", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244560506, 38.073958505], [138.244685772, 38.073917387], [138.244613554, 38.073887667], [138.244560506, 38.073958505]]]}}, {"id": "44763", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567889105, 38.084830108], [138.568029105, 38.084900946], [138.568051894, 38.084859], [138.567889105, 38.084830108]]]}}, {"id": "44764", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.561540778, 38.087310667], [138.561392166, 38.087292892], [138.56154022, 38.087342892], [138.561540778, 38.087310667]]]}}, {"id": "44765", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338000078, 37.825939505], [138.338142866, 37.825910892], [138.338025357, 37.825881441], [138.338000078, 37.825939505]]]}}, {"id": "44766", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246502438, 38.091815721], [138.246609948, 38.091865171], [138.246629105, 38.091795441], [138.246502438, 38.091815721]]]}}, {"id": "44767", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234527834, 38.049997946], [138.234613256, 38.049910721], [138.234500195, 38.049918225], [138.234527834, 38.049997946]]]}}, {"id": "44768", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502844034, 38.071238973], [138.502922361, 38.071334252], [138.502921803, 38.071229532], [138.502844034, 38.071238973]]]}}, {"id": "44769", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.38369275, 37.845755838], [138.383739689, 37.84587], [138.383778301, 37.845812775], [138.38369275, 37.845755838]]]}}, {"id": "44770", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445440363, 38.294283198], [138.445542581, 38.294220694], [138.445477588, 38.294184865], [138.445440363, 38.294283198]]]}}, {"id": "44771", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233386031, 38.059384333], [138.233335188, 38.059276], [138.2333138, 38.059362387], [138.233386031, 38.059384333]]]}}, {"id": "44772", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232489364, 38.060322387], [138.232513528, 38.060427946], [138.232559637, 38.060331559], [138.232489364, 38.060322387]]]}}, {"id": "44773", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.231108807, 37.989485441], [138.231208249, 37.989394333], [138.231140195, 37.989392946], [138.231108807, 37.989485441]]]}}, {"id": "44774", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.547134643, 38.081401252], [138.547210467, 38.081496802], [138.547198807, 38.081378748], [138.547134643, 38.081401252]]]}}, {"id": "44775", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530318003, 37.989347252], [138.530261894, 37.989454468], [138.530353839, 37.989410586], [138.530318003, 37.989347252]]]}}, {"id": "44776", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.393863359, 37.853715802], [138.393802529, 37.853817198], [138.393870856, 37.853818586], [138.393863359, 37.853715802]]]}}, {"id": "44777", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572541427, 38.06589473], [138.572580389, 38.065764595], [138.572499663, 38.065850153], [138.572541427, 38.06589473]]]}}, {"id": "44778", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.425772218, 38.293404054], [138.425703891, 38.293497946], [138.425798885, 38.293467387], [138.425772218, 38.293404054]]]}}, {"id": "44779", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.321781414, 37.825189252], [138.321789468, 37.825092586], [138.321705577, 37.825106748], [138.321781414, 37.825189252]]]}}, {"id": "44780", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234485772, 37.973231802], [138.234380778, 37.973310694], [138.234497717, 37.97331264], [138.234485772, 37.973231802]]]}}, {"id": "44781", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.3535907, 37.829169225], [138.353675136, 37.829101441], [138.353613476, 37.829082], [138.3535907, 37.829169225]]]}}, {"id": "44782", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.427453476, 38.254235468], [138.4274407, 38.254336865], [138.427509585, 38.254330748], [138.427453476, 38.254235468]]]}}, {"id": "44783", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.471167834, 38.331094802], [138.471263943, 38.331157586], [138.471277562, 38.331099252], [138.471167834, 38.331094802]]]}}, {"id": "44784", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.27955856, 37.911161468], [138.279422166, 37.911134532], [138.279399663, 37.911181468], [138.27955856, 37.911161468]]]}}, {"id": "44785", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.521959883, 38.322996135], [138.52202406, 38.323072252], [138.52202406, 38.322983081], [138.521959883, 38.322996135]]]}}, {"id": "44786", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.212562944, 37.832952613], [138.212592114, 37.832854838], [138.212510999, 37.832867333], [138.212562944, 37.832952613]]]}}, {"id": "44787", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.544636589, 38.081679333], [138.544711025, 38.081775441], [138.544758249, 38.081716279], [138.544636589, 38.081679333]]]}}, {"id": "44788", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.514006252, 38.315548946], [138.514134864, 38.315522279], [138.514007367, 38.315531441], [138.514006252, 38.315548946]]]}}, {"id": "44789", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.538581336, 37.999494946], [138.538513411, 37.999442027], [138.538478029, 37.999520613], [138.538581336, 37.999494946]]]}}, {"id": "44790", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.450948664, 38.310339586], [138.451022555, 38.310422919], [138.451029494, 38.310336532], [138.450948664, 38.310339586]]]}}, {"id": "44791", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.438241193, 38.27312564], [138.438284721, 38.273027414], [138.438198807, 38.273069775], [138.438241193, 38.27312564]]]}}, {"id": "44792", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.390263307, 38.240407865], [138.390375162, 38.240415252], [138.39029703, 38.24035136], [138.390263307, 38.240407865]]]}}, {"id": "44793", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.520797393, 38.321483387], [138.520910999, 38.321407838], [138.520791829, 38.321428108], [138.520797393, 38.321483387]]]}}, {"id": "44794", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5171807, 38.071610838], [138.51710153, 38.071688333], [138.517186524, 38.071699721], [138.5171807, 38.071610838]]]}}, {"id": "44795", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.26700808, 38.111392946], [138.267102529, 38.111452387], [138.26708808, 38.111380171], [138.26700808, 38.111392946]]]}}, {"id": "44796", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23367131, 37.998166], [138.233734643, 37.998224892], [138.233776031, 37.998152946], [138.23367131, 37.998166]]]}}, {"id": "44797", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248586109, 37.964521252], [138.248665006, 37.964444306], [138.24859917, 37.964432081], [138.248586109, 37.964521252]]]}}, {"id": "44798", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.246317224, 37.966401802], [138.246447782, 37.966381532], [138.246315279, 37.96634236], [138.246317224, 37.966401802]]]}}, {"id": "44799", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.341696498, 37.824888946], [138.341807886, 37.824838667], [138.341757613, 37.824791441], [138.341696498, 37.824888946]]]}}, {"id": "44800", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.466345227, 37.895313694], [138.466338003, 37.895426198], [138.46642939, 37.895396468], [138.466345227, 37.895313694]]]}}, {"id": "44801", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.366936589, 37.835375865], [138.366869533, 37.835291126], [138.366838846, 37.835407063], [138.366936589, 37.835375865]]]}}, {"id": "44802", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.243841634, 37.96574236], [138.243960804, 37.965795135], [138.243937756, 37.965723198], [138.243841634, 37.96574236]]]}}, {"id": "44803", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.350417082, 37.828806721], [138.350424617, 37.82872], [138.350362088, 37.828731171], [138.350417082, 37.828806721]]]}}, {"id": "44804", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.435240895, 38.291125171], [138.435338106, 38.291219333], [138.435288781, 38.291121414], [138.435240895, 38.291125171]]]}}, {"id": "44805", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.355437912, 37.829650333], [138.355553476, 37.829597559], [138.355438755, 37.829626721], [138.355437912, 37.829650333]]]}}, {"id": "44806", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248403891, 37.964905414], [138.248427224, 37.964981252], [138.248505551, 37.964949306], [138.248403891, 37.964905414]]]}}, {"id": "44807", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.284607198, 37.900703973], [138.28449358, 37.900603694], [138.284474695, 37.900637306], [138.284607198, 37.900703973]]]}}, {"id": "44808", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.281988003, 37.91178536], [138.281967717, 37.911680081], [138.28191856, 37.911708694], [138.281988003, 37.91178536]]]}}, {"id": "44809", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.383033022, 37.844459441], [138.383094695, 37.844559441], [138.383121362, 37.844490559], [138.383033022, 37.844459441]]]}}, {"id": "44810", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.337138145, 37.825630333], [138.337250921, 37.825551171], [138.337111479, 37.825602559], [138.337138145, 37.825630333]]]}}, {"id": "44811", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.350563191, 37.828732559], [138.350625966, 37.828655613], [138.350500143, 37.828693667], [138.350563191, 37.828732559]]]}}, {"id": "44812", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503044423, 37.934515505], [138.503137198, 37.934569108], [138.503100804, 37.934501054], [138.503044423, 37.934515505]]]}}, {"id": "44813", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235050467, 38.053462946], [138.235146589, 38.053530441], [138.235172698, 38.053489333], [138.235050467, 38.053462946]]]}}, {"id": "44814", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356605422, 37.829911441], [138.356671219, 37.829845973], [138.356595811, 37.829850865], [138.356605422, 37.829911441]]]}}, {"id": "44815", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233328249, 37.998071], [138.233397134, 37.998004613], [138.233289637, 37.998005441], [138.233328249, 37.998071]]]}}, {"id": "44816", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.54845297, 38.082360135], [138.548398807, 38.08245264], [138.548434358, 38.082451802], [138.54845297, 38.082360135]]]}}, {"id": "44817", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507597613, 38.332082838], [138.507672335, 38.332032279], [138.507603995, 38.332022838], [138.507597613, 38.332082838]]]}}, {"id": "44818", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.255538911, 37.96607236], [138.255573359, 37.966185414], [138.255614475, 37.966145135], [138.255538911, 37.96607236]]]}}, {"id": "44819", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.280028833, 37.911557027], [138.279968833, 37.911473135], [138.279910506, 37.911488973], [138.280028833, 37.911557027]]]}}, {"id": "44820", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233714916, 38.056427108], [138.233775188, 38.056523225], [138.233820752, 38.056456279], [138.233714916, 38.056427108]]]}}, {"id": "44821", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.443852114, 37.88508736], [138.443927419, 37.885160694], [138.443917977, 37.885069306], [138.443852114, 37.88508736]]]}}, {"id": "44822", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530328275, 37.988736694], [138.530285227, 37.988841973], [138.530352438, 37.988826414], [138.530328275, 37.988736694]]]}}, {"id": "44823", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.244305772, 38.073713775], [138.244343839, 38.073801838], [138.244391051, 38.073739333], [138.244305772, 38.073713775]]]}}, {"id": "44824", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.473537834, 38.332137027], [138.473568392, 38.332051748], [138.473516719, 38.332107306], [138.473537834, 38.332137027]]]}}, {"id": "44825", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22643214, 37.984243468], [138.226540467, 37.984159865], [138.226424358, 37.984215135], [138.22643214, 37.984243468]]]}}, {"id": "44826", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.337328599, 37.825927432], [138.33722489, 37.825872928], [138.33721655, 37.825930378], [138.337328599, 37.825927432]]]}}, {"id": "44827", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.366136926, 37.835946622], [138.366252425, 37.835915135], [138.366185655, 37.835883649], [138.366136926, 37.835946622]]]}}, {"id": "44828", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.466717834, 38.324177054], [138.466827004, 38.324205946], [138.466797276, 38.324122892], [138.466717834, 38.324177054]]]}}, {"id": "44829", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.329914228, 37.824854532], [138.329945888, 37.824769252], [138.329858949, 37.824787306], [138.329914228, 37.824854532]]]}}, {"id": "44830", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.261566109, 38.103436], [138.261684721, 38.103463775], [138.261672218, 38.103429333], [138.261566109, 38.103436]]]}}, {"id": "44831", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.373137082, 37.838232315], [138.373225512, 37.838301018], [138.373238145, 37.838265234], [138.373137082, 37.838232315]]]}}, {"id": "44832", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21911297, 37.838494559], [138.219232412, 37.838505108], [138.219148249, 37.838457333], [138.21911297, 37.838494559]]]}}, {"id": "44833", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.250152218, 37.964229027], [138.250105837, 37.964309306], [138.250192503, 37.964321802], [138.250152218, 37.964229027]]]}}, {"id": "44834", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487557912, 38.066751865], [138.487457639, 38.066768532], [138.487495966, 38.066802973], [138.487557912, 38.066751865]]]}}, {"id": "44835", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571579948, 38.084698694], [138.571556057, 38.084807306], [138.571613839, 38.084788694], [138.571579948, 38.084698694]]]}}, {"id": "44836", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249470804, 37.842517027], [138.24959358, 37.842505081], [138.249478301, 37.842488973], [138.249470804, 37.842517027]]]}}, {"id": "44837", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23474939, 37.995262387], [138.23482856, 37.995203225], [138.234746329, 37.995186838], [138.23474939, 37.995262387]]]}}, {"id": "44838", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226721025, 37.979679586], [138.226808807, 37.979762081], [138.226812412, 37.979686802], [138.226721025, 37.979679586]]]}}, {"id": "44839", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.473373385, 38.33163536], [138.473504773, 38.331616748], [138.473476719, 38.331594532], [138.473373385, 38.33163536]]]}}, {"id": "44840", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.3544493, 37.829098108], [138.35456153, 37.829068387], [138.354446252, 37.829057], [138.3544493, 37.829098108]]]}}, {"id": "44841", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.376957717, 37.841423054], [138.37688856, 37.841473892], [138.376968275, 37.841455559], [138.376957717, 37.841423054]]]}}, {"id": "44842", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294412983, 38.158842955], [138.294478482, 38.158917468], [138.294491245, 38.158856099], [138.294412983, 38.158842955]]]}}, {"id": "44843", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.467769222, 38.323800387], [138.467823943, 38.323873721], [138.467880895, 38.323822892], [138.467769222, 38.323800387]]]}}, {"id": "44844", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488214501, 38.338337027], [138.488111725, 38.338417027], [138.488181997, 38.338429532], [138.488214501, 38.338337027]]]}}, {"id": "44845", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503056083, 37.934328279], [138.503127198, 37.934395225], [138.503108859, 37.934306054], [138.503056083, 37.934328279]]]}}, {"id": "44846", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502060661, 38.333970613], [138.501967613, 38.333916171], [138.502030661, 38.333989505], [138.502060661, 38.333970613]]]}}, {"id": "44847", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233996589, 37.997429054], [138.234080467, 37.997487108], [138.234085746, 37.997423505], [138.233996589, 37.997429054]]]}}, {"id": "44848", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.328993385, 37.824611748], [138.328959222, 37.824529252], [138.328921997, 37.82459064], [138.328993385, 37.824611748]]]}}, {"id": "44849", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.347698716, 37.827403946], [138.34772594, 37.827322838], [138.347614553, 37.827385892], [138.347698716, 37.827403946]]]}}, {"id": "44850", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.47365061, 38.331027586], [138.473641167, 38.330931468], [138.473582555, 38.331038694], [138.47365061, 38.331027586]]]}}, {"id": "44851", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530087523, 37.987841802], [138.530180506, 37.987831694], [138.530085772, 37.987796414], [138.530087523, 37.987841802]]]}}, {"id": "44852", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249764449, 37.963909586], [138.249770272, 37.963994027], [138.249832776, 37.96393236], [138.249764449, 37.963909586]]]}}, {"id": "44853", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234370752, 38.056951559], [138.234477977, 38.056922387], [138.2343738, 38.056904892], [138.234370752, 38.056951559]]]}}, {"id": "44854", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.523186524, 38.073168027], [138.523125694, 38.073118027], [138.523139857, 38.073234135], [138.523186524, 38.073168027]]]}}, {"id": "44855", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235340195, 38.054251279], [138.235348249, 38.054343505], [138.235425188, 38.054326279], [138.235340195, 38.054251279]]]}}, {"id": "44856", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.56539022, 38.083769279], [138.565426615, 38.083847054], [138.565505772, 38.083823441], [138.56539022, 38.083769279]]]}}, {"id": "44857", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536860726, 38.082020198], [138.536791284, 38.082070198], [138.536862672, 38.082090198], [138.536860726, 38.082020198]]]}}, {"id": "44858", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.509629689, 37.952191027], [138.509524695, 37.952231865], [138.509604968, 37.952245198], [138.509629689, 37.952191027]]]}}, {"id": "44859", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226488807, 37.979521252], [138.226395746, 37.979563748], [138.226476589, 37.979579027], [138.226488807, 37.979521252]]]}}, {"id": "44860", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233533528, 38.059402946], [138.2335438, 38.059506559], [138.233588521, 38.059447387], [138.233533528, 38.059402946]]]}}, {"id": "44861", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.252890856, 37.96415236], [138.252970856, 37.964222919], [138.252990856, 37.964196802], [138.252890856, 37.96415236]]]}}, {"id": "44862", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552871608, 38.022232081], [138.552787717, 38.022215414], [138.552801051, 38.022271802], [138.552871608, 38.022232081]]]}}, {"id": "44863", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55479214, 38.082985414], [138.554719637, 38.083063198], [138.554811855, 38.083068748], [138.55479214, 38.082985414]]]}}, {"id": "44864", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552379948, 38.021451802], [138.55235022, 38.021530973], [138.552417173, 38.021491252], [138.552379948, 38.021451802]]]}}, {"id": "44865", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.382402192, 37.844215], [138.382490804, 37.844279721], [138.382492192, 37.844241946], [138.382402192, 37.844215]]]}}, {"id": "44866", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.235135188, 38.054155171], [138.235188249, 38.054228775], [138.23523131, 38.054199333], [138.235135188, 38.054155171]]]}}, {"id": "44867", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.452218664, 38.30885764], [138.452253113, 38.308931802], [138.452299728, 38.308865081], [138.452218664, 38.30885764]]]}}, {"id": "44868", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.521812387, 38.323447252], [138.521909053, 38.323425306], [138.521874617, 38.323386694], [138.521812387, 38.323447252]]]}}, {"id": "44869", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5579038, 38.084375973], [138.557871025, 38.08445264], [138.557935188, 38.084410973], [138.5579038, 38.084375973]]]}}, {"id": "44870", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356755966, 37.828941441], [138.356857639, 37.828999505], [138.356887912, 37.828954225], [138.356755966, 37.828941441]]]}}, {"id": "44871", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.559638833, 38.085641225], [138.559601336, 38.085727054], [138.559656057, 38.085715946], [138.559638833, 38.085641225]]]}}, {"id": "44872", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234176031, 37.997259054], [138.234203256, 37.997339333], [138.234250195, 37.997238775], [138.234176031, 37.997259054]]]}}, {"id": "44873", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554565188, 38.082755414], [138.554555746, 38.082865694], [138.554599079, 38.082756252], [138.554565188, 38.082755414]]]}}, {"id": "44874", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.531381556, 38.07508464], [138.531336005, 38.075128802], [138.531421284, 38.075133802], [138.531381556, 38.07508464]]]}}, {"id": "44875", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.394545863, 37.854763027], [138.394642244, 37.854795252], [138.394561414, 37.854750802], [138.394545863, 37.854763027]]]}}, {"id": "44876", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530334384, 37.989634468], [138.530433839, 37.989639468], [138.530341608, 37.989570306], [138.530334384, 37.989634468]]]}}, {"id": "44877", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563269105, 38.086212613], [138.563351894, 38.086222054], [138.563273839, 38.086183441], [138.563269105, 38.086212613]]]}}, {"id": "44878", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.23481297, 38.050078505], [138.234864358, 38.050001838], [138.234789079, 38.050026559], [138.23481297, 38.050078505]]]}}, {"id": "44879", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.219048249, 37.838396505], [138.219071582, 37.838302892], [138.219030467, 37.838302892], [138.219048249, 37.838396505]]]}}, {"id": "44880", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.374718405, 37.839209568], [138.374645305, 37.839280414], [138.374731946, 37.839262162], [138.374718405, 37.839209568]]]}}, {"id": "44881", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.529433281, 37.987071414], [138.529529105, 37.987114468], [138.529461336, 37.987043081], [138.529433281, 37.987071414]]]}}, {"id": "44882", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.279956887, 37.911686198], [138.280064669, 37.911614252], [138.279954942, 37.911642306], [138.279956887, 37.911686198]]]}}, {"id": "44883", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.543316057, 38.005581865], [138.543252996, 38.005614919], [138.543343281, 38.005659081], [138.543316057, 38.005581865]]]}}, {"id": "44884", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.21295655, 37.831367333], [138.212892944, 37.831286505], [138.212867393, 37.831344559], [138.21295655, 37.831367333]]]}}, {"id": "44885", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.379279974, 37.842429721], [138.379225811, 37.842500559], [138.37929192, 37.842483333], [138.379279974, 37.842429721]]]}}, {"id": "44886", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.57057856, 38.08112536], [138.570512166, 38.081208694], [138.570596057, 38.081172865], [138.57057856, 38.08112536]]]}}, {"id": "44887", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.234781855, 38.056980171], [138.234909079, 38.056986559], [138.234890752, 38.056962108], [138.234781855, 38.056980171]]]}}, {"id": "44888", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.443637951, 37.885081252], [138.443677393, 37.885172081], [138.443690441, 37.885097081], [138.443637951, 37.885081252]]]}}, {"id": "44889", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233384358, 38.059545441], [138.233464643, 38.059598775], [138.233474916, 38.059544613], [138.233384358, 38.059545441]]]}}, {"id": "44890", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507608586, 37.949636865], [138.507576641, 37.949728802], [138.507643307, 37.949708532], [138.507608586, 37.949636865]]]}}, {"id": "44891", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552107977, 38.081755973], [138.552044086, 38.081845973], [138.552099922, 38.081860694], [138.552107977, 38.081755973]]]}}, {"id": "44892", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.238530467, 38.083153505], [138.238449922, 38.083190171], [138.238514086, 38.083206838], [138.238530467, 38.083153505]]]}}, {"id": "44893", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.247810778, 38.093120721], [138.247789663, 38.093198225], [138.247840506, 38.093145721], [138.247810778, 38.093120721]]]}}, {"id": "44894", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294959935, 38.160026847], [138.295053307, 38.160057703], [138.295104267, 38.160008243], [138.294959935, 38.160026847]]]}}, {"id": "44895", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.517845966, 38.071560838], [138.517749585, 38.071554441], [138.517794864, 38.071590559], [138.517845966, 38.071560838]]]}}, {"id": "44896", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.357076031, 37.829005468], [138.3570793, 37.829064775], [138.357107639, 37.829044225], [138.357076031, 37.829005468]]]}}, {"id": "44897", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.365814643, 37.835846135], [138.365726926, 37.835828234], [138.365781064, 37.835911243], [138.365814643, 37.835846135]]]}}, {"id": "44898", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249957497, 37.963850414], [138.250063061, 37.963836532], [138.249973061, 37.963803468], [138.249957497, 37.963850414]]]}}, {"id": "44899", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554911855, 38.082611252], [138.554954086, 38.082701802], [138.554986304, 38.082667919], [138.554911855, 38.082611252]]]}}, {"id": "44900", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.550158521, 38.08244264], [138.550098521, 38.082519027], [138.550176861, 38.082489027], [138.550158521, 38.08244264]]]}}, {"id": "44901", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.453293191, 38.307996387], [138.453379339, 38.307930171], [138.453293191, 38.307951559], [138.453293191, 38.307996387]]]}}, {"id": "44902", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.229678807, 37.978965973], [138.229748521, 37.978921802], [138.22969214, 37.97891764], [138.229678807, 37.978965973]]]}}, {"id": "44903", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.368434786, 37.835363613], [138.368402296, 37.835438045], [138.368458249, 37.835450919], [138.368434786, 37.835363613]]]}}, {"id": "44904", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567703839, 38.084323721], [138.567798003, 38.084307613], [138.567711336, 38.084267054], [138.567703839, 38.084323721]]]}}, {"id": "44905", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.52120275, 37.977807306], [138.521273307, 37.977782865], [138.521235525, 37.977761198], [138.52120275, 37.977807306]]]}}, {"id": "44906", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.450685888, 38.305756802], [138.450757004, 38.305705973], [138.450661388, 38.305720865], [138.450685888, 38.305756802]]]}}, {"id": "44907", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.264215279, 38.107731], [138.264233061, 38.107804613], [138.264274163, 38.107744892], [138.264215279, 38.107731]]]}}, {"id": "44908", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.394157523, 37.853886919], [138.394209754, 37.853963586], [138.394234189, 37.853907468], [138.394157523, 37.853886919]]]}}, {"id": "44909", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.379131362, 37.842308892], [138.379072192, 37.842377505], [138.379139974, 37.842356667], [138.379131362, 37.842308892]]]}}, {"id": "44910", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530091336, 37.988902802], [138.53016939, 37.988946973], [138.530147445, 37.988883081], [138.530091336, 37.988902802]]]}}, {"id": "44911", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2310538, 37.991243505], [138.230953256, 37.991225441], [138.231049922, 37.991261559], [138.2310538, 37.991243505]]]}}, {"id": "44912", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.559755863, 38.038096333], [138.559793359, 38.038171613], [138.55980725, 38.038103838], [138.559755863, 38.038096333]]]}}, {"id": "44913", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.488146809, 38.06762436], [138.488076252, 38.067676306], [138.488141803, 38.067695468], [138.488146809, 38.06762436]]]}}, {"id": "44914", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.565455914, 38.051723613], [138.565443969, 38.051804171], [138.565490363, 38.051794721], [138.565455914, 38.051723613]]]}}, {"id": "44915", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.521134968, 37.977605919], [138.521184695, 37.97767536], [138.521198586, 37.977604252], [138.521134968, 37.977605919]]]}}, {"id": "44916", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.356714578, 37.829130613], [138.356831245, 37.829117], [138.356712088, 37.829106721], [138.356714578, 37.829130613]]]}}, {"id": "44917", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.330199222, 37.824919532], [138.330152283, 37.824863135], [138.330115058, 37.824902306], [138.330199222, 37.824919532]]]}}, {"id": "44918", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552633554, 38.021976802], [138.552694669, 38.022042081], [138.552707717, 38.022008198], [138.552633554, 38.021976802]]]}}, {"id": "44919", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.227824086, 37.983488748], [138.22788214, 37.983538468], [138.227909079, 37.983483748], [138.227824086, 37.983488748]]]}}, {"id": "44920", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.453124501, 38.308157054], [138.453122827, 38.308091505], [138.453070337, 38.308111973], [138.453124501, 38.308157054]]]}}, {"id": "44921", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.551964358, 38.081776252], [138.551892698, 38.081826252], [138.551915188, 38.081836532], [138.551964358, 38.081776252]]]}}, {"id": "44922", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554014916, 38.082386532], [138.553964643, 38.082464027], [138.5540038, 38.08246236], [138.554014916, 38.082386532]]]}}, {"id": "44923", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.249072776, 37.96101264], [138.24903083, 37.961062081], [138.249107497, 37.961070973], [138.249072776, 37.96101264]]]}}, {"id": "44924", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.404627782, 38.255625225], [138.404681946, 38.255684387], [138.404707497, 38.255639108], [138.404627782, 38.255625225]]]}}, {"id": "44925", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487439585, 38.066558532], [138.487473748, 38.066631865], [138.487496809, 38.066602414], [138.487439585, 38.066558532]]]}}, {"id": "44926", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.380857198, 37.842753613], [138.380951362, 37.842729441], [138.380825525, 37.842722505], [138.380857198, 37.842753613]]]}}, {"id": "44927", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.484394578, 38.063970775], [138.48429847, 38.063983279], [138.484367912, 38.064013838], [138.484394578, 38.063970775]]]}}, {"id": "44928", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55429297, 38.082376252], [138.554339637, 38.082468198], [138.55434214, 38.082386532], [138.55429297, 38.082376252]]]}}, {"id": "44929", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.50274511, 38.334287559], [138.50274511, 38.334209505], [138.502689922, 38.334243892], [138.50274511, 38.334287559]]]}}, {"id": "44930", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567356226, 38.055358892], [138.567327613, 38.055426387], [138.567376783, 38.055389441], [138.567356226, 38.055358892]]]}}, {"id": "44931", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.561459105, 38.087422613], [138.561504942, 38.087494559], [138.56153939, 38.087475946], [138.561459105, 38.087422613]]]}}, {"id": "44932", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553948521, 38.082176252], [138.554006861, 38.082244865], [138.554003528, 38.08217236], [138.553948521, 38.082176252]]]}}, {"id": "44933", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.54587022, 38.007113225], [138.545803839, 38.007160721], [138.545882996, 38.007157946], [138.54587022, 38.007113225]]]}}, {"id": "44934", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552988275, 38.021956252], [138.55300022, 38.022020973], [138.553044112, 38.021975694], [138.552988275, 38.021956252]]]}}, {"id": "44935", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.544672698, 38.081891], [138.544685473, 38.081964892], [138.544708249, 38.081947108], [138.544672698, 38.081891]]]}}, {"id": "44936", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.248140778, 38.093130171], [138.248207173, 38.093168775], [138.248207173, 38.093122667], [138.248140778, 38.093130171]]]}}, {"id": "44937", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563890506, 38.085359], [138.563874669, 38.085429], [138.563909948, 38.085411775], [138.563890506, 38.085359]]]}}, {"id": "44938", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.453010052, 38.308276441], [138.452947562, 38.308230387], [138.452928949, 38.308283721], [138.453010052, 38.308276441]]]}}, {"id": "44939", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.493876278, 38.217322892], [138.493970169, 38.217327613], [138.493984332, 38.217298441], [138.493876278, 38.217322892]]]}}, {"id": "44940", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503701362, 37.937878838], [138.503787198, 37.937837721], [138.503711362, 37.937833838], [138.503701362, 37.937878838]]]}}, {"id": "44941", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552863839, 38.02190764], [138.552861894, 38.021983748], [138.552892724, 38.021930973], [138.552863839, 38.02190764]]]}}, {"id": "44942", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572779053, 38.070828946], [138.572818781, 38.070898667], [138.572819611, 38.070835892], [138.572779053, 38.070828946]]]}}, {"id": "44943", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503273307, 37.935857441], [138.503356083, 37.935859108], [138.503330246, 37.935831054], [138.503273307, 37.935857441]]]}}, {"id": "44944", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.530147445, 37.988646694], [138.530223554, 37.988629748], [138.530157717, 37.98860364], [138.530147445, 37.988646694]]]}}, {"id": "44945", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571382361, 38.060217802], [138.571433748, 38.060282802], [138.57145153, 38.060225306], [138.571382361, 38.060217802]]]}}, {"id": "44946", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552570752, 38.081454586], [138.552589364, 38.081511252], [138.552600467, 38.081463198], [138.552570752, 38.081454586]]]}}, {"id": "44947", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.560731699, 38.039604108], [138.560718911, 38.039672171], [138.560769754, 38.039611613], [138.560731699, 38.039604108]]]}}, {"id": "44948", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.496514306, 38.070656532], [138.496579027, 38.07069236], [138.496594034, 38.070653198], [138.496514306, 38.070656532]]]}}, {"id": "44949", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.516749027, 38.071986108], [138.516679585, 38.072023333], [138.516715136, 38.072036667], [138.516749027, 38.071986108]]]}}, {"id": "44950", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55452297, 38.082465414], [138.554470195, 38.082515973], [138.554511025, 38.082522081], [138.55452297, 38.082465414]]]}}, {"id": "44951", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.562318003, 38.088223441], [138.562364112, 38.088174838], [138.562305499, 38.088184559], [138.562318003, 38.088223441]]]}}, {"id": "44952", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.511539974, 37.957597946], [138.511530246, 37.957673505], [138.511568586, 37.957641559], [138.511539974, 37.957597946]]]}}, {"id": "44953", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.233366589, 37.998244613], [138.233293528, 37.998203225], [138.233306031, 37.998253225], [138.233366589, 37.998244613]]]}}, {"id": "44954", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.565782309, 38.051713892], [138.56573594, 38.051785279], [138.565779831, 38.051782505], [138.565782309, 38.051713892]]]}}, {"id": "44955", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.544834916, 38.082159333], [138.544893528, 38.082181559], [138.544904643, 38.082123225], [138.544834916, 38.082159333]]]}}, {"id": "44956", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569582996, 38.082592865], [138.569653554, 38.082640081], [138.569662438, 38.082597027], [138.569582996, 38.082592865]]]}}, {"id": "44957", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.535056031, 38.082994919], [138.535020195, 38.083074108], [138.535066304, 38.083073559], [138.535056031, 38.082994919]]]}}, {"id": "44958", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2269438, 37.97962764], [138.226912412, 37.979683748], [138.226958521, 37.97967264], [138.2269438, 37.97962764]]]}}, {"id": "44959", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.492284578, 38.069971838], [138.492223748, 38.070016], [138.492272633, 38.070023775], [138.492284578, 38.069971838]]]}}, {"id": "44960", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573224617, 38.069880333], [138.573269339, 38.069947], [138.573247951, 38.069870333], [138.573224617, 38.069880333]]]}}, {"id": "44961", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.542959948, 38.005412135], [138.542936057, 38.005472694], [138.542985772, 38.005470468], [138.542959948, 38.005412135]]]}}, {"id": "44962", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573059339, 38.069596441], [138.573083502, 38.069675333], [138.573129883, 38.069680333], [138.573059339, 38.069596441]]]}}, {"id": "44963", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573443774, 38.066340306], [138.573445447, 38.066420865], [138.573481829, 38.066404468], [138.573443774, 38.066340306]]]}}, {"id": "44964", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.445621414, 38.308295414], [138.445667523, 38.30834264], [138.445690856, 38.308304027], [138.445621414, 38.308295414]]]}}, {"id": "44965", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567156783, 38.054995559], [138.567177056, 38.055068054], [138.567199559, 38.05501], [138.567156783, 38.054995559]]]}}, {"id": "44966", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502896641, 37.934234946], [138.502966355, 37.934227721], [138.502906641, 37.934166054], [138.502896641, 37.934234946]]]}}, {"id": "44967", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569867717, 38.081887865], [138.569931051, 38.081936468], [138.569932166, 38.081897027], [138.569867717, 38.081887865]]]}}, {"id": "44968", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502859416, 37.941040775], [138.502911089, 37.941080225], [138.502916913, 37.941026613], [138.502859416, 37.941040775]]]}}, {"id": "44969", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553485811, 38.028881559], [138.553518029, 38.028935721], [138.553539416, 38.028875441], [138.553485811, 38.028881559]]]}}, {"id": "44970", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.561028275, 38.086797613], [138.561088833, 38.086805108], [138.561047717, 38.086760946], [138.561028275, 38.086797613]]]}}, {"id": "44971", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507468755, 38.071858108], [138.507504306, 38.071908946], [138.507542088, 38.071866441], [138.507468755, 38.071858108]]]}}, {"id": "44972", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.529966615, 37.987661135], [138.53001939, 37.987611973], [138.529971051, 37.987604198], [138.529966615, 37.987661135]]]}}, {"id": "44973", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553208859, 38.028607667], [138.553248586, 38.028640721], [138.553245811, 38.028602946], [138.553208859, 38.028607667]]]}}, {"id": "44974", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570546524, 38.059109441], [138.570604864, 38.059143892], [138.570584034, 38.059097225], [138.570546524, 38.059109441]]]}}, {"id": "44975", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507258586, 37.949246586], [138.507233022, 37.949176865], [138.507194423, 37.949202973], [138.507258586, 37.949246586]]]}}, {"id": "44976", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.542638275, 38.005205198], [138.542634112, 38.005277694], [138.542663554, 38.005262135], [138.542638275, 38.005205198]]]}}, {"id": "44977", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503840246, 37.937601613], [138.503913865, 37.937565225], [138.503876083, 37.937547171], [138.503840246, 37.937601613]]]}}, {"id": "44978", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.508475772, 38.295235054], [138.508431336, 38.295183387], [138.508395227, 38.295208667], [138.508475772, 38.295235054]]]}}, {"id": "44979", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.54810454, 38.082925081], [138.548055927, 38.082969252], [138.548095097, 38.082977586], [138.54810454, 38.082925081]]]}}, {"id": "44980", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5483038, 38.082551802], [138.548255188, 38.082595973], [138.548294358, 38.082604306], [138.5483038, 38.082551802]]]}}, {"id": "44981", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548678586, 38.082673991], [138.548629974, 38.082718162], [138.548669144, 38.082726495], [138.548678586, 38.082673991]]]}}, {"id": "44982", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.524431803, 38.072820775], [138.524493191, 38.072838279], [138.524466524, 38.072787441], [138.524431803, 38.072820775]]]}}, {"id": "44983", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.395488833, 37.855192838], [138.3955193, 37.855138486], [138.395464462, 37.855152982], [138.395488833, 37.855192838]]]}}, {"id": "44984", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569462361, 38.057534171], [138.569542088, 38.057516108], [138.569489027, 38.057504441], [138.569462361, 38.057534171]]]}}, {"id": "44985", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.560290584, 38.039294108], [138.56025642, 38.039346333], [138.56030642, 38.039347441], [138.560290584, 38.039294108]]]}}, {"id": "44986", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569632088, 38.057711387], [138.569661245, 38.057769441], [138.5696807, 38.057719721], [138.569632088, 38.057711387]]]}}, {"id": "44987", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.543623528, 38.081494613], [138.543686031, 38.081504892], [138.543686589, 38.081473775], [138.543623528, 38.081494613]]]}}, {"id": "44988", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.566956887, 38.084007054], [138.567015772, 38.084063171], [138.567013839, 38.084019279], [138.566956887, 38.084007054]]]}}, {"id": "44989", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.560253645, 38.039133559], [138.56028808, 38.039203279], [138.560281971, 38.039127171], [138.560253645, 38.039133559]]]}}, {"id": "44990", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.566967328, 38.054945559], [138.567029831, 38.054985559], [138.567005668, 38.054922505], [138.566967328, 38.054945559]]]}}, {"id": "44991", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553506394, 38.030642414], [138.553457497, 38.030695468], [138.553483891, 38.030704081], [138.553506394, 38.030642414]]]}}, {"id": "44992", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572832944, 38.069620054], [138.57288655, 38.069678387], [138.57287406, 38.069620333], [138.572832944, 38.069620054]]]}}, {"id": "44993", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536992944, 38.081738532], [138.537048781, 38.081780748], [138.53705489, 38.081747694], [138.536992944, 38.081738532]]]}}, {"id": "44994", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.564182166, 38.084931505], [138.56418856, 38.084985946], [138.564204384, 38.084978171], [138.564182166, 38.084931505]]]}}, {"id": "44995", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.568636329, 38.083203135], [138.568672166, 38.083260919], [138.568693281, 38.083220081], [138.568636329, 38.083203135]]]}}, {"id": "44996", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5226093, 38.072455252], [138.522594034, 38.072517748], [138.522632088, 38.07249136], [138.5226093, 38.072455252]]]}}, {"id": "44997", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572115966, 38.061236414], [138.572051803, 38.061264468], [138.57210847, 38.061276414], [138.572115966, 38.061236414]]]}}, {"id": "44998", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.507724864, 38.071863946], [138.50777153, 38.071909775], [138.507789027, 38.071863946], [138.507724864, 38.071863946]]]}}, {"id": "44999", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570079585, 38.058413333], [138.570038755, 38.058458333], [138.570104578, 38.058473333], [138.570079585, 38.058413333]]]}}, {"id": "45000", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548955473, 38.08117236], [138.548970195, 38.081234027], [138.549006031, 38.08118736], [138.548955473, 38.08117236]]]}}, {"id": "45001", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572870467, 38.078769532], [138.57284214, 38.078828135], [138.572886861, 38.078815081], [138.572870467, 38.078769532]]]}}, {"id": "45002", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553451025, 38.082243198], [138.553495746, 38.082283468], [138.553489364, 38.082223748], [138.553451025, 38.082243198]]]}}, {"id": "45003", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569254942, 38.083068135], [138.569312724, 38.08311064], [138.569314112, 38.083066748], [138.569254942, 38.083068135]]]}}, {"id": "45004", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503857471, 37.936868838], [138.503923307, 37.936851054], [138.503891362, 37.936825505], [138.503857471, 37.936868838]]]}}, {"id": "45005", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503860532, 37.936734946], [138.503868586, 37.936677721], [138.503828301, 37.936723559], [138.503860532, 37.936734946]]]}}, {"id": "45006", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563451051, 38.087252613], [138.563499105, 38.087234279], [138.563449948, 38.087208721], [138.563451051, 38.087252613]]]}}, {"id": "45007", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570494306, 38.058749441], [138.570543748, 38.058798892], [138.570548755, 38.058767505], [138.570494306, 38.058749441]]]}}, {"id": "45008", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.563408833, 38.086725946], [138.563447717, 38.086684559], [138.563398833, 38.086665667], [138.563408833, 38.086725946]]]}}, {"id": "45009", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.560641971, 38.039049946], [138.560605577, 38.039098838], [138.56063808, 38.039111892], [138.560641971, 38.039049946]]]}}, {"id": "45010", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55827131, 38.084579559], [138.558334916, 38.084573171], [138.558269637, 38.084542613], [138.55827131, 38.084579559]]]}}, {"id": "45011", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.56045725, 38.039012171], [138.56050725, 38.039055505], [138.560512529, 38.039006054], [138.56045725, 38.039012171]]]}}, {"id": "45012", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553416394, 38.030444919], [138.553370272, 38.030504919], [138.553404721, 38.030517973], [138.553416394, 38.030444919]]]}}, {"id": "45013", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573239857, 38.061286973], [138.573213476, 38.06133864], [138.573258755, 38.061310586], [138.573239857, 38.061286973]]]}}, {"id": "45014", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548792412, 38.08270736], [138.548755188, 38.082752919], [138.548804643, 38.082729586], [138.548792412, 38.08270736]]]}}, {"id": "45015", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.453483281, 38.150506919], [138.453478275, 38.150567198], [138.453510778, 38.150554973], [138.453483281, 38.150506919]]]}}, {"id": "45016", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.56004725, 38.038724108], [138.560111414, 38.038703], [138.560097808, 38.038689108], [138.56004725, 38.038724108]]]}}, {"id": "45017", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.562748833, 38.088098441], [138.562818275, 38.088134], [138.562821894, 38.088115946], [138.562748833, 38.088098441]]]}}, {"id": "45018", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567377613, 38.055725], [138.56741511, 38.055768054], [138.567441505, 38.055730559], [138.567377613, 38.055725]]]}}, {"id": "45019", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.502847328, 37.941373892], [138.502791089, 37.941422441], [138.50285358, 37.941404108], [138.502847328, 37.941373892]]]}}, {"id": "45020", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552780752, 38.081303748], [138.55281297, 38.08134264], [138.552841025, 38.081299865], [138.552780752, 38.081303748]]]}}, {"id": "45021", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567604553, 38.055989721], [138.567663995, 38.055958892], [138.567610389, 38.055947775], [138.567604553, 38.055989721]]]}}, {"id": "45022", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503887471, 37.937477441], [138.503905525, 37.937420505], [138.503870532, 37.937445225], [138.503887471, 37.937477441]]]}}, {"id": "45023", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.533986278, 38.077448802], [138.534039883, 38.077459081], [138.534032387, 38.077431586], [138.533986278, 38.077448802]]]}}, {"id": "45024", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536057108, 38.08216936], [138.536068223, 38.082119081], [138.536029339, 38.082124081], [138.536057108, 38.08216936]]]}}, {"id": "45025", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571657134, 38.077129505], [138.571702698, 38.077086441], [138.571669922, 38.077072838], [138.571657134, 38.077129505]]]}}, {"id": "45026", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536953217, 38.08160936], [138.537017108, 38.081620748], [138.536961829, 38.081578532], [138.536953217, 38.08160936]]]}}, {"id": "45027", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.56673511, 38.053559441], [138.566769274, 38.053613054], [138.56677345, 38.053569721], [138.56673511, 38.053559441]]]}}, {"id": "45028", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485270973, 38.066646054], [138.485318755, 38.066619667], [138.485265966, 38.066603279], [138.485270973, 38.066646054]]]}}, {"id": "45029", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55425131, 38.082178468], [138.554277977, 38.082223198], [138.554299364, 38.082184027], [138.55425131, 38.082178468]]]}}, {"id": "45030", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569808197, 38.058228333], [138.569785422, 38.058289441], [138.569827912, 38.058240838], [138.569808197, 38.058228333]]]}}, {"id": "45031", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.562828003, 38.086095946], [138.562886887, 38.086119559], [138.562843281, 38.086077333], [138.562828003, 38.086095946]]]}}, {"id": "45032", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.524487639, 38.073190252], [138.524540143, 38.07323164], [138.524538755, 38.073195252], [138.524487639, 38.073190252]]]}}, {"id": "45033", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572828988, 38.068772243], [138.572800661, 38.068722721], [138.572766355, 38.068751018], [138.572828988, 38.068772243]]]}}, {"id": "45034", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570126057, 38.081427586], [138.570118003, 38.081478414], [138.570144384, 38.081463694], [138.570126057, 38.081427586]]]}}, {"id": "45035", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5719993, 38.060753919], [138.572022088, 38.060806694], [138.572035136, 38.060776694], [138.5719993, 38.060753919]]]}}, {"id": "45036", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.485192633, 38.065470775], [138.485182633, 38.065521613], [138.485230143, 38.065500225], [138.485192633, 38.065470775]]]}}, {"id": "45037", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548294358, 38.082110414], [138.548325746, 38.082169865], [138.54832297, 38.082109865], [138.548294358, 38.082110414]]]}}, {"id": "45038", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5705507, 38.058365279], [138.570584034, 38.058412775], [138.570568755, 38.058361667], [138.5705507, 38.058365279]]]}}, {"id": "45039", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.552608807, 38.081656532], [138.55266297, 38.081665973], [138.552637691, 38.081625414], [138.552608807, 38.081656532]]]}}, {"id": "45040", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.53707406, 38.081333532], [138.537068223, 38.081390198], [138.537102672, 38.081378532], [138.53707406, 38.081333532]]]}}, {"id": "45041", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569455772, 38.082268973], [138.569482724, 38.082313694], [138.569489948, 38.082274252], [138.569455772, 38.082268973]]]}}, {"id": "45042", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548465188, 38.082695973], [138.548470467, 38.082743468], [138.548500752, 38.082729865], [138.548465188, 38.082695973]]]}}, {"id": "45043", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572131284, 38.070678946], [138.572156835, 38.070729225], [138.572160169, 38.070693387], [138.572131284, 38.070678946]]]}}, {"id": "45044", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572727665, 38.069726171], [138.572694617, 38.069772], [138.572736835, 38.069762838], [138.572727665, 38.069726171]]]}}, {"id": "45045", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.511379416, 37.957223225], [138.511452477, 37.957211559], [138.511410246, 37.957195171], [138.511379416, 37.957223225]]]}}, {"id": "45046", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548919637, 38.081355973], [138.548946031, 38.081406252], [138.548963256, 38.081373198], [138.548919637, 38.081355973]]]}}, {"id": "45047", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.574132088, 38.062231694], [138.57415847, 38.062273081], [138.574189585, 38.062246135], [138.574132088, 38.062231694]]]}}, {"id": "45048", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572495447, 38.070087559], [138.572495447, 38.070153387], [138.572535447, 38.070125892], [138.572495447, 38.070087559]]]}}, {"id": "45049", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.487496252, 38.067815468], [138.487566252, 38.067832973], [138.487566252, 38.06780964], [138.487496252, 38.067815468]]]}}, {"id": "45050", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570471958, 38.058985342], [138.570520246, 38.059015144], [138.570515694, 38.058971946], [138.570471958, 38.058985342]]]}}, {"id": "45051", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570722166, 38.080959802], [138.570716615, 38.081028973], [138.570744669, 38.08100036], [138.570722166, 38.080959802]]]}}, {"id": "45052", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570859948, 38.08104536], [138.570906615, 38.081088135], [138.570892724, 38.081039802], [138.570859948, 38.08104536]]]}}, {"id": "45053", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.5718793, 38.060864892], [138.57189192, 38.060814306], [138.571855551, 38.060836054], [138.5718793, 38.060864892]]]}}, {"id": "45054", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.537175447, 38.081759081], [138.537232944, 38.081776027], [138.53718655, 38.081750468], [138.537175447, 38.081759081]]]}}, {"id": "45055", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.562775227, 38.085825946], [138.562813554, 38.085871225], [138.562816057, 38.085820667], [138.562775227, 38.085825946]]]}}, {"id": "45056", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572533774, 38.068661414], [138.572569611, 38.068697802], [138.572582114, 38.06867364], [138.572533774, 38.068661414]]]}}, {"id": "45057", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570522724, 38.080966748], [138.570572996, 38.08100536], [138.570577445, 38.080968135], [138.570522724, 38.080966748]]]}}, {"id": "45058", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.573045746, 38.078675919], [138.573044358, 38.078730081], [138.573073528, 38.078694532], [138.573045746, 38.078675919]]]}}, {"id": "45059", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.524302918, 38.072831081], [138.524341245, 38.072872198], [138.524344034, 38.072835532], [138.524302918, 38.072831081]]]}}, {"id": "45060", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.564035772, 38.084799838], [138.564096329, 38.084829279], [138.56404939, 38.084791225], [138.564035772, 38.084799838]]]}}, {"id": "45061", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.566034838, 38.051696946], [138.566066498, 38.051662505], [138.566030661, 38.051651108], [138.566034838, 38.051696946]]]}}, {"id": "45062", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569314578, 38.057522775], [138.569335966, 38.057478333], [138.569291245, 38.057481667], [138.569314578, 38.057522775]]]}}, {"id": "45063", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503960246, 37.937012441], [138.503994423, 37.937055775], [138.504000246, 37.937029667], [138.503960246, 37.937012441]]]}}, {"id": "45064", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.558937134, 38.084984279], [138.558928521, 38.085024], [138.558967134, 38.085005946], [138.558937134, 38.084984279]]]}}, {"id": "45065", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.484728755, 38.066003559], [138.4847693, 38.065971613], [138.484728755, 38.065982171], [138.484728755, 38.066003559]]]}}, {"id": "45066", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.557873256, 38.084624586], [138.5579138, 38.084660973], [138.557900752, 38.084621252], [138.557873256, 38.084624586]]]}}, {"id": "45067", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572287769, 38.065600495], [138.572339027, 38.065552973], [138.572278936, 38.065564153], [138.572287769, 38.065600495]]]}}, {"id": "45068", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.533726835, 38.077319081], [138.533738495, 38.077365748], [138.533765162, 38.07733936], [138.533726835, 38.077319081]]]}}, {"id": "45069", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569802996, 38.082364252], [138.56981022, 38.082317586], [138.569767445, 38.082341748], [138.569802996, 38.082364252]]]}}, {"id": "45070", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.565903722, 38.051741667], [138.565950389, 38.051768892], [138.565924553, 38.051730838], [138.565903722, 38.051741667]]]}}, {"id": "45071", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570237912, 38.058571667], [138.570253748, 38.058621108], [138.570258755, 38.058583613], [138.570237912, 38.058571667]]]}}, {"id": "45072", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569852724, 38.082634532], [138.569899948, 38.082665081], [138.569895499, 38.082623414], [138.569852724, 38.082634532]]]}}, {"id": "45073", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.535777665, 38.082509081], [138.535818781, 38.082493532], [138.535789883, 38.082477694], [138.535777665, 38.082509081]]]}}, {"id": "45074", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569898482, 38.057789324], [138.569945525, 38.057822595], [138.569941219, 38.05779482], [138.569898482, 38.057789324]]]}}, {"id": "45075", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571592114, 38.076767216], [138.571593982, 38.076720126], [138.57156978, 38.076732631], [138.571592114, 38.076767216]]]}}, {"id": "45076", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.548205746, 38.082394306], [138.548182698, 38.082441252], [138.548226861, 38.082428748], [138.548205746, 38.082394306]]]}}, {"id": "45077", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.567829831, 38.056053333], [138.567856498, 38.056094441], [138.567867056, 38.056076387], [138.567829831, 38.056053333]]]}}, {"id": "45078", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.535797419, 38.082654919], [138.535841582, 38.082631586], [138.535814643, 38.082617135], [138.535797419, 38.082654919]]]}}, {"id": "45079", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.484348755, 38.065218838], [138.484392918, 38.065259946], [138.484386252, 38.065213559], [138.484348755, 38.065218838]]]}}, {"id": "45080", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.558462412, 38.084704279], [138.558513528, 38.084728721], [138.558525188, 38.084706775], [138.558462412, 38.084704279]]]}}, {"id": "45081", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571995798, 38.065380162], [138.57201022, 38.065338676], [138.571974669, 38.065371135], [138.571995798, 38.065380162]]]}}, {"id": "45082", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.543566978, 38.081290117], [138.543608768, 38.081305486], [138.543610415, 38.081264613], [138.543566978, 38.081290117]]]}}, {"id": "45083", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.536226835, 38.082215468], [138.536190999, 38.082243802], [138.536234617, 38.082240198], [138.536226835, 38.082215468]]]}}, {"id": "45084", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571451038, 38.072227252], [138.571392879, 38.07225673], [138.571457004, 38.072248477], [138.571451038, 38.072227252]]]}}, {"id": "45085", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.535020999, 38.081732694], [138.53506489, 38.081756586], [138.535040169, 38.081726306], [138.535020999, 38.081732694]]]}}, {"id": "45086", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571433865, 38.076675973], [138.571429209, 38.076627414], [138.571410597, 38.076660523], [138.571433865, 38.076675973]]]}}, {"id": "45087", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503959883, 37.937225667], [138.503986835, 37.937185973], [138.503951479, 37.937194802], [138.503959883, 37.937225667]]]}}, {"id": "45088", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572875227, 38.068521108], [138.572839429, 38.068550586], [138.572882685, 38.068549405], [138.572875227, 38.068521108]]]}}, {"id": "45089", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569266031, 38.082967297], [138.569221349, 38.082960676], [138.569246485, 38.082980541], [138.569266031, 38.082967297]]]}}, {"id": "45090", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.53604489, 38.082009919], [138.536097951, 38.082025748], [138.536069883, 38.081998802], [138.53604489, 38.082009919]]]}}, {"id": "45091", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.503387471, 37.936061613], [138.503436641, 37.936039108], [138.503387471, 37.936037441], [138.503387471, 37.936061613]]]}}, {"id": "45092", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55043048, 38.081520279], [138.550462127, 38.081551748], [138.550452892, 38.081516054], [138.55043048, 38.081520279]]]}}, {"id": "45093", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554083878, 38.082080153], [138.554057147, 38.08212127], [138.554089598, 38.082122775], [138.554083878, 38.082080153]]]}}, {"id": "45094", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.549922918, 38.081700234], [138.549968794, 38.081724], [138.549935979, 38.08168127], [138.549922918, 38.081700234]]]}}, {"id": "45095", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570617211, 38.058947144], [138.570659611, 38.058965477], [138.570630454, 38.058930378], [138.570617211, 38.058947144]]]}}, {"id": "45096", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571545577, 38.07661564], [138.571546498, 38.076570748], [138.571535331, 38.076572225], [138.571545577, 38.07661564]]]}}, {"id": "45097", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.569994942, 38.082924252], [138.569953061, 38.082912108], [138.569958638, 38.082937495], [138.569994942, 38.082924252]]]}}, {"id": "45098", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.570414773, 38.058875054], [138.570407821, 38.058910937], [138.570424734, 38.058893631], [138.570414773, 38.058875054]]]}}, {"id": "45099", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554114358, 38.082245973], [138.554145473, 38.082216252], [138.554119079, 38.082218198], [138.554114358, 38.082245973]]]}}, {"id": "45100", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.554506368, 38.082377883], [138.55450415, 38.082337604], [138.554485253, 38.082356495], [138.554506368, 38.082377883]]]}}, {"id": "45101", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571644241, 38.076957802], [138.571630285, 38.076921009], [138.571614462, 38.076944559], [138.571644241, 38.076957802]]]}}, {"id": "45102", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.395277678, 37.855296324], [138.395248223, 37.855265324], [138.39523655, 37.855284649], [138.395277678, 37.855296324]]]}}, {"id": "45103", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.571512062, 38.076263207], [138.571525564, 38.07629927], [138.571546965, 38.076278667], [138.571512062, 38.076263207]]]}}, {"id": "45104", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.545539728, 38.081893333], [138.545575409, 38.08190364], [138.545572931, 38.081875432], [138.545539728, 38.081893333]]]}}, {"id": "45105", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.55040201, 38.08169636], [138.550424047, 38.081725297], [138.550425603, 38.081700279], [138.55040201, 38.08169636]]]}}, {"id": "45106", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572528418, 38.079054874], [138.572534176, 38.079083432], [138.572540454, 38.079061505], [138.572528418, 38.079054874]]]}}, {"id": "45107", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553932607, 38.08262827], [138.553932827, 38.08259091], [138.553916135, 38.082613288], [138.553932607, 38.08262827]]]}}, {"id": "45108", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.550125227, 38.081776333], [138.550158003, 38.081784874], [138.550135383, 38.081758279], [138.550125227, 38.081776333]]]}}, {"id": "45109", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "佐渡市", "N03_005": null, "N03_007": "15224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.572361388, 38.079125649], [138.57239594, 38.079107441], [138.572362957, 38.079113649], [138.572361388, 38.079125649]]]}}, {"id": "45110", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "魚沼市", "N03_005": null, "N03_007": "15225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.177337173, 36.993707171], [139.077710726, 37.081804414], [139.078394475, 37.13118736], [139.025154553, 37.150560135], [139.02172345, 37.186375027], [138.963725357, 37.191873973], [138.938901803, 37.171659802], [138.934436978, 37.208734748], [138.907687782, 37.194499198], [138.904747134, 37.172030333], [138.872758716, 37.194359441], [138.844901115, 37.165476441], [138.834874254, 37.176477532], [138.881208586, 37.225134694], [138.88618655, 37.274667387], [138.932058223, 37.300501586], [138.932900726, 37.338598135], [138.964655006, 37.351905865], [138.9566907, 37.373271135], [139.014171414, 37.378218802], [139.028484669, 37.397782919], [139.048377004, 37.396792054], [139.049812088, 37.412561748], [139.139637419, 37.397491387], [139.159376887, 37.413668865], [139.197246329, 37.41076664], [139.238013865, 37.373046414], [139.213283022, 37.28781564], [139.164753281, 37.237512532], [139.1965838, 37.194028414], [139.220664773, 37.209177306], [139.253845694, 37.164971838], [139.235147588, 37.112365559], [139.260326835, 37.047690414], [139.243366641, 37.01513464], [139.255665447, 36.988748586], [139.24186214, 36.941807252], [139.228506887, 36.961279135], [139.182729533, 36.961716919], [139.177337173, 36.993707171]]]}}, {"id": "45111", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "南魚沼市", "N03_005": null, "N03_007": "15226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.8806107, 36.949559225], [138.778968301, 36.957782775], [138.764910272, 36.971775081], [138.775167523, 37.010010667], [138.829992866, 37.075723], [138.829480804, 37.101766559], [138.874536252, 37.139370387], [138.84394834, 37.167490892], [138.872505383, 37.194347505], [138.904933256, 37.172107838], [138.907687782, 37.194499198], [138.932755032, 37.208619198], [138.938901803, 37.171659802], [138.979812412, 37.194679802], [139.022992335, 37.185705586], [139.025154553, 37.150560135], [139.078394475, 37.13118736], [139.077612672, 37.08203636], [139.097851505, 37.066393802], [139.091131025, 37.019733333], [139.04738917, 36.987292865], [138.966554553, 36.979075387], [138.971470143, 36.887213198], [138.932198975, 36.893709252], [138.914191051, 36.931181171], [138.8806107, 36.949559225]]]}}, {"id": "45112", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "胎内市", "N03_005": null, "N03_007": "15227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.511826278, 37.921215225], [139.493092827, 37.998059775], [139.474310246, 38.009600505], [139.382484695, 38.033134973], [139.354494423, 38.017850613], [139.313573113, 38.049467739], [139.406154864, 38.150582225], [139.426336472, 38.098910135], [139.44515786, 38.104223586], [139.481219689, 38.078230973], [139.524465331, 38.082651694], [139.539567445, 38.032270135], [139.531072698, 38.012763748], [139.56506978, 37.984191919], [139.5626838, 37.939920135], [139.6067207, 37.935120414], [139.632037393, 37.899068], [139.585717497, 37.863592306], [139.55668345, 37.863157892], [139.552296031, 37.882745054], [139.498993891, 37.898515081], [139.511826278, 37.921215225]]]}}, {"id": "45113", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "胎内市", "N03_005": null, "N03_007": "15227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.44508061, 38.098433279], [139.44469725, 38.098915775], [139.445233943, 38.098751892], [139.44508061, 38.098433279]]]}}, {"id": "45114", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": null, "N03_004": "胎内市", "N03_005": null, "N03_007": "15227"}, "geometry": {"type": "Polygon", "coordinates": [[[139.445527004, 38.100039946], [139.445479222, 38.099316333], [139.445215331, 38.099360775], [139.445527004, 38.100039946]]]}}, {"id": "45115", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "北蒲原郡", "N03_004": "聖籠町", "N03_005": null, "N03_007": "15307"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227711971, 37.947064333], [139.245480973, 37.972114892], [139.22548214, 38.001209802], [139.288312464, 38.030568514], [139.286005772, 38.00935264], [139.300565837, 38.014282306], [139.270991855, 37.994580532], [139.316274864, 37.984430135], [139.288647808, 37.952839198], [139.227711971, 37.947064333]]]}}, {"id": "45116", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "北蒲原郡", "N03_004": "聖籠町", "N03_005": null, "N03_007": "15307"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245717704, 38.008156946], [139.244565655, 38.006190802], [139.244492568, 38.006219405], [139.245717704, 38.008156946]]]}}, {"id": "45117", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "北蒲原郡", "N03_004": "聖籠町", "N03_005": null, "N03_007": "15307"}, "geometry": {"type": "Polygon", "coordinates": [[[139.266390285, 38.016966577], [139.266385344, 38.017126622], [139.266872503, 38.016519604], [139.266390285, 38.016966577]]]}}, {"id": "45118", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "北蒲原郡", "N03_004": "聖籠町", "N03_005": null, "N03_007": "15307"}, "geometry": {"type": "Polygon", "coordinates": [[[139.226387912, 38.00093236], [139.226460532, 38.00096264], [139.22644358, 38.000918946], [139.226387912, 38.00093236]]]}}, {"id": "45119", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "西蒲原郡", "N03_004": "弥彦村", "N03_005": null, "N03_007": "15342"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839287613, 37.658331667], [138.852489637, 37.673556387], [138.805610973, 37.677978559], [138.81644572, 37.718408865], [138.84442275, 37.714655225], [138.864323606, 37.707434946], [138.872074721, 37.696283279], [138.868315227, 37.670893892], [138.839287613, 37.658331667]], [[138.84148546, 37.713911171], [138.841839689, 37.712710279], [138.841941699, 37.713893198], [138.84148546, 37.713911171]]]}}, {"id": "45120", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "南蒲原郡", "N03_004": "田上町", "N03_005": null, "N03_007": "15361"}, "geometry": {"type": "Polygon", "coordinates": [[[139.031163256, 37.688929387], [139.061682555, 37.728245748], [139.095028859, 37.736895441], [139.107924228, 37.725801], [139.093282438, 37.709406865], [139.106327471, 37.698417721], [139.098300169, 37.679616919], [139.064785253, 37.668195225], [139.031163256, 37.688929387]]]}}, {"id": "45121", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "東蒲原郡", "N03_004": "阿賀町", "N03_005": null, "N03_007": "15385"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25747214, 37.449020667], [139.25952808, 37.467842306], [139.298372633, 37.48497436], [139.276087834, 37.509703333], [139.322039663, 37.541723865], [139.30833655, 37.561998441], [139.319700078, 37.594581802], [139.34855834, 37.600817802], [139.34800847, 37.629832387], [139.321908586, 37.647099027], [139.309647198, 37.690002414], [139.280258885, 37.701550198], [139.296495136, 37.728996973], [139.289366809, 37.756794414], [139.324392866, 37.770402198], [139.361637004, 37.821800973], [139.428918003, 37.815183387], [139.468952802, 37.788056198], [139.710689805, 37.854393838], [139.736543191, 37.827265532], [139.741505383, 37.817712775], [139.657887665, 37.755007468], [139.624091997, 37.710249468], [139.627203385, 37.688284441], [139.549292607, 37.649037802], [139.548539689, 37.609636108], [139.564986667, 37.597383892], [139.565737224, 37.546110027], [139.590547276, 37.528032586], [139.584896887, 37.512724838], [139.476115162, 37.50255436], [139.457198755, 37.517867559], [139.429423943, 37.514708586], [139.411245577, 37.505162505], [139.397512698, 37.459839171], [139.362550311, 37.469968027], [139.25747214, 37.449020667]]]}}, {"id": "45122", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "三島郡", "N03_004": "出雲崎町", "N03_005": null, "N03_007": "15405"}, "geometry": {"type": "Polygon", "coordinates": [[[138.737549079, 37.489360225], [138.675130947, 37.494802171], [138.678616161, 37.521985667], [138.660215305, 37.523524], [138.726662944, 37.578070973], [138.722899105, 37.565631081], [138.74910358, 37.562142505], [138.742355668, 37.543881721], [138.764142529, 37.529240919], [138.741999611, 37.515665667], [138.737549079, 37.489360225]]]}}, {"id": "45123", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "三島郡", "N03_004": "出雲崎町", "N03_005": null, "N03_007": "15405"}, "geometry": {"type": "Polygon", "coordinates": [[[138.681540947, 37.545204], [138.683642361, 37.545286892], [138.681546783, 37.545136613], [138.681540947, 37.545204]]]}}, {"id": "45124", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "三島郡", "N03_004": "出雲崎町", "N03_005": null, "N03_007": "15405"}, "geometry": {"type": "Polygon", "coordinates": [[[138.691132477, 37.546585306], [138.689478612, 37.54604036], [138.68946083, 37.54610636], [138.691132477, 37.546585306]]]}}, {"id": "45125", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "三島郡", "N03_004": "出雲崎町", "N03_005": null, "N03_007": "15405"}, "geometry": {"type": "Polygon", "coordinates": [[[138.688635058, 37.544987748], [138.688565447, 37.545023414], [138.6890962, 37.545730252], [138.688635058, 37.544987748]]]}}, {"id": "45126", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "南魚沼郡", "N03_004": "湯沢町", "N03_005": null, "N03_007": "15461"}, "geometry": {"type": "Polygon", "coordinates": [[[138.727027445, 36.764168838], [138.697371089, 36.737640441], [138.669543696, 36.773660802], [138.69584642, 36.807940613], [138.67958725, 36.821050694], [138.700432724, 36.868222414], [138.784433891, 36.963849171], [138.820123411, 36.951037613], [138.850834137, 36.961297333], [138.914191051, 36.931181171], [138.932442581, 36.893550919], [138.916023995, 36.851028748], [138.929697834, 36.833174333], [138.856445383, 36.811643892], [138.821744254, 36.817626135], [138.826923502, 36.772291333], [138.789419533, 36.744873802], [138.727027445, 36.764168838]]]}}, {"id": "45127", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "中魚沼郡", "N03_004": "津南町", "N03_005": null, "N03_007": "15482"}, "geometry": {"type": "Polygon", "coordinates": [[[138.674489585, 36.943366613], [138.65662856, 36.899148225], [138.698265227, 36.871297973], [138.703080726, 36.849888505], [138.588764163, 36.913972054], [138.586751115, 36.988025694], [138.565888859, 37.021260559], [138.667357173, 37.065438306], [138.686581141, 37.059209802], [138.683528949, 37.012862441], [138.695289805, 37.016634775], [138.716546978, 36.960325054], [138.710262724, 36.946584559], [138.674489585, 36.943366613]]]}}, {"id": "45128", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "刈羽郡", "N03_004": "刈羽村", "N03_005": null, "N03_007": "15504"}, "geometry": {"type": "Polygon", "coordinates": [[[138.670421608, 37.409978505], [138.590589416, 37.401964387], [138.603047756, 37.442880081], [138.634596783, 37.457680586], [138.631544358, 37.432011919], [138.670421608, 37.409978505]]]}}, {"id": "45129", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "刈羽郡", "N03_004": "刈羽村", "N03_005": null, "N03_007": "15504"}, "geometry": {"type": "Polygon", "coordinates": [[[138.707716744, 37.416411054], [138.692306667, 37.403949387], [138.68031978, 37.432942919], [138.691969248, 37.43785264], [138.707716744, 37.416411054]]]}}, {"id": "45130", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "関川村", "N03_005": null, "N03_007": "15581"}, "geometry": {"type": "Polygon", "coordinates": [[[139.6216038, 37.919804081], [139.606483748, 37.935259027], [139.567935188, 37.931852667], [139.563493671, 37.988136919], [139.531072698, 38.012763748], [139.539567445, 38.032270135], [139.524465331, 38.082651694], [139.489924747, 38.084727027], [139.511477134, 38.099921081], [139.509377886, 38.142473171], [139.5878, 38.169807586], [139.654565577, 38.168338108], [139.692298418, 38.148466198], [139.693892827, 38.115801559], [139.671333139, 38.076874171], [139.69180192, 38.075060279], [139.692725525, 38.05702864], [139.654675447, 38.035167613], [139.642989027, 37.946674252], [139.6216038, 37.919804081]]]}}, {"id": "45131", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.26424061, 38.488923108], [139.226458444, 38.437346838], [139.213849196, 38.438343252], [139.224506783, 38.465026532], [139.26424061, 38.488923108]]]}}, {"id": "45132", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224141505, 38.462351802], [139.223970117, 38.461560414], [139.223443722, 38.461813748], [139.224141505, 38.462351802]]]}}, {"id": "45133", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256294838, 38.469906171], [139.258431556, 38.468731838], [139.258431556, 38.468966333], [139.256294838, 38.469906171]]]}}, {"id": "45134", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.253836109, 38.490536198], [139.253385551, 38.489863135], [139.253238612, 38.489947586], [139.253836109, 38.490536198]]]}}, {"id": "45135", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217213113, 38.448411559], [139.21701978, 38.447927387], [139.216901725, 38.448146838], [139.217213113, 38.448411559]]]}}, {"id": "45136", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251961673, 38.490304532], [139.251445837, 38.490047865], [139.251626109, 38.490366748], [139.251961673, 38.490304532]]]}}, {"id": "45137", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217983385, 38.448444892], [139.218036446, 38.448876279], [139.218372581, 38.448732667], [139.217983385, 38.448444892]]]}}, {"id": "45138", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242192438, 38.480278441], [139.241896887, 38.479895667], [139.241807445, 38.479988721], [139.242192438, 38.480278441]]]}}, {"id": "45139", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247719689, 38.48576064], [139.248199416, 38.486002865], [139.24833192, 38.485696198], [139.247719689, 38.48576064]]]}}, {"id": "45140", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232799611, 38.468232919], [139.232666835, 38.467923748], [139.232155162, 38.468419306], [139.232799611, 38.468232919]]]}}, {"id": "45141", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233490169, 38.467467919], [139.233121556, 38.468042081], [139.233758223, 38.467555135], [139.233490169, 38.467467919]]]}}, {"id": "45142", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215857276, 38.439570748], [139.215935888, 38.439967694], [139.216132827, 38.439728532], [139.215857276, 38.439570748]]]}}, {"id": "45143", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221729274, 38.460473505], [139.221650661, 38.460918505], [139.22177594, 38.460943775], [139.221729274, 38.460473505]]]}}, {"id": "45144", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245067756, 38.483280081], [139.245075253, 38.483708694], [139.245343307, 38.483494252], [139.245067756, 38.483280081]]]}}, {"id": "45145", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213741971, 38.436544081], [139.213366135, 38.436884919], [139.213825305, 38.436808252], [139.213741971, 38.436544081]]]}}, {"id": "45146", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233189339, 38.468562919], [139.233364617, 38.468914865], [139.233600726, 38.468408198], [139.233189339, 38.468562919]]]}}, {"id": "45147", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252351115, 38.489998414], [139.252279442, 38.489494252], [139.252156939, 38.489949252], [139.252351115, 38.489998414]]]}}, {"id": "45148", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233310999, 38.468168748], [139.233919339, 38.467980414], [139.233962387, 38.467856532], [139.233310999, 38.468168748]]]}}, {"id": "45149", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221865383, 38.460347108], [139.22193345, 38.459964054], [139.22167594, 38.460017667], [139.221865383, 38.460347108]]]}}, {"id": "45150", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229055694, 38.46423264], [139.229324306, 38.463892081], [139.229188197, 38.463824306], [139.229055694, 38.46423264]]]}}, {"id": "45151", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241102166, 38.481613441], [139.240676329, 38.481393721], [139.240875772, 38.481675387], [139.241102166, 38.481613441]]]}}, {"id": "45152", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.262505058, 38.489531171], [139.262784228, 38.489305892], [139.262310895, 38.489575333], [139.262505058, 38.489531171]]]}}, {"id": "45153", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258811141, 38.490381468], [139.258464189, 38.490037865], [139.258605305, 38.49045536], [139.258811141, 38.490381468]]]}}, {"id": "45154", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214833385, 38.442709919], [139.214471971, 38.442425748], [139.214264189, 38.442532694], [139.214833385, 38.442709919]]]}}, {"id": "45155", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252062503, 38.49128564], [139.251720558, 38.491544532], [139.251763333, 38.491685919], [139.252062503, 38.49128564]]]}}, {"id": "45156", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233951556, 38.468439027], [139.234069883, 38.467994306], [139.233761829, 38.46838264], [139.233951556, 38.468439027]]]}}, {"id": "45157", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256212529, 38.491513135], [139.256484747, 38.491304802], [139.256159196, 38.491342865], [139.256212529, 38.491513135]]]}}, {"id": "45158", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249896109, 38.494593973], [139.249915279, 38.494924532], [139.25000834, 38.494637027], [139.249896109, 38.494593973]]]}}, {"id": "45159", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220889494, 38.435637694], [139.220517834, 38.435511586], [139.220610337, 38.435741865], [139.220889494, 38.435637694]]]}}, {"id": "45160", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213938638, 38.440207135], [139.214199754, 38.44002964], [139.213870584, 38.440057694], [139.213938638, 38.440207135]]]}}, {"id": "45161", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242398003, 38.480664559], [139.242551894, 38.480281505], [139.242323839, 38.480433441], [139.242398003, 38.480664559]]]}}, {"id": "45162", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243020506, 38.481689559], [139.242662438, 38.481641505], [139.243231608, 38.481774], [139.243020506, 38.481689559]]]}}, {"id": "45163", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.261474228, 38.489232559], [139.261137004, 38.489417559], [139.261484773, 38.489469225], [139.261474228, 38.489232559]]]}}, {"id": "45164", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249636109, 38.494944532], [139.249629728, 38.495239532], [139.249883333, 38.495153973], [139.249636109, 38.494944532]]]}}, {"id": "45165", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232158495, 38.467250973], [139.231743502, 38.467389027], [139.231743502, 38.467490414], [139.232158495, 38.467250973]]]}}, {"id": "45166", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.263721725, 38.489049775], [139.263360052, 38.489232838], [139.263771725, 38.489125892], [139.263721725, 38.489049775]]]}}, {"id": "45167", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.249854449, 38.495552306], [139.250104449, 38.495766748], [139.250168612, 38.495632865], [139.249854449, 38.495552306]]]}}, {"id": "45168", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232398495, 38.468104027], [139.23216572, 38.468010973], [139.23210489, 38.468140694], [139.232398495, 38.468104027]]]}}, {"id": "45169", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217896719, 38.443872946], [139.217667834, 38.443715171], [139.21768144, 38.444004333], [139.217896719, 38.443872946]]]}}, {"id": "45170", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214500856, 38.437351865], [139.214064189, 38.437475748], [139.214550584, 38.437442135], [139.214500856, 38.437351865]]]}}, {"id": "45171", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232831556, 38.466476532], [139.232761284, 38.466785414], [139.232917393, 38.466510414], [139.232831556, 38.466476532]]]}}, {"id": "45172", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.264559222, 38.489328667], [139.264380337, 38.489598946], [139.264484773, 38.489627279], [139.264559222, 38.489328667]]]}}, {"id": "45173", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.235597977, 38.470936505], [139.235556589, 38.470652613], [139.235416861, 38.470938721], [139.235597977, 38.470936505]]]}}, {"id": "45174", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252257782, 38.490308135], [139.252103891, 38.490600919], [139.252304449, 38.490589532], [139.252257782, 38.490308135]]]}}, {"id": "45175", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247204423, 38.484699252], [139.247093307, 38.484544532], [139.247057471, 38.484648694], [139.247204423, 38.484699252]]]}}, {"id": "45176", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.233826005, 38.468618748], [139.23372572, 38.468889027], [139.233916005, 38.468662919], [139.233826005, 38.468618748]]]}}, {"id": "45177", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217810895, 38.449005721], [139.217721725, 38.449210171], [139.217911167, 38.449146559], [139.217810895, 38.449005721]]]}}, {"id": "45178", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252984449, 38.490127865], [139.252816394, 38.490387027], [139.252923606, 38.490522027], [139.252984449, 38.490127865]]]}}, {"id": "45179", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244001089, 38.484659802], [139.243750532, 38.484612027], [139.243754695, 38.484706468], [139.244001089, 38.484659802]]]}}, {"id": "45180", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223032607, 38.451827108], [139.222907613, 38.452027667], [139.223111219, 38.451911559], [139.223032607, 38.451827108]]]}}, {"id": "45181", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237824086, 38.472471225], [139.238059079, 38.472671505], [139.238149079, 38.472623721], [139.237824086, 38.472471225]]]}}, {"id": "45182", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244641634, 38.484409252], [139.244444968, 38.484341748], [139.244480246, 38.484597027], [139.244641634, 38.484409252]]]}}, {"id": "45183", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216916446, 38.443647667], [139.217191997, 38.443763225], [139.217256446, 38.443639333], [139.216916446, 38.443647667]]]}}, {"id": "45184", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247379689, 38.484992306], [139.24713275, 38.485152586], [139.24741192, 38.48509064], [139.247379689, 38.484992306]]]}}, {"id": "45185", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214808366, 38.43730964], [139.214643917, 38.437110198], [139.214668638, 38.437346306], [139.214808366, 38.43730964]]]}}, {"id": "45186", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260668664, 38.489257838], [139.260396719, 38.489421171], [139.260797562, 38.489286171], [139.260668664, 38.489257838]]]}}, {"id": "45187", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.239327173, 38.479036775], [139.239145227, 38.479204838], [139.239276887, 38.479239559], [139.239327173, 38.479036775]]]}}, {"id": "45188", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22252428, 38.453384333], [139.222588716, 38.453127946], [139.222373995, 38.453375721], [139.22252428, 38.453384333]]]}}, {"id": "45189", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243185227, 38.482489], [139.24287022, 38.482443721], [139.243213839, 38.482590387], [139.243185227, 38.482489]]]}}, {"id": "45190", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.234413528, 38.46867264], [139.23421297, 38.46880236], [139.234406304, 38.468841802], [139.234413528, 38.46867264]]]}}, {"id": "45191", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222689533, 38.435660198], [139.22246786, 38.435660198], [139.222700363, 38.435806586], [139.222689533, 38.435660198]]]}}, {"id": "45192", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.254575863, 38.492031198], [139.254582244, 38.492178694], [139.254821414, 38.492016198], [139.254575863, 38.492031198]]]}}, {"id": "45193", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220470078, 38.448856559], [139.220370636, 38.449142108], [139.220523969, 38.449126838], [139.220470078, 38.448856559]]]}}, {"id": "45194", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.238876057, 38.479031225], [139.238865499, 38.479264559], [139.239022996, 38.479152333], [139.238876057, 38.479031225]]]}}, {"id": "45195", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24736192, 38.48734036], [139.247279416, 38.487543135], [139.24741192, 38.487562865], [139.24736192, 38.48734036]]]}}, {"id": "45196", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.246939416, 38.487650081], [139.24714358, 38.487757865], [139.24714358, 38.487557306], [139.246939416, 38.487650081]]]}}, {"id": "45197", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247608859, 38.484671198], [139.247580532, 38.484884802], [139.247712477, 38.484699252], [139.247608859, 38.484671198]]]}}, {"id": "45198", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2315693, 38.440418775], [139.2318093, 38.440466559], [139.231626524, 38.440351279], [139.2315693, 38.440418775]]]}}, {"id": "45199", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251678054, 38.489581468], [139.251406109, 38.489601198], [139.251427497, 38.489699802], [139.251678054, 38.489581468]]]}}, {"id": "45200", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22216594, 38.460546838], [139.22206345, 38.460718505], [139.222194553, 38.460673505], [139.22216594, 38.460546838]]]}}, {"id": "45201", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243510804, 38.481092613], [139.243328275, 38.481224], [139.243525253, 38.481258721], [139.243510804, 38.481092613]]]}}, {"id": "45202", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224553165, 38.461439306], [139.224310117, 38.461275973], [139.224481505, 38.461543468], [139.224553165, 38.461439306]]]}}, {"id": "45203", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218208106, 38.443233775], [139.21835144, 38.443408225], [139.218384501, 38.443273505], [139.218208106, 38.443233775]]]}}, {"id": "45204", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258922802, 38.473434532], [139.258831699, 38.473617586], [139.258951414, 38.473643135], [139.258922802, 38.473434532]]]}}, {"id": "45205", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251491946, 38.490615081], [139.251298612, 38.49064036], [139.251321946, 38.490683135], [139.251491946, 38.490615081]]]}}, {"id": "45206", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223987886, 38.461284586], [139.224041505, 38.461441802], [139.224202607, 38.461318198], [139.223987886, 38.461284586]]]}}, {"id": "45207", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213247523, 38.448389054], [139.213254189, 38.448567946], [139.213358392, 38.448476279], [139.213247523, 38.448389054]]]}}, {"id": "45208", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252208885, 38.49082036], [139.252123333, 38.491024252], [139.252202776, 38.491031468], [139.252208885, 38.49082036]]]}}, {"id": "45209", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.248016913, 38.486512586], [139.247832477, 38.48671064], [139.248059689, 38.48658564], [139.248016913, 38.486512586]]]}}, {"id": "45210", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217213113, 38.445835441], [139.217138106, 38.446026838], [139.217317004, 38.445902946], [139.217213113, 38.445835441]]]}}, {"id": "45211", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221070921, 38.458958775], [139.221138975, 38.459139054], [139.221246226, 38.458981279], [139.221070921, 38.458958775]]]}}, {"id": "45212", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218047276, 38.445734054], [139.217812555, 38.445870171], [139.218100895, 38.445770721], [139.218047276, 38.445734054]]]}}, {"id": "45213", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.238153256, 38.472169838], [139.238319637, 38.472381505], [139.238414643, 38.472366775], [139.238153256, 38.472169838]]]}}, {"id": "45214", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237985188, 38.473634], [139.238156861, 38.473791505], [139.238074643, 38.473600387], [139.237985188, 38.473634]]]}}, {"id": "45215", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.245583022, 38.483629252], [139.245426083, 38.483820919], [139.245633307, 38.483693973], [139.245583022, 38.483629252]]]}}, {"id": "45216", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243192438, 38.481041775], [139.243018275, 38.481172333], [139.243145772, 38.481222054], [139.243192438, 38.481041775]]]}}, {"id": "45217", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217528106, 38.445973225], [139.217548664, 38.446111838], [139.21766061, 38.446029613], [139.217528106, 38.445973225]]]}}, {"id": "45218", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252182776, 38.489404252], [139.252003891, 38.489511198], [139.252058885, 38.489601748], [139.252182776, 38.489404252]]]}}, {"id": "45219", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224553165, 38.461819586], [139.22437428, 38.46186736], [139.224382049, 38.461963468], [139.224553165, 38.461819586]]]}}, {"id": "45220", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265185642, 38.487065054], [139.265054527, 38.487199775], [139.265214254, 38.487188946], [139.265185642, 38.487065054]]]}}, {"id": "45221", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217016446, 38.444087108], [139.217002283, 38.444199613], [139.217102555, 38.444123505], [139.217016446, 38.444087108]]]}}, {"id": "45222", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216941167, 38.445866279], [139.216762283, 38.445910721], [139.216793385, 38.446011279], [139.216941167, 38.445866279]]]}}, {"id": "45223", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217256446, 38.444033505], [139.217413671, 38.444140441], [139.217435331, 38.444056], [139.217256446, 38.444033505]]]}}, {"id": "45224", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.264655888, 38.487900892], [139.264694228, 38.488023667], [139.264813385, 38.487909505], [139.264655888, 38.487900892]]]}}, {"id": "45225", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219587588, 38.447800721], [139.219580636, 38.447954054], [139.219700636, 38.447839892], [139.219587588, 38.447800721]]]}}, {"id": "45226", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21358808, 38.438745748], [139.213671699, 38.438893802], [139.213756135, 38.43884436], [139.21358808, 38.438745748]]]}}, {"id": "45227", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.261391725, 38.489587559], [139.261403671, 38.489768946], [139.26147061, 38.489618387], [139.261391725, 38.489587559]]]}}, {"id": "45228", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232066524, 38.441043775], [139.2320907, 38.440921], [139.231984306, 38.440917108], [139.232066524, 38.441043775]]]}}, {"id": "45229", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217757562, 38.443371838], [139.217660895, 38.443211279], [139.217664501, 38.443380171], [139.217757562, 38.443371838]]]}}, {"id": "45230", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.240816615, 38.477476775], [139.240926057, 38.477594279], [139.240963839, 38.477514279], [139.240816615, 38.477476775]]]}}, {"id": "45231", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220537588, 38.459564333], [139.22061703, 38.459687946], [139.22063786, 38.459581279], [139.220537588, 38.459564333]]]}}, {"id": "45232", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23805297, 38.472324559], [139.238207134, 38.472434559], [139.238214086, 38.472352892], [139.23805297, 38.472324559]]]}}, {"id": "45233", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255990584, 38.491687865], [139.256194747, 38.491631468], [139.255983645, 38.491642865], [139.255990584, 38.491687865]]]}}, {"id": "45234", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247895253, 38.484780919], [139.247895253, 38.484924532], [139.247966641, 38.48480064], [139.247895253, 38.484780919]]]}}, {"id": "45235", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241828833, 38.480917892], [139.241929105, 38.481016505], [139.241950506, 38.480906775], [139.241828833, 38.480917892]]]}}, {"id": "45236", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216966446, 38.440680198], [139.216977276, 38.440530748], [139.216898392, 38.440666027], [139.216966446, 38.440680198]]]}}, {"id": "45237", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.250983891, 38.488438694], [139.251051673, 38.48856536], [139.251094721, 38.488438694], [139.250983891, 38.488438694]]]}}, {"id": "45238", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23649214, 38.470469838], [139.236569079, 38.470555667], [139.236668249, 38.470477613], [139.23649214, 38.470469838]]]}}, {"id": "45239", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214561699, 38.436910198], [139.214555305, 38.437027973], [139.214633087, 38.436989081], [139.214561699, 38.436910198]]]}}, {"id": "45240", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25820642, 38.490246468], [139.258324475, 38.490311198], [139.258277808, 38.490158973], [139.25820642, 38.490246468]]]}}, {"id": "45241", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237405746, 38.470502333], [139.237516589, 38.470582054], [139.23749131, 38.470438441], [139.237405746, 38.470502333]]]}}, {"id": "45242", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232606005, 38.467681802], [139.232800169, 38.467681802], [139.232792114, 38.467611532], [139.232606005, 38.467681802]]]}}, {"id": "45243", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242759105, 38.482046775], [139.242814384, 38.482158721], [139.242888003, 38.482108721], [139.242759105, 38.482046775]]]}}, {"id": "45244", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216633671, 38.445013225], [139.216690895, 38.444894892], [139.216589494, 38.444948775], [139.216633671, 38.445013225]]]}}, {"id": "45245", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23977856, 38.477616225], [139.239933839, 38.477666225], [139.239928003, 38.477556505], [139.23977856, 38.477616225]]]}}, {"id": "45246", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.229105966, 38.463660973], [139.2289593, 38.463675135], [139.229012918, 38.463703198], [139.229105966, 38.463660973]]]}}, {"id": "45247", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236492698, 38.470246775], [139.236489364, 38.470348441], [139.236639637, 38.470286225], [139.236492698, 38.470246775]]]}}, {"id": "45248", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247619144, 38.486484252], [139.247694695, 38.486549252], [139.24776275, 38.486402586], [139.247619144, 38.486484252]]]}}, {"id": "45249", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216547562, 38.443636559], [139.216568106, 38.443737667], [139.21664061, 38.443661838], [139.216547562, 38.443636559]]]}}, {"id": "45250", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.263940052, 38.490798387], [139.264015331, 38.490910892], [139.264025888, 38.490798387], [139.263940052, 38.490798387]]]}}, {"id": "45251", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216510895, 38.444712108], [139.216680052, 38.444675441], [139.216665888, 38.444641838], [139.216510895, 38.444712108]]]}}, {"id": "45252", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243926083, 38.483159], [139.244079974, 38.483181468], [139.243986913, 38.483097054], [139.243926083, 38.483159]]]}}, {"id": "45253", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236856589, 38.469947892], [139.236714643, 38.469968171], [139.236754086, 38.470013171], [139.236856589, 38.469947892]]]}}, {"id": "45254", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236975746, 38.470765667], [139.237158521, 38.470753721], [139.237137134, 38.470719838], [139.236975746, 38.470765667]]]}}, {"id": "45255", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216383671, 38.445171], [139.216286719, 38.445251838], [139.216400895, 38.445266559], [139.216383671, 38.445171]]]}}, {"id": "45256", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221243411, 38.448631279], [139.221201414, 38.448764667], [139.22130786, 38.448698775], [139.221243411, 38.448631279]]]}}, {"id": "45257", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244496615, 38.449547081], [139.244481894, 38.44965764], [139.244553839, 38.449625694], [139.244496615, 38.449547081]]]}}, {"id": "45258", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241149948, 38.477692054], [139.241215772, 38.477576225], [139.241110506, 38.477576225], [139.241149948, 38.477692054]]]}}, {"id": "45259", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247948859, 38.48629564], [139.248059689, 38.486309802], [139.248034695, 38.486256198], [139.247948859, 38.48629564]]]}}, {"id": "45260", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221819001, 38.455636559], [139.221930117, 38.455577387], [139.221858444, 38.455546559], [139.221819001, 38.455636559]]]}}, {"id": "45261", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.235669922, 38.468839027], [139.235698521, 38.468943198], [139.235734086, 38.468852919], [139.235669922, 38.468839027]]]}}, {"id": "45262", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236246304, 38.468786252], [139.236328249, 38.468695414], [139.236209922, 38.468715973], [139.236246304, 38.468786252]]]}}, {"id": "45263", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.230512387, 38.463734306], [139.23069489, 38.463728748], [139.230523217, 38.463689306], [139.230512387, 38.463734306]]]}}, {"id": "45264", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.215001699, 38.436783532], [139.215062529, 38.436884919], [139.215101699, 38.436817135], [139.215001699, 38.436783532]]]}}, {"id": "45265", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214167808, 38.437878532], [139.214160584, 38.437991306], [139.214214475, 38.437940468], [139.214167808, 38.437878532]]]}}, {"id": "45266", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213481414, 38.438992694], [139.213366135, 38.43906964], [139.213394747, 38.439086586], [139.213481414, 38.438992694]]]}}, {"id": "45267", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252555006, 38.490122306], [139.252698054, 38.490096748], [139.252551388, 38.490068694], [139.252555006, 38.490122306]]]}}, {"id": "45268", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236475473, 38.470677333], [139.236600195, 38.470728441], [139.236664643, 38.470677613], [139.236475473, 38.470677333]]]}}, {"id": "45269", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.250275279, 38.486166468], [139.25036834, 38.486222865], [139.250343333, 38.486149532], [139.250275279, 38.486166468]]]}}, {"id": "45270", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25917642, 38.49055036], [139.259330311, 38.490553387], [139.259222802, 38.490502559], [139.25917642, 38.49055036]]]}}, {"id": "45271", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251676394, 38.491819802], [139.251765837, 38.491877306], [139.251746667, 38.491797306], [139.251676394, 38.491819802]]]}}, {"id": "45272", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217231167, 38.447564054], [139.217367004, 38.447521838], [139.217288392, 38.447482387], [139.217231167, 38.447564054]]]}}, {"id": "45273", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236571025, 38.469762054], [139.236707419, 38.469717333], [139.236696861, 38.469669559], [139.236571025, 38.469762054]]]}}, {"id": "45274", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2407138, 38.44707764], [139.240584916, 38.447004586], [139.240670752, 38.447100135], [139.2407138, 38.44707764]]]}}, {"id": "45275", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217057562, 38.440887135], [139.217202555, 38.440896865], [139.217088106, 38.440832135], [139.217057562, 38.440887135]]]}}, {"id": "45276", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251173606, 38.488142865], [139.251255837, 38.488086468], [139.251205837, 38.488033135], [139.251173606, 38.488142865]]]}}, {"id": "45277", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236238521, 38.470857892], [139.236109637, 38.470840946], [139.236124086, 38.470877613], [139.236238521, 38.470857892]]]}}, {"id": "45278", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257908638, 38.474658973], [139.25796725, 38.474543973], [139.257895863, 38.474552306], [139.257908638, 38.474658973]]]}}, {"id": "45279", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213748911, 38.439553802], [139.213680856, 38.439463532], [139.213659196, 38.439542414], [139.213748911, 38.439553802]]]}}, {"id": "45280", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214368366, 38.437644919], [139.21433808, 38.437756306], [139.214407523, 38.437740468], [139.214368366, 38.437644919]]]}}, {"id": "45281", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23002572, 38.464041252], [139.230091284, 38.463916802], [139.230059883, 38.463910973], [139.23002572, 38.464041252]]]}}, {"id": "45282", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.24420358, 38.483249532], [139.24432358, 38.483268973], [139.244276913, 38.483201198], [139.24420358, 38.483249532]]]}}, {"id": "45283", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.227631245, 38.463832919], [139.2276707, 38.463914586], [139.227695694, 38.463846802], [139.227631245, 38.463832919]]]}}, {"id": "45284", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214031699, 38.438928802], [139.214103087, 38.439013252], [139.214142529, 38.438959919], [139.214031699, 38.438928802]]]}}, {"id": "45285", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217195616, 38.444394054], [139.217213385, 38.444478505], [139.21725978, 38.444441838], [139.217195616, 38.444394054]]]}}, {"id": "45286", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.264606719, 38.488395054], [139.264698949, 38.488315054], [139.264587834, 38.488326171], [139.264606719, 38.488395054]]]}}, {"id": "45287", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222368975, 38.435411027], [139.22246786, 38.435361586], [139.222417588, 38.435313802], [139.222368975, 38.435411027]]]}}, {"id": "45288", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.241314112, 38.478980387], [139.241295499, 38.478887892], [139.241250778, 38.478952333], [139.241314112, 38.478980387]]]}}, {"id": "45289", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251516939, 38.488644252], [139.251635006, 38.488672306], [139.251567224, 38.488602027], [139.251516939, 38.488644252]]]}}, {"id": "45290", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243847198, 38.483568973], [139.243965525, 38.483573135], [139.243918859, 38.483502586], [139.243847198, 38.483568973]]]}}, {"id": "45291", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.258185577, 38.47366564], [139.258250026, 38.47375564], [139.258285863, 38.473716198], [139.258185577, 38.47366564]]]}}, {"id": "45292", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.221014773, 38.435828802], [139.221090052, 38.435739081], [139.221003943, 38.435772694], [139.221014773, 38.435828802]]]}}, {"id": "45293", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236926861, 38.470504], [139.236966031, 38.470416775], [139.236909637, 38.470451775], [139.236926861, 38.470504]]]}}, {"id": "45294", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.238049079, 38.472946225], [139.238160467, 38.472915946], [139.238043528, 38.472902892], [139.238049079, 38.472946225]]]}}, {"id": "45295", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242038003, 38.480538441], [139.242176057, 38.480523721], [139.242161608, 38.480472892], [139.242038003, 38.480538441]]]}}, {"id": "45296", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236123528, 38.470583441], [139.23603297, 38.470513441], [139.236014086, 38.470580667], [139.236123528, 38.470583441]]]}}, {"id": "45297", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.230330441, 38.46416736], [139.230348781, 38.464273198], [139.230400441, 38.464205135], [139.230330441, 38.46416736]]]}}, {"id": "45298", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216775331, 38.443904333], [139.216715888, 38.443844892], [139.216698106, 38.443901], [139.216775331, 38.443904333]]]}}, {"id": "45299", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243628029, 38.483458721], [139.243603865, 38.483359], [139.243553022, 38.483419279], [139.243628029, 38.483458721]]]}}, {"id": "45300", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243271051, 38.480675667], [139.243360506, 38.480670108], [139.243323839, 38.480622333], [139.243271051, 38.480675667]]]}}, {"id": "45301", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.220191751, 38.448004333], [139.220276744, 38.448023225], [139.220212309, 38.447964054], [139.220191751, 38.448004333]]]}}, {"id": "45302", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251001673, 38.48812536], [139.25105917, 38.487979532], [139.251030558, 38.487968414], [139.251001673, 38.48812536]]]}}, {"id": "45303", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.246655253, 38.486987306], [139.246764137, 38.486951748], [139.246696083, 38.486923694], [139.246655253, 38.486987306]]]}}, {"id": "45304", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.219983969, 38.447860721], [139.220041479, 38.447771559], [139.21996703, 38.447781838], [139.219983969, 38.447860721]]]}}, {"id": "45305", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.26390061, 38.490584225], [139.263975888, 38.490663108], [139.263983113, 38.490606721], [139.26390061, 38.490584225]]]}}, {"id": "45306", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213895863, 38.437205468], [139.213863645, 38.437118252], [139.213831414, 38.437208252], [139.213895863, 38.437205468]]]}}, {"id": "45307", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242949105, 38.482843171], [139.242898833, 38.482756505], [139.242873839, 38.482773441], [139.242949105, 38.482843171]]]}}, {"id": "45308", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25741725, 38.470773414], [139.257412529, 38.470686748], [139.25734808, 38.470717586], [139.25741725, 38.470773414]]]}}, {"id": "45309", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.263045331, 38.489185054], [139.263149222, 38.489168108], [139.263099222, 38.489140054], [139.263045331, 38.489185054]]]}}, {"id": "45310", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232993502, 38.467579306], [139.233093502, 38.467600135], [139.233088781, 38.467530694], [139.232993502, 38.467579306]]]}}, {"id": "45311", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224439001, 38.456599892], [139.224410389, 38.456500721], [139.224353995, 38.456574054], [139.224439001, 38.456599892]]]}}, {"id": "45312", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243426329, 38.481769279], [139.243442996, 38.481678171], [139.243373839, 38.481752054], [139.243426329, 38.481769279]]]}}, {"id": "45313", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213264747, 38.438841586], [139.213155032, 38.438849919], [139.213183645, 38.438875468], [139.213264747, 38.438841586]]]}}, {"id": "45314", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.230279611, 38.463985135], [139.230326278, 38.463914586], [139.230229611, 38.463937081], [139.230279611, 38.463985135]]]}}, {"id": "45315", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217904501, 38.448047387], [139.217864501, 38.447969613], [139.217807562, 38.448052387], [139.217904501, 38.448047387]]]}}, {"id": "45316", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214072244, 38.43951464], [139.214003087, 38.439449919], [139.213988638, 38.439525468], [139.214072244, 38.43951464]]]}}, {"id": "45317", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.26022144, 38.489883108], [139.260303671, 38.489863387], [139.260203385, 38.489826721], [139.26022144, 38.489883108]]]}}, {"id": "45318", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256900311, 38.470713135], [139.256900856, 38.470602027], [139.256854475, 38.470624802], [139.256900311, 38.470713135]]]}}, {"id": "45319", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244861634, 38.483052586], [139.244956641, 38.483099802], [139.244917471, 38.483032306], [139.244861634, 38.483052586]]]}}, {"id": "45320", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256201971, 38.470539279], [139.256192244, 38.470407892], [139.256160026, 38.470430387], [139.256201971, 38.470539279]]]}}, {"id": "45321", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22433428, 38.456357667], [139.224326498, 38.456283505], [139.224299559, 38.456309333], [139.22433428, 38.456357667]]]}}, {"id": "45322", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.263573671, 38.488952], [139.26349978, 38.488892279], [139.263481997, 38.488951441], [139.263573671, 38.488952]]]}}, {"id": "45323", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.247981362, 38.484328973], [139.248064695, 38.484261468], [139.247981362, 38.484286468], [139.247981362, 38.484328973]]]}}, {"id": "45324", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22559847, 38.46211236], [139.225677082, 38.46209264], [139.2256307, 38.462070135], [139.22559847, 38.46211236]]]}}, {"id": "45325", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.264795616, 38.487565892], [139.26487061, 38.487492559], [139.264799222, 38.487509505], [139.264795616, 38.487565892]]]}}, {"id": "45326", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216060052, 38.440346306], [139.21616144, 38.440347694], [139.216136161, 38.440299919], [139.216060052, 38.440346306]]]}}, {"id": "45327", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217765058, 38.441208252], [139.217856446, 38.441179919], [139.217783113, 38.441125468], [139.217765058, 38.441208252]]]}}, {"id": "45328", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223130117, 38.454887667], [139.223139831, 38.454974892], [139.223197056, 38.454957946], [139.223130117, 38.454887667]]]}}, {"id": "45329", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256131699, 38.470125667], [139.256203087, 38.470075667], [139.256135032, 38.470055946], [139.256131699, 38.470125667]]]}}, {"id": "45330", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.231102387, 38.467166802], [139.231088495, 38.467097081], [139.23103489, 38.467153748], [139.231102387, 38.467166802]]]}}, {"id": "45331", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260586719, 38.489939505], [139.260692827, 38.489983946], [139.260697834, 38.489955054], [139.260586719, 38.489939505]]]}}, {"id": "45332", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251801388, 38.488953694], [139.251724449, 38.488922865], [139.251738885, 38.488959532], [139.251801388, 38.488953694]]]}}, {"id": "45333", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223477613, 38.450450171], [139.223511219, 38.450378775], [139.223466498, 38.450391559], [139.223477613, 38.450450171]]]}}, {"id": "45334", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.242177173, 38.480741505], [139.242250778, 38.480705946], [139.242192996, 38.480675108], [139.242177173, 38.480741505]]]}}, {"id": "45335", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.23522131, 38.469094027], [139.235306304, 38.469036252], [139.235207419, 38.469070694], [139.23522131, 38.469094027]]]}}, {"id": "45336", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.2320093, 38.440635441], [139.231934306, 38.440666559], [139.232008755, 38.440666838], [139.2320093, 38.440635441]]]}}, {"id": "45337", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237747691, 38.470655108], [139.237713256, 38.470591505], [139.237666589, 38.470629559], [139.237747691, 38.470655108]]]}}, {"id": "45338", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.216535331, 38.445944892], [139.216463113, 38.445933505], [139.216450895, 38.445964333], [139.216535331, 38.445944892]]]}}, {"id": "45339", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22175869, 38.452082387], [139.221821479, 38.452109613], [139.221822309, 38.452054613], [139.22175869, 38.452082387]]]}}, {"id": "45340", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222985668, 38.452198775], [139.222971505, 38.452134054], [139.222922892, 38.452189054], [139.222985668, 38.452198775]]]}}, {"id": "45341", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237592412, 38.474439], [139.237659079, 38.474405667], [139.237610195, 38.474379], [139.237592412, 38.474439]]]}}, {"id": "45342", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.248103022, 38.484500081], [139.248119689, 38.48441536], [139.248061362, 38.484473694], [139.248103022, 38.484500081]]]}}, {"id": "45343", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.21397642, 38.436997135], [139.214003359, 38.436927135], [139.213956693, 38.436957973], [139.21397642, 38.436997135]]]}}, {"id": "45344", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.223262607, 38.450381838], [139.223344553, 38.450379892], [139.223278716, 38.450356279], [139.223262607, 38.450381838]]]}}, {"id": "45345", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.235430195, 38.469335973], [139.235408521, 38.469264027], [139.235358249, 38.469297919], [139.235430195, 38.469335973]]]}}, {"id": "45346", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.251715837, 38.488523414], [139.251763891, 38.48845536], [139.251692503, 38.488477865], [139.251715837, 38.488523414]]]}}, {"id": "45347", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218341725, 38.441504892], [139.218351997, 38.441575721], [139.218393113, 38.441535441], [139.218341725, 38.441504892]]]}}, {"id": "45348", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217557834, 38.444384333], [139.217617562, 38.444320721], [139.217578106, 38.444312387], [139.217557834, 38.444384333]]]}}, {"id": "45349", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.232406278, 38.467036802], [139.23245572, 38.466977919], [139.232406278, 38.467003468], [139.232406278, 38.467036802]]]}}, {"id": "45350", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.235809364, 38.469385694], [139.235899922, 38.469412081], [139.235915473, 38.469386802], [139.235809364, 38.469385694]]]}}, {"id": "45351", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236047977, 38.469118748], [139.236066031, 38.469050414], [139.235995746, 38.469101532], [139.236047977, 38.469118748]]]}}, {"id": "45352", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.243238003, 38.481623721], [139.243234942, 38.481541225], [139.243185499, 38.481601775], [139.243238003, 38.481623721]]]}}, {"id": "45353", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218114228, 38.447807667], [139.218200052, 38.447763505], [139.218117562, 38.447781279], [139.218114228, 38.447807667]]]}}, {"id": "45354", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237383256, 38.474489838], [139.237419079, 38.474427892], [139.23735214, 38.474424], [139.237383256, 38.474489838]]]}}, {"id": "45355", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257821414, 38.490318135], [139.257861141, 38.490248694], [139.257800584, 38.490265081], [139.257821414, 38.490318135]]]}}, {"id": "45356", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.260494501, 38.490237838], [139.260562283, 38.490217559], [139.260484228, 38.490204225], [139.260494501, 38.490237838]]]}}, {"id": "45357", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224198444, 38.456941838], [139.224245668, 38.456889333], [139.224188444, 38.456911838], [139.224198444, 38.456941838]]]}}, {"id": "45358", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.244838586, 38.483632027], [139.244839416, 38.483702027], [139.244874423, 38.483663135], [139.244838586, 38.483632027]]]}}, {"id": "45359", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222448716, 38.454081559], [139.22252428, 38.454085171], [139.222499274, 38.454056838], [139.222448716, 38.454081559]]]}}, {"id": "45360", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.252018054, 38.489004532], [139.252014449, 38.488948135], [139.251978054, 38.489012027], [139.252018054, 38.489004532]]]}}, {"id": "45361", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218635914, 38.447864054], [139.218661479, 38.447928505], [139.218690636, 38.447869333], [139.218635914, 38.447864054]]]}}, {"id": "45362", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.259493113, 38.479358973], [139.259455888, 38.479288135], [139.259420052, 38.479307865], [139.259493113, 38.479358973]]]}}, {"id": "45363", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.256610584, 38.470540919], [139.256578911, 38.470478171], [139.256551141, 38.470520667], [139.256610584, 38.470540919]]]}}, {"id": "45364", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.254871414, 38.491120919], [139.254824747, 38.491072306], [139.254793645, 38.491132306], [139.254871414, 38.491120919]]]}}, {"id": "45365", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217560895, 38.441075468], [139.217534501, 38.441011027], [139.217526161, 38.441073532], [139.217560895, 38.441075468]]]}}, {"id": "45366", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.213161141, 38.438663802], [139.213128366, 38.438596306], [139.213118366, 38.438665748], [139.213161141, 38.438663802]]]}}, {"id": "45367", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214164189, 38.437182973], [139.214089196, 38.437211306], [139.214155305, 38.43723436], [139.214164189, 38.437182973]]]}}, {"id": "45368", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.222270389, 38.453864333], [139.222334553, 38.453809054], [139.222291505, 38.453809054], [139.222270389, 38.453864333]]]}}, {"id": "45369", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237395473, 38.470398171], [139.237360752, 38.470347613], [139.237320752, 38.470396775], [139.237395473, 38.470398171]]]}}, {"id": "45370", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217928392, 38.446538225], [139.218019494, 38.446519892], [139.217911725, 38.446516], [139.217928392, 38.446538225]]]}}, {"id": "45371", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.264924501, 38.487709505], [139.264910052, 38.487653108], [139.264881725, 38.487705613], [139.264924501, 38.487709505]]]}}, {"id": "45372", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.234091556, 38.46852736], [139.234142114, 38.46846764], [139.234075447, 38.468510973], [139.234091556, 38.46852736]]]}}, {"id": "45373", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.25001, 38.48645564], [139.250063606, 38.486488694], [139.250066939, 38.486438973], [139.25001, 38.48645564]]]}}, {"id": "45374", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.22156869, 38.454164054], [139.221554527, 38.454096279], [139.221525084, 38.454161279], [139.22156869, 38.454164054]]]}}, {"id": "45375", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.237055746, 38.469493441], [139.237097691, 38.469420667], [139.237031855, 38.469462892], [139.237055746, 38.469493441]]]}}, {"id": "45376", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.257208638, 38.470780081], [139.25717642, 38.470712027], [139.257166135, 38.470770081], [139.257208638, 38.470780081]]]}}, {"id": "45377", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.255784475, 38.491473973], [139.255859468, 38.491437865], [139.255775305, 38.491454802], [139.255784475, 38.491473973]]]}}, {"id": "45378", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.250032503, 38.486242865], [139.249984721, 38.486297865], [139.250044721, 38.486287865], [139.250032503, 38.486242865]]]}}, {"id": "45379", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.263474773, 38.490088667], [139.263513671, 38.490137838], [139.263521167, 38.490091441], [139.263474773, 38.490088667]]]}}, {"id": "45380", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.265092555, 38.489703108], [139.265118664, 38.489757279], [139.265143411, 38.489728108], [139.265092555, 38.489703108]]]}}, {"id": "45381", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.224157613, 38.456217108], [139.224138171, 38.456160171], [139.224113165, 38.456182667], [139.224157613, 38.456217108]]]}}, {"id": "45382", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.217412283, 38.443851559], [139.217347004, 38.443825441], [139.217351997, 38.443857946], [139.217412283, 38.443851559]]]}}, {"id": "45383", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.218043385, 38.448154054], [139.218091997, 38.448187108], [139.218082283, 38.448141279], [139.218043385, 38.448154054]]]}}, {"id": "45384", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.236169079, 38.470371225], [139.236238807, 38.470380108], [139.236259079, 38.470370946], [139.236169079, 38.470371225]]]}}, {"id": "45385", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.214142529, 38.439247135], [139.214191971, 38.439221586], [139.21414642, 38.439219919], [139.214142529, 38.439247135]]]}}, {"id": "45386", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.250966109, 38.488230081], [139.25089917, 38.488262306], [139.250927497, 38.488282306], [139.250966109, 38.488230081]]]}}, {"id": "45387", "type": "Feature", "properties": {"N03_001": "新潟県", "N03_002": null, "N03_003": "岩船郡", "N03_004": "粟島浦村", "N03_005": null, "N03_007": "15586"}, "geometry": {"type": "Polygon", "coordinates": [[[139.231342944, 38.467324027], [139.231285447, 38.467365414], [139.231355447, 38.467349586], [139.231342944, 38.467324027]]]}}, {"id": "50105", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "甲府市", "N03_005": null, "N03_007": "19201"}, "geometry": {"type": "Polygon", "coordinates": [[[138.560346472, 35.581682252], [138.553160804, 35.644076054], [138.532453113, 35.651762414], [138.523557108, 35.697141775], [138.565483061, 35.740120586], [138.540495227, 35.765673306], [138.555373748, 35.825843027], [138.580195616, 35.827782225], [138.621594163, 35.870447532], [138.658228197, 35.875786135], [138.635741582, 35.852318919], [138.635630169, 35.804526946], [138.61529572, 35.793554441], [138.593079442, 35.742985865], [138.594959611, 35.725982], [138.621460947, 35.717437865], [138.622768859, 35.692684279], [138.609299079, 35.691023468], [138.635382776, 35.65384464], [138.598384358, 35.634127198], [138.608628859, 35.603545279], [138.584884163, 35.590647838], [138.617420726, 35.575105027], [138.616209857, 35.54866336], [138.650395473, 35.516206108], [138.602410804, 35.504890892], [138.588858106, 35.528515865], [138.596323943, 35.549992802], [138.560346472, 35.581682252]]]}}, {"id": "50106", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "富士吉田市", "N03_005": null, "N03_007": "19202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.730687808, 35.363097505], [138.727593969, 35.422492775], [138.785194475, 35.489592279], [138.77396917, 35.486371135], [138.768031673, 35.488442532], [138.768580856, 35.490065865], [138.771573671, 35.493933081], [138.784510895, 35.491258667], [138.806334812, 35.532697775], [138.833766472, 35.525816694], [138.834242724, 35.507353946], [138.855857782, 35.505070865], [138.865481284, 35.482116135], [138.815164449, 35.475394505], [138.802691673, 35.438175054], [138.833710026, 35.429191135], [138.828512944, 35.412067532], [138.864142633, 35.391528613], [138.730687808, 35.363097505]], [[138.753724163, 35.401722252], [138.756561362, 35.398187252], [138.757075279, 35.401759748], [138.753724163, 35.401722252]], [[138.773085863, 35.491950586], [138.773851699, 35.49117364], [138.774089754, 35.491802802], [138.773085863, 35.491950586]], [[138.772992529, 35.49006336], [138.773684475, 35.489246135], [138.773365863, 35.490118081], [138.772992529, 35.49006336]]]}}, {"id": "50107", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "富士吉田市", "N03_005": null, "N03_007": "19202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780898106, 35.494515865], [138.781427562, 35.49432836], [138.781069222, 35.494221135], [138.780898106, 35.494515865]]]}}, {"id": "50108", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "富士吉田市", "N03_005": null, "N03_007": "19202"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78114061, 35.493356135], [138.781708949, 35.493069198], [138.780748949, 35.493051973], [138.78114061, 35.493356135]]]}}, {"id": "50109", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "都留市", "N03_005": null, "N03_007": "19204"}, "geometry": {"type": "Polygon", "coordinates": [[[139.025688521, 35.545887775], [138.929372892, 35.484422225], [138.927323865, 35.459530559], [138.901056744, 35.450529171], [138.856930532, 35.499162], [138.853352335, 35.525497252], [138.866078781, 35.530336414], [138.866784812, 35.533102225], [138.81026131, 35.550656919], [138.799369754, 35.572051892], [138.829950661, 35.58397636], [138.880053748, 35.574408586], [138.940065668, 35.604609919], [138.956339416, 35.569439135], [139.005040389, 35.578998279], [139.025688521, 35.545887775]]]}}, {"id": "50110", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "都留市", "N03_005": null, "N03_007": "19204"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86449406, 35.531676973], [138.865156005, 35.531085306], [138.86472655, 35.530568081], [138.86449406, 35.531676973]]]}}, {"id": "50111", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "山梨市", "N03_005": null, "N03_007": "19205"}, "geometry": {"type": "Polygon", "coordinates": [[[138.666197717, 35.663015441], [138.672110026, 35.674436252], [138.593618781, 35.727560892], [138.61305489, 35.789801108], [138.63568489, 35.804679171], [138.63577214, 35.852397252], [138.676222023, 35.86983364], [138.708131855, 35.909777559], [138.779811115, 35.899697505], [138.813604864, 35.862367775], [138.78463358, 35.825556694], [138.786970778, 35.787070306], [138.740437912, 35.788874198], [138.741917367, 35.764151414], [138.702203891, 35.712320054], [138.71693214, 35.689454532], [138.700108444, 35.674817892], [138.707721479, 35.663046252], [138.666197717, 35.663015441]]]}}, {"id": "50112", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "大月市", "N03_005": null, "N03_007": "19206"}, "geometry": {"type": "Polygon", "coordinates": [[[138.828339831, 35.583223279], [138.793253891, 35.569900505], [138.766988755, 35.605342946], [138.845367951, 35.641131252], [138.859959468, 35.730295892], [138.909242244, 35.742605], [138.96632061, 35.72114136], [138.992611997, 35.675396721], [139.020307562, 35.666694775], [139.024220636, 35.617324586], [139.063067108, 35.616291532], [139.067171751, 35.601737667], [139.06253358, 35.583231865], [138.957062192, 35.569286081], [138.940113995, 35.604609919], [138.880053748, 35.574408586], [138.828339831, 35.583223279]]]}}, {"id": "50113", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "韮崎市", "N03_005": null, "N03_007": "19207"}, "geometry": {"type": "Polygon", "coordinates": [[[138.297384358, 35.710460973], [138.329148275, 35.71737764], [138.343182244, 35.746806252], [138.381515084, 35.748334838], [138.374828755, 35.769237333], [138.418492477, 35.77394564], [138.449087082, 35.736081198], [138.494718029, 35.769629135], [138.520595525, 35.764993586], [138.507701556, 35.726495613], [138.468851362, 35.711888721], [138.478471608, 35.672557387], [138.431306057, 35.662535171], [138.363485668, 35.68474764], [138.329629533, 35.673464559], [138.297384358, 35.710460973]]]}}, {"id": "50114", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "南アルプス市", "N03_005": null, "N03_007": "19208"}, "geometry": {"type": "Polygon", "coordinates": [[[138.412935305, 35.594552387], [138.338835746, 35.591268171], [138.328158029, 35.609769], [138.310467198, 35.601621748], [138.310082283, 35.644051505], [138.217985383, 35.644890973], [138.193340752, 35.672153252], [138.181848301, 35.718337973], [138.228171673, 35.753692108], [138.3294562, 35.673509279], [138.363485668, 35.68474764], [138.431306057, 35.662535171], [138.496888003, 35.672975721], [138.510767951, 35.623496892], [138.495874695, 35.573151387], [138.479031115, 35.563797468], [138.412935305, 35.594552387]]]}}, {"id": "50115", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "北杜市", "N03_005": null, "N03_007": "19209"}, "geometry": {"type": "Polygon", "coordinates": [[[138.381690636, 35.748513441], [138.343182244, 35.746806252], [138.320528521, 35.711361532], [138.284506861, 35.71028236], [138.241604695, 35.731766279], [138.23338834, 35.762568505], [138.185174189, 35.791079892], [138.238668586, 35.882890108], [138.283640778, 35.859315721], [138.370460415, 35.97138064], [138.450562892, 35.945411468], [138.454918859, 35.899726775], [138.490132309, 35.896374775], [138.510649364, 35.922343946], [138.612176498, 35.909285865], [138.606749222, 35.878481694], [138.620429689, 35.861661414], [138.580195616, 35.827782225], [138.556391219, 35.828065802], [138.548304838, 35.800515252], [138.512296329, 35.802231333], [138.476590052, 35.753124198], [138.449087082, 35.736081198], [138.418492477, 35.77394564], [138.368020389, 35.766964838], [138.381690636, 35.748513441]]]}}, {"id": "50116", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "甲斐市", "N03_005": null, "N03_007": "19210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.505500778, 35.633366333], [138.465422387, 35.703082613], [138.511596615, 35.731922559], [138.520595525, 35.764993586], [138.500368885, 35.769679973], [138.527246589, 35.807169387], [138.548170117, 35.800454414], [138.540506057, 35.765600252], [138.565483061, 35.740120586], [138.524498301, 35.706787892], [138.534640169, 35.631637441], [138.505500778, 35.633366333]]]}}, {"id": "50117", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "笛吹市", "N03_005": null, "N03_007": "19211"}, "geometry": {"type": "Polygon", "coordinates": [[[138.650395473, 35.516206108], [138.617420726, 35.575105027], [138.584884163, 35.590647838], [138.608628859, 35.603545279], [138.598384358, 35.634127198], [138.635382776, 35.65384464], [138.609299079, 35.691023468], [138.622768859, 35.692684279], [138.616880363, 35.711538694], [138.672110026, 35.674436252], [138.665963256, 35.662510721], [138.713421479, 35.662776802], [138.714883022, 35.649361252], [138.71106917, 35.646766279], [138.764881051, 35.622901559], [138.772533385, 35.586791586], [138.793253891, 35.569900505], [138.676634721, 35.519695838], [138.650395473, 35.516206108]], [[138.711719754, 35.651750694], [138.71240642, 35.651172919], [138.711956135, 35.651896252], [138.711719754, 35.651750694]], [[138.712434475, 35.652991802], [138.712151971, 35.652098748], [138.712861141, 35.652536802], [138.712434475, 35.652991802]]]}}, {"id": "50118", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "上野原市", "N03_005": null, "N03_007": "19212"}, "geometry": {"type": "Polygon", "coordinates": [[[139.005501219, 35.578969387], [139.06253358, 35.583231865], [139.067171751, 35.601737667], [139.063067108, 35.616291532], [139.024220636, 35.617324586], [139.020307562, 35.666694775], [138.968451894, 35.704661667], [139.011548171, 35.738884054], [139.038877224, 35.711196919], [139.12871917, 35.675379306], [139.117168223, 35.654536532], [139.134413671, 35.61650964], [139.129178975, 35.563874946], [139.101466278, 35.546037694], [139.025901582, 35.542992225], [139.005501219, 35.578969387]]]}}, {"id": "50119", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "甲州市", "N03_005": null, "N03_007": "19213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.775249883, 35.605066559], [138.71106917, 35.646766279], [138.70042594, 35.672955108], [138.716927419, 35.689415081], [138.70220083, 35.712297838], [138.710569805, 35.733847532], [138.737170415, 35.755300865], [138.7408793, 35.789211694], [138.786970778, 35.787070306], [138.784616355, 35.825503081], [138.809540389, 35.858836387], [138.855900636, 35.865093892], [138.865361167, 35.841216946], [138.851245811, 35.823726387], [138.867966887, 35.782914441], [138.816306693, 35.775611135], [138.859959468, 35.730295892], [138.850881582, 35.649656802], [138.775249883, 35.605066559]]]}}, {"id": "50120", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "甲州市", "N03_005": null, "N03_007": "19213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.711719754, 35.651750694], [138.712392802, 35.651129865], [138.711671971, 35.650838748], [138.711719754, 35.651750694]]]}}, {"id": "50121", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "甲州市", "N03_005": null, "N03_007": "19213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.71197725, 35.652480973], [138.712861141, 35.652536802], [138.712115577, 35.652110135], [138.71197725, 35.652480973]]]}}, {"id": "50122", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": null, "N03_004": "中央市", "N03_005": null, "N03_007": "19214"}, "geometry": {"type": "Polygon", "coordinates": [[[138.553678638, 35.616994721], [138.58404642, 35.551573081], [138.541313139, 35.551958919], [138.547464838, 35.577316414], [138.534719053, 35.583663054], [138.496997756, 35.571687225], [138.506826278, 35.622572721], [138.534564163, 35.608352775], [138.553678638, 35.616994721]]]}}, {"id": "50123", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "西八代郡", "N03_004": "市川三郷町", "N03_005": null, "N03_007": "19346"}, "geometry": {"type": "Polygon", "coordinates": [[[138.4456638, 35.469260559], [138.44716275, 35.50230136], [138.469627173, 35.517770279], [138.451843087, 35.534684135], [138.467256083, 35.535335802], [138.481875279, 35.567009135], [138.534719053, 35.583663054], [138.547464838, 35.577316414], [138.541333696, 35.551945865], [138.596323943, 35.549992802], [138.59468144, 35.518807532], [138.505147302, 35.510349748], [138.499190921, 35.49371836], [138.4456638, 35.469260559]]]}}, {"id": "50124", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南巨摩郡", "N03_004": "早川町", "N03_005": null, "N03_007": "19364"}, "geometry": {"type": "Polygon", "coordinates": [[[138.336628418, 35.328118081], [138.281689689, 35.304867919], [138.254803502, 35.319817387], [138.25114572, 35.363786775], [138.232034578, 35.371163721], [138.258117173, 35.407424505], [138.244004034, 35.45860836], [138.268997445, 35.514233946], [138.229657613, 35.648561225], [138.311042802, 35.643609279], [138.310373022, 35.60172036], [138.328158029, 35.609769], [138.348747393, 35.589861225], [138.32101214, 35.56509036], [138.326256005, 35.548836198], [138.355594838, 35.548200108], [138.353662023, 35.521645387], [138.384352166, 35.47845736], [138.378949416, 35.449860667], [138.422167224, 35.416222973], [138.393556005, 35.388492306], [138.387289857, 35.355338387], [138.350567912, 35.358741613], [138.336628418, 35.328118081]], [[138.352479883, 35.383183027], [138.359126524, 35.374123279], [138.357431245, 35.384661081], [138.352479883, 35.383183027]]]}}, {"id": "50125", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南巨摩郡", "N03_004": "身延町", "N03_005": null, "N03_007": "19365"}, "geometry": {"type": "Polygon", "coordinates": [[[138.375, 35.29952536], [138.336528392, 35.324984748], [138.342239196, 35.349360802], [138.387289857, 35.355338387], [138.393556005, 35.388492306], [138.422286939, 35.415489919], [138.378949416, 35.449860667], [138.384368003, 35.478330135], [138.447267198, 35.499269414], [138.447711855, 35.468283333], [138.505147302, 35.510349748], [138.59468144, 35.518807532], [138.583968249, 35.447508892], [138.531827004, 35.409408919], [138.534591608, 35.386226387], [138.481416719, 35.34460164], [138.479254137, 35.311438586], [138.375, 35.29952536]]]}}, {"id": "50126", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南巨摩郡", "N03_004": "身延町", "N03_005": null, "N03_007": "19365"}, "geometry": {"type": "Polygon", "coordinates": [[[138.359126524, 35.374123279], [138.352479883, 35.383183027], [138.357431245, 35.384661081], [138.359126524, 35.374123279]]]}}, {"id": "50127", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南巨摩郡", "N03_004": "南部町", "N03_005": null, "N03_007": "19366"}, "geometry": {"type": "Polygon", "coordinates": [[[138.512093191, 35.313555252], [138.532206693, 35.19959], [138.491492244, 35.168384441], [138.438785642, 35.177993865], [138.398697108, 35.200269946], [138.366764501, 35.290320387], [138.428246329, 35.314081559], [138.475646083, 35.309222721], [138.481416719, 35.34460164], [138.528171051, 35.379046946], [138.5350862, 35.330564721], [138.512093191, 35.313555252]]]}}, {"id": "50128", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南巨摩郡", "N03_004": "富士川町", "N03_005": null, "N03_007": "19368"}, "geometry": {"type": "Polygon", "coordinates": [[[138.467886031, 35.511859171], [138.385555499, 35.478570414], [138.371583061, 35.486072892], [138.355594838, 35.548200108], [138.326302944, 35.548797865], [138.32101214, 35.56509036], [138.37787428, 35.595034027], [138.472598664, 35.574419414], [138.470610532, 35.540852748], [138.450833359, 35.529941919], [138.467886031, 35.511859171]]]}}, {"id": "50129", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "中巨摩郡", "N03_004": "昭和町", "N03_005": null, "N03_007": "19384"}, "geometry": {"type": "Polygon", "coordinates": [[[138.520695331, 35.61014136], [138.509721336, 35.633543], [138.552083061, 35.646749387], [138.553678638, 35.616994721], [138.520695331, 35.61014136]]]}}, {"id": "50130", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "道志村", "N03_005": null, "N03_007": "19422"}, "geometry": {"type": "Polygon", "coordinates": [[[138.924019105, 35.458102225], [138.931534864, 35.486642775], [139.012407665, 35.543375306], [139.113385772, 35.547864387], [139.085789974, 35.512086306], [139.046019222, 35.509663054], [139.027549442, 35.480967802], [138.940440804, 35.449491946], [138.924019105, 35.458102225]]]}}, {"id": "50131", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "西桂町", "N03_005": null, "N03_007": "19423"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81026131, 35.550656919], [138.866784812, 35.533102225], [138.85573917, 35.504944748], [138.839047977, 35.501639505], [138.83985978, 35.520465586], [138.806334812, 35.532697775], [138.81026131, 35.550656919]], [[138.865159883, 35.531145586], [138.864393774, 35.530907252], [138.86472655, 35.530568081], [138.865159883, 35.531145586]]]}}, {"id": "50132", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "忍野村", "N03_005": null, "N03_007": "19424"}, "geometry": {"type": "Polygon", "coordinates": [[[138.866329611, 35.485218081], [138.901289805, 35.450484441], [138.892951946, 35.44240864], [138.864433774, 35.436713081], [138.849858003, 35.456591441], [138.833885642, 35.440485054], [138.806377639, 35.456355054], [138.816944721, 35.476424775], [138.835946667, 35.469183387], [138.866329611, 35.485218081]]]}}, {"id": "50133", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "山中湖村", "N03_005": null, "N03_007": "19425"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874262477, 35.379173523], [138.828512944, 35.412067532], [138.833710026, 35.429191135], [138.802691673, 35.438175054], [138.806377639, 35.456355054], [138.833885642, 35.440485054], [138.85189358, 35.455957], [138.864433774, 35.436713081], [138.922102724, 35.457889721], [138.937315227, 35.448806946], [138.916402918, 35.400613613], [138.874262477, 35.379173523]]]}}, {"id": "50134", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "鳴沢村", "N03_005": null, "N03_007": "19429"}, "geometry": {"type": "Polygon", "coordinates": [[[138.639404669, 35.398508613], [138.664487302, 35.420536946], [138.654618003, 35.448952775], [138.664770078, 35.478016667], [138.72956275, 35.491887775], [138.723354228, 35.463778333], [138.750129974, 35.442013919], [138.727593969, 35.422492775], [138.730781414, 35.362798613], [138.680535616, 35.357678333], [138.67118297, 35.39283], [138.639404669, 35.398508613]]]}}, {"id": "50135", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "富士河口湖町", "N03_005": null, "N03_007": "19430"}, "geometry": {"type": "Polygon", "coordinates": [[[138.664514254, 35.420625], [138.641952477, 35.399708613], [138.609136031, 35.393176387], [138.581888249, 35.445728333], [138.581844747, 35.478681414], [138.602410804, 35.504890892], [138.799498638, 35.572215225], [138.80523978, 35.529263919], [138.784510895, 35.491258667], [138.768580856, 35.490065865], [138.785194475, 35.489592279], [138.75467917, 35.445665865], [138.723354228, 35.463778333], [138.72956275, 35.491887775], [138.706534942, 35.494331108], [138.664770078, 35.478016667], [138.654618003, 35.448952775], [138.664514254, 35.420625]], [[138.78114061, 35.493356135], [138.781393385, 35.492975865], [138.781708949, 35.493069198], [138.78114061, 35.493356135]], [[138.781210921, 35.495212532], [138.781427562, 35.49432836], [138.781467588, 35.495242802], [138.781210921, 35.495212532]]]}}, {"id": "50136", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "富士河口湖町", "N03_005": null, "N03_007": "19430"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756561362, 35.398187252], [138.753724163, 35.401722252], [138.75716, 35.401675306], [138.756561362, 35.398187252]]]}}, {"id": "50137", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "富士河口湖町", "N03_005": null, "N03_007": "19430"}, "geometry": {"type": "Polygon", "coordinates": [[[138.773040856, 35.491196135], [138.774089754, 35.491802802], [138.774076978, 35.49135864], [138.773040856, 35.491196135]]]}}, {"id": "50138", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "南都留郡", "N03_004": "富士河口湖町", "N03_005": null, "N03_007": "19430"}, "geometry": {"type": "Polygon", "coordinates": [[[138.77297642, 35.48991836], [138.773694189, 35.489281414], [138.773491414, 35.489126973], [138.77297642, 35.48991836]]]}}, {"id": "50139", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "北都留郡", "N03_004": "小菅村", "N03_005": null, "N03_007": "19442"}, "geometry": {"type": "Polygon", "coordinates": [[[139.011430117, 35.740591559], [138.971754163, 35.712308586], [138.923739805, 35.740624973], [138.85117808, 35.738582252], [138.879064112, 35.764198892], [138.932988275, 35.780231333], [138.983772996, 35.769475414], [139.011430117, 35.740591559]]]}}, {"id": "50140", "type": "Feature", "properties": {"N03_001": "山梨県", "N03_002": null, "N03_003": "北都留郡", "N03_004": "丹波山村", "N03_005": null, "N03_007": "19443"}, "geometry": {"type": "Polygon", "coordinates": [[[138.932724669, 35.780235225], [138.852391167, 35.740895027], [138.816306693, 35.775611135], [138.867966887, 35.782914441], [138.851225253, 35.823901108], [138.862661479, 35.858761108], [138.892222672, 35.839778586], [138.945749533, 35.854085748], [138.969765616, 35.831225414], [138.983772996, 35.769475414], [138.932724669, 35.780235225]]]}}, {"id": "50268", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "葵区", "N03_007": "22101"}, "geometry": {"type": "Polygon", "coordinates": [[[138.24951917, 34.993447225], [138.188221115, 35.019955], [138.209671673, 35.070748613], [138.18847834, 35.093881667], [138.18366083, 35.136566387], [138.239705837, 35.177219171], [138.214890558, 35.203763892], [138.183616394, 35.192667775], [138.198059728, 35.246321946], [138.145742503, 35.256278892], [138.136967782, 35.284074171], [138.082959611, 35.32481464], [138.094625058, 35.351985054], [138.141143671, 35.369492613], [138.152555279, 35.394687586], [138.120197523, 35.430627775], [138.120990143, 35.455348054], [138.156913061, 35.459980838], [138.164653645, 35.493572252], [138.139519442, 35.501178081], [138.159435888, 35.544959], [138.141393359, 35.555076252], [138.162050363, 35.581294892], [138.189490636, 35.576780946], [138.20337153, 35.632115694], [138.228367613, 35.645956505], [138.268997445, 35.514233946], [138.244004034, 35.45860836], [138.258117173, 35.407424505], [138.232034578, 35.371163721], [138.25114572, 35.363786775], [138.254803502, 35.319817387], [138.281689689, 35.304867919], [138.325843943, 35.327611973], [138.367508249, 35.309676748], [138.367031855, 35.270188198], [138.402092607, 35.179242468], [138.397667224, 35.100215838], [138.436295279, 35.076706306], [138.436484423, 35.006200279], [138.371020117, 34.957100721], [138.357269689, 34.970547333], [138.292032361, 34.949603108], [138.24951917, 34.993447225]]]}}, {"id": "50269", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "駿河区", "N03_007": "22102"}, "geometry": {"type": "Polygon", "coordinates": [[[138.47283083, 34.970577225], [138.344932503, 34.899982775], [138.292032361, 34.949603108], [138.357269689, 34.970547333], [138.371020117, 34.957100721], [138.43655834, 35.006354171], [138.47283083, 34.970577225]]]}}, {"id": "50270", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "駿河区", "N03_007": "22102"}, "geometry": {"type": "Polygon", "coordinates": [[[138.372993437, 34.921092396], [138.372834786, 34.921214081], [138.375273891, 34.922130207], [138.372993437, 34.921092396]]]}}, {"id": "50271", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "駿河区", "N03_007": "22102"}, "geometry": {"type": "Polygon", "coordinates": [[[138.371309222, 34.919126054], [138.373899222, 34.919564775], [138.373935772, 34.919374721], [138.371309222, 34.919126054]]]}}, {"id": "50272", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "駿河区", "N03_007": "22102"}, "geometry": {"type": "Polygon", "coordinates": [[[138.350507224, 34.901271946], [138.35074917, 34.90117], [138.350502503, 34.90117], [138.350507224, 34.901271946]]]}}, {"id": "50273", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.436832581, 34.998604919], [138.436295279, 35.076706306], [138.397667224, 35.100215838], [138.398697108, 35.200269946], [138.491492244, 35.168384441], [138.522421414, 35.199157775], [138.538581946, 35.151682505], [138.558476939, 35.159314441], [138.611239442, 35.129012225], [138.62993083, 35.133675279], [138.638537289, 35.116491459], [138.557281141, 35.101922937], [138.523690921, 35.042669441], [138.494016589, 35.031613306], [138.502923943, 34.986021198], [138.511532412, 34.992759306], [138.501095136, 35.002263], [138.504052724, 35.015412892], [138.533382724, 35.013802225], [138.507473385, 34.977562441], [138.474572685, 34.961833964], [138.436832581, 34.998604919]]]}}, {"id": "50274", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.518998975, 35.028456198], [138.522675383, 35.038043261], [138.529677756, 35.042444505], [138.52280655, 35.037968802], [138.518998975, 35.028456198]]]}}, {"id": "50275", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.524486252, 35.023918027], [138.523578755, 35.021194333], [138.523276667, 35.021293198], [138.524486252, 35.023918027]]]}}, {"id": "50276", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.525911608, 35.048043216], [138.523312192, 35.046359351], [138.523266602, 35.046413514], [138.525911608, 35.048043216]]]}}, {"id": "50277", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.528112062, 35.050043721], [138.527059209, 35.051264865], [138.528163022, 35.050078856], [138.528112062, 35.050043721]]]}}, {"id": "50278", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.508040661, 34.995998829], [138.508050195, 34.995992973], [138.506974773, 34.992425027], [138.508040661, 34.995998829]]]}}, {"id": "50279", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.611931894, 35.114943748], [138.612094929, 35.11487427], [138.611972918, 35.114856901], [138.611931894, 35.114943748]]]}}, {"id": "50280", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.611840441, 35.115213189], [138.611685396, 35.115357919], [138.611675668, 35.115382], [138.611840441, 35.115213189]]]}}, {"id": "50281", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.608804825, 35.114230387], [138.608631025, 35.114212784], [138.608633139, 35.114239829], [138.608804825, 35.114230387]]]}}, {"id": "50282", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.608622724, 35.114240378], [138.60844882, 35.114222775], [138.608450934, 35.114249721], [138.608622724, 35.114240378]]]}}, {"id": "50283", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.608437665, 35.114250459], [138.608263865, 35.114232946], [138.608266096, 35.114259892], [138.608437665, 35.114250459]]]}}, {"id": "50284", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.608065344, 35.114270892], [138.607893191, 35.114253198], [138.607895305, 35.114280153], [138.608065344, 35.114270892]]]}}, {"id": "50285", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.607088911, 35.114324225], [138.606916433, 35.114306622], [138.606918664, 35.114333568], [138.607088911, 35.114324225]]]}}, {"id": "50286", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.608251284, 35.114260721], [138.608079131, 35.114243027], [138.608081362, 35.114269973], [138.608251284, 35.114260721]]]}}, {"id": "50287", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.606534267, 35.11435455], [138.606362231, 35.114336856], [138.606364462, 35.114363892], [138.606534267, 35.11435455]]]}}, {"id": "50288", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.606904176, 35.114334396], [138.606732568, 35.114316604], [138.606734695, 35.114343649], [138.606904176, 35.114334396]]]}}, {"id": "50289", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.607881816, 35.114280883], [138.607709883, 35.114263189], [138.607712114, 35.114290225], [138.607881816, 35.114280883]]]}}, {"id": "50290", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.606349546, 35.114364631], [138.606177497, 35.114347018], [138.606179728, 35.114373973], [138.606349546, 35.114364631]]]}}, {"id": "50291", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.606719559, 35.114344468], [138.606548275, 35.114326685], [138.606550506, 35.11435373], [138.606719559, 35.114344468]]]}}, {"id": "50292", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.60727332, 35.114314144], [138.607101595, 35.11429645], [138.607103722, 35.114323396], [138.60727332, 35.114314144]]]}}, {"id": "50293", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.611803982, 35.115192036], [138.611869857, 35.115149243], [138.61183166, 35.115137559], [138.611803982, 35.115192036]]]}}, {"id": "50294", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.611835927, 35.115129261], [138.611899728, 35.115084495], [138.611864267, 35.115073532], [138.611835927, 35.115129261]]]}}, {"id": "50295", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "静岡市", "N03_005": "清水区", "N03_007": "22103"}, "geometry": {"type": "Polygon", "coordinates": [[[138.611868534, 35.115065234], [138.611929805, 35.115019108], [138.611896874, 35.115009676], [138.611868534, 35.115065234]]]}}, {"id": "50296", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "浜松市", "N03_005": "中央区", "N03_007": "22138"}, "geometry": {"type": "Polygon", "coordinates": [[[137.797010558, 34.648313892], [137.598683126, 34.67505509], [137.565906641, 34.740493775], [137.593984721, 34.770573829], [137.685933437, 34.783583432], [137.71444179, 34.805343739], [137.746705227, 34.805148559], [137.738282348, 34.780309523], [137.755819935, 34.775941874], [137.81135476, 34.785112964], [137.822480454, 34.774180532], [137.787567782, 34.669984441], [137.797010558, 34.648313892]]]}}, {"id": "50297", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "浜松市", "N03_005": "中央区", "N03_007": "22138"}, "geometry": {"type": "Polygon", "coordinates": [[[137.59872144, 34.674715162], [137.597731725, 34.672922523], [137.597599922, 34.672989342], [137.59872144, 34.674715162]]]}}, {"id": "50298", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "浜松市", "N03_005": "浜名区", "N03_007": "22139"}, "geometry": {"type": "Polygon", "coordinates": [[[137.564190506, 34.741666667], [137.542154449, 34.773378613], [137.497294721, 34.782050559], [137.487013891, 34.811749441], [137.502673891, 34.833495829], [137.587251673, 34.849575829], [137.597450558, 34.872447225], [137.641251673, 34.893083333], [137.651046667, 34.933435279], [137.696938885, 34.971945279], [137.716600389, 34.908260225], [137.744965811, 34.900051757], [137.766962244, 34.85830791], [137.802823035, 34.855765423], [137.808449857, 34.840168892], [137.810003722, 34.855672694], [137.824318612, 34.855019441], [137.822480454, 34.774180532], [137.806821505, 34.78647155], [137.791184916, 34.773248252], [137.738282348, 34.780309523], [137.746705227, 34.805148559], [137.721029248, 34.806270351], [137.685933437, 34.783583432], [137.593984721, 34.770573829], [137.564190506, 34.741666667]]]}}, {"id": "50299", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "浜松市", "N03_005": "天竜区", "N03_007": "22140"}, "geometry": {"type": "Polygon", "coordinates": [[[137.808449857, 34.840168892], [137.70191083, 34.93315018], [137.701029442, 35.003488333], [137.718309442, 35.036244721], [137.775532218, 35.077614721], [137.77826834, 35.099623054], [137.80117917, 35.105955279], [137.793136939, 35.135217505], [137.829002776, 35.151960838], [137.803326978, 35.183763892], [137.844929585, 35.221007135], [137.876356135, 35.221555468], [137.89542594, 35.257988505], [137.918072244, 35.254127135], [137.929252555, 35.275470171], [138.018000441, 35.301576748], [138.000461388, 35.261373613], [138.036363891, 35.210949721], [137.999322218, 35.146172775], [138.058702218, 35.105136108], [138.03837, 35.06729], [138.047344449, 35.039009171], [138.01339083, 35.022742225], [138.035834449, 34.998876667], [138.002376394, 34.96457], [137.907577224, 34.928868613], [137.917636394, 34.891332495], [137.810003722, 34.855672694], [137.808449857, 34.840168892]]]}}, {"id": "50300", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.77929, 34.939164721], [138.76218284, 34.969446541], [138.777074929, 34.970378973], [138.768829442, 34.982535], [138.787208975, 35.030148694], [138.891373774, 35.017018081], [138.90731834, 35.048489721], [138.886036809, 35.046180802], [138.826409689, 35.107767505], [138.75252144, 35.131510153], [138.778266109, 35.164634721], [138.762881673, 35.166678613], [138.77059083, 35.187629171], [138.811656109, 35.219243054], [138.891343891, 35.135005838], [138.888464721, 35.078535], [138.924339728, 35.074500838], [138.906231946, 35.059387225], [138.911891673, 35.024804441], [138.902681673, 35.013551946], [138.907788885, 35.007900279], [138.837025006, 34.973440279], [138.837513333, 34.943433054], [138.77929, 34.939164721]]]}}, {"id": "50301", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887001479, 35.036021838], [138.888053528, 35.031059919], [138.885596589, 35.034896532], [138.887001479, 35.036021838]]]}}, {"id": "50302", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.880836031, 35.021525135], [138.880319728, 35.021354892], [138.880769663, 35.021833667], [138.880836031, 35.021525135]]]}}, {"id": "50303", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.866219494, 35.022401838], [138.866040661, 35.022570919], [138.86630275, 35.022583559], [138.866219494, 35.022401838]]]}}, {"id": "50304", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.87805808, 35.059065973], [138.878593307, 35.058726414], [138.877980895, 35.059021108], [138.87805808, 35.059065973]]]}}, {"id": "50305", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.877401556, 35.059406946], [138.877483502, 35.059192], [138.877415642, 35.059193], [138.877401556, 35.059406946]]]}}, {"id": "50306", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843294306, 35.018620775], [138.843535188, 35.018350919], [138.843503774, 35.018315], [138.843294306, 35.018620775]]]}}, {"id": "50307", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.877308275, 35.059212694], [138.877384838, 35.059052027], [138.87726917, 35.059112838], [138.877308275, 35.059212694]]]}}, {"id": "50308", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.834917639, 35.020764667], [138.83490358, 35.020881694], [138.834989754, 35.02082864], [138.834917639, 35.020764667]]]}}, {"id": "50309", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777251751, 35.013273622], [138.777229313, 35.013126541], [138.777159909, 35.013167486], [138.777251751, 35.013273622]]]}}, {"id": "50310", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849491115, 35.01720564], [138.849476109, 35.017303171], [138.849544721, 35.017279946], [138.849491115, 35.01720564]]]}}, {"id": "50311", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.77749284, 35.013252333], [138.777505045, 35.013149811], [138.777457043, 35.013137937], [138.77749284, 35.013252333]]]}}, {"id": "50312", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885910804, 35.034311748], [138.885845966, 35.034389252], [138.88589083, 35.034402252], [138.885910804, 35.034311748]]]}}, {"id": "50313", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887282218, 35.031582748], [138.887319053, 35.031508613], [138.887252114, 35.031558802], [138.887282218, 35.031582748]]]}}, {"id": "50314", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886430661, 35.036053946], [138.886422633, 35.036123586], [138.886480895, 35.036078748], [138.886430661, 35.036053946]]]}}, {"id": "50315", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88635939, 35.032252135], [138.886279559, 35.032282333], [138.886357588, 35.032297559], [138.88635939, 35.032252135]]]}}, {"id": "50316", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.835134112, 35.019149919], [138.835130636, 35.019229586], [138.835170856, 35.019205108], [138.835134112, 35.019149919]]]}}, {"id": "50317", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.899598716, 35.049767], [138.899622555, 35.04982764], [138.899646057, 35.049771667], [138.899598716, 35.049767]]]}}, {"id": "50318", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88897489, 35.030860892], [138.88889, 35.030831892], [138.888851025, 35.030876748], [138.88897489, 35.030860892]]]}}, {"id": "50319", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777725318, 35.013621667], [138.777674565, 35.013559838], [138.777658638, 35.013591225], [138.777725318, 35.013621667]]]}}, {"id": "50320", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885894189, 35.033310694], [138.885936083, 35.033258838], [138.885886005, 35.033266441], [138.885894189, 35.033310694]]]}}, {"id": "50321", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88844572, 35.030944892], [138.888433087, 35.030896586], [138.888408859, 35.030931532], [138.88844572, 35.030944892]]]}}, {"id": "50322", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88831869, 35.030948919], [138.888323307, 35.030993946], [138.888346744, 35.030965279], [138.88831869, 35.030948919]]]}}, {"id": "50323", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.888824695, 35.030893613], [138.888737562, 35.030894892], [138.888730415, 35.03091036], [138.888824695, 35.030893613]]]}}, {"id": "50324", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886670272, 35.032097081], [138.886626887, 35.032056225], [138.886625162, 35.032087802], [138.886670272, 35.032097081]]]}}, {"id": "50325", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "沼津市", "N03_005": null, "N03_007": "22203"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885878197, 35.033458333], [138.885925863, 35.033447], [138.885878003, 35.033421721], [138.885878197, 35.033458333]]]}}, {"id": "50326", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.053806939, 35.029873892], [139.033199442, 35.047216387], [139.027850558, 35.081625], [139.044778106, 35.123718892], [139.030427951, 35.149752802], [139.111596667, 35.141366937], [139.076796667, 35.097728054], [139.069381336, 35.054039892], [139.09956083, 35.046087775], [139.098569014, 35.031432351], [139.053806939, 35.029873892]]]}}, {"id": "50327", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.167842776, 35.036563613], [139.168363022, 35.043561414], [139.176547782, 35.039519441], [139.167842776, 35.036563613]]]}}, {"id": "50328", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077097886, 35.093924414], [139.078172802, 35.095728838], [139.076916939, 35.093410919], [139.077097886, 35.093924414]]]}}, {"id": "50329", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.079394695, 35.098567667], [139.079854578, 35.098952973], [139.078733865, 35.097228279], [139.079394695, 35.098567667]]]}}, {"id": "50330", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.096976394, 35.116791946], [139.096492776, 35.116628054], [139.096674449, 35.116875838], [139.096976394, 35.116791946]]]}}, {"id": "50331", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.080304449, 35.068363892], [139.079798054, 35.06853], [139.080654721, 35.068518892], [139.080304449, 35.068363892]]]}}, {"id": "50332", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078358197, 35.096094838], [139.078607445, 35.096944586], [139.078738418, 35.096897306], [139.078358197, 35.096094838]]]}}, {"id": "50333", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.083175694, 35.096270973], [139.082620532, 35.096910468], [139.083287951, 35.096350225], [139.083175694, 35.096270973]]]}}, {"id": "50334", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.081116939, 35.067685], [139.081401388, 35.067777225], [139.081626109, 35.067583333], [139.081116939, 35.067685]]]}}, {"id": "50335", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078930272, 35.073598892], [139.078862776, 35.073384721], [139.078740272, 35.073549171], [139.078930272, 35.073598892]]]}}, {"id": "50336", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078853333, 35.072936946], [139.078493061, 35.073177225], [139.078970272, 35.072978054], [139.078853333, 35.072936946]]]}}, {"id": "50337", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.097301673, 35.116558333], [139.097053061, 35.116525279], [139.097259442, 35.116667505], [139.097301673, 35.116558333]]]}}, {"id": "50338", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082204163, 35.085862505], [139.082474721, 35.085953613], [139.08248917, 35.085871946], [139.082204163, 35.085862505]]]}}, {"id": "50339", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076292776, 35.075311667], [139.076514721, 35.075366946], [139.076538054, 35.075221667], [139.076292776, 35.075311667]]]}}, {"id": "50340", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.088777224, 35.106041108], [139.08893083, 35.106168333], [139.088972503, 35.106044441], [139.088777224, 35.106041108]]]}}, {"id": "50341", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076871115, 35.081825], [139.076744449, 35.082013054], [139.076933333, 35.081921387], [139.076871115, 35.081825]]]}}, {"id": "50342", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082786939, 35.085928054], [139.082660272, 35.085734171], [139.082650272, 35.085928054], [139.082786939, 35.085928054]]]}}, {"id": "50343", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.100198612, 35.045882505], [139.100434721, 35.045707775], [139.100166109, 35.045853892], [139.100198612, 35.045882505]]]}}, {"id": "50344", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.079725837, 35.069756108], [139.079883606, 35.069694721], [139.079747224, 35.069664441], [139.079725837, 35.069756108]]]}}, {"id": "50345", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.075912776, 35.075134721], [139.076115551, 35.075161387], [139.076097782, 35.075115559], [139.075912776, 35.075134721]]]}}, {"id": "50346", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.074363333, 35.060114441], [139.07451834, 35.060111946], [139.07442, 35.059988613], [139.074363333, 35.060114441]]]}}, {"id": "50347", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.100774163, 35.045681387], [139.100968885, 35.045664721], [139.100838885, 35.045530559], [139.100774163, 35.045681387]]]}}, {"id": "50348", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.099451946, 35.046368333], [139.099558054, 35.046220279], [139.099398612, 35.046298892], [139.099451946, 35.046368333]]]}}, {"id": "50349", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.088569728, 35.109336108], [139.08859917, 35.109159441], [139.088556109, 35.109160559], [139.088569728, 35.109336108]]]}}, {"id": "50350", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.088422503, 35.106034441], [139.088593333, 35.106013613], [139.08853, 35.105934441], [139.088422503, 35.106034441]]]}}, {"id": "50351", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.07614083, 35.082008333], [139.076395837, 35.08201], [139.076131115, 35.081994171], [139.07614083, 35.082008333]]]}}, {"id": "50352", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076043333, 35.075284721], [139.076166109, 35.075363892], [139.076152503, 35.075245279], [139.076043333, 35.075284721]]]}}, {"id": "50353", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.075807782, 35.076466946], [139.07584083, 35.076324721], [139.075780558, 35.076338892], [139.075807782, 35.076466946]]]}}, {"id": "50354", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.075668612, 35.076863333], [139.075788054, 35.076841108], [139.075702218, 35.076793892], [139.075668612, 35.076863333]]]}}, {"id": "50355", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.169791673, 35.036373333], [139.169844449, 35.036281667], [139.169701946, 35.036305], [139.169791673, 35.036373333]]]}}, {"id": "50356", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.08740083, 35.107965279], [139.087361673, 35.107857775], [139.087308885, 35.107959171], [139.08740083, 35.107965279]]]}}, {"id": "50357", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.074628612, 35.05973], [139.074738885, 35.059831667], [139.074753891, 35.059780838], [139.074628612, 35.05973]]]}}, {"id": "50358", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078191388, 35.067208892], [139.078300272, 35.067268892], [139.078306109, 35.067193054], [139.078191388, 35.067208892]]]}}, {"id": "50359", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.088006109, 35.108125838], [139.088135551, 35.108153613], [139.088072218, 35.108082505], [139.088006109, 35.108125838]]]}}, {"id": "50360", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076179728, 35.075496667], [139.076277224, 35.075537505], [139.076277224, 35.075438054], [139.076179728, 35.075496667]]]}}, {"id": "50361", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.074598885, 35.060184721], [139.074747782, 35.060136108], [139.074604721, 35.060150838], [139.074598885, 35.060184721]]]}}, {"id": "50362", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.087657224, 35.107906667], [139.08768, 35.107795279], [139.087607497, 35.10786], [139.087657224, 35.107906667]]]}}, {"id": "50363", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.100526109, 35.043686667], [139.100594163, 35.043612505], [139.100543891, 35.043590838], [139.100526109, 35.043686667]]]}}, {"id": "50364", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078121115, 35.06707], [139.078220558, 35.067126667], [139.078224449, 35.067049441], [139.078121115, 35.06707]]]}}, {"id": "50365", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077926394, 35.067215279], [139.078013891, 35.067156946], [139.077901115, 35.067175838], [139.077926394, 35.067215279]]]}}, {"id": "50366", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.172758054, 35.036573333], [139.172723606, 35.036487505], [139.172665837, 35.036519171], [139.172758054, 35.036573333]]]}}, {"id": "50367", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076095837, 35.081648054], [139.076220558, 35.081624441], [139.076206939, 35.081584721], [139.076095837, 35.081648054]]]}}, {"id": "50368", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171212218, 35.036463333], [139.17115, 35.036398892], [139.171126394, 35.036430279], [139.171212218, 35.036463333]]]}}, {"id": "50369", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17647917, 35.039254721], [139.176525006, 35.039197775], [139.176458612, 35.039193054], [139.17647917, 35.039254721]]]}}, {"id": "50370", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076281115, 35.075686108], [139.076333606, 35.075615], [139.076259442, 35.075656108], [139.076281115, 35.075686108]]]}}, {"id": "50371", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.08725917, 35.107576108], [139.087287782, 35.107506387], [139.08721834, 35.107540838], [139.08725917, 35.107576108]]]}}, {"id": "50372", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17333834, 35.042565279], [139.17325, 35.042521946], [139.173275837, 35.04257], [139.17333834, 35.042565279]]]}}, {"id": "50373", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.087892503, 35.108004441], [139.087854721, 35.107915], [139.087836667, 35.107983613], [139.087892503, 35.108004441]]]}}, {"id": "50374", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163852503, 35.043151108], [139.163798612, 35.043073613], [139.163771388, 35.043119171], [139.163852503, 35.043151108]]]}}, {"id": "50375", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174147224, 35.037498892], [139.174167782, 35.037417505], [139.174118612, 35.037451387], [139.174147224, 35.037498892]]]}}, {"id": "50376", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.087355551, 35.107737775], [139.087363061, 35.107659441], [139.087307224, 35.107697225], [139.087355551, 35.107737775]]]}}, {"id": "50377", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.076074449, 35.076062225], [139.076142776, 35.076111387], [139.076160272, 35.076054441], [139.076074449, 35.076062225]]]}}, {"id": "50378", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.08755917, 35.107730279], [139.087535006, 35.107655838], [139.087500558, 35.107715838], [139.08755917, 35.107730279]]]}}, {"id": "50379", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173952503, 35.037353333], [139.173867497, 35.037368613], [139.17392834, 35.037393613], [139.173952503, 35.037353333]]]}}, {"id": "50380", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174258612, 35.03764], [139.174192503, 35.037570279], [139.174177497, 35.037623892], [139.174258612, 35.03764]]]}}, {"id": "50381", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.172241946, 35.042925279], [139.172233061, 35.042835279], [139.172205837, 35.042910838], [139.172241946, 35.042925279]]]}}, {"id": "50382", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.075957782, 35.081896108], [139.075977224, 35.081815559], [139.075914721, 35.081864441], [139.075957782, 35.081896108]]]}}, {"id": "50383", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173649442, 35.042267225], [139.173580558, 35.042222505], [139.173585279, 35.042264171], [139.173649442, 35.042267225]]]}}, {"id": "50384", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.172860558, 35.042823054], [139.172813891, 35.042766946], [139.172801115, 35.042813333], [139.172860558, 35.042823054]]]}}, {"id": "50385", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176186394, 35.038838892], [139.176126394, 35.038786946], [139.176113606, 35.038815279], [139.176186394, 35.038838892]]]}}, {"id": "50386", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176086939, 35.040136387], [139.176033061, 35.040082505], [139.176034449, 35.040127775], [139.176086939, 35.040136387]]]}}, {"id": "50387", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176532776, 35.039944171], [139.176462776, 35.039919441], [139.176481673, 35.039958892], [139.176532776, 35.039944171]]]}}, {"id": "50388", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17394083, 35.037498892], [139.174024721, 35.037481946], [139.173946109, 35.037471108], [139.17394083, 35.037498892]]]}}, {"id": "50389", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174804721, 35.041379441], [139.174729442, 35.041356387], [139.174763606, 35.041402775], [139.174804721, 35.041379441]]]}}, {"id": "50390", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174086109, 35.041913333], [139.174011115, 35.04189], [139.174045006, 35.041936667], [139.174086109, 35.041913333]]]}}, {"id": "50391", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174556109, 35.041538333], [139.174493606, 35.041570559], [139.174547224, 35.041591946], [139.174556109, 35.041538333]]]}}, {"id": "50392", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174777782, 35.041543892], [139.174715279, 35.041575838], [139.174768885, 35.041597225], [139.174777782, 35.041543892]]]}}, {"id": "50393", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.174281115, 35.041683054], [139.174356109, 35.041706108], [139.174336394, 35.041659721], [139.174281115, 35.041683054]]]}}, {"id": "50394", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.171948612, 35.042935559], [139.171924163, 35.042862225], [139.171901946, 35.042908054], [139.171948612, 35.042935559]]]}}, {"id": "50395", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.173104163, 35.042736387], [139.17303834, 35.042715559], [139.173067224, 35.042761946], [139.173104163, 35.042736387]]]}}, {"id": "50396", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.17342, 35.042733613], [139.173354449, 35.042712775], [139.173383333, 35.042749441], [139.17342, 35.042733613]]]}}, {"id": "50397", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176347782, 35.039973333], [139.17628083, 35.039931108], [139.176303891, 35.039985], [139.176347782, 35.039973333]]]}}, {"id": "50398", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.164013606, 35.043186667], [139.163953333, 35.043163333], [139.163975551, 35.043198892], [139.164013606, 35.043186667]]]}}, {"id": "50399", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176273333, 35.040264441], [139.176203606, 35.040226667], [139.176229728, 35.040280559], [139.176273333, 35.040264441]]]}}, {"id": "50400", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.176463333, 35.038872225], [139.176404721, 35.038892775], [139.17644917, 35.038925838], [139.176463333, 35.038872225]]]}}, {"id": "50401", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.172107497, 35.042979721], [139.172049442, 35.042958333], [139.172078054, 35.043022225], [139.172107497, 35.042979721]]]}}, {"id": "50402", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.163925279, 35.042966946], [139.163861115, 35.042973054], [139.163915279, 35.042984171], [139.163925279, 35.042966946]]]}}, {"id": "50403", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "熱海市", "N03_005": null, "N03_007": "22205"}, "geometry": {"type": "Polygon", "coordinates": [[[139.100656667, 35.045295838], [139.100705006, 35.045294171], [139.100653606, 35.045275559], [139.100656667, 35.045295838]]]}}, {"id": "50404", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "三島市", "N03_005": null, "N03_007": "22206"}, "geometry": {"type": "Polygon", "coordinates": [[[138.92365917, 35.076401667], [138.906096939, 35.085766946], [138.909213891, 35.157270559], [138.923306939, 35.171183892], [139.013829442, 35.182367838], [138.92365917, 35.076401667]]]}}, {"id": "50405", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "富士宮市", "N03_005": null, "N03_007": "22207"}, "geometry": {"type": "Polygon", "coordinates": [[[138.52569725, 35.166372505], [138.532275032, 35.223390838], [138.512123476, 35.313720802], [138.5350862, 35.330564721], [138.531766446, 35.40933336], [138.581888249, 35.445728333], [138.609136031, 35.393176387], [138.66359939, 35.398226667], [138.680535616, 35.357678333], [138.730781414, 35.362798613], [138.742210272, 35.328193054], [138.717726939, 35.275221387], [138.659029728, 35.241085279], [138.664276667, 35.210042775], [138.631166394, 35.206511387], [138.644636109, 35.184395279], [138.576627224, 35.195947505], [138.558377497, 35.184661946], [138.555797782, 35.155354171], [138.52569725, 35.166372505]]]}}, {"id": "50406", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140734332, 34.890903036], [139.073736667, 34.851600559], [139.034577224, 34.883509162], [139.05803834, 34.909244721], [139.044117224, 34.939375829], [139.068744163, 34.979927495], [139.037803891, 34.991313892], [139.051913891, 35.030739441], [139.098569014, 35.031432351], [139.100010441, 35.008917414], [139.082914942, 35.000839829], [139.093761427, 34.978198784], [139.146540804, 34.95495745], [139.140734332, 34.890903036]]]}}, {"id": "50407", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129775253, 34.975901892], [139.132695473, 34.975871568], [139.132932542, 34.97569545], [139.129775253, 34.975901892]]]}}, {"id": "50408", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.097190389, 34.976722775], [139.096833969, 34.976731468], [139.096135642, 34.97778673], [139.097190389, 34.976722775]]]}}, {"id": "50409", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132539741, 34.975031315], [139.133136783, 34.975365081], [139.133223191, 34.975108883], [139.132539741, 34.975031315]]]}}, {"id": "50410", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.086780558, 34.856055559], [139.086755551, 34.855562775], [139.086581115, 34.855985], [139.086780558, 34.856055559]]]}}, {"id": "50411", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.140172581, 34.890417216], [139.139706122, 34.890522081], [139.139586861, 34.890817036], [139.140172581, 34.890417216]]]}}, {"id": "50412", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131210298, 34.961767937], [139.131436628, 34.961981766], [139.131399235, 34.961731441], [139.131210298, 34.961767937]]]}}, {"id": "50413", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.099700999, 34.974821847], [139.099150506, 34.974980243], [139.099207315, 34.975066685], [139.099700999, 34.974821847]]]}}, {"id": "50414", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.122826394, 34.874315279], [139.122636939, 34.874523333], [139.122843061, 34.874563333], [139.122826394, 34.874315279]]]}}, {"id": "50415", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.095345188, 34.978600387], [139.094723943, 34.97879391], [139.095365577, 34.978678802], [139.095345188, 34.978600387]]]}}, {"id": "50416", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147124578, 34.929730883], [139.147613424, 34.929801568], [139.148017471, 34.930001252], [139.147547237, 34.929736838], [139.147124578, 34.929730883]]]}}, {"id": "50417", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146555927, 34.953508811], [139.146665499, 34.953797595], [139.146680195, 34.953494712], [139.146555927, 34.953508811]]]}}, {"id": "50418", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.104662776, 34.869592775], [139.10442083, 34.869562225], [139.104481388, 34.869782775], [139.104662776, 34.869592775]]]}}, {"id": "50419", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.107122776, 34.869032225], [139.106945006, 34.869256108], [139.107164163, 34.869222495], [139.107122776, 34.869032225]]]}}, {"id": "50420", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132781115, 34.881514721], [139.13257, 34.881326946], [139.132503891, 34.881425279], [139.132781115, 34.881514721]]]}}, {"id": "50421", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128743191, 34.965260009], [139.128934604, 34.965475009], [139.129014488, 34.96535209], [139.128743191, 34.965260009]]]}}, {"id": "50422", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.106000272, 34.869918054], [139.105769728, 34.869844441], [139.105785006, 34.869979162], [139.106000272, 34.869918054]]]}}, {"id": "50423", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.098325318, 35.020422793], [139.098378262, 35.020559649], [139.098548003, 35.020409523], [139.098325318, 35.020422793]]]}}, {"id": "50424", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.100791012, 34.973769414], [139.100484812, 34.973950225], [139.100376252, 34.974065793], [139.100791012, 34.973769414]]]}}, {"id": "50425", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130614708, 34.962666991], [139.130460363, 34.962859811], [139.130678547, 34.962781694], [139.130614708, 34.962666991]]]}}, {"id": "50426", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.085986109, 34.855459162], [139.085815279, 34.855358054], [139.08583083, 34.855499721], [139.085986109, 34.855459162]]]}}, {"id": "50427", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.133351401, 34.975261829], [139.133347341, 34.975473324], [139.13346275, 34.975398802], [139.133351401, 34.975261829]]]}}, {"id": "50428", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.105361673, 34.869727495], [139.105323891, 34.869942225], [139.105512776, 34.869789162], [139.105361673, 34.869727495]]]}}, {"id": "50429", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.125355616, 34.970387973], [139.125626991, 34.970415955], [139.125639287, 34.970378036], [139.125355616, 34.970387973]]]}}, {"id": "50430", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146770415, 34.95501464], [139.146471595, 34.955179126], [139.146818418, 34.955089207], [139.146770415, 34.95501464]]]}}, {"id": "50431", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.135927977, 34.886898072], [139.135787756, 34.887101721], [139.135986316, 34.88694527], [139.135927977, 34.886898072]]]}}, {"id": "50432", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132270558, 34.879657775], [139.132270558, 34.879828333], [139.13237083, 34.879731387], [139.132270558, 34.879657775]]]}}, {"id": "50433", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.10512, 34.869678613], [139.105036667, 34.869886946], [139.105218054, 34.869764441], [139.10512, 34.869678613]]]}}, {"id": "50434", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132678262, 34.974985432], [139.133129468, 34.974998766], [139.133213761, 34.974937297], [139.132858625, 34.974913279], [139.132678262, 34.974985432]]]}}, {"id": "50435", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128524838, 34.968772423], [139.128486135, 34.968966523], [139.128618067, 34.968821063], [139.128524838, 34.968772423]]]}}, {"id": "50436", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127035837, 34.876746387], [139.126873061, 34.876815], [139.127058054, 34.876824441], [139.127035837, 34.876746387]]]}}, {"id": "50437", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128253009, 34.967779243], [139.127845863, 34.96778018], [139.127776589, 34.967815604], [139.128253009, 34.967779243]]]}}, {"id": "50438", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.098685577, 35.017996288], [139.098887211, 35.018043252], [139.098917977, 35.018024982], [139.098685577, 35.017996288]]]}}, {"id": "50439", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.090825188, 34.993014261], [139.090878638, 34.993179685], [139.090985694, 34.993154829], [139.090825188, 34.993014261]]]}}, {"id": "50440", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130318949, 34.96063727], [139.13019284, 34.960727622], [139.13045537, 34.960679108], [139.130318949, 34.96063727]]]}}, {"id": "50441", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.134760623, 34.885398982], [139.134855863, 34.885493775], [139.134938612, 34.885426901], [139.134760623, 34.885398982]]]}}, {"id": "50442", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146354877, 34.942556126], [139.146481038, 34.942658766], [139.146524734, 34.942632667], [139.146354877, 34.942556126]]]}}, {"id": "50443", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146712542, 34.954379054], [139.146841077, 34.954350243], [139.1467969, 34.954273856], [139.146712542, 34.954379054]]]}}, {"id": "50444", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.136742918, 34.888928604], [139.136750091, 34.88904882], [139.136837665, 34.888913595], [139.136742918, 34.888928604]]]}}, {"id": "50445", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137201907, 34.973724162], [139.137291608, 34.973809964], [139.137374942, 34.973725063], [139.137201907, 34.973724162]]]}}, {"id": "50446", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146822853, 34.95342391], [139.146884436, 34.953304505], [139.146839261, 34.953283468], [139.146822853, 34.95342391]]]}}, {"id": "50447", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.098617873, 35.017758279], [139.098500584, 35.017662126], [139.098503126, 35.017741081], [139.098617873, 35.017758279]]]}}, {"id": "50448", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146535422, 34.950005477], [139.146344786, 34.950170378], [139.146312438, 34.950232757], [139.146535422, 34.950005477]]]}}, {"id": "50449", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146784176, 34.954716811], [139.146718755, 34.954807126], [139.146813787, 34.954737748], [139.146784176, 34.954716811]]]}}, {"id": "50450", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145475759, 34.927544135], [139.145626524, 34.927536396], [139.145620908, 34.927518667], [139.145475759, 34.927544135]]]}}, {"id": "50451", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.132418664, 34.975935117], [139.132499222, 34.976042694], [139.132524215, 34.975989378], [139.132418664, 34.975935117]]]}}, {"id": "50452", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.098077406, 35.015931081], [139.098186926, 35.015878793], [139.098126848, 35.015845378], [139.098077406, 35.015931081]]]}}, {"id": "50453", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131040817, 34.96137191], [139.131176485, 34.961399775], [139.131140558, 34.961312883], [139.131040817, 34.96137191]]]}}, {"id": "50454", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.131814929, 34.975199604], [139.131750182, 34.975311721], [139.131907211, 34.975195072], [139.131814929, 34.975199604]]]}}, {"id": "50455", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129045863, 34.965417459], [139.129143204, 34.965429216], [139.129170687, 34.965329198], [139.129045863, 34.965417459]]]}}, {"id": "50456", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130093826, 34.962941847], [139.129961907, 34.962946234], [139.129976355, 34.963001414], [139.130093826, 34.962941847]]]}}, {"id": "50457", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.139447069, 34.894520378], [139.139440454, 34.894598667], [139.139498184, 34.894579342], [139.139447069, 34.894520378]]]}}, {"id": "50458", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146694034, 34.949931261], [139.146502244, 34.949935252], [139.146473891, 34.949963441], [139.146694034, 34.949931261]]]}}, {"id": "50459", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146258003, 34.94788627], [139.146385136, 34.947847189], [139.146451271, 34.947834216], [139.146335681, 34.947809775], [139.146258003, 34.94788627]]]}}, {"id": "50460", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146577043, 34.942365009], [139.146776485, 34.942391351], [139.146579585, 34.94235382], [139.146577043, 34.942365009]]]}}, {"id": "50461", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146431842, 34.950366883], [139.146563619, 34.950305964], [139.146539118, 34.950281216], [139.146431842, 34.950366883]]]}}, {"id": "50462", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14570332, 34.953145369], [139.145773878, 34.953164829], [139.145770778, 34.95314627], [139.14570332, 34.953145369]]]}}, {"id": "50463", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137000765, 34.88923727], [139.137071128, 34.889169198], [139.137026368, 34.889152937], [139.137000765, 34.88923727]]]}}, {"id": "50464", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145505888, 34.927687667], [139.145469144, 34.927622333], [139.145418003, 34.927675874], [139.145505888, 34.927687667]]]}}, {"id": "50465", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145899883, 34.953162712], [139.145881102, 34.953266117], [139.145940493, 34.953175928], [139.145899883, 34.953162712]]]}}, {"id": "50466", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146603917, 34.947140541], [139.14654035, 34.947202901], [139.146714267, 34.947196838], [139.146603917, 34.947140541]]]}}, {"id": "50467", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128066018, 34.966336432], [139.12791332, 34.96637382], [139.12816201, 34.966359919], [139.128066018, 34.966336432]]]}}, {"id": "50468", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13075048, 34.960922955], [139.130585162, 34.960911559], [139.130778379, 34.960948324], [139.13075048, 34.960922955]]]}}, {"id": "50469", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.138365409, 34.90535009], [139.138499689, 34.905225441], [139.138334553, 34.905350793], [139.138365409, 34.90535009]]]}}, {"id": "50470", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.090885798, 34.992957081], [139.090986342, 34.992909622], [139.090970856, 34.992872919], [139.090885798, 34.992957081]]]}}, {"id": "50471", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146263126, 34.951538604], [139.146341894, 34.951502306], [139.146262815, 34.951484784], [139.146263126, 34.951538604]]]}}, {"id": "50472", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.14631214, 34.942425288], [139.146128482, 34.942374613], [139.146099987, 34.942384225], [139.14631214, 34.942425288]]]}}, {"id": "50473", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145265655, 34.952972], [139.145325953, 34.953024324], [139.145348949, 34.952969396], [139.145265655, 34.952972]]]}}, {"id": "50474", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147143684, 34.949708279], [139.147134864, 34.949784315], [139.147198054, 34.94977136], [139.147143684, 34.949708279]]]}}, {"id": "50475", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.145914851, 34.942466072], [139.145847224, 34.942497532], [139.146041816, 34.942505063], [139.145914851, 34.942466072]]]}}, {"id": "50476", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130717575, 34.960972712], [139.130517951, 34.960957874], [139.130721038, 34.960981613], [139.130717575, 34.960972712]]]}}, {"id": "50477", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.148476952, 34.935923306], [139.148467639, 34.935976721], [139.148576913, 34.935953604], [139.148476952, 34.935923306]]]}}, {"id": "50478", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130986835, 34.962400577], [139.130986628, 34.962488468], [139.131035759, 34.962411766], [139.130986835, 34.962400577]]]}}, {"id": "50479", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146520843, 34.954800613], [139.146603982, 34.954789802], [139.146588482, 34.954769414], [139.146520843, 34.954800613]]]}}, {"id": "50480", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146369261, 34.950399766], [139.146398833, 34.950443595], [139.146392776, 34.950383054], [139.146369261, 34.950399766]]]}}, {"id": "50481", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.13751869, 34.889647784], [139.137509818, 34.889591216], [139.137482633, 34.889640495], [139.13751869, 34.889647784]]]}}, {"id": "50482", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146478184, 34.947427874], [139.146495798, 34.947481784], [139.146584617, 34.947457865], [139.146478184, 34.947427874]]]}}, {"id": "50483", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.146385733, 34.947589279], [139.146316874, 34.947631117], [139.146442685, 34.947606378], [139.146385733, 34.947589279]]]}}, {"id": "50484", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.127847173, 34.967737532], [139.127710272, 34.967778901], [139.127882763, 34.967751324], [139.127847173, 34.967737532]]]}}, {"id": "50485", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129282503, 34.963641622], [139.129308327, 34.963695486], [139.129344047, 34.963655279], [139.129282503, 34.963641622]]]}}, {"id": "50486", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129124488, 34.963827063], [139.129155512, 34.963875036], [139.129188508, 34.963836108], [139.129124488, 34.963827063]]]}}, {"id": "50487", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.137392516, 34.889588045], [139.137429014, 34.889525477], [139.137385811, 34.889540847], [139.137392516, 34.889588045]]]}}, {"id": "50488", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129786187, 34.960687721], [139.129839611, 34.960715117], [139.129858184, 34.960681216], [139.129786187, 34.960687721]]]}}, {"id": "50489", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129462827, 34.965083207], [139.129513113, 34.965114315], [139.129507121, 34.965075586], [139.129462827, 34.965083207]]]}}, {"id": "50490", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147020117, 34.954686622], [139.147071842, 34.954638027], [139.147018444, 34.954641739], [139.147020117, 34.954686622]]]}}, {"id": "50491", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.133663204, 34.975289405], [139.133687678, 34.975254027], [139.133616044, 34.975267387], [139.133663204, 34.975289405]]]}}, {"id": "50492", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.129205655, 34.965777486], [139.129234591, 34.965810243], [139.129270765, 34.965787072], [139.129205655, 34.965777486]]]}}, {"id": "50493", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.130090597, 34.96281918], [139.130097289, 34.962864847], [139.130135538, 34.96281218], [139.130090597, 34.96281918]]]}}, {"id": "50494", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.147086096, 34.954973658], [139.147134864, 34.954909658], [139.147127756, 34.954897892], [139.147086096, 34.954973658]]]}}, {"id": "50495", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.12835511, 34.966422649], [139.128430182, 34.966444892], [139.128437951, 34.966428802], [139.12835511, 34.966422649]]]}}, {"id": "50496", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.128247069, 34.966399775], [139.128190739, 34.966364099], [139.128187847, 34.966373036], [139.128247069, 34.966399775]]]}}, {"id": "50497", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊東市", "N03_005": null, "N03_007": "22208"}, "geometry": {"type": "Polygon", "coordinates": [[[139.133847237, 34.975537243], [139.133873463, 34.975514757], [139.13383358, 34.975512351], [139.133847237, 34.975537243]]]}}, {"id": "50498", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "島田市", "N03_005": null, "N03_007": "22209"}, "geometry": {"type": "Polygon", "coordinates": [[[138.122661946, 34.792905], [138.093449442, 34.839394162], [138.047301673, 34.859798333], [138.057843891, 34.906574162], [138.012062218, 34.940442775], [138.011489728, 34.981110829], [138.055388612, 35.001091667], [138.082246394, 34.972578333], [138.103052503, 34.976495], [138.149653891, 35.061073892], [138.16106834, 35.046266946], [138.184803606, 35.064157775], [138.199491673, 35.050142225], [138.189504163, 35.000476387], [138.160524163, 34.964027495], [138.152483333, 34.922023333], [138.199215279, 34.880269162], [138.221102218, 34.844906108], [138.212528885, 34.837614162], [138.233247782, 34.839964162], [138.218420272, 34.824721946], [138.250803061, 34.802792495], [138.226569442, 34.785693054], [138.158671946, 34.801590559], [138.14691, 34.790863054], [138.129764449, 34.807400279], [138.122661946, 34.792905]]]}}, {"id": "50499", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "富士市", "N03_005": null, "N03_007": "22210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.638537289, 35.116491459], [138.563854721, 35.151158613], [138.558377497, 35.184661946], [138.576915837, 35.195975838], [138.644636109, 35.184395279], [138.631193606, 35.20655], [138.664276667, 35.210042775], [138.659029728, 35.241085279], [138.728506667, 35.295352225], [138.742234721, 35.328364171], [138.732144475, 35.359116667], [138.811656109, 35.219243054], [138.77059083, 35.187629171], [138.762881673, 35.166678613], [138.778266109, 35.164634721], [138.75252144, 35.131510153], [138.685596122, 35.144966748], [138.698021505, 35.134447694], [138.638537289, 35.116491459]]]}}, {"id": "50500", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "富士市", "N03_005": null, "N03_007": "22210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.701004306, 35.135666225], [138.700770169, 35.135231108], [138.700831556, 35.135690387], [138.701004306, 35.135666225]]]}}, {"id": "50501", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "富士市", "N03_005": null, "N03_007": "22210"}, "geometry": {"type": "Polygon", "coordinates": [[[138.698874721, 35.136224865], [138.698746057, 35.136203054], [138.698816005, 35.136266775], [138.698874721, 35.136224865]]]}}, {"id": "50502", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "磐田市", "N03_005": null, "N03_007": "22211"}, "geometry": {"type": "Polygon", "coordinates": [[[137.787204163, 34.656821667], [137.829921946, 34.789866108], [137.822615837, 34.856414441], [137.909186394, 34.891061387], [137.869205006, 34.816160829], [137.849828885, 34.808460802], [137.864186109, 34.779046667], [137.886576939, 34.774416387], [137.902056939, 34.735610829], [137.894319728, 34.693818054], [137.911350272, 34.689698054], [137.911298275, 34.663842865], [137.800201025, 34.646246658], [137.787204163, 34.656821667]]]}}, {"id": "50503", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "磐田市", "N03_005": null, "N03_007": "22211"}, "geometry": {"type": "Polygon", "coordinates": [[[137.901687211, 34.666635234], [137.903222036, 34.665226712], [137.901677458, 34.666628685], [137.901687211, 34.666635234]]]}}, {"id": "50504", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.294263113, 34.767374414], [138.236778054, 34.815806108], [138.283465551, 34.827575279], [138.275872503, 34.864734441], [138.326174449, 34.922627495], [138.348597224, 34.895749225], [138.324396446, 34.872590865], [138.337219027, 34.828463315], [138.301870337, 34.778810306], [138.288695837, 34.781236802], [138.305766809, 34.777495775], [138.294263113, 34.767374414]]]}}, {"id": "50505", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33720655, 34.869227721], [138.329378586, 34.860832937], [138.330310402, 34.863495982], [138.33720655, 34.869227721]]]}}, {"id": "50506", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.326384981, 34.854667802], [138.32941096, 34.852246703], [138.329853696, 34.852222532], [138.329264306, 34.852194207], [138.32656406, 34.85401691], [138.326384981, 34.854667802]]]}}, {"id": "50507", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.312271141, 34.791327027], [138.312087639, 34.791479198], [138.312286615, 34.791485198], [138.312271141, 34.791327027]]]}}, {"id": "50508", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.343948197, 34.892380054], [138.344028029, 34.892287865], [138.34388297, 34.89232464], [138.343948197, 34.892380054]]]}}, {"id": "50509", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.334605473, 34.877751775], [138.334588716, 34.877648162], [138.334517951, 34.877707748], [138.334605473, 34.877751775]]]}}, {"id": "50510", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338579559, 34.881887468], [138.338603217, 34.881989387], [138.338653217, 34.881927775], [138.338579559, 34.881887468]]]}}, {"id": "50511", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.341784578, 34.890850973], [138.341802309, 34.89079436], [138.341752244, 34.890818198], [138.341784578, 34.890850973]]]}}, {"id": "50512", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338680078, 34.882118667], [138.338620584, 34.882165279], [138.338682477, 34.882193946], [138.338680078, 34.882118667]]]}}, {"id": "50513", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338800143, 34.884730892], [138.338849883, 34.884743108], [138.338823722, 34.884700892], [138.338800143, 34.884730892]]]}}, {"id": "50514", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33874345, 34.882218532], [138.338694358, 34.882208829], [138.338726446, 34.882249973], [138.33874345, 34.882218532]]]}}, {"id": "50515", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33538358, 34.878344946], [138.33545061, 34.878314279], [138.335352776, 34.878325495], [138.33538358, 34.878344946]]]}}, {"id": "50516", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33841, 34.885248559], [138.338376783, 34.885275919], [138.338427004, 34.885277946], [138.33841, 34.885248559]]]}}, {"id": "50517", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.344113606, 34.892786225], [138.344086783, 34.892753721], [138.344079053, 34.892783306], [138.344113606, 34.892786225]]]}}, {"id": "50518", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.336934332, 34.879561135], [138.336970052, 34.879588865], [138.336957367, 34.879538108], [138.336934332, 34.879561135]]]}}, {"id": "50519", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338685811, 34.885904829], [138.338699637, 34.885946414], [138.338709079, 34.885928027], [138.338685811, 34.885904829]]]}}, {"id": "50520", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338936304, 34.886607973], [138.338910311, 34.886631559], [138.338948495, 34.886635027], [138.338936304, 34.886607973]]]}}, {"id": "50521", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338699222, 34.882343333], [138.338722192, 34.882289919], [138.33868144, 34.882326198], [138.338699222, 34.882343333]]]}}, {"id": "50522", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338647756, 34.886243468], [138.338642555, 34.886272775], [138.33868655, 34.886256495], [138.338647756, 34.886243468]]]}}, {"id": "50523", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33914703, 34.886423613], [138.339138145, 34.886383495], [138.339113839, 34.886390775], [138.33914703, 34.886423613]]]}}, {"id": "50524", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33895, 34.88771836], [138.338922892, 34.887704081], [138.338919274, 34.887756], [138.33895, 34.88771836]]]}}, {"id": "50525", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338808145, 34.882151387], [138.338770052, 34.882149694], [138.3387838, 34.882171441], [138.338808145, 34.882151387]]]}}, {"id": "50526", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.340005888, 34.888662162], [138.340033722, 34.888640829], [138.340000778, 34.888644135], [138.340005888, 34.888662162]]]}}, {"id": "50527", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338743722, 34.882143], [138.338721336, 34.882171802], [138.338747613, 34.88216564], [138.338743722, 34.882143]]]}}, {"id": "50528", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339040169, 34.882765135], [138.339033217, 34.882798414], [138.339056109, 34.882779586], [138.339040169, 34.882765135]]]}}, {"id": "50529", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338843113, 34.880814054], [138.338827834, 34.880793586], [138.338815668, 34.880808613], [138.338843113, 34.880814054]]]}}, {"id": "50530", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33832847, 34.885251054], [138.338350272, 34.885237748], [138.338326446, 34.88523464], [138.33832847, 34.885251054]]]}}, {"id": "50531", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339309001, 34.888368721], [138.339312633, 34.888344387], [138.339291193, 34.888357054], [138.339309001, 34.888368721]]]}}, {"id": "50532", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.34475345, 34.892506054], [138.344725746, 34.892510414], [138.344753191, 34.892519108], [138.34475345, 34.892506054]]]}}, {"id": "50533", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338823113, 34.881925225], [138.338821089, 34.881901495], [138.338802802, 34.881905721], [138.338823113, 34.881925225]]]}}, {"id": "50534", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339204838, 34.88781], [138.339213969, 34.887836162], [138.339225811, 34.887829495], [138.339204838, 34.88781]]]}}, {"id": "50535", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338916641, 34.882557], [138.338941803, 34.882554333], [138.338924527, 34.882539802], [138.338916641, 34.882557]]]}}, {"id": "50536", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338606835, 34.88634636], [138.338599248, 34.886371054], [138.338622892, 34.886359198], [138.338606835, 34.88634636]]]}}, {"id": "50537", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338457717, 34.88545064], [138.338451997, 34.885474613], [138.338468859, 34.88546364], [138.338457717, 34.88545064]]]}}, {"id": "50538", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338624332, 34.882103252], [138.338654501, 34.882108973], [138.338649494, 34.882095559], [138.338624332, 34.882103252]]]}}, {"id": "50539", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339153385, 34.882096387], [138.339137562, 34.882076721], [138.339125863, 34.882079865], [138.339153385, 34.882096387]]]}}, {"id": "50540", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338690052, 34.884799333], [138.338694475, 34.884780613], [138.338676641, 34.884781468], [138.338690052, 34.884799333]]]}}, {"id": "50541", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338654643, 34.882209495], [138.338629922, 34.882212613], [138.338639754, 34.882222829], [138.338654643, 34.882209495]]]}}, {"id": "50542", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.33880297, 34.882606802], [138.338825888, 34.882582135], [138.338815383, 34.88257436], [138.33880297, 34.882606802]]]}}, {"id": "50543", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338948418, 34.887734946], [138.338971582, 34.887751387], [138.338955032, 34.887718441], [138.338948418, 34.887734946]]]}}, {"id": "50544", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339063087, 34.882115919], [138.339059105, 34.882138721], [138.339072698, 34.882131252], [138.339063087, 34.882115919]]]}}, {"id": "50545", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339236667, 34.888203468], [138.339251855, 34.888210865], [138.339236394, 34.888185441], [138.339236667, 34.888203468]]]}}, {"id": "50546", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.344173165, 34.892836135], [138.344155694, 34.892818919], [138.344150752, 34.892825387], [138.344173165, 34.892836135]]]}}, {"id": "50547", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338721336, 34.882282775], [138.338734086, 34.882262441], [138.338718301, 34.882267919], [138.338721336, 34.882282775]]]}}, {"id": "50548", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338891505, 34.887467748], [138.338886861, 34.887489829], [138.338900117, 34.887482802], [138.338891505, 34.887467748]]]}}, {"id": "50549", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339240441, 34.888125225], [138.339223995, 34.888139973], [138.339238003, 34.888144225], [138.339240441, 34.888125225]]]}}, {"id": "50550", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.341027471, 34.889771333], [138.341028301, 34.88979236], [138.341041219, 34.889785973], [138.341027471, 34.889771333]]]}}, {"id": "50551", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338801582, 34.881693054], [138.338799754, 34.881678532], [138.338790752, 34.881691946], [138.338801582, 34.881693054]]]}}, {"id": "50552", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338348106, 34.884729829], [138.33835153, 34.88470964], [138.338343191, 34.884713333], [138.338348106, 34.884729829]]]}}, {"id": "50553", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338446835, 34.884415532], [138.338438145, 34.884399027], [138.338431751, 34.884410559], [138.338446835, 34.884415532]]]}}, {"id": "50554", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.338614812, 34.884966559], [138.338618638, 34.884952225], [138.338603969, 34.884956441], [138.338614812, 34.884966559]]]}}, {"id": "50555", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "焼津市", "N03_005": null, "N03_007": "22212"}, "geometry": {"type": "Polygon", "coordinates": [[[138.339148638, 34.888068667], [138.339151141, 34.888080468], [138.339161971, 34.888076532], [138.339148638, 34.888068667]]]}}, {"id": "50556", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "掛川市", "N03_005": null, "N03_007": "22213"}, "geometry": {"type": "Polygon", "coordinates": [[[138.079015006, 34.646886387], [137.970170363, 34.665355865], [137.952522218, 34.688032495], [138.00963834, 34.737243892], [137.95736917, 34.755879162], [137.937435551, 34.790161387], [137.961826667, 34.861409721], [138.010638612, 34.913678333], [138.039393606, 34.920140829], [138.057867782, 34.906469162], [138.047341388, 34.859729441], [138.093190558, 34.839610829], [138.102405006, 34.817205559], [138.053903891, 34.769896946], [138.061899442, 34.745629441], [138.043535006, 34.736591387], [138.078560558, 34.702362495], [138.06681917, 34.695125559], [138.068718612, 34.676850279], [138.086847224, 34.672852775], [138.079015006, 34.646886387]]]}}, {"id": "50557", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "藤枝市", "N03_005": null, "N03_007": "22214"}, "geometry": {"type": "Polygon", "coordinates": [[[138.277096394, 34.833171667], [138.244616939, 34.816107775], [138.218420272, 34.824721946], [138.233247782, 34.839964162], [138.212528885, 34.837614162], [138.221102218, 34.844906108], [138.197144449, 34.883014162], [138.162821946, 34.901751387], [138.151693891, 34.928459162], [138.184978612, 35.013652505], [138.215236939, 35.015682505], [138.215029728, 35.003767775], [138.260397497, 34.992135279], [138.327486109, 34.913347495], [138.292989728, 34.896458892], [138.277096394, 34.833171667]]]}}, {"id": "50558", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御殿場市", "N03_005": null, "N03_007": "22215"}, "geometry": {"type": "Polygon", "coordinates": [[[138.993186031, 35.284884721], [138.976074112, 35.235552838], [138.924523891, 35.214816667], [138.896863061, 35.234384441], [138.874696667, 35.279863054], [138.812158612, 35.264325838], [138.731686693, 35.360136387], [138.884083061, 35.332604721], [138.880129728, 35.337866108], [138.886240272, 35.342225838], [138.884856667, 35.354933333], [138.886186161, 35.359973892], [138.888635136, 35.361966387], [138.905099442, 35.354305559], [138.892374163, 35.346161667], [138.971288054, 35.330095], [138.965573606, 35.310906108], [138.993186031, 35.284884721]]]}}, {"id": "50559", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "袋井市", "N03_005": null, "N03_007": "22216"}, "geometry": {"type": "Polygon", "coordinates": [[[137.969785551, 34.666184441], [137.911932309, 34.666481279], [137.910671673, 34.690860559], [137.894319728, 34.693818054], [137.902056939, 34.735610829], [137.886576939, 34.774416387], [137.864186109, 34.779046667], [137.851176835, 34.811390532], [137.890817497, 34.813615], [137.884365006, 34.784275279], [137.920406939, 34.796992495], [137.938755279, 34.822186108], [137.95736917, 34.755879162], [138.007943891, 34.740549162], [137.952522218, 34.688032495], [137.969785551, 34.666184441]]]}}, {"id": "50560", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896289728, 34.690598333], [138.846132503, 34.715134721], [138.896361388, 34.773822775], [138.944051115, 34.766790559], [138.965166394, 34.722694441], [138.992828781, 34.71782018], [138.97327262, 34.69007064], [138.987516965, 34.658300712], [138.958042192, 34.652771342], [138.964131971, 34.672872342], [138.948246122, 34.673806892], [138.904801634, 34.629232009], [138.890849728, 34.65001], [138.903286394, 34.669920279], [138.883769728, 34.680483613], [138.896289728, 34.690598333]]]}}, {"id": "50561", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.946053774, 34.66524127], [138.947076822, 34.662563811], [138.944692633, 34.663813288], [138.946053774, 34.66524127]]]}}, {"id": "50562", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941300558, 34.573837495], [138.940970272, 34.576537775], [138.94334, 34.573609721], [138.941300558, 34.573837495]]]}}, {"id": "50563", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965206239, 34.650965892], [138.96448035, 34.652433892], [138.964976537, 34.652672342], [138.965843476, 34.651730198], [138.965206239, 34.650965892]]]}}, {"id": "50564", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989970246, 34.660845135], [138.991298042, 34.659661514], [138.989698249, 34.660771676], [138.989970246, 34.660845135]]]}}, {"id": "50565", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983291971, 34.657783387], [138.983035486, 34.657069775], [138.98237406, 34.657211135], [138.983291971, 34.657783387]]]}}, {"id": "50566", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987453696, 34.659606541], [138.987945486, 34.660045225], [138.987891038, 34.659522477], [138.987453696, 34.659606541]]]}}, {"id": "50567", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917271375, 34.642204495], [138.917370467, 34.642824405], [138.91788406, 34.642614847], [138.917271375, 34.642204495]]]}}, {"id": "50568", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.967924916, 34.652791333], [138.968442659, 34.652321279], [138.968582464, 34.651226216], [138.967924916, 34.652791333]]]}}, {"id": "50569", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984876161, 34.709590072], [138.984369157, 34.709677721], [138.984888664, 34.710328892], [138.984876161, 34.709590072]]]}}, {"id": "50570", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.948717951, 34.660246577], [138.947043826, 34.662088568], [138.9488607, 34.660333946], [138.948717951, 34.660246577]]]}}, {"id": "50571", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.905304838, 34.631358559], [138.905980091, 34.630984072], [138.906427678, 34.630645234], [138.905823256, 34.630534288], [138.905304838, 34.631358559]]]}}, {"id": "50572", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957405188, 34.652610919], [138.957468262, 34.653270414], [138.95814978, 34.652497243], [138.957405188, 34.652610919]]]}}, {"id": "50573", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.959931479, 34.653975054], [138.959928444, 34.654728459], [138.960475305, 34.654327387], [138.959931479, 34.653975054]]]}}, {"id": "50574", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912342412, 34.632475838], [138.912579364, 34.632839432], [138.912486757, 34.632880856], [138.912342412, 34.632475838]]]}}, {"id": "50575", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983802335, 34.708738901], [138.984321453, 34.708948694], [138.984347367, 34.708787405], [138.983802335, 34.708738901]]]}}, {"id": "50576", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.956032698, 34.654527901], [138.955842503, 34.654160342], [138.955643632, 34.654641054], [138.956032698, 34.654527901]]]}}, {"id": "50577", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.953043268, 34.657419928], [138.954217367, 34.657292865], [138.954155266, 34.657127577], [138.953043268, 34.657419928]]]}}, {"id": "50578", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98006131, 34.669214523], [138.980213489, 34.669208333], [138.980590117, 34.669218658], [138.980570895, 34.668914207], [138.98006131, 34.669214523]]]}}, {"id": "50579", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917857497, 34.642016775], [138.918039287, 34.641355523], [138.91756607, 34.641872], [138.917857497, 34.642016775]]]}}, {"id": "50580", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986439092, 34.65784155], [138.986812257, 34.657418964], [138.986393709, 34.657392865], [138.986439092, 34.65784155]]]}}, {"id": "50581", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990576861, 34.716067279], [138.99079799, 34.715668829], [138.990263735, 34.715807649], [138.990576861, 34.716067279]]]}}, {"id": "50582", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985785071, 34.663026054], [138.985811764, 34.662590514], [138.985644488, 34.662830171], [138.985785071, 34.663026054]]]}}, {"id": "50583", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.948499702, 34.663660505], [138.948954397, 34.663769901], [138.948706252, 34.663419856], [138.948499702, 34.663660505]]]}}, {"id": "50584", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984421154, 34.709105432], [138.984645253, 34.709101297], [138.985013139, 34.708800441], [138.984421154, 34.709105432]]]}}, {"id": "50585", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955482905, 34.673517991], [138.95494786, 34.673593198], [138.95501594, 34.673871324], [138.955482905, 34.673517991]]]}}, {"id": "50586", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.945153217, 34.664535072], [138.944918327, 34.664233198], [138.944724643, 34.66451509], [138.945153217, 34.664535072]]]}}, {"id": "50587", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979264591, 34.653701], [138.978989546, 34.653432441], [138.979052257, 34.653809838], [138.979264591, 34.653701]]]}}, {"id": "50588", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983330558, 34.676815559], [138.983813891, 34.676744162], [138.983747782, 34.676636667], [138.983330558, 34.676815559]]]}}, {"id": "50589", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982182983, 34.675094369], [138.982621245, 34.674741586], [138.982703437, 34.674273559], [138.982182983, 34.675094369]]]}}, {"id": "50590", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913310765, 34.636201694], [138.913389611, 34.635802775], [138.913079974, 34.636158667], [138.913310765, 34.636201694]]]}}, {"id": "50591", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.948563502, 34.664182613], [138.948275175, 34.663745901], [138.948155642, 34.66391609], [138.948563502, 34.664182613]]]}}, {"id": "50592", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.951448003, 34.657772739], [138.952575318, 34.657556351], [138.953042477, 34.657414072], [138.951448003, 34.657772739]]]}}, {"id": "50593", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942297782, 34.665634766], [138.942606887, 34.665388072], [138.942025435, 34.665408658], [138.942297782, 34.665634766]]]}}, {"id": "50594", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968526355, 34.655099243], [138.968791077, 34.654623586], [138.968251492, 34.654914144], [138.968526355, 34.655099243]]]}}, {"id": "50595", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990056939, 34.659390919], [138.98927415, 34.659506568], [138.989207873, 34.659684432], [138.990056939, 34.659390919]]]}}, {"id": "50596", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976719481, 34.700030054], [138.976798703, 34.699492802], [138.976661284, 34.699494243], [138.976719481, 34.700030054]]]}}, {"id": "50597", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.925207354, 34.654308982], [138.924820558, 34.654725117], [138.924650311, 34.654802243], [138.924945798, 34.654682216], [138.925207354, 34.654308982]]]}}, {"id": "50598", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955799222, 34.655202297], [138.955558638, 34.654979982], [138.955582062, 34.655412351], [138.955799222, 34.655202297]]]}}, {"id": "50599", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983975551, 34.708111108], [138.983875006, 34.708353892], [138.984084163, 34.708182225], [138.983975551, 34.708111108]]]}}, {"id": "50600", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.938776472, 34.666427928], [138.938940065, 34.665854964], [138.938615875, 34.666306351], [138.938776472, 34.666427928]]]}}, {"id": "50601", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.977799637, 34.673293279], [138.977985279, 34.672823135], [138.977697393, 34.673199297], [138.977799637, 34.673293279]]]}}, {"id": "50602", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949396641, 34.667210342], [138.949386641, 34.667600279], [138.949592594, 34.667490532], [138.949396641, 34.667210342]]]}}, {"id": "50603", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98984607, 34.659897063], [138.989137263, 34.659995919], [138.989190363, 34.660287252], [138.98984607, 34.659897063]]]}}, {"id": "50604", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970212399, 34.653853261], [138.969787938, 34.653568396], [138.970008859, 34.65393555], [138.970212399, 34.653853261]]]}}, {"id": "50605", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983484449, 34.677377775], [138.983944721, 34.677068613], [138.983330558, 34.677308333], [138.983484449, 34.677377775]]]}}, {"id": "50606", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986240882, 34.661096532], [138.985847458, 34.661378198], [138.986291907, 34.661312964], [138.986240882, 34.661096532]]]}}, {"id": "50607", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.977760078, 34.653666252], [138.977425875, 34.653410541], [138.977629274, 34.653724459], [138.977760078, 34.653666252]]]}}, {"id": "50608", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940516667, 34.572953054], [138.940099728, 34.573107775], [138.940555006, 34.573074162], [138.940516667, 34.572953054]]]}}, {"id": "50609", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955290467, 34.654976838], [138.955249222, 34.654636577], [138.955109326, 34.654989144], [138.955290467, 34.654976838]]]}}, {"id": "50610", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986690039, 34.658160045], [138.986867808, 34.658074414], [138.986566978, 34.657938586], [138.986690039, 34.658160045]]]}}, {"id": "50611", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984984345, 34.709963766], [138.985233152, 34.709966108], [138.985034293, 34.709581694], [138.984984345, 34.709963766]]]}}, {"id": "50612", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.914013178, 34.637097676], [138.914432127, 34.637252216], [138.913835927, 34.636987396], [138.914013178, 34.637097676]]]}}, {"id": "50613", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990426187, 34.660973477], [138.990143606, 34.661084423], [138.990271375, 34.661178748], [138.990426187, 34.660973477]]]}}, {"id": "50614", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968335149, 34.650702757], [138.96862345, 34.650793874], [138.96854476, 34.650633703], [138.968335149, 34.650702757]]]}}, {"id": "50615", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985108755, 34.709527036], [138.985400934, 34.709684622], [138.985349702, 34.709380117], [138.985108755, 34.709527036]]]}}, {"id": "50616", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940935266, 34.661980811], [138.941040739, 34.66193355], [138.941215875, 34.661588991], [138.941077393, 34.661541261], [138.940935266, 34.661980811]]]}}, {"id": "50617", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912650415, 34.635160604], [138.91236751, 34.63501182], [138.912239274, 34.635196162], [138.912650415, 34.635160604]]]}}, {"id": "50618", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.966037224, 34.647959721], [138.965866667, 34.648118613], [138.966057497, 34.647987775], [138.966037224, 34.647959721]]]}}, {"id": "50619", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917020661, 34.647337964], [138.917299572, 34.647159414], [138.917327173, 34.646746333], [138.917020661, 34.647337964]]]}}, {"id": "50620", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.988987886, 34.65960382], [138.988611894, 34.659488495], [138.988574708, 34.659564459], [138.988987886, 34.65960382]]]}}, {"id": "50621", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.910164591, 34.633681577], [138.909850402, 34.633622676], [138.909865538, 34.63375064], [138.910164591, 34.633681577]]]}}, {"id": "50622", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976498184, 34.699109126], [138.975684073, 34.699179108], [138.975457095, 34.699322883], [138.976498184, 34.699109126]]]}}, {"id": "50623", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950000363, 34.65923855], [138.950513359, 34.658672036], [138.949869339, 34.659280234], [138.950000363, 34.65923855]]]}}, {"id": "50624", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939547458, 34.666738874], [138.939501946, 34.666446865], [138.939457523, 34.666774811], [138.939547458, 34.666738874]]]}}, {"id": "50625", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.988955577, 34.659657135], [138.988669313, 34.659660901], [138.988473554, 34.659618234], [138.988692672, 34.659828937], [138.988955577, 34.659657135]]]}}, {"id": "50626", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986879235, 34.662473207], [138.986847354, 34.662654991], [138.987138327, 34.662467036], [138.986879235, 34.662473207]]]}}, {"id": "50627", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978906407, 34.673817676], [138.978832023, 34.673538225], [138.978709611, 34.673694856], [138.978906407, 34.673817676]]]}}, {"id": "50628", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.944175577, 34.666412703], [138.943707095, 34.666255559], [138.944178197, 34.666452631], [138.944175577, 34.666412703]]]}}, {"id": "50629", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983369792, 34.708333333], [138.983531453, 34.708506937], [138.983616096, 34.708333333], [138.983369792, 34.708333333]]]}}, {"id": "50630", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.935620623, 34.658963432], [138.935916381, 34.659106892], [138.935992685, 34.658886468], [138.935620623, 34.658963432]]]}}, {"id": "50631", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970181634, 34.654181351], [138.970223113, 34.653952748], [138.970083204, 34.654177315], [138.970181634, 34.654181351]]]}}, {"id": "50632", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911193606, 34.633934865], [138.910977782, 34.633874468], [138.91099751, 34.634024685], [138.911193606, 34.633934865]]]}}, {"id": "50633", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982483243, 34.659107486], [138.982301569, 34.658877234], [138.98228153, 34.65918564], [138.982483243, 34.659107486]]]}}, {"id": "50634", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979709222, 34.678037919], [138.979404423, 34.677942198], [138.979527393, 34.678147712], [138.979709222, 34.678037919]]]}}, {"id": "50635", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.981897458, 34.675423108], [138.982105383, 34.675619631], [138.982147315, 34.675453946], [138.981897458, 34.675423108]]]}}, {"id": "50636", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942148638, 34.665924964], [138.941996433, 34.666048477], [138.942323022, 34.666031604], [138.942148638, 34.665924964]]]}}, {"id": "50637", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90928882, 34.63196036], [138.909323398, 34.631672928], [138.909178353, 34.632007423], [138.90928882, 34.63196036]]]}}, {"id": "50638", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.967450169, 34.652407577], [138.967559105, 34.652106505], [138.967378067, 34.652350973], [138.967450169, 34.652407577]]]}}, {"id": "50639", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939125551, 34.576351946], [138.939283606, 34.576613613], [138.939168885, 34.576289162], [138.939125551, 34.576351946]]]}}, {"id": "50640", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982775681, 34.658775748], [138.982819053, 34.658579946], [138.982720869, 34.65875], [138.982775681, 34.658775748]]]}}, {"id": "50641", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911124553, 34.634109631], [138.911286135, 34.63405445], [138.911377497, 34.634001495], [138.911430519, 34.633871405], [138.911124553, 34.634109631]]]}}, {"id": "50642", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983156446, 34.658814441], [138.982892179, 34.658923315], [138.983135435, 34.658915045], [138.983156446, 34.658814441]]]}}, {"id": "50643", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985715772, 34.661265315], [138.985828612, 34.661046883], [138.985559611, 34.661054171], [138.985715772, 34.661265315]]]}}, {"id": "50644", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.975730246, 34.653570784], [138.975521102, 34.653568982], [138.975502555, 34.653721144], [138.975730246, 34.653570784]]]}}, {"id": "50645", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913637562, 34.639104919], [138.913782607, 34.639231279], [138.913784994, 34.639162838], [138.913637562, 34.639104919]]]}}, {"id": "50646", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911186252, 34.633462036], [138.911050636, 34.633209802], [138.910956978, 34.63357009], [138.911186252, 34.633462036]]]}}, {"id": "50647", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917317575, 34.64853155], [138.917588457, 34.648576243], [138.917601608, 34.648481261], [138.917317575, 34.64853155]]]}}, {"id": "50648", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984861984, 34.709368631], [138.985016991, 34.70921764], [138.984797652, 34.709326333], [138.984861984, 34.709368631]]]}}, {"id": "50649", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980102776, 34.706171622], [138.980415447, 34.706308955], [138.980181414, 34.706103613], [138.980102776, 34.706171622]]]}}, {"id": "50650", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939676524, 34.667767216], [138.939876368, 34.667841414], [138.93984144, 34.667631396], [138.939676524, 34.667767216]]]}}, {"id": "50651", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987131608, 34.66288491], [138.987073113, 34.663067793], [138.987234488, 34.66297655], [138.987131608, 34.66288491]]]}}, {"id": "50652", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.960295785, 34.65402155], [138.960496368, 34.654189829], [138.960468495, 34.653982586], [138.960295785, 34.65402155]]]}}, {"id": "50653", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985833191, 34.663250793], [138.985673515, 34.66328], [138.98556965, 34.663411676], [138.985833191, 34.663250793]]]}}, {"id": "50654", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957911556, 34.659525441], [138.958066407, 34.659691099], [138.958067017, 34.659483207], [138.957911556, 34.659525441]]]}}, {"id": "50655", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.943165279, 34.577102775], [138.942862218, 34.577088333], [138.943141673, 34.577195], [138.943165279, 34.577102775]]]}}, {"id": "50656", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.938465331, 34.661383901], [138.93846358, 34.661217396], [138.938324617, 34.661264054], [138.938465331, 34.661383901]]]}}, {"id": "50657", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989599676, 34.659389964], [138.989856278, 34.659201595], [138.989382257, 34.659449072], [138.989599676, 34.659389964]]]}}, {"id": "50658", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949135409, 34.663486613], [138.949126187, 34.663254505], [138.949051777, 34.663436703], [138.949135409, 34.663486613]]]}}, {"id": "50659", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976591907, 34.702661234], [138.976777173, 34.702588928], [138.976748651, 34.702394045], [138.976591907, 34.702661234]]]}}, {"id": "50660", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.972395422, 34.654568559], [138.972232023, 34.654438928], [138.972272283, 34.654670459], [138.972395422, 34.654568559]]]}}, {"id": "50661", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986326265, 34.663235387], [138.986045331, 34.663255802], [138.986315136, 34.663327568], [138.986326265, 34.663235387]]]}}, {"id": "50662", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957072568, 34.654291207], [138.957268392, 34.654135829], [138.957050156, 34.654226802], [138.957072568, 34.654291207]]]}}, {"id": "50663", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980796732, 34.676802622], [138.980870454, 34.676964694], [138.98097847, 34.676827775], [138.980796732, 34.676802622]]]}}, {"id": "50664", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913948949, 34.636376595], [138.913837562, 34.636285198], [138.913769896, 34.636474838], [138.913948949, 34.636376595]]]}}, {"id": "50665", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.935187717, 34.658631694], [138.935371946, 34.658748595], [138.93539965, 34.658643559], [138.935187717, 34.658631694]]]}}, {"id": "50666", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976479831, 34.686060405], [138.976413606, 34.685910568], [138.976289313, 34.685989117], [138.976479831, 34.686060405]]]}}, {"id": "50667", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.925070415, 34.654752099], [138.925326239, 34.654686658], [138.925153048, 34.654655622], [138.925232996, 34.654544279], [138.925070415, 34.654752099]]]}}, {"id": "50668", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.94095917, 34.573071667], [138.940984721, 34.573247225], [138.941019728, 34.5731], [138.94095917, 34.573071667]]]}}, {"id": "50669", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968081388, 34.647658892], [138.968023333, 34.647826667], [138.968111115, 34.647856946], [138.968081388, 34.647658892]]]}}, {"id": "50670", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949314682, 34.663527964], [138.94918358, 34.663697658], [138.949451738, 34.663651685], [138.949314682, 34.663527964]]]}}, {"id": "50671", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986627873, 34.667159459], [138.986469455, 34.667348414], [138.986544981, 34.667369928], [138.986627873, 34.667159459]]]}}, {"id": "50672", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985525032, 34.668014613], [138.985404514, 34.668042135], [138.985595292, 34.668162], [138.985525032, 34.668014613]]]}}, {"id": "50673", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.943625551, 34.572154441], [138.943698054, 34.57228], [138.943777497, 34.572171387], [138.943625551, 34.572154441]]]}}, {"id": "50674", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985901102, 34.658157153], [138.986052374, 34.658221009], [138.985943035, 34.658032937], [138.985901102, 34.658157153]]]}}, {"id": "50675", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941945551, 34.573211108], [138.94179917, 34.573368613], [138.941974163, 34.573353054], [138.941945551, 34.573211108]]]}}, {"id": "50676", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985112218, 34.710213153], [138.985274929, 34.710072685], [138.985307056, 34.710002775], [138.985112218, 34.710213153]]]}}, {"id": "50677", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.969360039, 34.65135755], [138.969486355, 34.651566216], [138.969475629, 34.651367658], [138.969360039, 34.65135755]]]}}, {"id": "50678", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983563061, 34.678710559], [138.983653606, 34.678597775], [138.983543606, 34.678515829], [138.983563061, 34.678710559]]]}}, {"id": "50679", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989132166, 34.659424649], [138.988834215, 34.659388793], [138.988728599, 34.659445559], [138.989132166, 34.659424649]]]}}, {"id": "50680", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941900558, 34.57613], [138.941802776, 34.576317775], [138.94197083, 34.576160829], [138.941900558, 34.57613]]]}}, {"id": "50681", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989488366, 34.660218721], [138.989456667, 34.660098135], [138.989331543, 34.660249009], [138.989488366, 34.660218721]]]}}, {"id": "50682", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979694073, 34.655419856], [138.979507263, 34.655261288], [138.979524682, 34.65540682], [138.979694073, 34.655419856]]]}}, {"id": "50683", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941558885, 34.576442495], [138.941333061, 34.576479162], [138.941343891, 34.576503892], [138.941558885, 34.576442495]]]}}, {"id": "50684", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955903178, 34.654662081], [138.955989481, 34.654744523], [138.956032361, 34.654604532], [138.955903178, 34.654662081]]]}}, {"id": "50685", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979013619, 34.704481802], [138.978977964, 34.704373937], [138.978908677, 34.704436324], [138.979013619, 34.704481802]]]}}, {"id": "50686", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.973011518, 34.654823559], [138.972971894, 34.654646649], [138.972892049, 34.65495582], [138.973011518, 34.654823559]]]}}, {"id": "50687", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983862049, 34.712301505], [138.984125668, 34.712277198], [138.984137808, 34.712243432], [138.983862049, 34.712301505]]]}}, {"id": "50688", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.967502114, 34.652001703], [138.967490752, 34.651844694], [138.967431946, 34.651960405], [138.967502114, 34.652001703]]]}}, {"id": "50689", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941539974, 34.666021468], [138.941457406, 34.666168892], [138.94163249, 34.666100009], [138.941539974, 34.666021468]]]}}, {"id": "50690", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985454449, 34.675196946], [138.985561673, 34.675091108], [138.98540834, 34.675099441], [138.985454449, 34.675196946]]]}}, {"id": "50691", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968893943, 34.651347261], [138.969052672, 34.651327901], [138.968994423, 34.651192631], [138.968893943, 34.651347261]]]}}, {"id": "50692", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98951, 34.715160604], [138.989620623, 34.715000685], [138.989538547, 34.714985234], [138.98951, 34.715160604]]]}}, {"id": "50693", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985935097, 34.658316586], [138.98579153, 34.658356099], [138.985945681, 34.658447171], [138.985935097, 34.658316586]]]}}, {"id": "50694", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.91828297, 34.65217082], [138.918391803, 34.652250595], [138.91834297, 34.652149883], [138.91828297, 34.65217082]]]}}, {"id": "50695", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.95492118, 34.654597865], [138.954917769, 34.654373856], [138.954874202, 34.654587135], [138.95492118, 34.654597865]]]}}, {"id": "50696", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957234553, 34.662800568], [138.95708297, 34.662794369], [138.957104008, 34.662869568], [138.957234553, 34.662800568]]]}}, {"id": "50697", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989741167, 34.715038243], [138.989885694, 34.715090486], [138.989864384, 34.715013405], [138.989741167, 34.715038243]]]}}, {"id": "50698", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940208054, 34.573575279], [138.940402218, 34.573505559], [138.940386394, 34.573484721], [138.940208054, 34.573575279]]]}}, {"id": "50699", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.943152776, 34.575164162], [138.943091115, 34.575006387], [138.943052503, 34.575152495], [138.943152776, 34.575164162]]]}}, {"id": "50700", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976114358, 34.652937144], [138.975978833, 34.653028631], [138.976038495, 34.653102865], [138.976114358, 34.652937144]]]}}, {"id": "50701", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968066394, 34.648012495], [138.968198612, 34.648128892], [138.968215279, 34.648041108], [138.968066394, 34.648012495]]]}}, {"id": "50702", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979191816, 34.654969901], [138.979360506, 34.654956432], [138.979382918, 34.654831937], [138.979191816, 34.654969901]]]}}, {"id": "50703", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911761362, 34.634696261], [138.911497121, 34.634769009], [138.911697198, 34.63475436], [138.911761362, 34.634696261]]]}}, {"id": "50704", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.973711284, 34.653963856], [138.973591154, 34.65388436], [138.973617756, 34.65403436], [138.973711284, 34.653963856]]]}}, {"id": "50705", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909180921, 34.633176514], [138.909094786, 34.633158495], [138.909046239, 34.633335541], [138.909180921, 34.633176514]]]}}, {"id": "50706", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939621388, 34.575932225], [138.939513061, 34.575995], [138.939612218, 34.576103054], [138.939621388, 34.575932225]]]}}, {"id": "50707", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.94336, 34.577019441], [138.943500558, 34.577004721], [138.943417497, 34.576962495], [138.94336, 34.577019441]]]}}, {"id": "50708", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.94143118, 34.667007126], [138.941311907, 34.66690109], [138.94139406, 34.667022676], [138.94143118, 34.667007126]]]}}, {"id": "50709", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942946939, 34.575733892], [138.94285834, 34.575671108], [138.942760272, 34.575740829], [138.942946939, 34.575733892]]]}}, {"id": "50710", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979003294, 34.671521324], [138.978903567, 34.671447072], [138.978932387, 34.671599225], [138.979003294, 34.671521324]]]}}, {"id": "50711", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984889974, 34.712872937], [138.984865551, 34.712768099], [138.984798742, 34.712804784], [138.984889974, 34.712872937]]]}}, {"id": "50712", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.910874475, 34.633625991], [138.910692036, 34.633632919], [138.910633684, 34.63372309], [138.910874475, 34.633625991]]]}}, {"id": "50713", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989504241, 34.659820369], [138.989389637, 34.659776468], [138.989377095, 34.659813216], [138.989504241, 34.659820369]]]}}, {"id": "50714", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912913126, 34.6361], [138.91278083, 34.636102342], [138.91281808, 34.636222387], [138.912913126, 34.6361]]]}}, {"id": "50715", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980385759, 34.675554027], [138.980463515, 34.675677946], [138.98051978, 34.675631748], [138.980385759, 34.675554027]]]}}, {"id": "50716", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98838869, 34.65975209], [138.98847965, 34.659671306], [138.988432127, 34.659623541], [138.98838869, 34.65975209]]]}}, {"id": "50717", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.907409767, 34.631282667], [138.907284955, 34.631339703], [138.907291946, 34.631409], [138.907409767, 34.631282667]]]}}, {"id": "50718", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.99077751, 34.660807991], [138.990681958, 34.66075582], [138.990681582, 34.660878153], [138.99077751, 34.660807991]]]}}, {"id": "50719", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.937031025, 34.660883577], [138.937272179, 34.660888748], [138.937345888, 34.660840342], [138.937031025, 34.660883577]]]}}, {"id": "50720", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987564721, 34.662412054], [138.987702438, 34.662416279], [138.987642957, 34.662338892], [138.987564721, 34.662412054]]]}}, {"id": "50721", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.93986917, 34.576545829], [138.939937224, 34.576460279], [138.939844163, 34.576405], [138.93986917, 34.576545829]]]}}, {"id": "50722", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912931051, 34.635490514], [138.912809935, 34.635480559], [138.91282607, 34.635568036], [138.912931051, 34.635490514]]]}}, {"id": "50723", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990394942, 34.659135775], [138.990245292, 34.659083], [138.990152062, 34.659131532], [138.990394942, 34.659135775]]]}}, {"id": "50724", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.925223476, 34.655072054], [138.925198054, 34.654966577], [138.925130597, 34.655043892], [138.925223476, 34.655072054]]]}}, {"id": "50725", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.944326667, 34.574671667], [138.944274721, 34.574554441], [138.944226939, 34.574646667], [138.944326667, 34.574671667]]]}}, {"id": "50726", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986676109, 34.713910297], [138.98666799, 34.71380945], [138.98658214, 34.713916532], [138.986676109, 34.713910297]]]}}, {"id": "50727", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912805888, 34.636426081], [138.912687147, 34.636367342], [138.912664955, 34.636422324], [138.912805888, 34.636426081]]]}}, {"id": "50728", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.958676187, 34.65996791], [138.9585769, 34.659907793], [138.958585914, 34.659999171], [138.958676187, 34.65996791]]]}}, {"id": "50729", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984362763, 34.65871509], [138.984369818, 34.658802775], [138.984428288, 34.65872673], [138.984362763, 34.65871509]]]}}, {"id": "50730", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909726368, 34.632709045], [138.909614241, 34.632728802], [138.90963022, 34.63278636], [138.909726368, 34.632709045]]]}}, {"id": "50731", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984525785, 34.708756225], [138.98453738, 34.708630054], [138.984449935, 34.708703874], [138.984525785, 34.708756225]]]}}, {"id": "50732", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989675798, 34.714876955], [138.989834838, 34.714871631], [138.989901453, 34.714781748], [138.989675798, 34.714876955]]]}}, {"id": "50733", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982855473, 34.659101595], [138.982788171, 34.65901045], [138.982793696, 34.659098324], [138.982855473, 34.659101595]]]}}, {"id": "50734", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.992884825, 34.717570243], [138.992828872, 34.717724982], [138.992975811, 34.717538405], [138.992884825, 34.717570243]]]}}, {"id": "50735", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.925514501, 34.655297324], [138.925509118, 34.655184378], [138.925492244, 34.655297847], [138.925514501, 34.655297324]]]}}, {"id": "50736", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979810545, 34.655695892], [138.979921401, 34.655718261], [138.979908275, 34.655653856], [138.979810545, 34.655695892]]]}}, {"id": "50737", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941664008, 34.666139838], [138.941565681, 34.66623945], [138.941697328, 34.666229595], [138.941664008, 34.666139838]]]}}, {"id": "50738", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942563061, 34.576912775], [138.942728885, 34.576908333], [138.94258834, 34.576852775], [138.942563061, 34.576912775]]]}}, {"id": "50739", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.9429, 34.577249162], [138.942869442, 34.577363333], [138.942961388, 34.577262225], [138.9429, 34.577249162]]]}}, {"id": "50740", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.991154293, 34.715604649], [138.991094267, 34.71569991], [138.991203165, 34.71569009], [138.991154293, 34.715604649]]]}}, {"id": "50741", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941806368, 34.666175378], [138.941708833, 34.666134802], [138.941723735, 34.666209757], [138.941806368, 34.666175378]]]}}, {"id": "50742", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955006083, 34.673464243], [138.955009377, 34.673348387], [138.954926511, 34.673420991], [138.955006083, 34.673464243]]]}}, {"id": "50743", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941762568, 34.666083495], [138.941790597, 34.665978009], [138.941733048, 34.666011207], [138.941762568, 34.666083495]]]}}, {"id": "50744", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.976093722, 34.685511721], [138.976036226, 34.685380865], [138.975985071, 34.685423261], [138.976093722, 34.685511721]]]}}, {"id": "50745", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.936177432, 34.658997234], [138.936349663, 34.659008342], [138.936338508, 34.658962946], [138.936177432, 34.658997234]]]}}, {"id": "50746", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912778716, 34.635103378], [138.912824591, 34.635203919], [138.912844215, 34.635135793], [138.912778716, 34.635103378]]]}}, {"id": "50747", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965722218, 34.647663892], [138.965839442, 34.647717495], [138.965851946, 34.647671946], [138.965722218, 34.647663892]]]}}, {"id": "50748", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.916711102, 34.65004718], [138.916615551, 34.650050126], [138.916610272, 34.650128757], [138.916711102, 34.65004718]]]}}, {"id": "50749", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.966724708, 34.654549919], [138.966730065, 34.654707667], [138.966781764, 34.65468673], [138.966724708, 34.654549919]]]}}, {"id": "50750", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942343515, 34.666582], [138.94227192, 34.666497694], [138.942194786, 34.666539351], [138.942343515, 34.666582]]]}}, {"id": "50751", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.918230791, 34.64465027], [138.918389027, 34.64463927], [138.918402633, 34.64456927], [138.918230791, 34.64465027]]]}}, {"id": "50752", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.975613567, 34.676624982], [138.975640545, 34.67653364], [138.975488651, 34.676611676], [138.975613567, 34.676624982]]]}}, {"id": "50753", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982750026, 34.708073982], [138.982635642, 34.708058207], [138.982587795, 34.708129252], [138.982750026, 34.708073982]]]}}, {"id": "50754", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978460246, 34.653628432], [138.978433359, 34.653751865], [138.978499624, 34.653684721], [138.978460246, 34.653628432]]]}}, {"id": "50755", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987210233, 34.713880937], [138.98724013, 34.714009198], [138.987247367, 34.714032874], [138.987333619, 34.713903252], [138.987210233, 34.713880937]]]}}, {"id": "50756", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.938791336, 34.665955928], [138.938690246, 34.666029946], [138.938773359, 34.666044883], [138.938791336, 34.665955928]]]}}, {"id": "50757", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980686472, 34.667066108], [138.980833917, 34.667035234], [138.98085939, 34.666968234], [138.980795149, 34.666935495], [138.980686472, 34.667066108]]]}}, {"id": "50758", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984922374, 34.709614045], [138.985028495, 34.709541775], [138.984949896, 34.709504405], [138.984922374, 34.709614045]]]}}, {"id": "50759", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917119248, 34.64794273], [138.917312179, 34.647911324], [138.917363113, 34.647865351], [138.917119248, 34.64794273]]]}}, {"id": "50760", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.961597523, 34.651543324], [138.961615551, 34.651448775], [138.961512711, 34.651534721], [138.961597523, 34.651543324]]]}}, {"id": "50761", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.922759261, 34.65485164], [138.922760623, 34.654754631], [138.922663087, 34.654817351], [138.922759261, 34.65485164]]]}}, {"id": "50762", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.972176589, 34.654724559], [138.972102724, 34.654647766], [138.972107847, 34.654761432], [138.972176589, 34.654724559]]]}}, {"id": "50763", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982889339, 34.708208829], [138.982849183, 34.708116045], [138.982771518, 34.708184144], [138.982889339, 34.708208829]]]}}, {"id": "50764", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.981438677, 34.68111255], [138.981316394, 34.681141162], [138.981418392, 34.681173027], [138.981438677, 34.68111255]]]}}, {"id": "50765", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.910943878, 34.633611874], [138.910975149, 34.63369309], [138.911060169, 34.63359418], [138.910943878, 34.633611874]]]}}, {"id": "50766", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.977299831, 34.70412855], [138.97732821, 34.704243658], [138.977458859, 34.704087721], [138.977299831, 34.70412855]]]}}, {"id": "50767", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.938296602, 34.661435261], [138.938167743, 34.661475306], [138.938327717, 34.661481766], [138.938296602, 34.661435261]]]}}, {"id": "50768", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.945665863, 34.664889928], [138.945726978, 34.664770252], [138.945554851, 34.664881766], [138.945665863, 34.664889928]]]}}, {"id": "50769", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979445875, 34.705214559], [138.979454968, 34.705145468], [138.979324073, 34.705200432], [138.979445875, 34.705214559]]]}}, {"id": "50770", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.991898612, 34.717680333], [138.991994968, 34.717782441], [138.992010195, 34.717679523], [138.991898612, 34.717680333]]]}}, {"id": "50771", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.974307185, 34.676884387], [138.974417743, 34.676907757], [138.974437938, 34.676850523], [138.974307185, 34.676884387]]]}}, {"id": "50772", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989664293, 34.660192315], [138.989589442, 34.660154126], [138.989580337, 34.660218261], [138.989664293, 34.660192315]]]}}, {"id": "50773", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912683333, 34.634607685], [138.912721634, 34.634696982], [138.912826511, 34.634688604], [138.912683333, 34.634607685]]]}}, {"id": "50774", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985467613, 34.658542748], [138.985401699, 34.658596649], [138.985479728, 34.658581369], [138.985467613, 34.658542748]]]}}, {"id": "50775", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.943434449, 34.575335829], [138.943269728, 34.575341667], [138.943274163, 34.575377775], [138.943434449, 34.575335829]]]}}, {"id": "50776", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.96374546, 34.651663369], [138.963840687, 34.651660126], [138.963737665, 34.65161364], [138.96374546, 34.651663369]]]}}, {"id": "50777", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979914254, 34.669749703], [138.9799907, 34.669778342], [138.979987237, 34.669745541], [138.979914254, 34.669749703]]]}}, {"id": "50778", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98723083, 34.714209099], [138.987268418, 34.714103559], [138.987197743, 34.714208414], [138.98723083, 34.714209099]]]}}, {"id": "50779", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.955084708, 34.654456802], [138.955153774, 34.654418946], [138.955050039, 34.654342081], [138.955084708, 34.654456802]]]}}, {"id": "50780", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978632763, 34.672304306], [138.978694436, 34.672232658], [138.978583852, 34.672187387], [138.978632763, 34.672304306]]]}}, {"id": "50781", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909756848, 34.633516432], [138.909785642, 34.633406982], [138.909714514, 34.633401901], [138.909756848, 34.633516432]]]}}, {"id": "50782", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989293878, 34.660506631], [138.989431595, 34.660565036], [138.989370415, 34.660458991], [138.989293878, 34.660506631]]]}}, {"id": "50783", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.958298729, 34.661739901], [138.958366524, 34.661806901], [138.958463774, 34.661753081], [138.958298729, 34.661739901]]]}}, {"id": "50784", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970289637, 34.654297505], [138.97021939, 34.654260541], [138.970185058, 34.654344243], [138.970289637, 34.654297505]]]}}, {"id": "50785", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983753606, 34.677793892], [138.983839728, 34.677833892], [138.983846939, 34.677799721], [138.983753606, 34.677793892]]]}}, {"id": "50786", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.960353995, 34.653795955], [138.960386913, 34.653690171], [138.960275188, 34.653788766], [138.960353995, 34.653795955]]]}}, {"id": "50787", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.937798132, 34.659905477], [138.937781141, 34.659994964], [138.937875642, 34.659956766], [138.937798132, 34.659905477]]]}}, {"id": "50788", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909608936, 34.633115577], [138.909666342, 34.633210126], [138.909646472, 34.633094982], [138.909608936, 34.633115577]]]}}, {"id": "50789", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978102244, 34.653674198], [138.978200298, 34.653632973], [138.978184786, 34.653608514], [138.978102244, 34.653674198]]]}}, {"id": "50790", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.962536226, 34.651613153], [138.962655422, 34.651567081], [138.962488846, 34.651569514], [138.962536226, 34.651613153]]]}}, {"id": "50791", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.924713722, 34.655083297], [138.924651621, 34.655015811], [138.924613619, 34.655071748], [138.924713722, 34.655083297]]]}}, {"id": "50792", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984103606, 34.675080559], [138.984016939, 34.675146946], [138.984085837, 34.675161387], [138.984103606, 34.675080559]]]}}, {"id": "50793", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987683982, 34.662878559], [138.987545668, 34.662865946], [138.987546018, 34.662905432], [138.987683982, 34.662878559]]]}}, {"id": "50794", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985753074, 34.658552153], [138.985758003, 34.658480649], [138.985729001, 34.658484099], [138.985753074, 34.658552153]]]}}, {"id": "50795", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942171881, 34.666336955], [138.942072996, 34.666288811], [138.942052387, 34.666312694], [138.942171881, 34.666336955]]]}}, {"id": "50796", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.9601193, 34.654755694], [138.96020952, 34.654676288], [138.960097575, 34.654715658], [138.9601193, 34.654755694]]]}}, {"id": "50797", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913655227, 34.638970811], [138.913778962, 34.638936766], [138.913632815, 34.638939153], [138.913655227, 34.638970811]]]}}, {"id": "50798", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.964693891, 34.64809], [138.964809728, 34.648056108], [138.96470083, 34.648033613], [138.964693891, 34.64809]]]}}, {"id": "50799", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987489351, 34.662862297], [138.987404527, 34.662947288], [138.98750083, 34.662884162], [138.987489351, 34.662862297]]]}}, {"id": "50800", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968985992, 34.654500225], [138.968868029, 34.654533946], [138.968862737, 34.654561099], [138.968985992, 34.654500225]]]}}, {"id": "50801", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.943582503, 34.574871667], [138.943661115, 34.574794721], [138.943646109, 34.574775], [138.943582503, 34.574871667]]]}}, {"id": "50802", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.925048547, 34.654721523], [138.924944708, 34.654768225], [138.924934047, 34.654817216], [138.925048547, 34.654721523]]]}}, {"id": "50803", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989768742, 34.672839946], [138.989758638, 34.67271627], [138.989722555, 34.672701], [138.989696342, 34.672791865], [138.989768742, 34.672839946]]]}}, {"id": "50804", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990082296, 34.659250631], [138.98999725, 34.65920382], [138.98990489, 34.659268288], [138.990082296, 34.659250631]]]}}, {"id": "50805", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941351673, 34.577292775], [138.94143083, 34.577192495], [138.941385551, 34.577173613], [138.941351673, 34.577292775]]]}}, {"id": "50806", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989334747, 34.660404324], [138.98923463, 34.66039409], [138.989235227, 34.66045809], [138.989334747, 34.660404324]]]}}, {"id": "50807", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985435006, 34.67814], [138.985455551, 34.678063054], [138.985380272, 34.678098054], [138.985435006, 34.67814]]]}}, {"id": "50808", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987195344, 34.714003063], [138.987194812, 34.713912559], [138.987073191, 34.714024198], [138.987195344, 34.714003063]]]}}, {"id": "50809", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906481868, 34.632227306], [138.90650297, 34.632327306], [138.906533165, 34.632258153], [138.906481868, 34.632227306]]]}}, {"id": "50810", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986005331, 34.713235766], [138.985932088, 34.713181973], [138.985900272, 34.713231676], [138.986005331, 34.713235766]]]}}, {"id": "50811", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917414994, 34.646616757], [138.917451868, 34.646595892], [138.917516822, 34.646518234], [138.917414994, 34.646616757]]]}}, {"id": "50812", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940897185, 34.66167209], [138.940843204, 34.661615856], [138.940834527, 34.661645], [138.940897185, 34.66167209]]]}}, {"id": "50813", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984193904, 34.712388532], [138.98416559, 34.712327432], [138.984123178, 34.712374207], [138.984193904, 34.712388532]]]}}, {"id": "50814", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.969192672, 34.651295901], [138.969212802, 34.651207838], [138.969146693, 34.651265964], [138.969192672, 34.651295901]]]}}, {"id": "50815", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982586965, 34.708756523], [138.982591881, 34.708682126], [138.982545292, 34.708705577], [138.982586965, 34.708756523]]]}}, {"id": "50816", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.969545006, 34.651597811], [138.969540246, 34.651663459], [138.969635435, 34.651616216], [138.969545006, 34.651597811]]]}}, {"id": "50817", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989706628, 34.659784847], [138.989613502, 34.659773405], [138.989605577, 34.659799676], [138.989706628, 34.659784847]]]}}, {"id": "50818", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980371738, 34.66866455], [138.980281414, 34.668688532], [138.980293256, 34.668753838], [138.980371738, 34.66866455]]]}}, {"id": "50819", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957895383, 34.664141883], [138.957851414, 34.664203171], [138.957907043, 34.664199351], [138.957895383, 34.664141883]]]}}, {"id": "50820", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.966960558, 34.648114721], [138.966955837, 34.648041108], [138.966884721, 34.648082775], [138.966960558, 34.648114721]]]}}, {"id": "50821", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957976394, 34.662505964], [138.957857886, 34.662462324], [138.95798179, 34.662534973], [138.957976394, 34.662505964]]]}}, {"id": "50822", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984123502, 34.71220473], [138.984091699, 34.712141838], [138.984054799, 34.712199586], [138.984123502, 34.71220473]]]}}, {"id": "50823", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979924929, 34.705356009], [138.980012438, 34.705311946], [138.979847095, 34.705354964], [138.979924929, 34.705356009]]]}}, {"id": "50824", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985792101, 34.658285423], [138.985839702, 34.658216901], [138.985740428, 34.658253982], [138.985792101, 34.658285423]]]}}, {"id": "50825", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979121492, 34.670425703], [138.979104241, 34.670329045], [138.979067549, 34.670381387], [138.979121492, 34.670425703]]]}}, {"id": "50826", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980095499, 34.656280577], [138.980092205, 34.65621973], [138.979998093, 34.656246694], [138.980095499, 34.656280577]]]}}, {"id": "50827", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.908547432, 34.632015135], [138.908627069, 34.631995757], [138.908553126, 34.631974721], [138.908547432, 34.632015135]]]}}, {"id": "50828", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983815006, 34.675571667], [138.983863606, 34.675656667], [138.983858612, 34.675592225], [138.983815006, 34.675571667]]]}}, {"id": "50829", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982922724, 34.658508495], [138.982839961, 34.658478351], [138.98283179, 34.658517784], [138.982922724, 34.658508495]]]}}, {"id": "50830", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986787821, 34.66559118], [138.986839403, 34.665623252], [138.986861725, 34.665560595], [138.986787821, 34.66559118]]]}}, {"id": "50831", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.981876394, 34.667226649], [138.981936018, 34.667273207], [138.981972218, 34.667230694], [138.981876394, 34.667226649]]]}}, {"id": "50832", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.944867354, 34.664943874], [138.944829689, 34.664876667], [138.944788923, 34.664946495], [138.944867354, 34.664943874]]]}}, {"id": "50833", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989365603, 34.659845351], [138.989240817, 34.659850541], [138.989205551, 34.659881694], [138.989365603, 34.659845351]]]}}, {"id": "50834", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.918153281, 34.642030189], [138.918218093, 34.641903937], [138.918132633, 34.642024396], [138.918153281, 34.642030189]]]}}, {"id": "50835", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989802866, 34.715746306], [138.989884708, 34.715757333], [138.989853437, 34.715711577], [138.989802866, 34.715746306]]]}}, {"id": "50836", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.945024319, 34.665078252], [138.945013645, 34.665019784], [138.944944643, 34.665093604], [138.945024319, 34.665078252]]]}}, {"id": "50837", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984572348, 34.658492306], [138.98448537, 34.658469027], [138.984487445, 34.658525099], [138.984572348, 34.658492306]]]}}, {"id": "50838", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978823735, 34.67116891], [138.978782698, 34.671130937], [138.97877, 34.671179306], [138.978823735, 34.67116891]]]}}, {"id": "50839", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.908550908, 34.631812009], [138.908481219, 34.631789883], [138.908496342, 34.631849964], [138.908550908, 34.631812009]]]}}, {"id": "50840", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987320467, 34.658074441], [138.987212101, 34.658149189], [138.987336291, 34.658086541], [138.987320467, 34.658074441]]]}}, {"id": "50841", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965879222, 34.651256225], [138.965937432, 34.651209667], [138.965842568, 34.651179649], [138.965879222, 34.651256225]]]}}, {"id": "50842", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980014267, 34.65598691], [138.979967847, 34.655977532], [138.979907108, 34.656000766], [138.980014267, 34.65598691]]]}}, {"id": "50843", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984380259, 34.658585622], [138.984360687, 34.658527072], [138.984301712, 34.658576477], [138.984380259, 34.658585622]]]}}, {"id": "50844", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.908218923, 34.632817865], [138.908227613, 34.632742829], [138.908196783, 34.632772775], [138.908218923, 34.632817865]]]}}, {"id": "50845", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970939183, 34.654468541], [138.970873515, 34.654450306], [138.970853372, 34.654495009], [138.970939183, 34.654468541]]]}}, {"id": "50846", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.967975668, 34.652891568], [138.968063372, 34.652909712], [138.968050298, 34.652853604], [138.967975668, 34.652891568]]]}}, {"id": "50847", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.980314617, 34.667691414], [138.980319235, 34.667602955], [138.980263385, 34.66769964], [138.980314617, 34.667691414]]]}}, {"id": "50848", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987467613, 34.662559207], [138.987419818, 34.662615378], [138.987484527, 34.662616117], [138.987467613, 34.662559207]]]}}, {"id": "50849", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.974072374, 34.694973694], [138.974175642, 34.694944234], [138.974039507, 34.694943532], [138.974072374, 34.694973694]]]}}, {"id": "50850", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.974431556, 34.694748847], [138.974376316, 34.694706297], [138.974354371, 34.694767775], [138.974431556, 34.694748847]]]}}, {"id": "50851", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941207043, 34.667003423], [138.94113061, 34.666971793], [138.941126887, 34.667009486], [138.941207043, 34.667003423]]]}}, {"id": "50852", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906053268, 34.63111527], [138.90606799, 34.631027234], [138.90605, 34.631027198], [138.906053268, 34.63111527]]]}}, {"id": "50853", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990283813, 34.715212757], [138.990321064, 34.71527282], [138.990342633, 34.715244883], [138.990283813, 34.715212757]]]}}, {"id": "50854", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987520519, 34.663266595], [138.987550078, 34.663319928], [138.987612438, 34.663293541], [138.987520519, 34.663266595]]]}}, {"id": "50855", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.908570921, 34.632089072], [138.908553813, 34.632160613], [138.9086462, 34.632115865], [138.908570921, 34.632089072]]]}}, {"id": "50856", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.944959676, 34.665007631], [138.944864682, 34.664993279], [138.944856031, 34.665029829], [138.944959676, 34.665007631]]]}}, {"id": "50857", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98608227, 34.661080306], [138.986146096, 34.661026054], [138.986077601, 34.661028847], [138.98608227, 34.661080306]]]}}, {"id": "50858", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.970527613, 34.653840333], [138.970452361, 34.653825117], [138.970469248, 34.653859306], [138.970527613, 34.653840333]]]}}, {"id": "50859", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.984278755, 34.712318964], [138.984238158, 34.712265396], [138.984199987, 34.712289613], [138.984278755, 34.712318964]]]}}, {"id": "50860", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98597869, 34.658010441], [138.985960765, 34.657910982], [138.985942477, 34.657898432], [138.98597869, 34.658010441]]]}}, {"id": "50861", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986764371, 34.662270559], [138.986765473, 34.662199694], [138.986722166, 34.662256748], [138.986764371, 34.662270559]]]}}, {"id": "50862", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.985604747, 34.71319373], [138.985547432, 34.71315664], [138.985546511, 34.713204694], [138.985604747, 34.71319373]]]}}, {"id": "50863", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.910304825, 34.632656432], [138.910375772, 34.632665658], [138.910314073, 34.632606189], [138.910304825, 34.632656432]]]}}, {"id": "50864", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.918498093, 34.65219055], [138.91847882, 34.652111369], [138.918467173, 34.652182901], [138.918498093, 34.65219055]]]}}, {"id": "50865", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.910242348, 34.633369477], [138.910300999, 34.633407144], [138.910338067, 34.633359595], [138.910242348, 34.633369477]]]}}, {"id": "50866", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.905016965, 34.629283396], [138.904952075, 34.629330766], [138.904989857, 34.629340198], [138.905016965, 34.629283396]]]}}, {"id": "50867", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987054903, 34.662007595], [138.98702585, 34.661945414], [138.987006757, 34.662021315], [138.987054903, 34.662007595]]]}}, {"id": "50868", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911300195, 34.633563973], [138.911214565, 34.633607901], [138.911297808, 34.633611856], [138.911300195, 34.633563973]]]}}, {"id": "50869", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.948822153, 34.66775445], [138.948807523, 34.667691396], [138.948775927, 34.667701613], [138.948822153, 34.66775445]]]}}, {"id": "50870", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978988236, 34.670801712], [138.97892856, 34.670821054], [138.978938171, 34.670841216], [138.978988236, 34.670801712]]]}}, {"id": "50871", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978670934, 34.705481207], [138.978660233, 34.705425171], [138.978641077, 34.705472757], [138.978670934, 34.705481207]]]}}, {"id": "50872", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.916585383, 34.642817982], [138.916647743, 34.642769721], [138.916617665, 34.642752604], [138.916585383, 34.642817982]]]}}, {"id": "50873", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.915642763, 34.641279063], [138.91560406, 34.641218432], [138.915609001, 34.64128936], [138.915642763, 34.641279063]]]}}, {"id": "50874", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906338962, 34.630947721], [138.906356654, 34.631042856], [138.906384176, 34.631028072], [138.906338962, 34.630947721]]]}}, {"id": "50875", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90843249, 34.63175164], [138.908404617, 34.631671595], [138.908380791, 34.631684739], [138.90843249, 34.63175164]]]}}, {"id": "50876", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.989381479, 34.660373577], [138.989448042, 34.660376459], [138.989466329, 34.660332216], [138.989381479, 34.660373577]]]}}, {"id": "50877", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940844721, 34.573606108], [138.940917497, 34.573590559], [138.94087, 34.573575279], [138.940844721, 34.573606108]]]}}, {"id": "50878", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98810847, 34.663038045], [138.988118482, 34.662959757], [138.988085512, 34.662937081], [138.98810847, 34.663038045]]]}}, {"id": "50879", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979042425, 34.670718288], [138.978974968, 34.670694306], [138.978982944, 34.670735108], [138.979042425, 34.670718288]]]}}, {"id": "50880", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.987771167, 34.662617946], [138.987795486, 34.662560234], [138.987771453, 34.66255691], [138.987771167, 34.662617946]]]}}, {"id": "50881", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.95841856, 34.66156636], [138.958373424, 34.661532279], [138.958369235, 34.661564838], [138.95841856, 34.66156636]]]}}, {"id": "50882", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950333956, 34.658563532], [138.950245396, 34.658568901], [138.950298923, 34.658602153], [138.950333956, 34.658563532]]]}}, {"id": "50883", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906281958, 34.631558595], [138.906239209, 34.631516009], [138.90622952, 34.631586991], [138.906281958, 34.631558595]]]}}, {"id": "50884", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.918207964, 34.650986216], [138.918214942, 34.65092209], [138.918187562, 34.65098791], [138.918207964, 34.650986216]]]}}, {"id": "50885", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.911551518, 34.63460736], [138.911550285, 34.634558595], [138.911493424, 34.634617649], [138.911551518, 34.63460736]]]}}, {"id": "50886", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950386809, 34.658654748], [138.950367121, 34.658583063], [138.950332412, 34.658620694], [138.950386809, 34.658654748]]]}}, {"id": "50887", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939999702, 34.661510991], [138.939953113, 34.661468423], [138.939932451, 34.661524396], [138.939999702, 34.661510991]]]}}, {"id": "50888", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940700869, 34.661582198], [138.940641349, 34.661550685], [138.940631556, 34.661578216], [138.940700869, 34.661582198]]]}}, {"id": "50889", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.957094371, 34.657417703], [138.957161349, 34.65741745], [138.957142335, 34.657391108], [138.957094371, 34.657417703]]]}}, {"id": "50890", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.942290454, 34.666289919], [138.942255992, 34.666231991], [138.942256304, 34.666289685], [138.942290454, 34.666289919]]]}}, {"id": "50891", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978823619, 34.671243739], [138.978773294, 34.671240865], [138.978771907, 34.67130227], [138.978823619, 34.671243739]]]}}, {"id": "50892", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965471258, 34.651225874], [138.965411958, 34.651194811], [138.96540096, 34.651236414], [138.965471258, 34.651225874]]]}}, {"id": "50893", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.908800856, 34.633318063], [138.908860674, 34.633327144], [138.908858392, 34.633305333], [138.908800856, 34.633318063]]]}}, {"id": "50894", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979948184, 34.669691333], [138.979869248, 34.669684333], [138.979867185, 34.66970382], [138.979948184, 34.669691333]]]}}, {"id": "50895", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.934815629, 34.659729532], [138.934771764, 34.659686955], [138.934748495, 34.659701559], [138.934815629, 34.659729532]]]}}, {"id": "50896", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.938065344, 34.661528054], [138.938015888, 34.66150145], [138.93801, 34.661541595], [138.938065344, 34.661528054]]]}}, {"id": "50897", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.971224293, 34.654321838], [138.971186161, 34.654407901], [138.971195525, 34.654423369], [138.971224293, 34.654321838]]]}}, {"id": "50898", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982001894, 34.667286829], [138.982020804, 34.667216523], [138.981971894, 34.667287036], [138.982001894, 34.667286829]]]}}, {"id": "50899", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978395019, 34.67229018], [138.978300013, 34.67233455], [138.978305149, 34.672354541], [138.978395019, 34.67229018]]]}}, {"id": "50900", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.909744747, 34.633672793], [138.90969725, 34.633684405], [138.909687484, 34.633740423], [138.909744747, 34.633672793]]]}}, {"id": "50901", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.98694668, 34.66212036], [138.986914981, 34.662091459], [138.986903268, 34.662141901], [138.98694668, 34.66212036]]]}}, {"id": "50902", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.947605551, 34.665363595], [138.947573061, 34.665326847], [138.947561738, 34.665351766], [138.947605551, 34.665363595]]]}}, {"id": "50903", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.937199844, 34.660806613], [138.937086719, 34.660789712], [138.937043061, 34.66080645], [138.937199844, 34.660806613]]]}}, {"id": "50904", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.97907642, 34.670329874], [138.979032192, 34.670379721], [138.979048171, 34.670388405], [138.97907642, 34.670329874]]]}}, {"id": "50905", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912995006, 34.63648882], [138.912952996, 34.636464441], [138.912922075, 34.636496099], [138.912995006, 34.63648882]]]}}, {"id": "50906", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978878975, 34.672046495], [138.978844955, 34.672012369], [138.978844423, 34.672052126], [138.978878975, 34.672046495]]]}}, {"id": "50907", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965569274, 34.651313216], [138.965524241, 34.651276333], [138.965525409, 34.651309775], [138.965569274, 34.651313216]]]}}, {"id": "50908", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.968935006, 34.654571459], [138.968877665, 34.654618018], [138.968947393, 34.654581784], [138.968935006, 34.654571459]]]}}, {"id": "50909", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965668703, 34.651475919], [138.965603878, 34.651453811], [138.965623022, 34.651481595], [138.965668703, 34.651475919]]]}}, {"id": "50910", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917866148, 34.651740604], [138.917831803, 34.651702045], [138.917846291, 34.651742477], [138.917866148, 34.651740604]]]}}, {"id": "50911", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986320817, 34.66553418], [138.986376796, 34.665571009], [138.986408508, 34.66554645], [138.986320817, 34.66553418]]]}}, {"id": "50912", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950174137, 34.658647514], [138.95020131, 34.658709703], [138.950227665, 34.658680667], [138.950174137, 34.658647514]]]}}, {"id": "50913", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.905664501, 34.631462748], [138.905676706, 34.631393468], [138.905641971, 34.631405306], [138.905664501, 34.631462748]]]}}, {"id": "50914", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949952555, 34.658891559], [138.95003201, 34.658896405], [138.949978366, 34.658863153], [138.949952555, 34.658891559]]]}}, {"id": "50915", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950124462, 34.658702144], [138.950152283, 34.658763703], [138.950178106, 34.658735396], [138.950124462, 34.658702144]]]}}, {"id": "50916", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950222724, 34.658593874], [138.950250661, 34.658655342], [138.950276368, 34.658627117], [138.950222724, 34.658593874]]]}}, {"id": "50917", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949829896, 34.659026694], [138.949858042, 34.659088072], [138.949883541, 34.659059946], [138.949829896, 34.659026694]]]}}, {"id": "50918", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912729287, 34.636506757], [138.912786239, 34.636553441], [138.912737964, 34.636498613], [138.912729287, 34.636506757]]]}}, {"id": "50919", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.94987978, 34.658971793], [138.949908042, 34.659032991], [138.94993332, 34.659005036], [138.94987978, 34.658971793]]]}}, {"id": "50920", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949928586, 34.658917964], [138.949956965, 34.658978982], [138.949982231, 34.658951216], [138.949928586, 34.658917964]]]}}, {"id": "50921", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.9500793, 34.658844207], [138.950000493, 34.65883873], [138.950054137, 34.658871892], [138.9500793, 34.658844207]]]}}, {"id": "50922", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949808145, 34.65914127], [138.949780661, 34.659080964], [138.949755279, 34.659108919], [138.949808145, 34.65914127]]]}}, {"id": "50923", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.949785603, 34.659167946], [138.949707121, 34.659162108], [138.949760649, 34.659195261], [138.949785603, 34.659167946]]]}}, {"id": "50924", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.950074034, 34.658757685], [138.950102827, 34.658818252], [138.950127665, 34.658790928], [138.950074034, 34.658757685]]]}}, {"id": "50925", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939088495, 34.667081937], [138.93904022, 34.667114829], [138.939098962, 34.66710245], [138.939088495, 34.667081937]]]}}, {"id": "50926", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917005525, 34.643050757], [138.916971271, 34.643093063], [138.917018923, 34.643068838], [138.917005525, 34.643050757]]]}}, {"id": "50927", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.941960039, 34.666388658], [138.941998223, 34.666427378], [138.942015422, 34.666398288], [138.941960039, 34.666388658]]]}}, {"id": "50928", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.91334511, 34.634791063], [138.913379689, 34.634770667], [138.913345058, 34.634760595], [138.91334511, 34.634791063]]]}}, {"id": "50929", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913590467, 34.639088676], [138.913568145, 34.639050892], [138.91354834, 34.639083676], [138.913590467, 34.639088676]]]}}, {"id": "50930", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906278353, 34.631154459], [138.90631786, 34.631161541], [138.906298872, 34.631112919], [138.906278353, 34.631154459]]]}}, {"id": "50931", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.979112412, 34.670744063], [138.979095383, 34.670705099], [138.979067912, 34.670728018], [138.979112412, 34.670744063]]]}}, {"id": "50932", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983300584, 34.708081099], [138.98334083, 34.708016946], [138.983300584, 34.708008883], [138.983300584, 34.708081099]]]}}, {"id": "50933", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906725227, 34.631117991], [138.906672516, 34.631110955], [138.906692827, 34.631138739], [138.906725227, 34.631117991]]]}}, {"id": "50934", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.917970661, 34.651569495], [138.917979053, 34.651523405], [138.917940649, 34.65154391], [138.917970661, 34.651569495]]]}}, {"id": "50935", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.988043048, 34.662969523], [138.988024565, 34.663000162], [138.988068431, 34.66302036], [138.988043048, 34.662969523]]]}}, {"id": "50936", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913714578, 34.635812225], [138.913660169, 34.635814396], [138.913715824, 34.635842694], [138.913714578, 34.635812225]]]}}, {"id": "50937", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.95698489, 34.654311333], [138.957026783, 34.654341928], [138.957043346, 34.654320991], [138.95698489, 34.654311333]]]}}, {"id": "50938", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.916589001, 34.643696315], [138.916591518, 34.643654027], [138.916569831, 34.643679072], [138.916589001, 34.643696315]]]}}, {"id": "50939", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.905777056, 34.631441279], [138.90576048, 34.631396703], [138.90575441, 34.631425306], [138.905777056, 34.631441279]]]}}, {"id": "50940", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.967805668, 34.653313955], [138.967761829, 34.653373441], [138.96783594, 34.653304459], [138.967805668, 34.653313955]]]}}, {"id": "50941", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.964344099, 34.653002459], [138.964337004, 34.652942892], [138.96430524, 34.652958252], [138.964344099, 34.653002459]]]}}, {"id": "50942", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.982814604, 34.658883505], [138.982862166, 34.658864378], [138.982812555, 34.658869901], [138.982814604, 34.658883505]]]}}, {"id": "50943", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.965738301, 34.651514505], [138.965688054, 34.651485036], [138.965688431, 34.651512261], [138.965738301, 34.651514505]]]}}, {"id": "50944", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.983466329, 34.65769291], [138.983478612, 34.657647063], [138.983447432, 34.657688117], [138.983466329, 34.65769291]]]}}, {"id": "50945", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978771336, 34.671089964], [138.97873808, 34.671132919], [138.978752374, 34.671170631], [138.978771336, 34.671089964]]]}}, {"id": "50946", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.97910035, 34.670639631], [138.979058431, 34.670653946], [138.97906607, 34.670673748], [138.97910035, 34.670639631]]]}}, {"id": "50947", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.913113048, 34.634799784], [138.91312655, 34.634751955], [138.913098288, 34.634791631], [138.913113048, 34.634799784]]]}}, {"id": "50948", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.964234021, 34.652864225], [138.964192075, 34.652854108], [138.964200934, 34.652878865], [138.964234021, 34.652864225]]]}}, {"id": "50949", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90639834, 34.632119135], [138.906368444, 34.632139973], [138.906404397, 34.63213309], [138.90639834, 34.632119135]]]}}, {"id": "50950", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978983593, 34.671643559], [138.978959105, 34.671673586], [138.978987315, 34.671682126], [138.978983593, 34.671643559]]]}}, {"id": "50951", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978876809, 34.671196018], [138.978836044, 34.671222955], [138.97888035, 34.671203216], [138.978876809, 34.671196018]]]}}, {"id": "50952", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.97881441, 34.671995], [138.978736719, 34.671994495], [138.978728885, 34.672000207], [138.97881441, 34.671995]]]}}, {"id": "50953", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.904894488, 34.629284441], [138.904932815, 34.629340027], [138.904899598, 34.62928036], [138.904894488, 34.629284441]]]}}, {"id": "50954", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.939105733, 34.66720655], [138.939061077, 34.667221856], [138.939095084, 34.667234991], [138.939105733, 34.66720655]]]}}, {"id": "50955", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986077289, 34.657925568], [138.98604546, 34.657897468], [138.986041284, 34.657919387], [138.986077289, 34.657925568]]]}}, {"id": "50956", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.906011206, 34.631167694], [138.905974086, 34.631160613], [138.905978781, 34.631184396], [138.906011206, 34.631167694]]]}}, {"id": "50957", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.9084407, 34.632156847], [138.90842952, 34.632191414], [138.908460246, 34.632183468], [138.9084407, 34.632156847]]]}}, {"id": "50958", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986022218, 34.657996766], [138.986055798, 34.657951144], [138.986050726, 34.657944649], [138.986022218, 34.657996766]]]}}, {"id": "50959", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.978865045, 34.671710288], [138.978889754, 34.671738946], [138.97890275, 34.671720685], [138.978865045, 34.671710288]]]}}, {"id": "50960", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.940303995, 34.661655036], [138.940291595, 34.661683297], [138.940334163, 34.661666018], [138.940303995, 34.661655036]]]}}, {"id": "50961", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912721958, 34.636568901], [138.912698431, 34.636531297], [138.91271083, 34.636569928], [138.912721958, 34.636568901]]]}}, {"id": "50962", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "下田市", "N03_005": null, "N03_007": "22219"}, "geometry": {"type": "Polygon", "coordinates": [[[138.986097445, 34.657955234], [138.986095486, 34.657929892], [138.986078612, 34.657954378], [138.986097445, 34.657955234]]]}}, {"id": "50963", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "裾野市", "N03_005": null, "N03_007": "22220"}, "geometry": {"type": "Polygon", "coordinates": [[[138.905415551, 35.148983054], [138.863098612, 35.195466946], [138.795904721, 35.227416667], [138.749470558, 35.331], [138.812158612, 35.264325838], [138.874749442, 35.279829721], [138.921976109, 35.215211108], [138.979514423, 35.233217279], [139.001594137, 35.189805333], [138.923211388, 35.171154721], [138.905415551, 35.148983054]]]}}, {"id": "50964", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "湖西市", "N03_005": null, "N03_007": "22221"}, "geometry": {"type": "Polygon", "coordinates": [[[137.542154449, 34.773378613], [137.597772257, 34.677966883], [137.485175136, 34.673551495], [137.478927497, 34.778991108], [137.542154449, 34.773378613]]]}}, {"id": "50965", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.951696667, 34.832839721], [138.892878054, 34.835018613], [138.830696667, 34.882894162], [138.758606719, 34.86152164], [138.756625006, 34.885513198], [138.789777367, 34.908029198], [138.776024968, 34.939182865], [138.837513333, 34.943433054], [138.837025006, 34.973440279], [138.890044449, 35.003790279], [138.938604721, 34.989428613], [138.995276109, 35.012821387], [139.047219442, 35.013287775], [139.038003333, 34.990801667], [139.068830558, 34.983707225], [139.044117224, 34.939375829], [139.05803834, 34.909244721], [139.020830558, 34.860028054], [138.976676109, 34.857379162], [138.951696667, 34.832839721]]]}}, {"id": "50966", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7559762, 34.87625836], [138.756036472, 34.875795586], [138.755790467, 34.875943414], [138.7559762, 34.87625836]]]}}, {"id": "50967", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.788489974, 34.909673387], [138.788210973, 34.908573946], [138.788358003, 34.909685802], [138.788489974, 34.909673387]]]}}, {"id": "50968", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783040558, 34.920970135], [138.783666939, 34.919690468], [138.783037497, 34.920420892], [138.783040558, 34.920970135]]]}}, {"id": "50969", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783993839, 34.919426802], [138.784781219, 34.918213468], [138.78391939, 34.919389081], [138.783993839, 34.919426802]]]}}, {"id": "50970", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.788358275, 34.910093225], [138.78801642, 34.910944279], [138.788142114, 34.910981559], [138.788358275, 34.910093225]]]}}, {"id": "50971", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787805772, 34.907134108], [138.788082244, 34.908036829], [138.788190311, 34.907995441], [138.787805772, 34.907134108]]]}}, {"id": "50972", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753911505, 34.867296108], [138.753807302, 34.86688264], [138.753616304, 34.866942441], [138.753911505, 34.867296108]]]}}, {"id": "50973", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.773641556, 34.897073108], [138.772968301, 34.897413919], [138.773043671, 34.897504973], [138.773641556, 34.897073108]]]}}, {"id": "50974", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766080584, 34.859268721], [138.766359196, 34.858982973], [138.766195084, 34.858895973], [138.766080584, 34.859268721]]]}}, {"id": "50975", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.750989728, 34.868854162], [138.751161946, 34.869082225], [138.751095551, 34.868838054], [138.750989728, 34.868854162]]]}}, {"id": "50976", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753374721, 34.867631775], [138.753046835, 34.867431892], [138.752955668, 34.867484613], [138.753374721, 34.867631775]]]}}, {"id": "50977", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78227, 34.921317775], [138.782244163, 34.920983054], [138.782211673, 34.920973333], [138.78227, 34.921317775]]]}}, {"id": "50978", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785339533, 34.917813387], [138.785536472, 34.91757836], [138.785271997, 34.917754054], [138.785339533, 34.917813387]]]}}, {"id": "50979", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758461505, 34.861500387], [138.758233307, 34.861826775], [138.758262244, 34.861960586], [138.758461505, 34.861500387]]]}}, {"id": "50980", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759627328, 34.861061946], [138.759519728, 34.860891613], [138.759421699, 34.860954586], [138.759627328, 34.861061946]]]}}, {"id": "50981", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753960272, 34.869177495], [138.753897808, 34.86896164], [138.7538807, 34.869161279], [138.753960272, 34.869177495]]]}}, {"id": "50982", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758028223, 34.862386946], [138.757957562, 34.862241775], [138.757764254, 34.862293387], [138.758028223, 34.862386946]]]}}, {"id": "50983", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753357808, 34.867286279], [138.753070636, 34.867307252], [138.75335511, 34.867447559], [138.753357808, 34.867286279]]]}}, {"id": "50984", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781883891, 34.921051387], [138.781881388, 34.921306667], [138.781978612, 34.921321108], [138.781883891, 34.921051387]]]}}, {"id": "50985", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753679831, 34.867763027], [138.753657951, 34.867615865], [138.753537808, 34.867670027], [138.753679831, 34.867763027]]]}}, {"id": "50986", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766699364, 34.858585586], [138.766519805, 34.858665748], [138.766707808, 34.858664252], [138.766699364, 34.858585586]]]}}, {"id": "50987", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75779214, 34.861876027], [138.757977951, 34.861837054], [138.757808223, 34.861777108], [138.75779214, 34.861876027]]]}}, {"id": "50988", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765087134, 34.861635613], [138.76518917, 34.861533865], [138.765081777, 34.861467306], [138.765087134, 34.861635613]]]}}, {"id": "50989", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753265551, 34.864920586], [138.753316835, 34.864737468], [138.753258911, 34.864719027], [138.753265551, 34.864920586]]]}}, {"id": "50990", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754891971, 34.865776387], [138.755073256, 34.865684162], [138.754885383, 34.865739441], [138.754891971, 34.865776387]]]}}, {"id": "50991", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752925305, 34.867962559], [138.753082477, 34.868028225], [138.752978418, 34.867840027], [138.752925305, 34.867962559]]]}}, {"id": "50992", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766214501, 34.860201225], [138.766194137, 34.860096865], [138.76611489, 34.860178081], [138.766214501, 34.860201225]]]}}, {"id": "50993", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76638939, 34.860176946], [138.766329533, 34.86002364], [138.766347276, 34.860209027], [138.76638939, 34.860176946]]]}}, {"id": "50994", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76471834, 34.861837495], [138.764825006, 34.861894441], [138.764827224, 34.861782775], [138.76471834, 34.861837495]]]}}, {"id": "50995", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752028885, 34.867581108], [138.752130558, 34.867673333], [138.752143333, 34.867596387], [138.752028885, 34.867581108]]]}}, {"id": "50996", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782057782, 34.921193054], [138.782133061, 34.921306667], [138.782118612, 34.921156946], [138.782057782, 34.921193054]]]}}, {"id": "50997", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754832776, 34.865518162], [138.754737639, 34.865389], [138.75469847, 34.865418027], [138.754832776, 34.865518162]]]}}, {"id": "50998", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759173333, 34.861135279], [138.759300558, 34.861120279], [138.759206394, 34.861055], [138.759173333, 34.861135279]]]}}, {"id": "50999", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755654163, 34.864505559], [138.755574721, 34.864604721], [138.755605837, 34.864660829], [138.755654163, 34.864505559]]]}}, {"id": "51000", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76564917, 34.861928613], [138.765731388, 34.862002495], [138.765693891, 34.861891387], [138.76564917, 34.861928613]]]}}, {"id": "51001", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765592387, 34.860090252], [138.7654893, 34.860043054], [138.765533476, 34.860136252], [138.765592387, 34.860090252]]]}}, {"id": "51002", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785816589, 34.915479414], [138.785851219, 34.915592198], [138.785859611, 34.91548264], [138.785816589, 34.915479414]]]}}, {"id": "51003", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75358, 34.864916946], [138.75367083, 34.864840829], [138.753633061, 34.864806667], [138.75358, 34.864916946]]]}}, {"id": "51004", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76521, 34.862229441], [138.765293891, 34.862296946], [138.765263061, 34.862199721], [138.76521, 34.862229441]]]}}, {"id": "51005", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757038054, 34.876768613], [138.757116109, 34.876813892], [138.75708083, 34.876716387], [138.757038054, 34.876768613]]]}}, {"id": "51006", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756154449, 34.881208892], [138.756242218, 34.881222775], [138.756196939, 34.881158054], [138.756154449, 34.881208892]]]}}, {"id": "51007", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754451971, 34.866317414], [138.754487198, 34.866210495], [138.754413696, 34.866284306], [138.754451971, 34.866317414]]]}}, {"id": "51008", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756938885, 34.877120279], [138.75701, 34.877174441], [138.756984163, 34.877083054], [138.756938885, 34.877120279]]]}}, {"id": "51009", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75493, 34.868901387], [138.755021115, 34.868916667], [138.755008054, 34.868853613], [138.75493, 34.868901387]]]}}, {"id": "51010", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753334747, 34.868440495], [138.753301245, 34.868533054], [138.753370415, 34.868514532], [138.753334747, 34.868440495]]]}}, {"id": "51011", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76019917, 34.861071667], [138.76025083, 34.860984441], [138.760214721, 34.860980829], [138.76019917, 34.861071667]]]}}, {"id": "51012", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760085253, 34.861299054], [138.760018586, 34.861213027], [138.759987691, 34.86126564], [138.760085253, 34.861299054]]]}}, {"id": "51013", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759543333, 34.861140829], [138.75962834, 34.861102495], [138.759585551, 34.861076946], [138.759543333, 34.861140829]]]}}, {"id": "51014", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757876667, 34.862244441], [138.7578, 34.862181108], [138.757795006, 34.862247225], [138.757876667, 34.862244441]]]}}, {"id": "51015", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.762464501, 34.861341], [138.762420726, 34.861262946], [138.762395227, 34.861297532], [138.762464501, 34.861341]]]}}, {"id": "51016", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757694254, 34.862292441], [138.757695863, 34.862217162], [138.757618612, 34.862277748], [138.757694254, 34.862292441]]]}}, {"id": "51017", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756128521, 34.881707], [138.756139689, 34.881635586], [138.756091582, 34.881676865], [138.756128521, 34.881707]]]}}, {"id": "51018", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756963722, 34.878807865], [138.756906667, 34.878717721], [138.756886913, 34.878799802], [138.756963722, 34.878807865]]]}}, {"id": "51019", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764765837, 34.862144441], [138.764782503, 34.862064162], [138.764729728, 34.862095829], [138.764765837, 34.862144441]]]}}, {"id": "51020", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759912555, 34.861129054], [138.75981572, 34.861114387], [138.759898197, 34.861151892], [138.759912555, 34.861129054]]]}}, {"id": "51021", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755236472, 34.869167279], [138.755171167, 34.86913], [138.755220726, 34.869200919], [138.755236472, 34.869167279]]]}}, {"id": "51022", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7558738, 34.864497468], [138.755932672, 34.864430441], [138.755870532, 34.864457892], [138.7558738, 34.864497468]]]}}, {"id": "51023", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764905279, 34.86227], [138.764959442, 34.862185], [138.764923333, 34.862169441], [138.764905279, 34.86227]]]}}, {"id": "51024", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756292218, 34.880413919], [138.756325668, 34.880335694], [138.756276278, 34.880390054], [138.756292218, 34.880413919]]]}}, {"id": "51025", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759065499, 34.861372198], [138.759135837, 34.861382586], [138.759130973, 34.861363748], [138.759065499, 34.861372198]]]}}, {"id": "51026", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759713061, 34.86121], [138.759791115, 34.861175279], [138.759760272, 34.861150829], [138.759713061, 34.86121]]]}}, {"id": "51027", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760417497, 34.860875829], [138.760477782, 34.860916387], [138.760464163, 34.860859162], [138.760417497, 34.860875829]]]}}, {"id": "51028", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785529027, 34.918654468], [138.785592503, 34.918557225], [138.785586161, 34.918532198], [138.785529027, 34.918654468]]]}}, {"id": "51029", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756961051, 34.879078946], [138.756955253, 34.879006829], [138.756933113, 34.87905736], [138.756961051, 34.879078946]]]}}, {"id": "51030", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757553865, 34.86220864], [138.757544449, 34.862129973], [138.757503969, 34.862199279], [138.757553865, 34.86220864]]]}}, {"id": "51031", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766499559, 34.859743162], [138.766433307, 34.859714559], [138.766422802, 34.859750721], [138.766499559, 34.859743162]]]}}, {"id": "51032", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765050272, 34.861758892], [138.765077224, 34.861705279], [138.765033891, 34.861724441], [138.765050272, 34.861758892]]]}}, {"id": "51033", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753102387, 34.864643532], [138.753174332, 34.86463564], [138.753114553, 34.864612946], [138.753102387, 34.864643532]]]}}, {"id": "51034", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7852207, 34.918108721], [138.785227276, 34.918048468], [138.785192218, 34.918072721], [138.7852207, 34.918108721]]]}}, {"id": "51035", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782130272, 34.922278613], [138.782165279, 34.922336946], [138.782187782, 34.922283892], [138.782130272, 34.922278613]]]}}, {"id": "51036", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766411829, 34.861567802], [138.766371556, 34.861524532], [138.76636725, 34.861548333], [138.766411829, 34.861567802]]]}}, {"id": "51037", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785396641, 34.915693694], [138.785393671, 34.915625081], [138.785357717, 34.915678919], [138.785396641, 34.915693694]]]}}, {"id": "51038", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782074163, 34.921476667], [138.782131673, 34.921447775], [138.782075006, 34.921439162], [138.782074163, 34.921476667]]]}}, {"id": "51039", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782244163, 34.921565279], [138.782293606, 34.921531387], [138.782234449, 34.921526667], [138.782244163, 34.921565279]]]}}, {"id": "51040", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755215357, 34.865833613], [138.755261505, 34.865797162], [138.755216978, 34.865792135], [138.755215357, 34.865833613]]]}}, {"id": "51041", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.786689222, 34.906180081], [138.786730143, 34.906142946], [138.786681556, 34.906146748], [138.786689222, 34.906180081]]]}}, {"id": "51042", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.786427471, 34.906116892], [138.786450078, 34.906071667], [138.786411284, 34.906085], [138.786427471, 34.906116892]]]}}, {"id": "51043", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756888444, 34.879431108], [138.7569307, 34.879405613], [138.756895084, 34.879386468], [138.756888444, 34.879431108]]]}}, {"id": "51044", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755213554, 34.865746414], [138.755177328, 34.865705495], [138.755154449, 34.865733667], [138.755213554, 34.865746414]]]}}, {"id": "51045", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757353087, 34.864217586], [138.757354384, 34.86417964], [138.757319805, 34.864203135], [138.757353087, 34.864217586]]]}}, {"id": "51046", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757702387, 34.870795198], [138.757766057, 34.870797135], [138.757764501, 34.870787306], [138.757702387, 34.870795198]]]}}, {"id": "51047", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785663307, 34.915557306], [138.78568978, 34.915580865], [138.785690999, 34.915553441], [138.785663307, 34.915557306]]]}}, {"id": "51048", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785824617, 34.917477532], [138.785800973, 34.917442694], [138.785796744, 34.917493], [138.785824617, 34.917477532]]]}}, {"id": "51049", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783733385, 34.904951919], [138.783706835, 34.904964586], [138.783720052, 34.904990973], [138.783733385, 34.904951919]]]}}, {"id": "51050", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785606887, 34.915479198], [138.785634916, 34.915511306], [138.785633061, 34.915482], [138.785606887, 34.915479198]]]}}, {"id": "51051", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785565084, 34.915504333], [138.785590467, 34.915474], [138.785563191, 34.915469198], [138.785565084, 34.915504333]]]}}, {"id": "51052", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785358197, 34.915625441], [138.785376278, 34.915598081], [138.78534406, 34.915612225], [138.785358197, 34.915625441]]]}}, {"id": "51053", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785596835, 34.915541667], [138.785579442, 34.915517027], [138.785572088, 34.915535775], [138.785596835, 34.915541667]]]}}, {"id": "51054", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781622555, 34.905859748], [138.781629663, 34.905828], [138.781602477, 34.905840667], [138.781622555, 34.905859748]]]}}, {"id": "51055", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781663476, 34.905851721], [138.781651025, 34.905833532], [138.781633891, 34.905847721], [138.781663476, 34.905851721]]]}}, {"id": "51056", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.785554747, 34.915491829], [138.785536355, 34.915492054], [138.785543191, 34.915507198], [138.785554747, 34.915491829]]]}}, {"id": "51057", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781941608, 34.905912198], [138.781964254, 34.905903387], [138.781931855, 34.905906973], [138.781941608, 34.905912198]]]}}, {"id": "51058", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781691089, 34.905127225], [138.781671193, 34.905139892], [138.781687276, 34.905139108], [138.781691089, 34.905127225]]]}}, {"id": "51059", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781781582, 34.905414495], [138.781755966, 34.905414], [138.78175345, 34.905415198], [138.781771751, 34.905424973], [138.781781582, 34.905414495]]]}}, {"id": "51060", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781492192, 34.905272919], [138.781480636, 34.905284387], [138.781498145, 34.905281721], [138.781492192, 34.905272919]]]}}, {"id": "51061", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781700195, 34.905620829], [138.781695694, 34.905611306], [138.781691115, 34.905618162], [138.781700195, 34.905620829]]]}}, {"id": "51062", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆市", "N03_005": null, "N03_007": "22222"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78169297, 34.905680721], [138.78169856, 34.905685387], [138.78170131, 34.905682694], [138.78169297, 34.905680721]]]}}, {"id": "51063", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.191865863, 34.600773495], [138.07883, 34.646259441], [138.136902503, 34.700597225], [138.182512776, 34.669222225], [138.1698, 34.623417495], [138.209112387, 34.620969865], [138.23413083, 34.601936865], [138.191865863, 34.600773495]]]}}, {"id": "51064", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.209106083, 34.621744955], [138.218761699, 34.626639468], [138.223106161, 34.622769919], [138.209106083, 34.621744955]]]}}, {"id": "51065", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.232517756, 34.625682667], [138.227713385, 34.620566279], [138.232281997, 34.625773], [138.233900208, 34.636387757], [138.232517756, 34.625682667]]]}}, {"id": "51066", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.226493022, 34.620729748], [138.226914968, 34.620983495], [138.22322642, 34.614168135], [138.226493022, 34.620729748]]]}}, {"id": "51067", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.22316275, 34.631551279], [138.223182412, 34.631478306], [138.220443294, 34.634360045], [138.22316275, 34.631551279]]]}}, {"id": "51068", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.144270506, 34.612480613], [138.14443511, 34.612645252], [138.144473917, 34.612519532], [138.144270506, 34.612480613]]]}}, {"id": "51069", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.144757276, 34.612276306], [138.14492153, 34.612443667], [138.14494978, 34.612287865], [138.144757276, 34.612276306]]]}}, {"id": "51070", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.145346109, 34.61204264], [138.145494747, 34.612217586], [138.145526498, 34.612086162], [138.145346109, 34.61204264]]]}}, {"id": "51071", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.139920791, 34.61443291], [138.139974267, 34.614296577], [138.139865032, 34.614342676], [138.139920791, 34.61443291]]]}}, {"id": "51072", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "御前崎市", "N03_005": null, "N03_007": "22223"}, "geometry": {"type": "Polygon", "coordinates": [[[138.139315953, 34.614705], [138.139315772, 34.614568514], [138.139233268, 34.614636784], [138.139315953, 34.614705]]]}}, {"id": "51073", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "菊川市", "N03_005": null, "N03_007": "22224"}, "geometry": {"type": "Polygon", "coordinates": [[[138.084903606, 34.660719721], [138.085572218, 34.676857495], [138.068625279, 34.67712], [138.078560558, 34.702362495], [138.043535006, 34.736591387], [138.061899442, 34.745629441], [138.053903891, 34.769896946], [138.105719442, 34.813564721], [138.138549442, 34.794518613], [138.145562776, 34.697626108], [138.113571673, 34.685940829], [138.102131388, 34.657683613], [138.084903606, 34.660719721]]]}}, {"id": "51074", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "伊豆の国市", "N03_005": null, "N03_007": "22225"}, "geometry": {"type": "Polygon", "coordinates": [[[139.047219442, 35.013287775], [138.909201388, 34.997241387], [138.906231946, 35.059387225], [139.027850558, 35.081625], [139.047219442, 35.013287775]]]}}, {"id": "51075", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.205485006, 34.619903333], [138.1698, 34.623417495], [138.183449728, 34.666696946], [138.145475551, 34.697781667], [138.132367224, 34.756731946], [138.138706109, 34.793524721], [138.158671946, 34.801590559], [138.223621115, 34.786630829], [138.251552503, 34.758773613], [138.195395746, 34.664648108], [138.205485006, 34.619903333]]]}}, {"id": "51076", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.209106083, 34.621744955], [138.210562944, 34.629998559], [138.214819702, 34.625334586], [138.209106083, 34.621744955]]]}}, {"id": "51077", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.204049805, 34.632266198], [138.203951115, 34.632205829], [138.203830726, 34.632874468], [138.204049805, 34.632266198]]]}}, {"id": "51078", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.222261388, 34.675461667], [138.22155, 34.675110559], [138.222264163, 34.675687775], [138.222261388, 34.675461667]]]}}, {"id": "51079", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.208068885, 34.688475279], [138.208779144, 34.687866225], [138.208781803, 34.687821946], [138.208068885, 34.688475279]]]}}, {"id": "51080", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.20787131, 34.623096721], [138.20645131, 34.624699027], [138.207898716, 34.623113919], [138.20787131, 34.623096721]]]}}, {"id": "51081", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.223511115, 34.674944721], [138.223681115, 34.674813333], [138.223595006, 34.674780559], [138.223511115, 34.674944721]]]}}, {"id": "51082", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.220463333, 34.676664441], [138.220635006, 34.676588054], [138.220436109, 34.676579721], [138.220463333, 34.676664441]]]}}, {"id": "51083", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.208966913, 34.625488919], [138.208981479, 34.625473], [138.208442503, 34.625162775], [138.208966913, 34.625488919]]]}}, {"id": "51084", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.2087507, 34.624825694], [138.20927489, 34.625153108], [138.209289222, 34.625137387], [138.2087507, 34.624825694]]]}}, {"id": "51085", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.223651673, 34.675826108], [138.223696939, 34.675741108], [138.223636109, 34.675775559], [138.223651673, 34.675826108]]]}}, {"id": "51086", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": null, "N03_004": "牧之原市", "N03_005": null, "N03_007": "22226"}, "geometry": {"type": "Polygon", "coordinates": [[[138.19346153, 34.642933387], [138.193442412, 34.642815333], [138.193413943, 34.642966441], [138.19346153, 34.642933387]]]}}, {"id": "51087", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.025755486, 34.764224658], [138.962773333, 34.85156], [139.020830558, 34.860028054], [139.034577224, 34.883509162], [139.082649533, 34.852693694], [139.046365097, 34.766726892], [139.025755486, 34.764224658]]]}}, {"id": "51088", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.044585629, 34.774459315], [139.045355123, 34.77356591], [139.044493865, 34.77439436], [139.044585629, 34.774459315]]]}}, {"id": "51089", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.058252633, 34.78470064], [139.058694708, 34.784649757], [139.058766031, 34.784450739], [139.058252633, 34.78470064]]]}}, {"id": "51090", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082300636, 34.850354333], [139.082284708, 34.850188901], [139.082225473, 34.850316829], [139.082300636, 34.850354333]]]}}, {"id": "51091", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.046175551, 34.766541586], [139.046111271, 34.76635355], [139.046012101, 34.766456045], [139.046175551, 34.766541586]]]}}, {"id": "51092", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.081802672, 34.847654171], [139.082054384, 34.847560108], [139.082052944, 34.847511081], [139.081802672, 34.847654171]]]}}, {"id": "51093", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.056034864, 34.784247784], [139.056356887, 34.784170144], [139.056362425, 34.784147757], [139.05615428, 34.784099486], [139.056034864, 34.784247784]]]}}, {"id": "51094", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.058727639, 34.786308162], [139.058966005, 34.78608927], [139.058613761, 34.786322207], [139.058727639, 34.786308162]]]}}, {"id": "51095", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.078822257, 34.820054459], [139.078764578, 34.820232865], [139.078867834, 34.820163505], [139.078822257, 34.820054459]]]}}, {"id": "51096", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.027016096, 34.765329225], [139.027095992, 34.765402802], [139.027120817, 34.76532255], [139.027016096, 34.765329225]]]}}, {"id": "51097", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.079064553, 34.819129523], [139.078921219, 34.819095631], [139.078948444, 34.819191468], [139.079064553, 34.819129523]]]}}, {"id": "51098", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.083169948, 34.848920243], [139.083189455, 34.848833333], [139.083108171, 34.848874378], [139.083169948, 34.848920243]]]}}, {"id": "51099", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082009585, 34.849598667], [139.081981647, 34.849529468], [139.081908638, 34.849627991], [139.082009585, 34.849598667]]]}}, {"id": "51100", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.059073256, 34.785547252], [139.058863178, 34.785666676], [139.059098482, 34.785561468], [139.059073256, 34.785547252]]]}}, {"id": "51101", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082231595, 34.848299649], [139.08227476, 34.848388243], [139.082319507, 34.848266865], [139.082231595, 34.848299649]]]}}, {"id": "51102", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.077804514, 34.821943847], [139.077820259, 34.822039243], [139.077864838, 34.822019198], [139.077804514, 34.821943847]]]}}, {"id": "51103", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.05561917, 34.783427793], [139.055541284, 34.783430586], [139.055523268, 34.783463937], [139.05561917, 34.783427793]]]}}, {"id": "51104", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.059030285, 34.786240153], [139.059017108, 34.786165847], [139.058970195, 34.786257018], [139.059030285, 34.786240153]]]}}, {"id": "51105", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082121829, 34.849295766], [139.082194228, 34.84928091], [139.082189105, 34.849236937], [139.082121829, 34.849295766]]]}}, {"id": "51106", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082322815, 34.849310045], [139.082325655, 34.849247378], [139.082290973, 34.849308027], [139.082322815, 34.849310045]]]}}, {"id": "51107", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.058689507, 34.785660892], [139.058720091, 34.785611441], [139.058659922, 34.785648676], [139.058689507, 34.785660892]]]}}, {"id": "51108", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082246394, 34.85016627], [139.082285577, 34.850156622], [139.082245837, 34.850102541], [139.082246394, 34.85016627]]]}}, {"id": "51109", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082282205, 34.850112279], [139.08232035, 34.850110477], [139.082298859, 34.850085162], [139.082282205, 34.850112279]]]}}, {"id": "51110", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.081898003, 34.849345613], [139.081929663, 34.849337162], [139.081904695, 34.84931718], [139.081898003, 34.849345613]]]}}, {"id": "51111", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "東伊豆町", "N03_005": null, "N03_007": "22301"}, "geometry": {"type": "Polygon", "coordinates": [[[139.082092464, 34.850327288], [139.082111427, 34.850348928], [139.082115473, 34.850333315], [139.082092464, 34.850327288]]]}}, {"id": "51112", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999970947, 34.745743757], [138.992827004, 34.717823541], [138.971327224, 34.718922225], [138.94013917, 34.752201667], [138.944251388, 34.766702495], [138.880135837, 34.778171108], [138.883806939, 34.828983054], [138.975411673, 34.835796946], [139.025755486, 34.764224658], [138.999970947, 34.745743757]]]}}, {"id": "51113", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.993635979, 34.726919387], [138.99421869, 34.726197541], [138.993396835, 34.726862216], [138.993635979, 34.726919387]]]}}, {"id": "51114", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997274099, 34.72938264], [138.998060791, 34.729404577], [138.998075512, 34.729038694], [138.997274099, 34.72938264]]]}}, {"id": "51115", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000874786, 34.734933937], [139.00121847, 34.735029892], [139.001313787, 34.734719378], [139.000874786, 34.734933937]]]}}, {"id": "51116", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997982594, 34.730950252], [138.998346329, 34.730805153], [138.998245435, 34.730642126], [138.997982594, 34.730950252]]]}}, {"id": "51117", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.9979662, 34.73038382], [138.998263619, 34.730542441], [138.998289663, 34.730368973], [138.9979662, 34.73038382]]]}}, {"id": "51118", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.00038131, 34.744517559], [139.000041336, 34.743812631], [138.999899092, 34.743768955], [139.00038131, 34.744517559]]]}}, {"id": "51119", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.99969406, 34.743325892], [138.999068573, 34.742596532], [138.999684721, 34.743353613], [138.99969406, 34.743325892]]]}}, {"id": "51120", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999875175, 34.73439336], [138.999782374, 34.734125991], [138.999620013, 34.734401261], [138.999875175, 34.73439336]]]}}, {"id": "51121", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000922763, 34.744873595], [139.00143677, 34.745550667], [139.001501673, 34.745537505], [139.000922763, 34.744873595]]]}}, {"id": "51122", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.024014034, 34.760160387], [139.023827588, 34.759955559], [139.023833372, 34.760249874], [139.024014034, 34.760160387]]]}}, {"id": "51123", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.992492789, 34.724422171], [138.992591725, 34.724627306], [138.992690208, 34.724498], [138.992492789, 34.724422171]]]}}, {"id": "51124", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023474099, 34.759002117], [139.023415305, 34.758704342], [139.023340597, 34.758843396], [139.023474099, 34.759002117]]]}}, {"id": "51125", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.99870799, 34.73113318], [138.998953671, 34.730840802], [138.998597341, 34.731145441], [138.99870799, 34.73113318]]]}}, {"id": "51126", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.99489323, 34.728554937], [138.994913307, 34.728076604], [138.994693567, 34.72828836], [138.99489323, 34.728554937]]]}}, {"id": "51127", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.991523372, 34.722164486], [138.991233696, 34.722458009], [138.991265655, 34.722490063], [138.991523372, 34.722164486]]]}}, {"id": "51128", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998300973, 34.731054243], [138.998463022, 34.731126604], [138.998674527, 34.730961486], [138.998300973, 34.731054243]]]}}, {"id": "51129", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.992526018, 34.72295709], [138.992825149, 34.722858162], [138.9926669, 34.722796685], [138.992526018, 34.72295709]]]}}, {"id": "51130", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.993763398, 34.728921108], [138.994156355, 34.728896261], [138.994367938, 34.728706802], [138.993763398, 34.728921108]]]}}, {"id": "51131", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.014304345, 34.751664514], [139.014193074, 34.751440423], [139.013888405, 34.751522577], [139.014304345, 34.751664514]]]}}, {"id": "51132", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000458586, 34.737610586], [139.000791479, 34.737615252], [139.000813437, 34.737563234], [139.000458586, 34.737610586]]]}}, {"id": "51133", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023307912, 34.758494757], [139.023192114, 34.758266811], [139.023177095, 34.758448162], [139.023307912, 34.758494757]]]}}, {"id": "51134", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008169741, 34.752352153], [139.008035953, 34.752549054], [139.008194825, 34.752505658], [139.008169741, 34.752352153]]]}}, {"id": "51135", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.003769611, 34.748283757], [139.00386716, 34.748071234], [139.003748755, 34.748068748], [139.003769611, 34.748283757]]]}}, {"id": "51136", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023684034, 34.760644198], [139.0238331, 34.760759126], [139.023871725, 34.760543955], [139.023684034, 34.760644198]]]}}, {"id": "51137", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.001207237, 34.746190324], [139.001057043, 34.746293982], [139.001214604, 34.746252676], [139.001207237, 34.746190324]]]}}, {"id": "51138", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.993450571, 34.726919333], [138.993186602, 34.727002883], [138.993486472, 34.726988694], [138.993450571, 34.726919333]]]}}, {"id": "51139", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.003955305, 34.747351108], [139.003936835, 34.747548793], [139.004041634, 34.747377622], [139.003955305, 34.747351108]]]}}, {"id": "51140", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.01928227, 34.753995847], [139.019240182, 34.753833036], [139.019207445, 34.753958757], [139.01928227, 34.753995847]]]}}, {"id": "51141", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.00042, 34.735701], [139.00061856, 34.735598225], [139.000604306, 34.735552396], [139.00042, 34.735701]]]}}, {"id": "51142", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.001234617, 34.73618491], [139.001349585, 34.735927333], [139.001166783, 34.736180775], [139.001234617, 34.73618491]]]}}, {"id": "51143", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997513671, 34.732239333], [138.997635162, 34.732103703], [138.997503969, 34.73213173], [138.997513671, 34.732239333]]]}}, {"id": "51144", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998296148, 34.729466631], [138.998419974, 34.729411766], [138.998346291, 34.729326063], [138.998296148, 34.729466631]]]}}, {"id": "51145", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.021831543, 34.75457273], [139.021621971, 34.754666658], [139.021897873, 34.75464682], [139.021831543, 34.75457273]]]}}, {"id": "51146", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.020836226, 34.754567342], [139.020897056, 34.754479279], [139.020796135, 34.754532532], [139.020836226, 34.754567342]]]}}, {"id": "51147", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023633139, 34.758656072], [139.023691907, 34.758759405], [139.023733541, 34.758607414], [139.023633139, 34.758656072]]]}}, {"id": "51148", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.994016161, 34.726585559], [138.994124916, 34.726660387], [138.994190013, 34.72658918], [138.994016161, 34.726585559]]]}}, {"id": "51149", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023399663, 34.75809418], [139.023322931, 34.758000577], [139.023311414, 34.758010541], [139.023399663, 34.75809418]]]}}, {"id": "51150", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.019627419, 34.753541559], [139.019533346, 34.753658252], [139.019653865, 34.753664766], [139.019627419, 34.753541559]]]}}, {"id": "51151", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006340545, 34.752171081], [139.006204669, 34.752153081], [139.006188846, 34.752227162], [139.006340545, 34.752171081]]]}}, {"id": "51152", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.992413943, 34.723335541], [138.992459326, 34.723402613], [138.992522438, 34.723310495], [138.992413943, 34.723335541]]]}}, {"id": "51153", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.990387393, 34.720551856], [138.990315344, 34.720517883], [138.990280947, 34.720610342], [138.990387393, 34.720551856]]]}}, {"id": "51154", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.001965201, 34.746496955], [139.001883943, 34.74642445], [139.001808054, 34.746500036], [139.001965201, 34.746496955]]]}}, {"id": "51155", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.022003606, 34.755340964], [139.021852374, 34.755418063], [139.02203214, 34.755380153], [139.022003606, 34.755340964]]]}}, {"id": "51156", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.991819974, 34.723133306], [138.991960156, 34.723111369], [138.991979741, 34.723027901], [138.991819974, 34.723133306]]]}}, {"id": "51157", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.994251323, 34.727900252], [138.99429323, 34.728024946], [138.994356757, 34.72796627], [138.994251323, 34.727900252]]]}}, {"id": "51158", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.007995551, 34.752302757], [139.008056407, 34.752196937], [139.007966304, 34.752234], [139.007995551, 34.752302757]]]}}, {"id": "51159", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.002247977, 34.748050604], [139.002301089, 34.747948153], [139.002232361, 34.748014883], [139.002247977, 34.748050604]]]}}, {"id": "51160", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.995004112, 34.728489396], [138.995065538, 34.728372216], [138.995010597, 34.728368387], [138.995004112, 34.728489396]]]}}, {"id": "51161", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.003593398, 34.747826883], [139.003448262, 34.747866162], [139.003455123, 34.747898405], [139.003593398, 34.747826883]]]}}, {"id": "51162", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.020413632, 34.754027982], [139.020609922, 34.753977378], [139.020402088, 34.754015856], [139.020413632, 34.754027982]]]}}, {"id": "51163", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998728042, 34.740923577], [138.99882738, 34.740988883], [138.998756044, 34.740894072], [138.998728042, 34.740923577]]]}}, {"id": "51164", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997263748, 34.73133155], [138.997363359, 34.731391901], [138.997304176, 34.731300288], [138.997263748, 34.73133155]]]}}, {"id": "51165", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023119274, 34.756919027], [139.023075331, 34.757018739], [139.023104851, 34.757039261], [139.023119274, 34.756919027]]]}}, {"id": "51166", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000991647, 34.746082306], [139.000924137, 34.746152541], [139.001023969, 34.746099396], [139.000991647, 34.746082306]]]}}, {"id": "51167", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999687795, 34.73477582], [138.999778184, 34.73469955], [138.999757536, 34.734662216], [138.999687795, 34.73477582]]]}}, {"id": "51168", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.023308119, 34.758890595], [139.023267108, 34.758951081], [139.023326031, 34.758958405], [139.023308119, 34.758890595]]]}}, {"id": "51169", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.01705939, 34.753662108], [139.016926446, 34.753675739], [139.016948703, 34.753741279], [139.01705939, 34.753662108]]]}}, {"id": "51170", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.020259844, 34.754012865], [139.020227211, 34.753947099], [139.020207588, 34.754021198], [139.020259844, 34.754012865]]]}}, {"id": "51171", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006824708, 34.752596018], [139.006763709, 34.752711396], [139.006849637, 34.752599613], [139.006824708, 34.752596018]]]}}, {"id": "51172", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.021175512, 34.754502784], [139.021156109, 34.754455991], [139.02113275, 34.754493685], [139.021175512, 34.754502784]]]}}, {"id": "51173", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.003433178, 34.748008387], [139.003330389, 34.748006018], [139.003376809, 34.748058658], [139.003433178, 34.748008387]]]}}, {"id": "51174", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.005969403, 34.752297216], [139.005983748, 34.752194568], [139.005927354, 34.752242216], [139.005969403, 34.752297216]]]}}, {"id": "51175", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.005910674, 34.752122928], [139.00584013, 34.752088874], [139.005825875, 34.752153027], [139.005910674, 34.752122928]]]}}, {"id": "51176", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006651051, 34.752435288], [139.006574773, 34.752392874], [139.006585927, 34.752450072], [139.006651051, 34.752435288]]]}}, {"id": "51177", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.001957613, 34.746958468], [139.001850882, 34.746935378], [139.001842815, 34.746956505], [139.001957613, 34.746958468]]]}}, {"id": "51178", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997404125, 34.732070748], [138.997531141, 34.732073477], [138.99752048, 34.732045486], [138.997404125, 34.732070748]]]}}, {"id": "51179", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.00328738, 34.747954721], [139.003277082, 34.747877414], [139.003241115, 34.747981324], [139.00328738, 34.747954721]]]}}, {"id": "51180", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.003679157, 34.747901541], [139.003666057, 34.747975694], [139.003694436, 34.747972333], [139.003679157, 34.747901541]]]}}, {"id": "51181", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.00081607, 34.745654189], [139.000724942, 34.745665919], [139.000786329, 34.745702], [139.00081607, 34.745654189]]]}}, {"id": "51182", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.002678859, 34.748089306], [139.002598872, 34.748082153], [139.00259559, 34.748134721], [139.002678859, 34.748089306]]]}}, {"id": "51183", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.004008106, 34.748528432], [139.0040531, 34.74843773], [139.004025798, 34.748420541], [139.004008106, 34.748528432]]]}}, {"id": "51184", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997840039, 34.730723838], [138.997922101, 34.73069664], [138.997914799, 34.730679], [138.997840039, 34.730723838]]]}}, {"id": "51185", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.020186654, 34.753627784], [139.020214345, 34.75370673], [139.020237601, 34.75365236], [139.020186654, 34.753627784]]]}}, {"id": "51186", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998006342, 34.731159396], [138.997997717, 34.731104712], [138.997957626, 34.731158153], [138.998006342, 34.731159396]]]}}, {"id": "51187", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998778962, 34.741073369], [138.998829637, 34.741109586], [138.998828651, 34.741072541], [138.998778962, 34.741073369]]]}}, {"id": "51188", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.00299703, 34.747983505], [139.002955798, 34.747955189], [139.002947315, 34.747979387], [139.00299703, 34.747983505]]]}}, {"id": "51189", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.995148314, 34.728390901], [138.99512227, 34.728345667], [138.995097912, 34.728379748], [138.995148314, 34.728390901]]]}}, {"id": "51190", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006347406, 34.752041964], [139.006412633, 34.75202664], [139.006404254, 34.752015225], [139.006347406, 34.752041964]]]}}, {"id": "51191", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008346783, 34.752527928], [139.008380013, 34.752568081], [139.008392659, 34.752528], [139.008346783, 34.752527928]]]}}, {"id": "51192", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998575525, 34.741621324], [138.998549663, 34.741571486], [138.998530752, 34.741587162], [138.998575525, 34.741621324]]]}}, {"id": "51193", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.017156096, 34.753598324], [139.017083917, 34.753565901], [139.017111647, 34.753632766], [139.017156096, 34.753598324]]]}}, {"id": "51194", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.005295422, 34.747389279], [139.005358067, 34.747365315], [139.005340571, 34.747343477], [139.005295422, 34.747389279]]]}}, {"id": "51195", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000788249, 34.735614748], [139.000784436, 34.735561577], [139.000773061, 34.735612649], [139.000788249, 34.735614748]]]}}, {"id": "51196", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008362257, 34.752344586], [139.008359144, 34.752389135], [139.008393398, 34.752363748], [139.008362257, 34.752344586]]]}}, {"id": "51197", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998503424, 34.741344955], [138.998512335, 34.74130236], [138.998468003, 34.741321117], [138.998503424, 34.741344955]]]}}, {"id": "51198", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997519066, 34.732919225], [138.997538418, 34.732869288], [138.997509637, 34.732894739], [138.997519066, 34.732919225]]]}}, {"id": "51199", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008270311, 34.752560604], [139.008250298, 34.752592514], [139.00828869, 34.752600739], [139.008270311, 34.752560604]]]}}, {"id": "51200", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.017098327, 34.753740459], [139.01710463, 34.753787946], [139.017119027, 34.753748216], [139.017098327, 34.753740459]]]}}, {"id": "51201", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.991909209, 34.722843919], [138.991867147, 34.722893946], [138.991945499, 34.722850712], [138.991909209, 34.722843919]]]}}, {"id": "51202", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998006213, 34.73279364], [138.997976187, 34.732759054], [138.997962633, 34.732775243], [138.998006213, 34.73279364]]]}}, {"id": "51203", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998621167, 34.741348793], [138.998581543, 34.741332369], [138.998599533, 34.741363396], [138.998621167, 34.741348793]]]}}, {"id": "51204", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997742542, 34.730979541], [138.997701375, 34.730961685], [138.997713878, 34.730990207], [138.997742542, 34.730979541]]]}}, {"id": "51205", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.020171569, 34.753730712], [139.020169767, 34.75377282], [139.020201154, 34.753761595], [139.020171569, 34.753730712]]]}}, {"id": "51206", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006205979, 34.752099613], [139.006241894, 34.752094955], [139.006215888, 34.752076856], [139.006205979, 34.752099613]]]}}, {"id": "51207", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999102776, 34.740421072], [138.999099209, 34.740390982], [138.999069157, 34.740404802], [138.999102776, 34.740421072]]]}}, {"id": "51208", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000691621, 34.735960514], [139.000679429, 34.735931441], [139.000649546, 34.73595482], [139.000691621, 34.735960514]]]}}, {"id": "51209", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006229196, 34.752018568], [139.006260558, 34.752003468], [139.006239377, 34.751986613], [139.006229196, 34.752018568]]]}}, {"id": "51210", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008295266, 34.752463324], [139.008328366, 34.752480405], [139.008330298, 34.752457946], [139.008295266, 34.752463324]]]}}, {"id": "51211", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.008081634, 34.752304468], [139.008092607, 34.752331198], [139.008104215, 34.752317622], [139.008081634, 34.752304468]]]}}, {"id": "51212", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000442036, 34.73691109], [139.000469624, 34.736886], [139.000436615, 34.736900288], [139.000442036, 34.73691109]]]}}, {"id": "51213", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.006689377, 34.752326766], [139.006655292, 34.752324748], [139.006646485, 34.752350108], [139.006689377, 34.752326766]]]}}, {"id": "51214", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000514877, 34.736840468], [139.000485435, 34.736827432], [139.000497925, 34.736853793], [139.000514877, 34.736840468]]]}}, {"id": "51215", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.998994319, 34.73384282], [138.998990584, 34.733821018], [138.998968923, 34.733832829], [138.998994319, 34.73384282]]]}}, {"id": "51216", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.997769572, 34.732300946], [138.997745409, 34.732315018], [138.997764345, 34.732321973], [138.997769572, 34.732300946]]]}}, {"id": "51217", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[139.000846667, 34.738073892], [139.000832231, 34.738052676], [139.000827134, 34.738058559], [139.000846667, 34.738073892]]]}}, {"id": "51218", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999389637, 34.739744225], [138.999360817, 34.739745874], [138.999407951, 34.739755865], [138.999389637, 34.739744225]]]}}, {"id": "51219", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "河津町", "N03_005": null, "N03_007": "22302"}, "geometry": {"type": "Polygon", "coordinates": [[[138.999462711, 34.740453225], [138.999439935, 34.740461523], [138.999463398, 34.740459351], [138.999462711, 34.740453225]]]}}, {"id": "51220", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.789713437, 34.669478396], [138.741728612, 34.701653333], [138.773828054, 34.715982495], [138.886525279, 34.703043613], [138.904778392, 34.629245676], [138.825698158, 34.605809703], [138.773811764, 34.644039883], [138.789713437, 34.669478396]]]}}, {"id": "51221", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.824612698, 34.606249387], [138.822601362, 34.606363532], [138.822863398, 34.607555018], [138.824612698, 34.606249387]]]}}, {"id": "51222", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.811014475, 34.615237685], [138.813135772, 34.613444622], [138.812296005, 34.613146477], [138.811014475, 34.615237685]]]}}, {"id": "51223", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765351038, 34.673583036], [138.766287678, 34.673496883], [138.765872594, 34.671931036], [138.765351038, 34.673583036]]]}}, {"id": "51224", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779379546, 34.660446306], [138.780070415, 34.659121018], [138.779775642, 34.658672198], [138.779379546, 34.660446306]]]}}, {"id": "51225", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.93240834, 34.610172495], [138.932128885, 34.611338892], [138.93276917, 34.610211946], [138.93240834, 34.610172495]]]}}, {"id": "51226", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772543385, 34.656153865], [138.773082594, 34.65523527], [138.772170558, 34.655744144], [138.772543385, 34.656153865]]]}}, {"id": "51227", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.79401428, 34.621551216], [138.793212879, 34.621996243], [138.793788794, 34.622429577], [138.79401428, 34.621551216]]]}}, {"id": "51228", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.771470558, 34.648005234], [138.771436407, 34.647134261], [138.771118366, 34.648325973], [138.771470558, 34.648005234]]]}}, {"id": "51229", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.89189393, 34.628551685], [138.891034086, 34.629066054], [138.892336459, 34.628937459], [138.89189393, 34.628551685]]]}}, {"id": "51230", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859325577, 34.610177856], [138.859918599, 34.609208685], [138.860101751, 34.608847622], [138.859325577, 34.610177856]]]}}, {"id": "51231", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742024578, 34.695392766], [138.741131141, 34.695041324], [138.741297652, 34.695773838], [138.742024578, 34.695392766]]]}}, {"id": "51232", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.919921673, 34.613716108], [138.919226667, 34.614003054], [138.919846667, 34.614110279], [138.919921673, 34.613716108]]]}}, {"id": "51233", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.933239442, 34.610364162], [138.93272834, 34.609761667], [138.933028054, 34.610364162], [138.933239442, 34.610364162]]]}}, {"id": "51234", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826084423, 34.605213396], [138.825554929, 34.605064883], [138.825635564, 34.605696189], [138.826084423, 34.605213396]]]}}, {"id": "51235", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.829103009, 34.603809009], [138.829477185, 34.604248387], [138.829480908, 34.603781748], [138.829103009, 34.603809009]]]}}, {"id": "51236", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900193774, 34.630337694], [138.899572438, 34.631066081], [138.899604112, 34.631234477], [138.900193774, 34.630337694]]]}}, {"id": "51237", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78180013, 34.665369883], [138.781787224, 34.664010243], [138.781590065, 34.665330703], [138.78180013, 34.665369883]]]}}, {"id": "51238", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.781517367, 34.663001342], [138.781995136, 34.661675459], [138.781809339, 34.661645775], [138.781517367, 34.663001342]]]}}, {"id": "51239", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81007323, 34.615010829], [138.810528262, 34.614392937], [138.809988586, 34.614857604], [138.81007323, 34.615010829]]]}}, {"id": "51240", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.83235, 34.604287928], [138.832844617, 34.604385387], [138.83280703, 34.603954288], [138.83235, 34.604287928]]]}}, {"id": "51241", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.745610778, 34.687169532], [138.746135642, 34.686950937], [138.746007017, 34.686784414], [138.745610778, 34.687169532]]]}}, {"id": "51242", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787513411, 34.638480306], [138.788176031, 34.63863227], [138.788159481, 34.638043703], [138.787513411, 34.638480306]]]}}, {"id": "51243", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.771875136, 34.653909937], [138.771474047, 34.654563982], [138.771679909, 34.655031324], [138.771875136, 34.653909937]]]}}, {"id": "51244", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.870813748, 34.616933946], [138.870285707, 34.616926892], [138.870297652, 34.61750473], [138.870813748, 34.616933946]]]}}, {"id": "51245", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859547613, 34.606289919], [138.859775824, 34.605606423], [138.859103476, 34.606429874], [138.859547613, 34.606289919]]]}}, {"id": "51246", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.775219792, 34.673505532], [138.775186446, 34.674148387], [138.775426744, 34.67415136], [138.775219792, 34.673505532]]]}}, {"id": "51247", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88763987, 34.625723676], [138.88799917, 34.625360306], [138.887497639, 34.625625054], [138.88763987, 34.625723676]]]}}, {"id": "51248", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.79275249, 34.634953613], [138.792635357, 34.63436745], [138.792338029, 34.634336793], [138.79275249, 34.634953613]]]}}, {"id": "51249", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.821105564, 34.612009234], [138.821691518, 34.611887153], [138.82147415, 34.611620423], [138.821105564, 34.612009234]]]}}, {"id": "51250", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.812573074, 34.612882342], [138.813181232, 34.61292036], [138.812941505, 34.612528541], [138.812573074, 34.612882342]]]}}, {"id": "51251", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817457328, 34.611312973], [138.817372789, 34.610702955], [138.81723345, 34.61076345], [138.817457328, 34.611312973]]]}}, {"id": "51252", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.821934163, 34.61184036], [138.822459403, 34.611386586], [138.821781842, 34.611417586], [138.821934163, 34.61184036]]]}}, {"id": "51253", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.79207917, 34.623028324], [138.792761997, 34.622880279], [138.792121712, 34.622566018], [138.79207917, 34.623028324]]]}}, {"id": "51254", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783522114, 34.637909333], [138.783968016, 34.638516198], [138.783981025, 34.638239036], [138.783878042, 34.638327721], [138.783658846, 34.637895676], [138.783522114, 34.637909333]]]}}, {"id": "51255", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827492438, 34.605454117], [138.827667588, 34.605908829], [138.827779416, 34.605790514], [138.827492438, 34.605454117]]]}}, {"id": "51256", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861671167, 34.612402649], [138.861341336, 34.61215409], [138.861258885, 34.612527739], [138.861671167, 34.612402649]]]}}, {"id": "51257", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859161064, 34.610891631], [138.859694825, 34.610541883], [138.859212023, 34.610343532], [138.859161064, 34.610891631]]]}}, {"id": "51258", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.824427743, 34.607725766], [138.824415253, 34.608270595], [138.82464537, 34.607666225], [138.824427743, 34.607725766]]]}}, {"id": "51259", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891727341, 34.628333234], [138.891380661, 34.628316865], [138.891086822, 34.628845099], [138.891727341, 34.628333234]]]}}, {"id": "51260", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772099559, 34.64840664], [138.771886057, 34.647866468], [138.771839157, 34.648405414], [138.772099559, 34.64840664]]]}}, {"id": "51261", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.815142581, 34.614333955], [138.814722101, 34.614477838], [138.814775045, 34.614578856], [138.815142581, 34.614333955]]]}}, {"id": "51262", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898555694, 34.631127739], [138.899147121, 34.630756], [138.898492815, 34.630911667], [138.898555694, 34.631127739]]]}}, {"id": "51263", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.834633463, 34.604512838], [138.835392581, 34.604332793], [138.835516096, 34.604165766], [138.834633463, 34.604512838]]]}}, {"id": "51264", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859731349, 34.609023162], [138.859322737, 34.609012099], [138.859441038, 34.609338919], [138.859731349, 34.609023162]]]}}, {"id": "51265", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741669611, 34.699821541], [138.741163982, 34.699364748], [138.74111489, 34.699407757], [138.741669611, 34.699821541]]]}}, {"id": "51266", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.85011048, 34.611344631], [138.850474617, 34.611667414], [138.850603489, 34.611535685], [138.85011048, 34.611344631]]]}}, {"id": "51267", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839936044, 34.602893198], [138.840224981, 34.602947378], [138.840204125, 34.602486126], [138.839936044, 34.602893198]]]}}, {"id": "51268", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.797864021, 34.621893748], [138.797515953, 34.621691568], [138.797710869, 34.622097685], [138.797864021, 34.621893748]]]}}, {"id": "51269", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858919546, 34.609982252], [138.858579196, 34.610275162], [138.858927743, 34.610212207], [138.858919546, 34.609982252]]]}}, {"id": "51270", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.822323982, 34.607746126], [138.822683722, 34.607415937], [138.822473307, 34.607365919], [138.822323982, 34.607746126]]]}}, {"id": "51271", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.820415785, 34.61161618], [138.82084284, 34.611460622], [138.820775499, 34.611246333], [138.820415785, 34.61161618]]]}}, {"id": "51272", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792287912, 34.635221306], [138.79232323, 34.63478245], [138.792002335, 34.634749144], [138.792287912, 34.635221306]]]}}, {"id": "51273", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853891543, 34.611674045], [138.853591518, 34.611403468], [138.853402737, 34.611551054], [138.853891543, 34.611674045]]]}}, {"id": "51274", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825283126, 34.607866198], [138.825378495, 34.607493532], [138.825124669, 34.607884838], [138.825283126, 34.607866198]]]}}, {"id": "51275", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817253891, 34.609171117], [138.817322983, 34.608789054], [138.817081816, 34.608652288], [138.817253891, 34.609171117]]]}}, {"id": "51276", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.842064047, 34.600492432], [138.842460908, 34.600412703], [138.842508625, 34.600218919], [138.842064047, 34.600492432]]]}}, {"id": "51277", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912626109, 34.61075], [138.912476109, 34.610380829], [138.912424449, 34.610811108], [138.912626109, 34.61075]]]}}, {"id": "51278", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.794207847, 34.621798577], [138.794065875, 34.622296207], [138.794376524, 34.621881838], [138.794207847, 34.621798577]]]}}, {"id": "51279", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790486394, 34.630436667], [138.79003917, 34.630480279], [138.790351673, 34.630653613], [138.790486394, 34.630436667]]]}}, {"id": "51280", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.810451933, 34.623413252], [138.810102062, 34.623438847], [138.810018508, 34.623667505], [138.810451933, 34.623413252]]]}}, {"id": "51281", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.899324514, 34.631199054], [138.899220208, 34.631056144], [138.898633969, 34.631144973], [138.898988573, 34.631356568], [138.899324514, 34.631199054]]]}}, {"id": "51282", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82612083, 34.599386108], [138.825975551, 34.599194162], [138.825951388, 34.599445], [138.82612083, 34.599386108]]]}}, {"id": "51283", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839586537, 34.601993991], [138.839647964, 34.602296378], [138.839948275, 34.602201865], [138.839586537, 34.601993991]]]}}, {"id": "51284", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.923471115, 34.607361387], [138.923334721, 34.607073892], [138.923103061, 34.607372495], [138.923471115, 34.607361387]]]}}, {"id": "51285", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857925953, 34.607255441], [138.857770947, 34.606960009], [138.857582853, 34.607311982], [138.857925953, 34.607255441]]]}}, {"id": "51286", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.818740713, 34.612875766], [138.819139987, 34.612439369], [138.818676628, 34.612885126], [138.818740713, 34.612875766]]]}}, {"id": "51287", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858462412, 34.606392279], [138.858112101, 34.606880306], [138.858142192, 34.607006973], [138.858462412, 34.606392279]]]}}, {"id": "51288", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859617134, 34.611512964], [138.85944751, 34.611801865], [138.859681492, 34.611520081], [138.859617134, 34.611512964]]]}}, {"id": "51289", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791085837, 34.630826667], [138.790651388, 34.630811946], [138.791118054, 34.630945829], [138.791085837, 34.630826667]]]}}, {"id": "51290", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861777263, 34.609209766], [138.862144981, 34.608641613], [138.861833126, 34.608866117], [138.861777263, 34.609209766]]]}}, {"id": "51291", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826969144, 34.60563709], [138.826726265, 34.605873036], [138.826843048, 34.60595891], [138.826969144, 34.60563709]]]}}, {"id": "51292", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772571907, 34.652303306], [138.7724169, 34.65257691], [138.772678184, 34.652542333], [138.772571907, 34.652303306]]]}}, {"id": "51293", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865414877, 34.607496306], [138.865299741, 34.607794964], [138.865688729, 34.607411189], [138.865414877, 34.607496306]]]}}, {"id": "51294", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.862014942, 34.612144784], [138.861789235, 34.61206982], [138.861785006, 34.612300712], [138.862014942, 34.612144784]]]}}, {"id": "51295", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81524297, 34.614869559], [138.815156732, 34.614585802], [138.815118171, 34.614886018], [138.81524297, 34.614869559]]]}}, {"id": "51296", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.812951115, 34.620258378], [138.813235435, 34.620263694], [138.813012503, 34.620054027], [138.812951115, 34.620258378]]]}}, {"id": "51297", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780029948, 34.639238045], [138.780086265, 34.639507658], [138.780206887, 34.639144964], [138.780029948, 34.639238045]]]}}, {"id": "51298", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864987769, 34.61322164], [138.864765733, 34.613140171], [138.864705668, 34.613294874], [138.864987769, 34.61322164]]]}}, {"id": "51299", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.773361336, 34.645529847], [138.773226887, 34.645780775], [138.773482711, 34.645752973], [138.773361336, 34.645529847]]]}}, {"id": "51300", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891433606, 34.627722676], [138.891365785, 34.627910595], [138.891515486, 34.627764063], [138.891433606, 34.627722676]]]}}, {"id": "51301", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740917782, 34.695652162], [138.740645746, 34.69553127], [138.740725824, 34.695706369], [138.740917782, 34.695652162]]]}}, {"id": "51302", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859160778, 34.610216568], [138.859053217, 34.609952559], [138.858998366, 34.610282315], [138.859160778, 34.610216568]]]}}, {"id": "51303", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.844626498, 34.601286946], [138.844754345, 34.601566153], [138.844779468, 34.601180315], [138.844626498, 34.601286946]]]}}, {"id": "51304", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887004903, 34.62480218], [138.887075875, 34.624586036], [138.88685585, 34.62473909], [138.887004903, 34.62480218]]]}}, {"id": "51305", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81118978, 34.614873297], [138.810992399, 34.614724865], [138.811046161, 34.614959306], [138.81118978, 34.614873297]]]}}, {"id": "51306", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791333307, 34.635969243], [138.791353852, 34.635730919], [138.791066654, 34.636100414], [138.791333307, 34.635969243]]]}}, {"id": "51307", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887079702, 34.623436676], [138.886922348, 34.623297351], [138.886825032, 34.623407279], [138.887079702, 34.623436676]]]}}, {"id": "51308", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780048353, 34.638837369], [138.779992555, 34.63859327], [138.779873995, 34.638757892], [138.780048353, 34.638837369]]]}}, {"id": "51309", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857737328, 34.611933919], [138.857880311, 34.611763468], [138.857660973, 34.611775649], [138.857737328, 34.611933919]]]}}, {"id": "51310", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860671803, 34.609477369], [138.860651647, 34.609204532], [138.860567056, 34.609463252], [138.860671803, 34.609477369]]]}}, {"id": "51311", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.83441703, 34.604431036], [138.834641608, 34.604340991], [138.834750986, 34.60418355], [138.83441703, 34.604431036]]]}}, {"id": "51312", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777465837, 34.639651757], [138.777557795, 34.639425982], [138.777398755, 34.639388667], [138.777465837, 34.639651757]]]}}, {"id": "51313", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898833152, 34.630695631], [138.898797354, 34.630552405], [138.898578936, 34.630674198], [138.898833152, 34.630695631]]]}}, {"id": "51314", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.848809014, 34.608328604], [138.848761012, 34.608140865], [138.848655772, 34.608317775], [138.848809014, 34.608328604]]]}}, {"id": "51315", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.892199118, 34.628489486], [138.89220808, 34.628261378], [138.892100233, 34.628265054], [138.892199118, 34.628489486]]]}}, {"id": "51316", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.902340065, 34.630336847], [138.902121907, 34.630444577], [138.902138703, 34.630535036], [138.902340065, 34.630336847]]]}}, {"id": "51317", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82540882, 34.605930198], [138.825404423, 34.605530568], [138.825339637, 34.60541327], [138.82540882, 34.605930198]]]}}, {"id": "51318", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887675668, 34.623078315], [138.887390713, 34.623058216], [138.887336005, 34.62315873], [138.887675668, 34.623078315]]]}}, {"id": "51319", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827912516, 34.605005108], [138.828147639, 34.605047297], [138.827954527, 34.60482109], [138.827912516, 34.605005108]]]}}, {"id": "51320", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.888022399, 34.623181973], [138.887812374, 34.623350595], [138.888148379, 34.623280018], [138.888022399, 34.623181973]]]}}, {"id": "51321", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869571349, 34.617914514], [138.869805733, 34.617996919], [138.869665564, 34.617716883], [138.869571349, 34.617914514]]]}}, {"id": "51322", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772612529, 34.652849991], [138.772429196, 34.652998613], [138.77260048, 34.653099919], [138.772612529, 34.652849991]]]}}, {"id": "51323", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.823990973, 34.608040117], [138.824042192, 34.607753387], [138.823831245, 34.608128622], [138.823990973, 34.608040117]]]}}, {"id": "51324", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.818165642, 34.614452405], [138.818357782, 34.614225171], [138.817996148, 34.61441273], [138.818165642, 34.614452405]]]}}, {"id": "51325", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854112581, 34.610802441], [138.853883593, 34.61095555], [138.854257497, 34.610854216], [138.854112581, 34.610802441]]]}}, {"id": "51326", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887170104, 34.623739838], [138.887381232, 34.623645054], [138.886931958, 34.62372473], [138.887170104, 34.623739838]]]}}, {"id": "51327", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.894415629, 34.632898712], [138.894269235, 34.633052532], [138.894535953, 34.633063748], [138.894415629, 34.632898712]]]}}, {"id": "51328", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.85676428, 34.612605333], [138.856556096, 34.612573577], [138.856568495, 34.612643685], [138.85676428, 34.612605333]]]}}, {"id": "51329", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.829049805, 34.604721946], [138.829157717, 34.604880144], [138.829212789, 34.604634234], [138.829049805, 34.604721946]]]}}, {"id": "51330", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826395227, 34.605868243], [138.826509805, 34.605613523], [138.826264514, 34.605678009], [138.826395227, 34.605868243]]]}}, {"id": "51331", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851470156, 34.611408243], [138.851825525, 34.611330405], [138.851913204, 34.611258036], [138.851470156, 34.611408243]]]}}, {"id": "51332", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780258184, 34.659963685], [138.780407925, 34.660075495], [138.780334578, 34.659808721], [138.780258184, 34.659963685]]]}}, {"id": "51333", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901156187, 34.631520928], [138.90072144, 34.631676613], [138.900916278, 34.631665153], [138.901156187, 34.631520928]]]}}, {"id": "51334", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857262581, 34.60730327], [138.857106654, 34.607175532], [138.857080272, 34.607329045], [138.857262581, 34.60730327]]]}}, {"id": "51335", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.902633333, 34.629975189], [138.902410558, 34.630029919], [138.902430571, 34.63017482], [138.902633333, 34.629975189]]]}}, {"id": "51336", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857933204, 34.606377694], [138.857629689, 34.606537432], [138.857641167, 34.606648378], [138.857885655, 34.606528027], [138.857933204, 34.606377694]]]}}, {"id": "51337", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827616122, 34.604354279], [138.827825435, 34.604291243], [138.827723307, 34.604108414], [138.827616122, 34.604354279]]]}}, {"id": "51338", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898853995, 34.631403532], [138.898604617, 34.631300757], [138.89853393, 34.631390514], [138.898853995, 34.631403532]]]}}, {"id": "51339", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858467756, 34.610173892], [138.858282438, 34.61031291], [138.858425305, 34.610369288], [138.858467756, 34.610173892]]]}}, {"id": "51340", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874447471, 34.620535514], [138.874451479, 34.620385676], [138.874344565, 34.62035255], [138.874447471, 34.620535514]]]}}, {"id": "51341", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783199896, 34.661260306], [138.783396589, 34.661285189], [138.783503995, 34.661106523], [138.783199896, 34.661260306]]]}}, {"id": "51342", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.797680311, 34.621418099], [138.797495266, 34.621395018], [138.797518029, 34.621567514], [138.797680311, 34.621418099]]]}}, {"id": "51343", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.924996394, 34.623670829], [138.925180558, 34.623721387], [138.925125837, 34.623608892], [138.924996394, 34.623670829]]]}}, {"id": "51344", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859563178, 34.608710108], [138.859663087, 34.608489207], [138.859428898, 34.608773694], [138.859563178, 34.608710108]]]}}, {"id": "51345", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839921777, 34.603325964], [138.840025136, 34.603457117], [138.840052659, 34.60325727], [138.839921777, 34.603325964]]]}}, {"id": "51346", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790701336, 34.635717694], [138.790500376, 34.635767036], [138.790656148, 34.635864477], [138.790701336, 34.635717694]]]}}, {"id": "51347", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886353878, 34.621943441], [138.886112685, 34.621927523], [138.885946498, 34.621999811], [138.886104994, 34.622055748], [138.886353878, 34.621943441]]]}}, {"id": "51348", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780825901, 34.66592909], [138.780615538, 34.665897477], [138.780650532, 34.666179216], [138.780825901, 34.66592909]]]}}, {"id": "51349", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.819406187, 34.612445072], [138.819672192, 34.612289135], [138.819646744, 34.612249892], [138.819406187, 34.612445072]]]}}, {"id": "51350", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.862069416, 34.608616595], [138.861969689, 34.608526378], [138.861842996, 34.608752135], [138.862069416, 34.608616595]]]}}, {"id": "51351", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76556284, 34.672522207], [138.76561083, 34.67224191], [138.765519792, 34.672233721], [138.76556284, 34.672522207]]]}}, {"id": "51352", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826088353, 34.605939658], [138.826026628, 34.605685405], [138.82603144, 34.605968568], [138.826088353, 34.605939658]]]}}, {"id": "51353", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854112568, 34.612315108], [138.85411022, 34.612120748], [138.853960778, 34.612314829], [138.854112568, 34.612315108]]]}}, {"id": "51354", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782558327, 34.661154604], [138.782426109, 34.661194667], [138.782363113, 34.661278568], [138.782558327, 34.661154604]]]}}, {"id": "51355", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82120869, 34.612568541], [138.821170843, 34.612425387], [138.82108808, 34.612256568], [138.82120869, 34.612568541]]]}}, {"id": "51356", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869580584, 34.617610676], [138.869405979, 34.617509505], [138.869483606, 34.617652072], [138.869580584, 34.617610676]]]}}, {"id": "51357", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741053204, 34.688374946], [138.741198755, 34.688474099], [138.741176848, 34.688334946], [138.741053204, 34.688374946]]]}}, {"id": "51358", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887814488, 34.623592288], [138.88766332, 34.623707261], [138.887834462, 34.623621072], [138.887814488, 34.623592288]]]}}, {"id": "51359", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.821215551, 34.611832243], [138.821132529, 34.611707784], [138.82108847, 34.611986919], [138.821215551, 34.611832243]]]}}, {"id": "51360", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787985499, 34.637914387], [138.787970661, 34.637723568], [138.78791192, 34.63792673], [138.787985499, 34.637914387]]]}}, {"id": "51361", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.813018794, 34.615224631], [138.813070921, 34.615136595], [138.813106355, 34.614874342], [138.813018794, 34.615224631]]]}}, {"id": "51362", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779809572, 34.658155369], [138.780019598, 34.658222405], [138.779938586, 34.658107108], [138.779809572, 34.658155369]]]}}, {"id": "51363", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.822251401, 34.61235727], [138.821810726, 34.612630964], [138.822150389, 34.612487532], [138.822251401, 34.61235727]]]}}, {"id": "51364", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853902944, 34.611149234], [138.853660233, 34.611228099], [138.853629805, 34.611328171], [138.853902944, 34.611149234]]]}}, {"id": "51365", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825216446, 34.605977685], [138.82520166, 34.605762342], [138.825113022, 34.605793054], [138.825216446, 34.605977685]]]}}, {"id": "51366", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891673891, 34.628028874], [138.89154166, 34.627904081], [138.89142, 34.628007514], [138.891673891, 34.628028874]]]}}, {"id": "51367", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.773269922, 34.652479532], [138.773407912, 34.652475252], [138.773307367, 34.652355577], [138.773269922, 34.652479532]]]}}, {"id": "51368", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849474799, 34.608332468], [138.849424163, 34.608163847], [138.849347808, 34.608315252], [138.849474799, 34.608332468]]]}}, {"id": "51369", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.881292944, 34.624051622], [138.881117873, 34.623924505], [138.881156291, 34.624050423], [138.881292944, 34.624051622]]]}}, {"id": "51370", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791184475, 34.662691054], [138.791335551, 34.66249218], [138.791240804, 34.662449315], [138.791184475, 34.662691054]]]}}, {"id": "51371", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.870399053, 34.617723045], [138.870256031, 34.617611414], [138.870302957, 34.61781691], [138.870399053, 34.617723045]]]}}, {"id": "51372", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886181038, 34.62326282], [138.886017639, 34.623185991], [138.885985512, 34.623264252], [138.886181038, 34.62326282]]]}}, {"id": "51373", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82039725, 34.613208234], [138.820470519, 34.612977613], [138.820327588, 34.613013234], [138.82039725, 34.613208234]]]}}, {"id": "51374", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739895837, 34.689841387], [138.739941946, 34.690010414], [138.740003463, 34.68995891], [138.739895837, 34.689841387]]]}}, {"id": "51375", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839673696, 34.602779523], [138.839883502, 34.602736027], [138.839973307, 34.602592973], [138.839673696, 34.602779523]]]}}, {"id": "51376", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787335668, 34.639318054], [138.787218301, 34.639348892], [138.787290104, 34.639422829], [138.787335668, 34.639318054]]]}}, {"id": "51377", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886761634, 34.623116829], [138.886466874, 34.623193586], [138.886450765, 34.623245739], [138.886761634, 34.623116829]]]}}, {"id": "51378", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857326407, 34.606396964], [138.857139637, 34.606525793], [138.857181258, 34.606620514], [138.857326407, 34.606396964]]]}}, {"id": "51379", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900354968, 34.631630216], [138.900265162, 34.631486261], [138.900193696, 34.631571153], [138.900354968, 34.631630216]]]}}, {"id": "51380", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843071362, 34.600788369], [138.843008379, 34.600718586], [138.842901881, 34.600882604], [138.843071362, 34.600788369]]]}}, {"id": "51381", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857811453, 34.606845856], [138.858002931, 34.60692273], [138.857978132, 34.606785685], [138.857811453, 34.606845856]]]}}, {"id": "51382", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.832076161, 34.604272631], [138.831994604, 34.604163045], [138.831980441, 34.604304261], [138.832076161, 34.604272631]]]}}, {"id": "51383", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891949831, 34.628520306], [138.891872724, 34.628379378], [138.891724202, 34.628523559], [138.891949831, 34.628520306]]]}}, {"id": "51384", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.79105415, 34.635238685], [138.791292257, 34.635145622], [138.79132476, 34.635023027], [138.79105415, 34.635238685]]]}}, {"id": "51385", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742031245, 34.696182306], [138.742022724, 34.696065216], [138.741821115, 34.696177495], [138.742031245, 34.696182306]]]}}, {"id": "51386", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878921764, 34.62173209], [138.879132036, 34.621737928], [138.879134838, 34.621657405], [138.878921764, 34.62173209]]]}}, {"id": "51387", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861048612, 34.609446685], [138.861025525, 34.609276541], [138.860937601, 34.609369928], [138.861048612, 34.609446685]]]}}, {"id": "51388", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887717977, 34.623476207], [138.887604812, 34.62339182], [138.88751441, 34.62343818], [138.887717977, 34.623476207]]]}}, {"id": "51389", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780126939, 34.659189405], [138.780242075, 34.659167595], [138.780225603, 34.659035468], [138.780126939, 34.659189405]]]}}, {"id": "51390", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791034799, 34.635817595], [138.79090952, 34.635958351], [138.791037678, 34.635958405], [138.791034799, 34.635817595]]]}}, {"id": "51391", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869998911, 34.617319117], [138.869897134, 34.617238829], [138.869871582, 34.617401901], [138.869998911, 34.617319117]]]}}, {"id": "51392", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86562585, 34.607517577], [138.865662931, 34.607620694], [138.86574572, 34.607476649], [138.86562585, 34.607517577]]]}}, {"id": "51393", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.832014799, 34.604909631], [138.832198534, 34.604750018], [138.832204617, 34.604660297], [138.832014799, 34.604909631]]]}}, {"id": "51394", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.876800558, 34.615735279], [138.876916394, 34.615819721], [138.877011673, 34.615706946], [138.876800558, 34.615735279]]]}}, {"id": "51395", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.876691673, 34.616146387], [138.876732503, 34.616253613], [138.876773333, 34.616208333], [138.876691673, 34.616146387]]]}}, {"id": "51396", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.824690791, 34.609980144], [138.824915292, 34.609866405], [138.82484773, 34.609819892], [138.824690791, 34.609980144]]]}}, {"id": "51397", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.875165992, 34.620287559], [138.875348003, 34.620265811], [138.875123126, 34.620188883], [138.875165992, 34.620287559]]]}}, {"id": "51398", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.836603152, 34.602871243], [138.836519196, 34.603087207], [138.836565538, 34.603144324], [138.836603152, 34.602871243]]]}}, {"id": "51399", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772721323, 34.654521892], [138.772770532, 34.654692441], [138.77280035, 34.654536586], [138.772721323, 34.654521892]]]}}, {"id": "51400", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839463476, 34.602135153], [138.83939738, 34.602022198], [138.839399118, 34.602152459], [138.839463476, 34.602135153]]]}}, {"id": "51401", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817778612, 34.615274712], [138.817612348, 34.615169486], [138.817591881, 34.61531991], [138.817778612, 34.615274712]]]}}, {"id": "51402", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742419572, 34.696284216], [138.742341803, 34.696189351], [138.742235409, 34.696313252], [138.742419572, 34.696284216]]]}}, {"id": "51403", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.820750571, 34.611938135], [138.820819481, 34.61173782], [138.820684099, 34.611949396], [138.820750571, 34.611938135]]]}}, {"id": "51404", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.868226628, 34.619065135], [138.868375071, 34.619170441], [138.868375668, 34.619008703], [138.868226628, 34.619065135]]]}}, {"id": "51405", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.769588158, 34.653744712], [138.769680363, 34.653852514], [138.769711621, 34.653701532], [138.769588158, 34.653744712]]]}}, {"id": "51406", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.813123502, 34.615403405], [138.813311388, 34.615257595], [138.813083204, 34.61538845], [138.813123502, 34.615403405]]]}}, {"id": "51407", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900089663, 34.63184673], [138.900236083, 34.631696955], [138.900125655, 34.631665405], [138.900089663, 34.63184673]]]}}, {"id": "51408", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.794360973, 34.622109685], [138.794192711, 34.622297523], [138.794487328, 34.622129396], [138.794360973, 34.622109685]]]}}, {"id": "51409", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857418859, 34.607310748], [138.857495655, 34.60716736], [138.857350571, 34.60730464], [138.857418859, 34.607310748]]]}}, {"id": "51410", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792922062, 34.632060757], [138.793013515, 34.632136622], [138.792997354, 34.632038126], [138.792922062, 34.632060757]]]}}, {"id": "51411", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88597655, 34.621540748], [138.885963268, 34.621403946], [138.88588834, 34.62142636], [138.88597655, 34.621540748]]]}}, {"id": "51412", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860567847, 34.609065946], [138.860473022, 34.609023856], [138.860484695, 34.609149405], [138.860567847, 34.609065946]]]}}, {"id": "51413", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.789380973, 34.637621784], [138.789252503, 34.637534009], [138.789218716, 34.637668144], [138.789380973, 34.637621784]]]}}, {"id": "51414", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.796374176, 34.622800973], [138.796414994, 34.622654559], [138.796189844, 34.622668892], [138.796374176, 34.622800973]]]}}, {"id": "51415", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896577302, 34.633204532], [138.896473813, 34.633185847], [138.896361012, 34.633249225], [138.896577302, 34.633204532]]]}}, {"id": "51416", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792882879, 34.631649577], [138.79295607, 34.631772189], [138.792957276, 34.631650117], [138.792882879, 34.631649577]]]}}, {"id": "51417", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82550332, 34.605418874], [138.825454384, 34.605143676], [138.8254769, 34.605465009], [138.82550332, 34.605418874]]]}}, {"id": "51418", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.85769332, 34.606350991], [138.857627393, 34.606283658], [138.857603385, 34.606429595], [138.85769332, 34.606350991]]]}}, {"id": "51419", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742905084, 34.687205243], [138.743014475, 34.687177351], [138.742870597, 34.68698264], [138.742905084, 34.687205243]]]}}, {"id": "51420", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787494099, 34.639236189], [138.787369092, 34.63914236], [138.787446265, 34.639284892], [138.787494099, 34.639236189]]]}}, {"id": "51421", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.848261894, 34.604730559], [138.848266148, 34.604602162], [138.848169339, 34.604732802], [138.848261894, 34.604730559]]]}}, {"id": "51422", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878949559, 34.62108236], [138.878928586, 34.621242], [138.879060467, 34.621226712], [138.878949559, 34.62108236]]]}}, {"id": "51423", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.832077562, 34.604707162], [138.832037458, 34.604547342], [138.832025603, 34.604719198], [138.832077562, 34.604707162]]]}}, {"id": "51424", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.738060415, 34.691115216], [138.73822559, 34.691164207], [138.738250506, 34.691063459], [138.738060415, 34.691115216]]]}}, {"id": "51425", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854708223, 34.606663973], [138.854830532, 34.606632694], [138.854739351, 34.606574901], [138.854708223, 34.606663973]]]}}, {"id": "51426", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860269494, 34.608679441], [138.860226524, 34.608551279], [138.860124786, 34.608700063], [138.860269494, 34.608679441]]]}}, {"id": "51427", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861444527, 34.608516577], [138.861468171, 34.608335477], [138.861349611, 34.608528667], [138.861444527, 34.608516577]]]}}, {"id": "51428", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.776099831, 34.640468477], [138.77628153, 34.640491063], [138.776179663, 34.640398613], [138.776099831, 34.640468477]]]}}, {"id": "51429", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.922932776, 34.607502225], [138.923062218, 34.607558613], [138.923007782, 34.607457225], [138.922932776, 34.607502225]]]}}, {"id": "51430", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.813926083, 34.61279773], [138.814048054, 34.612756396], [138.814015694, 34.612677144], [138.813926083, 34.61279773]]]}}, {"id": "51431", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865523346, 34.617640207], [138.865617977, 34.617534622], [138.865556641, 34.617450604], [138.865523346, 34.617640207]]]}}, {"id": "51432", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851372685, 34.611721171], [138.851322646, 34.611800108], [138.851487562, 34.611785748], [138.851372685, 34.611721171]]]}}, {"id": "51433", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791136407, 34.662486883], [138.791042335, 34.662635324], [138.790978119, 34.66271436], [138.791082205, 34.662678766], [138.791136407, 34.662486883]]]}}, {"id": "51434", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827790078, 34.604978036], [138.827890908, 34.604999847], [138.827872309, 34.604789216], [138.827790078, 34.604978036]]]}}, {"id": "51435", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.796724643, 34.62205618], [138.796835422, 34.622138586], [138.796755681, 34.62195045], [138.796724643, 34.62205618]]]}}, {"id": "51436", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783918132, 34.661354108], [138.783856187, 34.661234351], [138.783775668, 34.66139573], [138.783918132, 34.661354108]]]}}, {"id": "51437", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777217445, 34.673690234], [138.777195707, 34.67355064], [138.77716978, 34.673694216], [138.777217445, 34.673690234]]]}}, {"id": "51438", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.920514163, 34.613659721], [138.920541673, 34.613530279], [138.920432503, 34.613580829], [138.920514163, 34.613659721]]]}}, {"id": "51439", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887204112, 34.623594856], [138.887312879, 34.623511748], [138.887044488, 34.623555423], [138.887204112, 34.623594856]]]}}, {"id": "51440", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.793828898, 34.627401477], [138.793801401, 34.627305351], [138.793741712, 34.627418189], [138.793828898, 34.627401477]]]}}, {"id": "51441", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825222361, 34.613561306], [138.825033541, 34.613627622], [138.825027069, 34.613672982], [138.825222361, 34.613561306]]]}}, {"id": "51442", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792246252, 34.632082297], [138.792114099, 34.632185658], [138.792184371, 34.632226694], [138.792246252, 34.632082297]]]}}, {"id": "51443", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792257354, 34.631702189], [138.792165746, 34.63189245], [138.792302062, 34.631793676], [138.792257354, 34.631702189]]]}}, {"id": "51444", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742025525, 34.696354054], [138.741878898, 34.696304135], [138.741852166, 34.696346829], [138.742025525, 34.696354054]]]}}, {"id": "51445", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765137601, 34.672388171], [138.76519952, 34.672195477], [138.765147198, 34.67217945], [138.765137601, 34.672388171]]]}}, {"id": "51446", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858411621, 34.608302036], [138.858537367, 34.608332045], [138.858577626, 34.608186874], [138.858411621, 34.608302036]]]}}, {"id": "51447", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858590843, 34.608268964], [138.858700571, 34.608252144], [138.858675084, 34.608131234], [138.858590843, 34.608268964]]]}}, {"id": "51448", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860285772, 34.609469045], [138.860233632, 34.609362721], [138.860166732, 34.609477865], [138.860285772, 34.609469045]]]}}, {"id": "51449", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.838956926, 34.604173829], [138.838988275, 34.603999207], [138.838877575, 34.604233279], [138.838956926, 34.604173829]]]}}, {"id": "51450", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859738677, 34.611910541], [138.859753204, 34.611813766], [138.859603606, 34.611916802], [138.859738677, 34.611910541]]]}}, {"id": "51451", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859336148, 34.608935793], [138.85924939, 34.608892685], [138.859245473, 34.609047486], [138.859336148, 34.608935793]]]}}, {"id": "51452", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782609313, 34.66681955], [138.782504864, 34.666717108], [138.782490778, 34.666779523], [138.782609313, 34.66681955]]]}}, {"id": "51453", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854761388, 34.612115252], [138.85467511, 34.612030937], [138.854569079, 34.612097414], [138.854761388, 34.612115252]]]}}, {"id": "51454", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.899918975, 34.631777964], [138.900021582, 34.631863721], [138.900068158, 34.631751775], [138.899918975, 34.631777964]]]}}, {"id": "51455", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.833383839, 34.603525937], [138.833239507, 34.603613234], [138.83339476, 34.603614162], [138.833383839, 34.603525937]]]}}, {"id": "51456", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783089831, 34.660723171], [138.783004423, 34.660600847], [138.783034267, 34.660746198], [138.783089831, 34.660723171]]]}}, {"id": "51457", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740320817, 34.69304282], [138.740257899, 34.693137423], [138.740357964, 34.693167523], [138.740320817, 34.69304282]]]}}, {"id": "51458", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849909844, 34.610433847], [138.849895603, 34.610341577], [138.849791751, 34.610484135], [138.849909844, 34.610433847]]]}}, {"id": "51459", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851597328, 34.611932027], [138.851819118, 34.611854757], [138.851882568, 34.611799937], [138.851597328, 34.611932027]]]}}, {"id": "51460", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849878975, 34.608506928], [138.849942361, 34.608567964], [138.850045175, 34.60846345], [138.849878975, 34.608506928]]]}}, {"id": "51461", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874268703, 34.619316306], [138.874472685, 34.619280613], [138.874341193, 34.619210964], [138.874268703, 34.619316306]]]}}, {"id": "51462", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.833083022, 34.60385464], [138.833183074, 34.603679468], [138.833000726, 34.60386009], [138.833083022, 34.60385464]]]}}, {"id": "51463", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.789711258, 34.668225207], [138.789643178, 34.668164423], [138.789615045, 34.668298459], [138.789711258, 34.668225207]]]}}, {"id": "51464", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.850293684, 34.60812782], [138.850398392, 34.608005721], [138.850195733, 34.608145135], [138.850293684, 34.60812782]]]}}, {"id": "51465", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.822141038, 34.607750757], [138.822083554, 34.607633261], [138.822034449, 34.607707586], [138.822141038, 34.607750757]]]}}, {"id": "51466", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858324695, 34.606797198], [138.85840118, 34.606836189], [138.858501803, 34.606730685], [138.858324695, 34.606797198]]]}}, {"id": "51467", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849566615, 34.610881721], [138.849659274, 34.61090264], [138.84967323, 34.610849414], [138.849566615, 34.610881721]]]}}, {"id": "51468", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852960389, 34.611893018], [138.852819935, 34.611811117], [138.852730623, 34.611861045], [138.852960389, 34.611893018]]]}}, {"id": "51469", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839546744, 34.602769054], [138.839514643, 34.602679712], [138.839441128, 34.602805595], [138.839546744, 34.602769054]]]}}, {"id": "51470", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843903126, 34.601610027], [138.843880117, 34.601397414], [138.84384358, 34.601632459], [138.843903126, 34.601610027]]]}}, {"id": "51471", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741500804, 34.696158387], [138.741366368, 34.696131874], [138.741361725, 34.69622627], [138.741500804, 34.696158387]]]}}, {"id": "51472", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896177549, 34.632856757], [138.896364319, 34.632730297], [138.896153359, 34.632841063], [138.896177549, 34.632856757]]]}}, {"id": "51473", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.87693, 34.616135279], [138.876998054, 34.616033892], [138.876855006, 34.616090279], [138.87693, 34.616135279]]]}}, {"id": "51474", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843653243, 34.600683324], [138.843777665, 34.600636369], [138.843746887, 34.60060409], [138.843653243, 34.600683324]]]}}, {"id": "51475", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854686329, 34.611106387], [138.854711414, 34.611004532], [138.85454249, 34.611050009], [138.854686329, 34.611106387]]]}}, {"id": "51476", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784436291, 34.661069649], [138.784326796, 34.661148243], [138.784353761, 34.661186135], [138.784436291, 34.661069649]]]}}, {"id": "51477", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.79375262, 34.626832351], [138.793857017, 34.626932081], [138.7938238, 34.626820459], [138.79375262, 34.626832351]]]}}, {"id": "51478", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860148366, 34.609817883], [138.86025284, 34.609696144], [138.860077315, 34.609804577], [138.860148366, 34.609817883]]]}}, {"id": "51479", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858746563, 34.606345279], [138.85865677, 34.606306964], [138.858617652, 34.606465027], [138.858746563, 34.606345279]]]}}, {"id": "51480", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.797079157, 34.62216882], [138.7970593, 34.622290757], [138.797119494, 34.622256892], [138.797079157, 34.62216882]]]}}, {"id": "51481", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.848350687, 34.604480216], [138.84823415, 34.604433045], [138.848188651, 34.604555324], [138.848350687, 34.604480216]]]}}, {"id": "51482", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859602244, 34.610944604], [138.859535798, 34.610831838], [138.859456602, 34.610925919], [138.859602244, 34.610944604]]]}}, {"id": "51483", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.92063, 34.614155279], [138.92054834, 34.614048333], [138.920473333, 34.614098892], [138.92063, 34.614155279]]]}}, {"id": "51484", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860208457, 34.612345586], [138.860048314, 34.612303775], [138.859972711, 34.61234691], [138.860208457, 34.612345586]]]}}, {"id": "51485", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.825318885, 34.607361252], [138.825310285, 34.607252099], [138.825248521, 34.607351252], [138.825318885, 34.607361252]]]}}, {"id": "51486", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817552166, 34.615343541], [138.81742284, 34.615316387], [138.817428405, 34.615403279], [138.817552166, 34.615343541]]]}}, {"id": "51487", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884079741, 34.623355459], [138.883915097, 34.623315234], [138.883911362, 34.623451108], [138.884079741, 34.623355459]]]}}, {"id": "51488", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859276576, 34.611585189], [138.859190117, 34.611509991], [138.859179663, 34.611588721], [138.859276576, 34.611585189]]]}}, {"id": "51489", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741656524, 34.696183045], [138.741463476, 34.696270243], [138.741463489, 34.696311901], [138.741656524, 34.696183045]]]}}, {"id": "51490", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.89469965, 34.632370135], [138.894555136, 34.632414324], [138.894657626, 34.632477189], [138.89469965, 34.632370135]]]}}, {"id": "51491", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791432776, 34.631921108], [138.791264721, 34.631936667], [138.79135834, 34.632012775], [138.791432776, 34.631921108]]]}}, {"id": "51492", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.805830233, 34.623710712], [138.805826381, 34.623820793], [138.805906874, 34.623702766], [138.805830233, 34.623710712]]]}}, {"id": "51493", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740786667, 34.692629009], [138.740707302, 34.692699396], [138.740902555, 34.692658261], [138.740786667, 34.692629009]]]}}, {"id": "51494", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849317782, 34.610906775], [138.849404176, 34.610942766], [138.849438612, 34.610884973], [138.849317782, 34.610906775]]]}}, {"id": "51495", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82138965, 34.611623982], [138.821299248, 34.611594108], [138.821297328, 34.611746297], [138.82138965, 34.611623982]]]}}, {"id": "51496", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.8611669, 34.609141432], [138.861254734, 34.609127919], [138.861226304, 34.608986018], [138.8611669, 34.609141432]]]}}, {"id": "51497", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78783201, 34.637878234], [138.787712218, 34.637931892], [138.787783256, 34.637971117], [138.78783201, 34.637878234]]]}}, {"id": "51498", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784222127, 34.637388703], [138.78419511, 34.637558973], [138.784270039, 34.63758909], [138.784222127, 34.637388703]]]}}, {"id": "51499", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.875049533, 34.620945937], [138.875028457, 34.620988279], [138.875129131, 34.621088856], [138.875049533, 34.620945937]]]}}, {"id": "51500", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.818941466, 34.613903793], [138.818852309, 34.613829468], [138.818844981, 34.613967685], [138.818941466, 34.613903793]]]}}, {"id": "51501", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865378431, 34.618490054], [138.865363009, 34.618379847], [138.86530856, 34.618421658], [138.865378431, 34.618490054]]]}}, {"id": "51502", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.835989948, 34.603354523], [138.836112581, 34.603294775], [138.836058106, 34.603221901], [138.835989948, 34.603354523]]]}}, {"id": "51503", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900832983, 34.631263532], [138.900863696, 34.63111873], [138.900762425, 34.631241586], [138.900832983, 34.631263532]]]}}, {"id": "51504", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.903108872, 34.629932595], [138.903014125, 34.629961306], [138.903063411, 34.630004054], [138.903108872, 34.629932595]]]}}, {"id": "51505", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.793248457, 34.630311829], [138.793171271, 34.630412712], [138.793310441, 34.630351072], [138.793248457, 34.630311829]]]}}, {"id": "51506", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792875447, 34.623636387], [138.792802815, 34.623730685], [138.79290489, 34.623757757], [138.792875447, 34.623636387]]]}}, {"id": "51507", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859580804, 34.609335351], [138.859480999, 34.609378108], [138.859526174, 34.609461459], [138.859580804, 34.609335351]]]}}, {"id": "51508", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865244436, 34.618196559], [138.865275383, 34.618117676], [138.865186563, 34.618155081], [138.865244436, 34.618196559]]]}}, {"id": "51509", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792075979, 34.631546847], [138.791981855, 34.631642541], [138.792109261, 34.631614378], [138.792075979, 34.631546847]]]}}, {"id": "51510", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784691699, 34.638379099], [138.78458808, 34.638348874], [138.784637601, 34.638444045], [138.784691699, 34.638379099]]]}}, {"id": "51511", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777088755, 34.674073486], [138.776956576, 34.673965243], [138.777085383, 34.674140027], [138.777088755, 34.674073486]]]}}, {"id": "51512", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88637323, 34.621481351], [138.886371064, 34.621367405], [138.88629262, 34.621406775], [138.88637323, 34.621481351]]]}}, {"id": "51513", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86512821, 34.617951784], [138.86529703, 34.617881586], [138.865144838, 34.617890523], [138.86512821, 34.617951784]]]}}, {"id": "51514", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.845137341, 34.601245387], [138.845239118, 34.601259973], [138.845217484, 34.601219288], [138.845137341, 34.601245387]]]}}, {"id": "51515", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854654604, 34.604031216], [138.854584591, 34.604127793], [138.854701245, 34.604099775], [138.854654604, 34.604031216]]]}}, {"id": "51516", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.919901115, 34.614735559], [138.919819442, 34.614685], [138.919805837, 34.614758333], [138.919901115, 34.614735559]]]}}, {"id": "51517", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.850005629, 34.609093099], [138.849938301, 34.609029459], [138.849883619, 34.60909345], [138.850005629, 34.609093099]]]}}, {"id": "51518", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792057108, 34.621183045], [138.79218786, 34.621149559], [138.792150104, 34.621113586], [138.792057108, 34.621183045]]]}}, {"id": "51519", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779807043, 34.639186991], [138.779877328, 34.639262919], [138.779897276, 34.639195171], [138.779807043, 34.639186991]]]}}, {"id": "51520", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878622698, 34.621243937], [138.87875345, 34.621291946], [138.878726757, 34.621224595], [138.878622698, 34.621243937]]]}}, {"id": "51521", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884059092, 34.623607865], [138.883940065, 34.623572721], [138.883911401, 34.623694784], [138.884059092, 34.623607865]]]}}, {"id": "51522", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.824921997, 34.603527216], [138.824842594, 34.603462063], [138.824791725, 34.603588054], [138.824921997, 34.603527216]]]}}, {"id": "51523", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783584176, 34.638740937], [138.783577082, 34.638642234], [138.783459416, 34.638653423], [138.783584176, 34.638740937]]]}}, {"id": "51524", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901609844, 34.631349865], [138.901569235, 34.631433117], [138.9017507, 34.631316135], [138.901609844, 34.631349865]]]}}, {"id": "51525", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.817974306, 34.613633874], [138.818028132, 34.613536099], [138.817917678, 34.613539811], [138.817974306, 34.613633874]]]}}, {"id": "51526", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865466148, 34.618597342], [138.865436848, 34.61853036], [138.865325447, 34.618541063], [138.865466148, 34.618597342]]]}}, {"id": "51527", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853171167, 34.611633396], [138.853377263, 34.611687523], [138.853403074, 34.611679423], [138.853171167, 34.611633396]]]}}, {"id": "51528", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849986848, 34.610853559], [138.849975512, 34.610934459], [138.850044125, 34.610863315], [138.849986848, 34.610853559]]]}}, {"id": "51529", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859914202, 34.610916631], [138.859894215, 34.610833757], [138.859880584, 34.610908982], [138.859914202, 34.610916631]]]}}, {"id": "51530", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784652555, 34.667263207], [138.784555785, 34.667173288], [138.784553022, 34.667289676], [138.784652555, 34.667263207]]]}}, {"id": "51531", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827783359, 34.605212], [138.827736537, 34.605144324], [138.827723294, 34.605269676], [138.827783359, 34.605212]]]}}, {"id": "51532", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780322425, 34.63859964], [138.780439313, 34.638426279], [138.780439676, 34.63840482], [138.780339805, 34.638448955], [138.780322425, 34.63859964]]]}}, {"id": "51533", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853255292, 34.610771297], [138.853376654, 34.610696748], [138.853235344, 34.610722225], [138.853255292, 34.610771297]]]}}, {"id": "51534", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.812592711, 34.620650919], [138.812686407, 34.620715414], [138.812623774, 34.620619468], [138.812592711, 34.620650919]]]}}, {"id": "51535", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.840282568, 34.602420189], [138.840414073, 34.602396378], [138.840420259, 34.602334613], [138.840282568, 34.602420189]]]}}, {"id": "51536", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739039326, 34.68996973], [138.739062944, 34.689872676], [138.738937263, 34.68992891], [138.739039326, 34.68996973]]]}}, {"id": "51537", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88616249, 34.622130838], [138.886029702, 34.622162631], [138.886169935, 34.622159577], [138.88616249, 34.622130838]]]}}, {"id": "51538", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.856964501, 34.612786405], [138.856869235, 34.612718441], [138.856842335, 34.612779099], [138.856964501, 34.612786405]]]}}, {"id": "51539", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.855691336, 34.613120622], [138.855584942, 34.613000135], [138.855678418, 34.613136081], [138.855691336, 34.613120622]]]}}, {"id": "51540", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851596355, 34.611728279], [138.851680428, 34.611649423], [138.851470532, 34.611705027], [138.851596355, 34.611728279]]]}}, {"id": "51541", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849778872, 34.609259901], [138.849890233, 34.609268414], [138.849894475, 34.609188171], [138.849778872, 34.609259901]]]}}, {"id": "51542", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.904106757, 34.62960736], [138.904032983, 34.629597505], [138.903921582, 34.629769072], [138.904106757, 34.62960736]]]}}, {"id": "51543", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874256265, 34.619241784], [138.874090674, 34.619302784], [138.874083126, 34.619319937], [138.87421716, 34.619324757], [138.874256265, 34.619241784]]]}}, {"id": "51544", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864789689, 34.617621577], [138.864748301, 34.617757378], [138.86478323, 34.617764577], [138.864789689, 34.617621577]]]}}, {"id": "51545", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766399481, 34.680400189], [138.766621621, 34.680314514], [138.766621569, 34.680298649], [138.766399481, 34.680400189]]]}}, {"id": "51546", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874103645, 34.619202045], [138.874010623, 34.619299874], [138.874118742, 34.619214622], [138.874103645, 34.619202045]]]}}, {"id": "51547", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861257588, 34.60855418], [138.861189131, 34.608684568], [138.861273567, 34.608618144], [138.861257588, 34.60855418]]]}}, {"id": "51548", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859969922, 34.610612928], [138.859869118, 34.610601324], [138.859849922, 34.610652405], [138.859969922, 34.610612928]]]}}, {"id": "51549", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.873873722, 34.619826514], [138.87400655, 34.619802126], [138.8740131, 34.619729541], [138.873873722, 34.619826514]]]}}, {"id": "51550", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.888080324, 34.62349173], [138.887976096, 34.623427784], [138.88790917, 34.623504], [138.888080324, 34.62349173]]]}}, {"id": "51551", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.84940144, 34.610573604], [138.849452464, 34.610624126], [138.849558249, 34.610498595], [138.84940144, 34.610573604]]]}}, {"id": "51552", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.890487302, 34.626330423], [138.890551518, 34.626234027], [138.890481232, 34.626245162], [138.890487302, 34.626330423]]]}}, {"id": "51553", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849751647, 34.610852973], [138.849741686, 34.610948018], [138.849837237, 34.610851739], [138.849751647, 34.610852973]]]}}, {"id": "51554", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901001453, 34.631436333], [138.901014851, 34.631386351], [138.90089537, 34.631511784], [138.901001453, 34.631436333]]]}}, {"id": "51555", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896074345, 34.632851324], [138.89603834, 34.632758856], [138.895982257, 34.632823405], [138.896074345, 34.632851324]]]}}, {"id": "51556", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.861796965, 34.615761721], [138.861717497, 34.615693351], [138.861767185, 34.61576082], [138.861796965, 34.615761721]]]}}, {"id": "51557", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765308521, 34.672263126], [138.765223204, 34.672333631], [138.765259287, 34.672358252], [138.765308521, 34.672263126]]]}}, {"id": "51558", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.832109118, 34.604008928], [138.832208003, 34.60403427], [138.83223358, 34.603940982], [138.832109118, 34.604008928]]]}}, {"id": "51559", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878694163, 34.614749162], [138.878748885, 34.614642225], [138.878646667, 34.614709721], [138.878694163, 34.614749162]]]}}, {"id": "51560", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.811626278, 34.613208775], [138.811712205, 34.613149955], [138.811616109, 34.613171928], [138.811626278, 34.613208775]]]}}, {"id": "51561", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.803098833, 34.625910216], [138.802942737, 34.625840468], [138.80299022, 34.625913189], [138.803098833, 34.625910216]]]}}, {"id": "51562", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.830952827, 34.605707577], [138.830950454, 34.605794396], [138.831048988, 34.605706955], [138.830952827, 34.605707577]]]}}, {"id": "51563", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.847795681, 34.607662748], [138.847885045, 34.60754764], [138.847743385, 34.607644595], [138.847795681, 34.607662748]]]}}, {"id": "51564", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853068029, 34.611611432], [138.853139805, 34.611488793], [138.853012529, 34.61156273], [138.853068029, 34.611611432]]]}}, {"id": "51565", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.879600986, 34.62114209], [138.879471012, 34.621170712], [138.879589676, 34.621197838], [138.879600986, 34.62114209]]]}}, {"id": "51566", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886936252, 34.623638982], [138.886859014, 34.623610288], [138.886672451, 34.623617279], [138.886785668, 34.623668216], [138.886936252, 34.623638982]]]}}, {"id": "51567", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772687782, 34.654239883], [138.772732672, 34.654324252], [138.77276096, 34.654266135], [138.772687782, 34.654239883]]]}}, {"id": "51568", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853600415, 34.611263613], [138.853452309, 34.611307766], [138.853620765, 34.611280414], [138.853600415, 34.611263613]]]}}, {"id": "51569", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849674812, 34.610732838], [138.849620986, 34.610691162], [138.849593969, 34.610749387], [138.849674812, 34.610732838]]]}}, {"id": "51570", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791518171, 34.663481613], [138.791497925, 34.66355973], [138.791556368, 34.663547333], [138.791518171, 34.663481613]]]}}, {"id": "51571", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.881573424, 34.624167757], [138.881462776, 34.624154126], [138.881458184, 34.624199315], [138.881573424, 34.624167757]]]}}, {"id": "51572", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.868110584, 34.618394757], [138.868130233, 34.618326541], [138.868053307, 34.61836527], [138.868110584, 34.618394757]]]}}, {"id": "51573", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857593204, 34.607693117], [138.857663748, 34.607769631], [138.857697691, 34.60764809], [138.857593204, 34.607693117]]]}}, {"id": "51574", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739311141, 34.68987327], [138.73944153, 34.689900153], [138.739393554, 34.689839216], [138.739311141, 34.68987327]]]}}, {"id": "51575", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865226291, 34.618685514], [138.865187626, 34.618595477], [138.865111855, 34.61862473], [138.865226291, 34.618685514]]]}}, {"id": "51576", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81887917, 34.612098018], [138.818798677, 34.612036559], [138.818786757, 34.612112955], [138.81887917, 34.612098018]]]}}, {"id": "51577", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885903476, 34.621987414], [138.885783204, 34.622037829], [138.885918132, 34.622020009], [138.885903476, 34.621987414]]]}}, {"id": "51578", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854284202, 34.611544892], [138.854422218, 34.611539892], [138.854287704, 34.611496288], [138.854284202, 34.611544892]]]}}, {"id": "51579", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860164604, 34.612443261], [138.860239235, 34.612377946], [138.860095188, 34.612402892], [138.860164604, 34.612443261]]]}}, {"id": "51580", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858984903, 34.606190694], [138.858922672, 34.606145622], [138.858894215, 34.606247667], [138.858984903, 34.606190694]]]}}, {"id": "51581", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790106316, 34.636556802], [138.790133606, 34.636624441], [138.790180584, 34.636520658], [138.790106316, 34.636556802]]]}}, {"id": "51582", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852505409, 34.61195609], [138.852578949, 34.61188727], [138.852475136, 34.611939676], [138.852505409, 34.61195609]]]}}, {"id": "51583", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865110791, 34.617859973], [138.865215396, 34.617766892], [138.865205266, 34.617743297], [138.865110791, 34.617859973]]]}}, {"id": "51584", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742672283, 34.694795216], [138.742580467, 34.694675955], [138.742539326, 34.694678559], [138.742672283, 34.694795216]]]}}, {"id": "51585", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.850303126, 34.608923928], [138.850343139, 34.608816802], [138.850215305, 34.608910387], [138.850303126, 34.608923928]]]}}, {"id": "51586", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.880623709, 34.623417595], [138.880693748, 34.623468486], [138.880718936, 34.623373937], [138.880623709, 34.623417595]]]}}, {"id": "51587", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860452581, 34.612442766], [138.860481712, 34.612394631], [138.860377315, 34.612435685], [138.860452581, 34.612442766]]]}}, {"id": "51588", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779274086, 34.639316045], [138.779339754, 34.639282541], [138.779268314, 34.639220054], [138.779274086, 34.639316045]]]}}, {"id": "51589", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.868896031, 34.618559072], [138.868843515, 34.618642622], [138.86894083, 34.618579315], [138.868896031, 34.618559072]]]}}, {"id": "51590", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.801870428, 34.625198622], [138.801823593, 34.625273658], [138.801918353, 34.625242856], [138.801870428, 34.625198622]]]}}, {"id": "51591", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.840112425, 34.602431117], [138.840047367, 34.602330964], [138.840035279, 34.602496514], [138.840112425, 34.602431117]]]}}, {"id": "51592", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869026706, 34.618469784], [138.86912655, 34.618459838], [138.869046174, 34.618432495], [138.869026706, 34.618469784]]]}}, {"id": "51593", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865322075, 34.617697514], [138.865392192, 34.617623018], [138.865289702, 34.617627378], [138.865322075, 34.617697514]]]}}, {"id": "51594", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.875181064, 34.620171577], [138.87524882, 34.620108261], [138.875144981, 34.620150766], [138.875181064, 34.620171577]]]}}, {"id": "51595", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.797004527, 34.622403757], [138.797128936, 34.622430505], [138.797115136, 34.622381045], [138.797004527, 34.622403757]]]}}, {"id": "51596", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885708029, 34.621935838], [138.885751569, 34.621988171], [138.885799909, 34.621949162], [138.885708029, 34.621935838]]]}}, {"id": "51597", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.862043696, 34.615751703], [138.861953761, 34.615732495], [138.861958106, 34.615780081], [138.862043696, 34.615751703]]]}}, {"id": "51598", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884253969, 34.623843541], [138.884291375, 34.623914009], [138.88433738, 34.623863649], [138.884253969, 34.623843541]]]}}, {"id": "51599", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742015396, 34.688561189], [138.742088781, 34.688462054], [138.741967678, 34.688517108], [138.742015396, 34.688561189]]]}}, {"id": "51600", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886943424, 34.624078811], [138.88691214, 34.624152838], [138.887062464, 34.624093937], [138.886943424, 34.624078811]]]}}, {"id": "51601", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792974747, 34.632246613], [138.793068599, 34.632232054], [138.793088016, 34.632138252], [138.792974747, 34.632246613]]]}}, {"id": "51602", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787433619, 34.638306225], [138.787493645, 34.638221613], [138.78743249, 34.638170099], [138.787433619, 34.638306225]]]}}, {"id": "51603", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.868029027, 34.618200991], [138.868037393, 34.618118297], [138.868045123, 34.618091315], [138.868025149, 34.618089036], [138.868029027, 34.618200991]]]}}, {"id": "51604", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886480337, 34.621956378], [138.886339987, 34.622003613], [138.886328833, 34.622020063], [138.886480337, 34.621956378]]]}}, {"id": "51605", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858043113, 34.612320856], [138.858058067, 34.612173234], [138.858014643, 34.612345009], [138.858043113, 34.612320856]]]}}, {"id": "51606", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.823995201, 34.610815459], [138.823992879, 34.610917964], [138.82405952, 34.610867667], [138.823995201, 34.610815459]]]}}, {"id": "51607", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.897048003, 34.633380054], [138.897081167, 34.633474063], [138.897102231, 34.633385108], [138.897048003, 34.633380054]]]}}, {"id": "51608", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849882503, 34.610673468], [138.849869183, 34.610593631], [138.849799442, 34.610681189], [138.849882503, 34.610673468]]]}}, {"id": "51609", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852828042, 34.611407748], [138.852847704, 34.611289685], [138.852778171, 34.61137382], [138.852828042, 34.611407748]]]}}, {"id": "51610", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.889954488, 34.624499793], [138.889936809, 34.624359568], [138.889869209, 34.624432631], [138.889954488, 34.624499793]]]}}, {"id": "51611", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854551414, 34.612277865], [138.854573256, 34.612182865], [138.854472348, 34.612275838], [138.854551414, 34.612277865]]]}}, {"id": "51612", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.880745344, 34.624044946], [138.8806538, 34.624083541], [138.880673048, 34.624143973], [138.880745344, 34.624044946]]]}}, {"id": "51613", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741881427, 34.697398838], [138.741787977, 34.697357009], [138.74177476, 34.697390937], [138.741881427, 34.697398838]]]}}, {"id": "51614", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.894004786, 34.633684901], [138.894086213, 34.63365345], [138.893926096, 34.63362827], [138.894004786, 34.633684901]]]}}, {"id": "51615", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.845099624, 34.604094495], [138.845194488, 34.603989378], [138.845068599, 34.604051495], [138.845099624, 34.604094495]]]}}, {"id": "51616", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779458132, 34.639163631], [138.779499909, 34.639095919], [138.779419624, 34.639096919], [138.779458132, 34.639163631]]]}}, {"id": "51617", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869428988, 34.617335802], [138.869332153, 34.61743518], [138.869343995, 34.617450018], [138.869428988, 34.617335802]]]}}, {"id": "51618", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791166239, 34.663436207], [138.791139429, 34.663506495], [138.791230272, 34.663554874], [138.791166239, 34.663436207]]]}}, {"id": "51619", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.819251984, 34.612498126], [138.819207549, 34.612454703], [138.819164384, 34.61257264], [138.819251984, 34.612498126]]]}}, {"id": "51620", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854070259, 34.611262523], [138.854070843, 34.611322829], [138.854167224, 34.611269541], [138.854070259, 34.611262523]]]}}, {"id": "51621", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.810547886, 34.623996117], [138.810551997, 34.624074261], [138.810616783, 34.624018117], [138.810547886, 34.623996117]]]}}, {"id": "51622", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.822321984, 34.612335712], [138.822429222, 34.612238784], [138.822304578, 34.612319441], [138.822321984, 34.612335712]]]}}, {"id": "51623", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901131401, 34.63144745], [138.900961297, 34.63154573], [138.900970661, 34.631564], [138.901131401, 34.63144745]]]}}, {"id": "51624", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741763917, 34.688406622], [138.74188035, 34.688363748], [138.741858016, 34.688336928], [138.741763917, 34.688406622]]]}}, {"id": "51625", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878176394, 34.615994441], [138.878060558, 34.615966108], [138.878088054, 34.616028054], [138.878176394, 34.615994441]]]}}, {"id": "51626", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885395707, 34.623093658], [138.88533118, 34.623148586], [138.885410843, 34.623183405], [138.885395707, 34.623093658]]]}}, {"id": "51627", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.841683554, 34.60057364], [138.841588314, 34.600560838], [138.84160655, 34.600619658], [138.841683554, 34.60057364]]]}}, {"id": "51628", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741682023, 34.688467189], [138.741780233, 34.688501162], [138.741752503, 34.688424676], [138.741682023, 34.688467189]]]}}, {"id": "51629", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.831046693, 34.605538919], [138.831139118, 34.605557685], [138.831080882, 34.605470757], [138.831046693, 34.605538919]]]}}, {"id": "51630", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859971154, 34.610772676], [138.859911427, 34.610729036], [138.859851738, 34.610793126], [138.859971154, 34.610772676]]]}}, {"id": "51631", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.863829468, 34.615059153], [138.863953865, 34.615005144], [138.863814682, 34.615019982], [138.863829468, 34.615059153]]]}}, {"id": "51632", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.804519948, 34.626046865], [138.804520389, 34.626109964], [138.804596187, 34.626077955], [138.804519948, 34.626046865]]]}}, {"id": "51633", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.857897613, 34.606594973], [138.857806757, 34.606589018], [138.857793294, 34.606627108], [138.857897613, 34.606594973]]]}}, {"id": "51634", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865116589, 34.618561342], [138.86503524, 34.618487207], [138.865028366, 34.618559802], [138.865116589, 34.618561342]]]}}, {"id": "51635", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874548534, 34.620335432], [138.874519572, 34.620250234], [138.874489351, 34.620319297], [138.874548534, 34.620335432]]]}}, {"id": "51636", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.777145253, 34.673539027], [138.777095422, 34.673484423], [138.777102127, 34.673567252], [138.777145253, 34.673539027]]]}}, {"id": "51637", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.845656213, 34.603800739], [138.845669818, 34.603741018], [138.845608379, 34.603782396], [138.845656213, 34.603800739]]]}}, {"id": "51638", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787532412, 34.638076198], [138.787521141, 34.638160784], [138.787569844, 34.638144261], [138.787532412, 34.638076198]]]}}, {"id": "51639", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90074083, 34.631355514], [138.900648729, 34.63134518], [138.90064249, 34.631384955], [138.90074083, 34.631355514]]]}}, {"id": "51640", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.806647147, 34.625749171], [138.806592724, 34.625864613], [138.806681842, 34.625751784], [138.806647147, 34.625749171]]]}}, {"id": "51641", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790442957, 34.662809297], [138.79049083, 34.662708847], [138.790437173, 34.662714297], [138.790442957, 34.662809297]]]}}, {"id": "51642", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852945746, 34.611679216], [138.853019624, 34.611614189], [138.852926537, 34.611623649], [138.852945746, 34.611679216]]]}}, {"id": "51643", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.806380415, 34.62771255], [138.806442374, 34.627627649], [138.806362387, 34.627616766], [138.806380415, 34.62771255]]]}}, {"id": "51644", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.845138638, 34.601216802], [138.845225642, 34.601136054], [138.845180765, 34.601121847], [138.845138638, 34.601216802]]]}}, {"id": "51645", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849592568, 34.610570892], [138.84975214, 34.610505162], [138.84977083, 34.610462288], [138.849592568, 34.610570892]]]}}, {"id": "51646", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887496329, 34.626328423], [138.887591933, 34.626320369], [138.887603852, 34.626255694], [138.887496329, 34.626328423]]]}}, {"id": "51647", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.809817678, 34.624856225], [138.80977489, 34.624934586], [138.809853243, 34.624948541], [138.809817678, 34.624856225]]]}}, {"id": "51648", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.85312441, 34.611639847], [138.853217977, 34.611565468], [138.853097302, 34.611597459], [138.85312441, 34.611639847]]]}}, {"id": "51649", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.84077524, 34.601718955], [138.840848054, 34.601687649], [138.840869818, 34.601623856], [138.84077524, 34.601718955]]]}}, {"id": "51650", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784110026, 34.636405306], [138.784003865, 34.636393748], [138.784089805, 34.636456928], [138.784110026, 34.636405306]]]}}, {"id": "51651", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.834710726, 34.604420315], [138.834810389, 34.604286973], [138.834675824, 34.604444838], [138.834710726, 34.604420315]]]}}, {"id": "51652", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.829053891, 34.603213856], [138.829059183, 34.60311873], [138.829023554, 34.603209793], [138.829053891, 34.603213856]]]}}, {"id": "51653", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851527095, 34.61156864], [138.85151415, 34.611524505], [138.851489844, 34.611551441], [138.851527095, 34.61156864]]]}}, {"id": "51654", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.792156939, 34.631652667], [138.792228249, 34.631644297], [138.792208288, 34.631615405], [138.792156939, 34.631652667]]]}}, {"id": "51655", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849635058, 34.610430676], [138.849569818, 34.610397144], [138.849557082, 34.610455324], [138.849635058, 34.610430676]]]}}, {"id": "51656", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.821699261, 34.611946099], [138.821791971, 34.611950631], [138.821749105, 34.611892324], [138.821699261, 34.611946099]]]}}, {"id": "51657", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.87525201, 34.622729243], [138.875157121, 34.62272918], [138.875180052, 34.622782928], [138.87525201, 34.622729243]]]}}, {"id": "51658", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772734047, 34.652876405], [138.772685824, 34.652810072], [138.772697497, 34.652877658], [138.772734047, 34.652876405]]]}}, {"id": "51659", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7421538, 34.695498081], [138.742074617, 34.69548309], [138.742075266, 34.695516991], [138.7421538, 34.695498081]]]}}, {"id": "51660", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901255097, 34.63174427], [138.9011738, 34.631825586], [138.901174358, 34.631874631], [138.901255097, 34.63174427]]]}}, {"id": "51661", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898474799, 34.631295054], [138.89850703, 34.631351838], [138.898569818, 34.631276441], [138.898474799, 34.631295054]]]}}, {"id": "51662", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.84380201, 34.604217072], [138.843857004, 34.604147865], [138.843757925, 34.604155712], [138.84380201, 34.604217072]]]}}, {"id": "51663", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90198882, 34.631026955], [138.901909053, 34.63104164], [138.901901855, 34.631065009], [138.90198882, 34.631026955]]]}}, {"id": "51664", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874735097, 34.620185477], [138.874621154, 34.62018736], [138.874614721, 34.620212622], [138.874735097, 34.620185477]]]}}, {"id": "51665", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.873480415, 34.616863964], [138.873520986, 34.616794243], [138.873437601, 34.616825874], [138.873480415, 34.616863964]]]}}, {"id": "51666", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898271608, 34.631524432], [138.898387263, 34.631578054], [138.898419494, 34.631543063], [138.898271608, 34.631524432]]]}}, {"id": "51667", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.883639196, 34.62395591], [138.883643735, 34.623828874], [138.883563411, 34.623815514], [138.883639196, 34.62395591]]]}}, {"id": "51668", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865168054, 34.618458685], [138.86522083, 34.618410018], [138.865109546, 34.618395297], [138.865168054, 34.618458685]]]}}, {"id": "51669", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790902218, 34.662535045], [138.790984423, 34.662519973], [138.790967289, 34.662487649], [138.790902218, 34.662535045]]]}}, {"id": "51670", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.788016239, 34.639137775], [138.788083606, 34.639128505], [138.78806, 34.639081054], [138.788016239, 34.639137775]]]}}, {"id": "51671", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900666706, 34.631635324], [138.900779754, 34.63148818], [138.900783411, 34.631477351], [138.900666706, 34.631635324]]]}}, {"id": "51672", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.888212127, 34.626079676], [138.888130674, 34.626105712], [138.888214319, 34.626105721], [138.888212127, 34.626079676]]]}}, {"id": "51673", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790516316, 34.663509243], [138.790576589, 34.663522892], [138.790612944, 34.663496667], [138.790516316, 34.663509243]]]}}, {"id": "51674", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740249611, 34.68940255], [138.740308729, 34.689310477], [138.740243191, 34.689331342], [138.740249611, 34.68940255]]]}}, {"id": "51675", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.848315772, 34.606640378], [138.848384397, 34.606676604], [138.848352866, 34.606619712], [138.848315772, 34.606640378]]]}}, {"id": "51676", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.826617717, 34.605996928], [138.826560233, 34.605963811], [138.826557691, 34.606038378], [138.826617717, 34.605996928]]]}}, {"id": "51677", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851102464, 34.612028378], [138.851157652, 34.611952495], [138.851062944, 34.612016595], [138.851102464, 34.612028378]]]}}, {"id": "51678", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865528962, 34.618374658], [138.865488638, 34.61830518], [138.865448988, 34.618339378], [138.865528962, 34.618374658]]]}}, {"id": "51679", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.8494931, 34.61059227], [138.849528755, 34.610667991], [138.849550882, 34.610563351], [138.8494931, 34.61059227]]]}}, {"id": "51680", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887467639, 34.623794883], [138.88739703, 34.623829901], [138.887501336, 34.623841559], [138.887467639, 34.623794883]]]}}, {"id": "51681", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854658327, 34.612546568], [138.854597185, 34.612503649], [138.854571025, 34.612557279], [138.854658327, 34.612546568]]]}}, {"id": "51682", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741649481, 34.694810054], [138.741597289, 34.694729018], [138.741604306, 34.694813928], [138.741649481, 34.694810054]]]}}, {"id": "51683", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.779986122, 34.667404198], [138.779899494, 34.667377802], [138.77991061, 34.667434928], [138.779986122, 34.667404198]]]}}, {"id": "51684", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887080623, 34.623986153], [138.887063256, 34.624051568], [138.887124981, 34.623981144], [138.887080623, 34.623986153]]]}}, {"id": "51685", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88134546, 34.623659649], [138.881422257, 34.623735775], [138.881449637, 34.623711703], [138.88134546, 34.623659649]]]}}, {"id": "51686", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878591946, 34.615988613], [138.878503606, 34.615949162], [138.878455837, 34.615971946], [138.878591946, 34.615988613]]]}}, {"id": "51687", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891580389, 34.627672712], [138.891480869, 34.627685658], [138.891578885, 34.627723838], [138.891580389, 34.627672712]]]}}, {"id": "51688", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.88420585, 34.623694667], [138.884105201, 34.623625297], [138.88407939, 34.623657207], [138.88420585, 34.623694667]]]}}, {"id": "51689", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860188911, 34.608881532], [138.860274332, 34.608892459], [138.860258301, 34.608840937], [138.860188911, 34.608881532]]]}}, {"id": "51690", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.872953839, 34.616208991], [138.872870726, 34.616230432], [138.872953515, 34.616236045], [138.872953839, 34.616208991]]]}}, {"id": "51691", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.786579909, 34.660821667], [138.786568508, 34.660742541], [138.786552724, 34.660754838], [138.786579909, 34.660821667]]]}}, {"id": "51692", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.873026783, 34.616621847], [138.87301572, 34.616513703], [138.872955331, 34.616568243], [138.873026783, 34.616621847]]]}}, {"id": "51693", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.847551349, 34.604133243], [138.847534643, 34.604075775], [138.84749415, 34.604167847], [138.847551349, 34.604133243]]]}}, {"id": "51694", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.795703748, 34.623088559], [138.795773126, 34.623096414], [138.795705292, 34.623032486], [138.795703748, 34.623088559]]]}}, {"id": "51695", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849599974, 34.610335748], [138.849577951, 34.610281991], [138.84953786, 34.610343324], [138.849599974, 34.610335748]]]}}, {"id": "51696", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854367095, 34.611035919], [138.854282153, 34.611061856], [138.854353865, 34.611080306], [138.854367095, 34.611035919]]]}}, {"id": "51697", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.768199326, 34.681192829], [138.76812572, 34.681145568], [138.768118768, 34.681154324], [138.768199326, 34.681192829]]]}}, {"id": "51698", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741073826, 34.694883946], [138.740998534, 34.694891667], [138.741046446, 34.694927901], [138.741073826, 34.694883946]]]}}, {"id": "51699", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.823188067, 34.613340523], [138.823154578, 34.613280658], [138.823133904, 34.613347604], [138.823188067, 34.613340523]]]}}, {"id": "51700", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843826667, 34.599942775], [138.843746628, 34.600013198], [138.843845837, 34.600014423], [138.843826667, 34.599942775]]]}}, {"id": "51701", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.859705759, 34.611280568], [138.859663061, 34.611239306], [138.859597082, 34.611262676], [138.859705759, 34.611280568]]]}}, {"id": "51702", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743181764, 34.687694847], [138.743247147, 34.687657126], [138.743202231, 34.687636387], [138.743181764, 34.687694847]]]}}, {"id": "51703", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.920228054, 34.614369441], [138.92011917, 34.614380559], [138.92011917, 34.614397495], [138.920228054, 34.614369441]]]}}, {"id": "51704", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.845513865, 34.605152712], [138.845623878, 34.605179171], [138.84565035, 34.605149892], [138.845513865, 34.605152712]]]}}, {"id": "51705", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.892141038, 34.628639144], [138.892064332, 34.62863182], [138.892150311, 34.628708532], [138.892141038, 34.628639144]]]}}, {"id": "51706", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854050363, 34.611223631], [138.854065551, 34.611153631], [138.853977678, 34.611209874], [138.854050363, 34.611223631]]]}}, {"id": "51707", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874788911, 34.619542432], [138.874731569, 34.619570108], [138.874793904, 34.619584342], [138.874788911, 34.619542432]]]}}, {"id": "51708", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865063217, 34.618700694], [138.865080597, 34.61865845], [138.865028625, 34.618643279], [138.865063217, 34.618700694]]]}}, {"id": "51709", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782246109, 34.666927216], [138.782222594, 34.666848297], [138.782204501, 34.666884405], [138.782246109, 34.666927216]]]}}, {"id": "51710", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741655253, 34.694578441], [138.741596174, 34.694530324], [138.74161677, 34.694596099], [138.741655253, 34.694578441]]]}}, {"id": "51711", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896723139, 34.633230288], [138.896768431, 34.63325827], [138.896798431, 34.633215351], [138.896723139, 34.633230288]]]}}, {"id": "51712", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787758482, 34.637748324], [138.787807082, 34.637798874], [138.787817147, 34.637742144], [138.787758482, 34.637748324]]]}}, {"id": "51713", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.809078768, 34.628052108], [138.809017821, 34.628145207], [138.809099364, 34.628045658], [138.809078768, 34.628052108]]]}}, {"id": "51714", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741015914, 34.688877252], [138.741088495, 34.688916054], [138.741043917, 34.688860883], [138.741015914, 34.688877252]]]}}, {"id": "51715", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858136744, 34.612288036], [138.858076965, 34.612307505], [138.858088729, 34.61233127], [138.858136744, 34.612288036]]]}}, {"id": "51716", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739158301, 34.690807009], [138.739181842, 34.690871955], [138.739210467, 34.690846117], [138.739158301, 34.690807009]]]}}, {"id": "51717", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.814472542, 34.619895658], [138.814563022, 34.619942216], [138.814574501, 34.619921721], [138.814472542, 34.619895658]]]}}, {"id": "51718", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885781193, 34.622877243], [138.885704099, 34.622970622], [138.885812737, 34.622880847], [138.885781193, 34.622877243]]]}}, {"id": "51719", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81899524, 34.612880414], [138.818934462, 34.612869396], [138.818924773, 34.612932532], [138.81899524, 34.612880414]]]}}, {"id": "51720", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.806009767, 34.623806721], [138.806004099, 34.623866595], [138.806057121, 34.623871964], [138.806009767, 34.623806721]]]}}, {"id": "51721", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901000091, 34.631764495], [138.900923839, 34.631808378], [138.901010104, 34.631782586], [138.901000091, 34.631764495]]]}}, {"id": "51722", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886282776, 34.623377811], [138.886273217, 34.62331527], [138.886234929, 34.62338355], [138.886282776, 34.623377811]]]}}, {"id": "51723", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852589715, 34.611727216], [138.852636446, 34.611663342], [138.85256537, 34.611693207], [138.852589715, 34.611727216]]]}}, {"id": "51724", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.853773658, 34.610923955], [138.853698716, 34.610942027], [138.853759689, 34.610946622], [138.853773658, 34.610923955]]]}}, {"id": "51725", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.844994073, 34.600928721], [138.84507166, 34.600863865], [138.845063191, 34.600845495], [138.844994073, 34.600928721]]]}}, {"id": "51726", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.78990668, 34.665374225], [138.789940519, 34.66531582], [138.789844345, 34.665334351], [138.78990668, 34.665374225]]]}}, {"id": "51727", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.805604163, 34.626209946], [138.805556589, 34.626262712], [138.805634397, 34.626247189], [138.805604163, 34.626209946]]]}}, {"id": "51728", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.780528664, 34.666637919], [138.780481401, 34.66669518], [138.780511673, 34.666710982], [138.780528664, 34.666637919]]]}}, {"id": "51729", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.878564721, 34.614968892], [138.878523891, 34.614923892], [138.878517224, 34.614963333], [138.878564721, 34.614968892]]]}}, {"id": "51730", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.819135564, 34.612964342], [138.819069805, 34.612989396], [138.819092166, 34.613021252], [138.819135564, 34.612964342]]]}}, {"id": "51731", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.876596187, 34.621732523], [138.876662724, 34.621759099], [138.876662296, 34.621713297], [138.876596187, 34.621732523]]]}}, {"id": "51732", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.805696783, 34.62390018], [138.80575952, 34.623848459], [138.805741336, 34.623825604], [138.805696783, 34.62390018]]]}}, {"id": "51733", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.870962231, 34.617684099], [138.870993593, 34.617724847], [138.870996667, 34.617656676], [138.870962231, 34.617684099]]]}}, {"id": "51734", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740274423, 34.689754901], [138.740347341, 34.689719964], [138.740321219, 34.689706667], [138.740274423, 34.689754901]]]}}, {"id": "51735", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.818741453, 34.614069649], [138.818709157, 34.613978144], [138.818683307, 34.613975955], [138.818741453, 34.614069649]]]}}, {"id": "51736", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.787818457, 34.637616288], [138.787854669, 34.637678225], [138.787854695, 34.637622514], [138.787818457, 34.637616288]]]}}, {"id": "51737", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.863320636, 34.61578009], [138.863228638, 34.615763234], [138.863234916, 34.615801441], [138.863320636, 34.61578009]]]}}, {"id": "51738", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.793539883, 34.629443045], [138.79360275, 34.629395568], [138.793567912, 34.629381135], [138.793539883, 34.629443045]]]}}, {"id": "51739", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.849629922, 34.610222793], [138.849580674, 34.61020409], [138.849568833, 34.610240279], [138.849629922, 34.610222793]]]}}, {"id": "51740", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874255824, 34.617588847], [138.874228521, 34.617530333], [138.87416332, 34.617555505], [138.874255824, 34.617588847]]]}}, {"id": "51741", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854599585, 34.612632658], [138.854606044, 34.612688982], [138.854645305, 34.612664703], [138.854599585, 34.612632658]]]}}, {"id": "51742", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887638573, 34.626453288], [138.887632789, 34.626522721], [138.887680597, 34.626508955], [138.887638573, 34.626453288]]]}}, {"id": "51743", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896985953, 34.633428306], [138.896912179, 34.633487414], [138.896915097, 34.633505261], [138.896985953, 34.633428306]]]}}, {"id": "51744", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.852470441, 34.611885964], [138.852400026, 34.611891577], [138.852415901, 34.61193327], [138.852470441, 34.611885964]]]}}, {"id": "51745", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.789124086, 34.638467207], [138.789070908, 34.638417757], [138.789036148, 34.638459667], [138.789124086, 34.638467207]]]}}, {"id": "51746", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741761479, 34.696315], [138.741715707, 34.696377838], [138.741771816, 34.696340766], [138.741761479, 34.696315]]]}}, {"id": "51747", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.854409377, 34.612109333], [138.854477224, 34.612140324], [138.85448847, 34.612118748], [138.854409377, 34.612109333]]]}}, {"id": "51748", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86799201, 34.618336874], [138.867944371, 34.618292027], [138.867960636, 34.618346162], [138.86799201, 34.618336874]]]}}, {"id": "51749", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865065136, 34.618466559], [138.865115266, 34.618432153], [138.865068119, 34.618425261], [138.865065136, 34.618466559]]]}}, {"id": "51750", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884042957, 34.623181495], [138.883979741, 34.623238216], [138.884066239, 34.623193865], [138.884042957, 34.623181495]]]}}, {"id": "51751", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784525344, 34.63779936], [138.784527484, 34.637884009], [138.784548755, 34.637884045], [138.784525344, 34.63779936]]]}}, {"id": "51752", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.863978755, 34.616359793], [138.864002412, 34.616408946], [138.864033165, 34.616383613], [138.863978755, 34.616359793]]]}}, {"id": "51753", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.902003048, 34.631128234], [138.902028495, 34.631065946], [138.901960091, 34.63110827], [138.902003048, 34.631128234]]]}}, {"id": "51754", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.872512114, 34.617729144], [138.872515499, 34.617656919], [138.872486252, 34.617749414], [138.872512114, 34.617729144]]]}}, {"id": "51755", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.891929728, 34.627629486], [138.89187415, 34.627685477], [138.891963645, 34.627653901], [138.891929728, 34.627629486]]]}}, {"id": "51756", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741491336, 34.694626009], [138.741466135, 34.694705207], [138.741527069, 34.694678315], [138.741491336, 34.694626009]]]}}, {"id": "51757", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741291258, 34.695452459], [138.741327951, 34.695495117], [138.741344267, 34.695437207], [138.741291258, 34.695452459]]]}}, {"id": "51758", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.828486148, 34.605009694], [138.82844725, 34.604961568], [138.828457575, 34.605036189], [138.828486148, 34.605009694]]]}}, {"id": "51759", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.814031868, 34.62044709], [138.813997678, 34.620402009], [138.813975097, 34.620430279], [138.814031868, 34.62044709]]]}}, {"id": "51760", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.889916018, 34.624297883], [138.889877834, 34.62436255], [138.88993607, 34.624317288], [138.889916018, 34.624297883]]]}}, {"id": "51761", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742107302, 34.688266568], [138.742178106, 34.688253712], [138.742147237, 34.688226099], [138.742107302, 34.688266568]]]}}, {"id": "51762", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.883432244, 34.623015459], [138.883370986, 34.623047658], [138.883405979, 34.623068919], [138.883432244, 34.623015459]]]}}, {"id": "51763", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.843471141, 34.601260009], [138.843429001, 34.601219649], [138.843438755, 34.601285072], [138.843471141, 34.601260009]]]}}, {"id": "51764", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741949572, 34.694895459], [138.741896459, 34.694914405], [138.741913048, 34.694949982], [138.741949572, 34.694895459]]]}}, {"id": "51765", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783525331, 34.660994054], [138.783466044, 34.66101691], [138.783500363, 34.661034505], [138.783525331, 34.660994054]]]}}, {"id": "51766", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.844795357, 34.601597495], [138.844781284, 34.60154236], [138.844764695, 34.601615613], [138.844795357, 34.601597495]]]}}, {"id": "51767", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884507562, 34.623071216], [138.884506472, 34.623117378], [138.884551141, 34.623085324], [138.884507562, 34.623071216]]]}}, {"id": "51768", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.883876874, 34.623160468], [138.883889844, 34.623229757], [138.883919001, 34.623169171], [138.883876874, 34.623160468]]]}}, {"id": "51769", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766988288, 34.674697973], [138.76694083, 34.674735486], [138.766994306, 34.674740874], [138.766988288, 34.674697973]]]}}, {"id": "51770", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.81488786, 34.614624631], [138.814883113, 34.614551712], [138.814849974, 34.61458155], [138.81488786, 34.614624631]]]}}, {"id": "51771", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.832467445, 34.604020036], [138.832453632, 34.603975811], [138.832414423, 34.604040018], [138.832467445, 34.604020036]]]}}, {"id": "51772", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.768124553, 34.68101855], [138.768065785, 34.681036523], [138.768098781, 34.681081802], [138.768124553, 34.68101855]]]}}, {"id": "51773", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741077108, 34.689015333], [138.741106057, 34.68895055], [138.741055279, 34.689013937], [138.741077108, 34.689015333]]]}}, {"id": "51774", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.851484734, 34.611478703], [138.851427743, 34.611486252], [138.851402088, 34.611532036], [138.851484734, 34.611478703]]]}}, {"id": "51775", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.893865512, 34.633664982], [138.893807471, 34.633684099], [138.893882633, 34.633709009], [138.893865512, 34.633664982]]]}}, {"id": "51776", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896191647, 34.632887459], [138.896182996, 34.632947432], [138.896229455, 34.632924027], [138.896191647, 34.632887459]]]}}, {"id": "51777", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741634306, 34.695746036], [138.741697691, 34.695737622], [138.74170677, 34.695704333], [138.741634306, 34.695746036]]]}}, {"id": "51778", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.738625045, 34.691045333], [138.738685564, 34.69102664], [138.738619844, 34.691021721], [138.738625045, 34.691045333]]]}}, {"id": "51779", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743016926, 34.687682018], [138.743023969, 34.687624126], [138.742980636, 34.687662892], [138.743016926, 34.687682018]]]}}, {"id": "51780", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.844001141, 34.601581261], [138.843997004, 34.601532135], [138.843932672, 34.601608495], [138.844001141, 34.601581261]]]}}, {"id": "51781", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.738026148, 34.691190748], [138.73803284, 34.691166297], [138.737986304, 34.691188928], [138.738026148, 34.691190748]]]}}, {"id": "51782", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783061128, 34.660911207], [138.782992503, 34.660911721], [138.783002763, 34.660945234], [138.783061128, 34.660911207]]]}}, {"id": "51783", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.870962815, 34.617766135], [138.871022477, 34.617768928], [138.871006355, 34.617726514], [138.870962815, 34.617766135]]]}}, {"id": "51784", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.84319428, 34.600694622], [138.843199702, 34.600633126], [138.843153372, 34.600714036], [138.84319428, 34.600694622]]]}}, {"id": "51785", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898358236, 34.631370081], [138.898447315, 34.631295505], [138.898344786, 34.63136318], [138.898358236, 34.631370081]]]}}, {"id": "51786", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.902943424, 34.629910784], [138.902968962, 34.62998336], [138.902990052, 34.629923432], [138.902943424, 34.629910784]]]}}, {"id": "51787", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.809020869, 34.628025568], [138.809070039, 34.628048613], [138.809065188, 34.628005441], [138.809020869, 34.628025568]]]}}, {"id": "51788", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.82094118, 34.61179718], [138.820911427, 34.611858378], [138.820956368, 34.611805342], [138.82094118, 34.61179718]]]}}, {"id": "51789", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860316031, 34.612487261], [138.860369702, 34.612515495], [138.860397497, 34.612487919], [138.860316031, 34.612487261]]]}}, {"id": "51790", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.828333463, 34.604748667], [138.828319702, 34.604659], [138.828295435, 34.604726414], [138.828333463, 34.604748667]]]}}, {"id": "51791", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739875538, 34.689234252], [138.739922387, 34.689208018], [138.739863826, 34.689225982], [138.739875538, 34.689234252]]]}}, {"id": "51792", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901829585, 34.631209045], [138.901753865, 34.631224441], [138.901783658, 34.631251027], [138.901829585, 34.631209045]]]}}, {"id": "51793", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884112931, 34.623102126], [138.884030402, 34.623155297], [138.884126835, 34.623113622], [138.884112931, 34.623102126]]]}}, {"id": "51794", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.874802944, 34.620190045], [138.874846874, 34.620135099], [138.874800363, 34.620146955], [138.874802944, 34.620190045]]]}}, {"id": "51795", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901047354, 34.631705378], [138.901087497, 34.631729315], [138.901111777, 34.631697414], [138.901047354, 34.631705378]]]}}, {"id": "51796", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.872574877, 34.617545937], [138.87251799, 34.61760264], [138.872527017, 34.617621541], [138.872574877, 34.617545937]]]}}, {"id": "51797", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.837916978, 34.603847027], [138.837879754, 34.603836045], [138.837875888, 34.603903306], [138.837916978, 34.603847027]]]}}, {"id": "51798", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887747315, 34.626244955], [138.887772283, 34.626289775], [138.887794021, 34.626274559], [138.887747315, 34.626244955]]]}}, {"id": "51799", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742201012, 34.695484378], [138.742155577, 34.695548559], [138.742227886, 34.695489369], [138.742201012, 34.695484378]]]}}, {"id": "51800", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.862329896, 34.615891126], [138.862294747, 34.615832811], [138.862304488, 34.615891027], [138.862329896, 34.615891126]]]}}, {"id": "51801", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.871027315, 34.617290207], [138.871056407, 34.617233414], [138.87101192, 34.617260955], [138.871027315, 34.617290207]]]}}, {"id": "51802", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.797815499, 34.621193198], [138.797862789, 34.621184694], [138.797831764, 34.621169721], [138.797815499, 34.621193198]]]}}, {"id": "51803", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900847108, 34.631409261], [138.900821777, 34.63147245], [138.900869896, 34.63140927], [138.900847108, 34.631409261]]]}}, {"id": "51804", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.827633204, 34.605318604], [138.827588197, 34.605323766], [138.827592879, 34.605351703], [138.827633204, 34.605318604]]]}}, {"id": "51805", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791666667, 34.619685018], [138.791716524, 34.61971564], [138.791742711, 34.61968691], [138.791666667, 34.619685018]]]}}, {"id": "51806", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901133074, 34.631838342], [138.901144604, 34.631899874], [138.901166161, 34.631826153], [138.901133074, 34.631838342]]]}}, {"id": "51807", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901637108, 34.631281162], [138.901718482, 34.631282342], [138.901734189, 34.631239829], [138.901637108, 34.631281162]]]}}, {"id": "51808", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.840012568, 34.602488649], [138.839973152, 34.602473342], [138.839987977, 34.602500703], [138.840012568, 34.602488649]]]}}, {"id": "51809", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741616031, 34.694641811], [138.741560052, 34.694686631], [138.741609598, 34.694681306], [138.741616031, 34.694641811]]]}}, {"id": "51810", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.784269663, 34.661093838], [138.78429227, 34.661135162], [138.784296757, 34.661075198], [138.784269663, 34.661093838]]]}}, {"id": "51811", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.87246856, 34.618305982], [138.872458962, 34.618256604], [138.872441518, 34.618279288], [138.87246856, 34.618305982]]]}}, {"id": "51812", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.872840506, 34.616422369], [138.87289035, 34.616374622], [138.872843243, 34.616374586], [138.872840506, 34.616422369]]]}}, {"id": "51813", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.858831349, 34.606308432], [138.858788093, 34.606367162], [138.85884249, 34.606314171], [138.858831349, 34.606308432]]]}}, {"id": "51814", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.869277121, 34.616776784], [138.869254319, 34.616727441], [138.869250636, 34.616781099], [138.869277121, 34.616776784]]]}}, {"id": "51815", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.896795499, 34.633378712], [138.896847289, 34.633396396], [138.896837717, 34.633356396], [138.896795499, 34.633378712]]]}}, {"id": "51816", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839529624, 34.604321802], [138.839490026, 34.604344721], [138.839542477, 34.604346108], [138.839529624, 34.604321802]]]}}, {"id": "51817", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.841685759, 34.602894892], [138.841648859, 34.602936459], [138.841702023, 34.602900432], [138.841685759, 34.602894892]]]}}, {"id": "51818", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.810072296, 34.626900865], [138.810117367, 34.62693609], [138.810125188, 34.626926333], [138.810072296, 34.626900865]]]}}, {"id": "51819", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885012607, 34.623332514], [138.884960233, 34.623303559], [138.884955279, 34.623314928], [138.885012607, 34.623332514]]]}}, {"id": "51820", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.898974656, 34.630999432], [138.898974462, 34.63105055], [138.899018716, 34.631000459], [138.898974656, 34.630999432]]]}}, {"id": "51821", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86409594, 34.616600595], [138.864103567, 34.616648991], [138.864137601, 34.616625991], [138.86409594, 34.616600595]]]}}, {"id": "51822", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.867960182, 34.618241586], [138.867900285, 34.618211568], [138.867926329, 34.618255577], [138.867960182, 34.618241586]]]}}, {"id": "51823", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739496096, 34.690124162], [138.739502827, 34.690074928], [138.739478911, 34.690108514], [138.739496096, 34.690124162]]]}}, {"id": "51824", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.872458807, 34.618221441], [138.872485136, 34.618183955], [138.872434851, 34.618204477], [138.872458807, 34.618221441]]]}}, {"id": "51825", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865226602, 34.617660928], [138.865221634, 34.617719991], [138.865234086, 34.61772455], [138.865226602, 34.617660928]]]}}, {"id": "51826", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885955733, 34.626842847], [138.886001025, 34.626874802], [138.886028301, 34.626853712], [138.885955733, 34.626842847]]]}}, {"id": "51827", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.863375564, 34.615796604], [138.863337302, 34.615774811], [138.86332869, 34.615800532], [138.863375564, 34.615796604]]]}}, {"id": "51828", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885903722, 34.62670364], [138.885829326, 34.626723351], [138.885906874, 34.626726982], [138.885903722, 34.62670364]]]}}, {"id": "51829", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.886003035, 34.626931685], [138.886037341, 34.62696736], [138.886046654, 34.626954802], [138.886003035, 34.626931685]]]}}, {"id": "51830", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.867910195, 34.618133919], [138.867902866, 34.61820155], [138.867935512, 34.618138441], [138.867910195, 34.618133919]]]}}, {"id": "51831", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864033333, 34.616522892], [138.863980363, 34.616552982], [138.864033878, 34.616546604], [138.864033333, 34.616522892]]]}}, {"id": "51832", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.868205668, 34.618270685], [138.868170597, 34.618230766], [138.868162815, 34.618271541], [138.868205668, 34.618270685]]]}}, {"id": "51833", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.884171051, 34.623244739], [138.884195188, 34.623275676], [138.884210259, 34.623256423], [138.884171051, 34.623244739]]]}}, {"id": "51834", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.799234267, 34.624077757], [138.799261025, 34.624025586], [138.799227704, 34.624072369], [138.799234267, 34.624077757]]]}}, {"id": "51835", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.90416585, 34.629514306], [138.904205019, 34.629495153], [138.904199728, 34.629459288], [138.90416585, 34.629514306]]]}}, {"id": "51836", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864736498, 34.616828306], [138.864685564, 34.616851441], [138.864688651, 34.616857928], [138.864736498, 34.616828306]]]}}, {"id": "51837", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.871316965, 34.617684459], [138.871303619, 34.617723541], [138.871327717, 34.617698315], [138.871316965, 34.617684459]]]}}, {"id": "51838", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.860343424, 34.610800874], [138.860396278, 34.610794315], [138.860344176, 34.610774189], [138.860343424, 34.610800874]]]}}, {"id": "51839", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7909162, 34.663632613], [138.790878794, 34.663607099], [138.790852127, 34.663626541], [138.7909162, 34.663632613]]]}}, {"id": "51840", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.902058599, 34.631022126], [138.902056381, 34.63105945], [138.902083074, 34.631052784], [138.902058599, 34.631022126]]]}}, {"id": "51841", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739874825, 34.688989135], [138.739847665, 34.688957631], [138.739819741, 34.689001865], [138.739874825, 34.688989135]]]}}, {"id": "51842", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.86525799, 34.617804081], [138.865216615, 34.617820802], [138.86523284, 34.617839054], [138.86525799, 34.617804081]]]}}, {"id": "51843", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.839524553, 34.605168081], [138.839460285, 34.605180883], [138.839535422, 34.605186171], [138.839524553, 34.605168081]]]}}, {"id": "51844", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743121245, 34.687711919], [138.743146265, 34.687681486], [138.743104099, 34.687671297], [138.743121245, 34.687711919]]]}}, {"id": "51845", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.885189092, 34.622866405], [138.885155279, 34.622889324], [138.885158911, 34.622895261], [138.885189092, 34.622866405]]]}}, {"id": "51846", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.799132062, 34.623948459], [138.799150687, 34.623913982], [138.799116874, 34.623912712], [138.799132062, 34.623948459]]]}}, {"id": "51847", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900961051, 34.631699351], [138.901019001, 34.631705018], [138.901010752, 34.631691072], [138.900961051, 34.631699351]]]}}, {"id": "51848", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783013904, 34.667624297], [138.782979754, 34.667654847], [138.783005162, 34.667653523], [138.783013904, 34.667624297]]]}}, {"id": "51849", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864901907, 34.618219315], [138.864954747, 34.618233216], [138.864956887, 34.618225459], [138.864901907, 34.618219315]]]}}, {"id": "51850", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.900541764, 34.631895369], [138.90051725, 34.631925108], [138.900547536, 34.631916171], [138.900541764, 34.631895369]]]}}, {"id": "51851", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.864998898, 34.618454586], [138.865030233, 34.618438811], [138.865007795, 34.618421117], [138.864998898, 34.618454586]]]}}, {"id": "51852", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.768179351, 34.681022036], [138.768155966, 34.681049396], [138.768189351, 34.681046261], [138.768179351, 34.681022036]]]}}, {"id": "51853", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865301064, 34.617483288], [138.865262153, 34.61748755], [138.865264747, 34.617507189], [138.865301064, 34.617483288]]]}}, {"id": "51854", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.841582257, 34.602967658], [138.841548521, 34.602956486], [138.841569922, 34.602990505], [138.841582257, 34.602967658]]]}}, {"id": "51855", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865112802, 34.618118973], [138.865123333, 34.618158784], [138.86513441, 34.618147667], [138.865112802, 34.618118973]]]}}, {"id": "51856", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790933152, 34.663518712], [138.790950182, 34.663491532], [138.790930649, 34.663490586], [138.790933152, 34.663518712]]]}}, {"id": "51857", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.895147588, 34.632139964], [138.895096459, 34.632166189], [138.895167445, 34.632140892], [138.895147588, 34.632139964]]]}}, {"id": "51858", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.840438029, 34.604179712], [138.840400765, 34.60415845], [138.840408716, 34.604182144], [138.840438029, 34.604179712]]]}}, {"id": "51859", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.901898197, 34.631097297], [138.901882335, 34.631131874], [138.901920182, 34.631109486], [138.901898197, 34.631097297]]]}}, {"id": "51860", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.791686939, 34.619605829], [138.791672776, 34.619560279], [138.791658612, 34.619605829], [138.791686939, 34.619605829]]]}}, {"id": "51861", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783043333, 34.667549315], [138.783010233, 34.667570126], [138.783038171, 34.667571144], [138.783043333, 34.667549315]]]}}, {"id": "51862", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.783011608, 34.667366198], [138.78302284, 34.66739736], [138.783033606, 34.667385171], [138.783011608, 34.667366198]]]}}, {"id": "51863", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.865286887, 34.617530838], [138.865312036, 34.617522018], [138.865289235, 34.617518928], [138.865286887, 34.617530838]]]}}, {"id": "51864", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.782299611, 34.666907081], [138.782304812, 34.666929243], [138.78231537, 34.666918766], [138.782299611, 34.666907081]]]}}, {"id": "51865", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "南伊豆町", "N03_005": null, "N03_007": "22304"}, "geometry": {"type": "Polygon", "coordinates": [[[138.790797613, 34.663731252], [138.790812957, 34.663719045], [138.790791984, 34.663713144], [138.790797613, 34.663731252]]]}}, {"id": "51866", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740688457, 34.70036827], [138.754986939, 34.746893892], [138.840031673, 34.788666946], [138.835966667, 34.799999441], [138.850177497, 34.800293613], [138.849544721, 34.781966387], [138.876403333, 34.788736946], [138.896361388, 34.773822775], [138.888094721, 34.750546667], [138.859246939, 34.737641108], [138.851646394, 34.707728333], [138.811269442, 34.701628054], [138.77703917, 34.716278892], [138.740688457, 34.70036827]]]}}, {"id": "51867", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740751673, 34.719490559], [138.741651115, 34.718383333], [138.74078834, 34.718131387], [138.740751673, 34.719490559]]]}}, {"id": "51868", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742406667, 34.729551667], [138.742127782, 34.729122225], [138.741947497, 34.729207775], [138.742406667, 34.729551667]]]}}, {"id": "51869", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739847121, 34.723928135], [138.740257069, 34.723732928], [138.739783476, 34.723610739], [138.739847121, 34.723928135]]]}}, {"id": "51870", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743597069, 34.730974667], [138.743159624, 34.730766946], [138.743533696, 34.731355946], [138.743597069, 34.730974667]]]}}, {"id": "51871", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739321245, 34.704833009], [138.739339209, 34.704403036], [138.739092711, 34.704434261], [138.739321245, 34.704833009]]]}}, {"id": "51872", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740434514, 34.701068072], [138.741200908, 34.702044252], [138.740972918, 34.701646865], [138.740434514, 34.701068072]]]}}, {"id": "51873", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741324267, 34.720354847], [138.740685863, 34.720221099], [138.741384008, 34.720487937], [138.741324267, 34.720354847]]]}}, {"id": "51874", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743727237, 34.731121405], [138.743935019, 34.731416459], [138.744095888, 34.731180766], [138.743727237, 34.731121405]]]}}, {"id": "51875", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740383424, 34.700503018], [138.740443385, 34.700853315], [138.740521206, 34.700849649], [138.740383424, 34.700503018]]]}}, {"id": "51876", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755838612, 34.743433333], [138.755352218, 34.743588892], [138.755427497, 34.743754441], [138.755838612, 34.743433333]]]}}, {"id": "51877", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741013891, 34.720511946], [138.740605279, 34.720644162], [138.741098885, 34.720584721], [138.741013891, 34.720511946]]]}}, {"id": "51878", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740032205, 34.701423883], [138.740195655, 34.701326018], [138.739981699, 34.701285153], [138.740032205, 34.701423883]]]}}, {"id": "51879", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741869442, 34.714265829], [138.741720558, 34.714539721], [138.741848054, 34.714555], [138.741869442, 34.714265829]]]}}, {"id": "51880", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740605357, 34.703257243], [138.740477004, 34.703039784], [138.740372581, 34.703130595], [138.740605357, 34.703257243]]]}}, {"id": "51881", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741676913, 34.711855757], [138.741799546, 34.711999514], [138.741814553, 34.711841694], [138.741676913, 34.711855757]]]}}, {"id": "51882", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.762837782, 34.751114532], [138.762643113, 34.750985784], [138.762810428, 34.751247252], [138.762837782, 34.751114532]]]}}, {"id": "51883", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741433333, 34.712285829], [138.741166939, 34.712135829], [138.74143083, 34.712368054], [138.741433333, 34.712285829]]]}}, {"id": "51884", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742048638, 34.723073703], [138.741883865, 34.723230342], [138.741952088, 34.723342748], [138.742048638, 34.723073703]]]}}, {"id": "51885", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739278703, 34.705564036], [138.739547743, 34.705813054], [138.739611971, 34.705791288], [138.739278703, 34.705564036]]]}}, {"id": "51886", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739412023, 34.699932288], [138.739510182, 34.69982373], [138.739360869, 34.699718], [138.739412023, 34.699932288]]]}}, {"id": "51887", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758645279, 34.74635], [138.758481946, 34.746415], [138.758512776, 34.746568333], [138.758645279, 34.74635]]]}}, {"id": "51888", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756583606, 34.735311108], [138.756471946, 34.735497495], [138.756629728, 34.735364441], [138.756583606, 34.735311108]]]}}, {"id": "51889", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741905045, 34.722578063], [138.741761855, 34.722481856], [138.741765279, 34.722568351], [138.741905045, 34.722578063]]]}}, {"id": "51890", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742676446, 34.722183135], [138.742723346, 34.722329676], [138.742777276, 34.722262892], [138.742676446, 34.722183135]]]}}, {"id": "51891", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741843178, 34.711648], [138.741759235, 34.711788351], [138.74182214, 34.711826153], [138.741843178, 34.711648]]]}}, {"id": "51892", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741433333, 34.711803613], [138.741411115, 34.711943892], [138.741494721, 34.711953892], [138.741433333, 34.711803613]]]}}, {"id": "51893", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742881686, 34.716385559], [138.742767134, 34.716486027], [138.742929948, 34.716438054], [138.742881686, 34.716385559]]]}}, {"id": "51894", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741639702, 34.711372459], [138.741503813, 34.711322387], [138.741633372, 34.711455171], [138.741639702, 34.711372459]]]}}, {"id": "51895", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755959728, 34.735532225], [138.756031946, 34.735636108], [138.756012218, 34.735553613], [138.755959728, 34.735532225]]]}}, {"id": "51896", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740142776, 34.707201018], [138.74024061, 34.70713682], [138.740105019, 34.707134117], [138.740142776, 34.707201018]]]}}, {"id": "51897", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741677808, 34.72322436], [138.741554656, 34.72313236], [138.741501958, 34.723134766], [138.741677808, 34.72322436]]]}}, {"id": "51898", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740957536, 34.703683324], [138.74091144, 34.703596153], [138.740876316, 34.703681595], [138.740957536, 34.703683324]]]}}, {"id": "51899", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740671258, 34.704075423], [138.740754968, 34.704145577], [138.74078096, 34.704076559], [138.740671258, 34.704075423]]]}}, {"id": "51900", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.74148, 34.711667775], [138.741561388, 34.711801667], [138.741576109, 34.711791667], [138.74148, 34.711667775]]]}}, {"id": "51901", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754396667, 34.746745], [138.754285006, 34.746707775], [138.75425917, 34.746765829], [138.754396667, 34.746745]]]}}, {"id": "51902", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751843061, 34.735088892], [138.7519, 34.734967495], [138.75181917, 34.734971387], [138.751843061, 34.735088892]]]}}, {"id": "51903", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7408, 34.714436108], [138.740858885, 34.714558892], [138.740875551, 34.714555], [138.7408, 34.714436108]]]}}, {"id": "51904", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757832879, 34.743341261], [138.757699468, 34.743415261], [138.757872944, 34.743384018], [138.757832879, 34.743341261]]]}}, {"id": "51905", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.739214721, 34.705144964], [138.739282815, 34.705100198], [138.739205694, 34.705079351], [138.739214721, 34.705144964]]]}}, {"id": "51906", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755189663, 34.745167072], [138.755103891, 34.745193081], [138.75511965, 34.745226333], [138.755189663, 34.745167072]]]}}, {"id": "51907", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.763681115, 34.751391108], [138.763693061, 34.751262225], [138.76365834, 34.751262225], [138.763681115, 34.751391108]]]}}, {"id": "51908", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755980233, 34.744260279], [138.755930376, 34.744324991], [138.755980856, 34.744351811], [138.755980233, 34.744260279]]]}}, {"id": "51909", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.746740558, 34.73287], [138.746634163, 34.732882775], [138.746735279, 34.732910829], [138.746740558, 34.73287]]]}}, {"id": "51910", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740950143, 34.703014054], [138.741035447, 34.703067622], [138.741030804, 34.703010198], [138.740950143, 34.703014054]]]}}, {"id": "51911", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758742036, 34.742997081], [138.758635642, 34.74305136], [138.758770298, 34.74302855], [138.758742036, 34.742997081]]]}}, {"id": "51912", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741576667, 34.722815559], [138.741653061, 34.722806387], [138.74160083, 34.722779441], [138.741576667, 34.722815559]]]}}, {"id": "51913", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.749284163, 34.733841667], [138.749322218, 34.733791667], [138.749231946, 34.733791667], [138.749284163, 34.733841667]]]}}, {"id": "51914", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759200428, 34.742795063], [138.759120908, 34.742830892], [138.759167237, 34.74284573], [138.759200428, 34.742795063]]]}}, {"id": "51915", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740084319, 34.701554685], [138.740081349, 34.70150673], [138.740029792, 34.701458775], [138.740084319, 34.701554685]]]}}, {"id": "51916", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760479844, 34.742391874], [138.760549222, 34.742387279], [138.760510402, 34.742315054], [138.760479844, 34.742391874]]]}}, {"id": "51917", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742447484, 34.722042757], [138.742394955, 34.722093928], [138.742435422, 34.722102036], [138.742447484, 34.722042757]]]}}, {"id": "51918", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756582944, 34.744198874], [138.75654607, 34.744255225], [138.756585733, 34.744255631], [138.756582944, 34.744198874]]]}}, {"id": "51919", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755454449, 34.744642495], [138.755498054, 34.744546946], [138.755437224, 34.744539721], [138.755454449, 34.744642495]]]}}, {"id": "51920", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.748564163, 34.733533333], [138.748649728, 34.733554441], [138.748654449, 34.733527495], [138.748564163, 34.733533333]]]}}, {"id": "51921", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754562776, 34.745829441], [138.754502503, 34.745852775], [138.754519728, 34.745894441], [138.754562776, 34.745829441]]]}}, {"id": "51922", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742008223, 34.714493568], [138.741952192, 34.71447245], [138.741972568, 34.714515721], [138.742008223, 34.714493568]]]}}, {"id": "51923", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741602776, 34.722643333], [138.74164917, 34.722582775], [138.741619442, 34.722567775], [138.741602776, 34.722643333]]]}}, {"id": "51924", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756253087, 34.744333883], [138.756189468, 34.74434482], [138.756247315, 34.744390514], [138.756253087, 34.744333883]]]}}, {"id": "51925", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756882879, 34.744332441], [138.756849131, 34.744375144], [138.756901492, 34.744360703], [138.756882879, 34.744332441]]]}}, {"id": "51926", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741667302, 34.711392937], [138.741693294, 34.711495378], [138.741719637, 34.711496342], [138.741667302, 34.711392937]]]}}, {"id": "51927", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.74080166, 34.721270261], [138.740784721, 34.72130736], [138.740813684, 34.721306234], [138.74080166, 34.721270261]]]}}, {"id": "51928", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.740717756, 34.722662423], [138.740709585, 34.722708081], [138.740740013, 34.722688667], [138.740717756, 34.722662423]]]}}, {"id": "51929", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757935512, 34.743232685], [138.757963424, 34.743276423], [138.757973087, 34.743242658], [138.757935512, 34.743232685]]]}}, {"id": "51930", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.749483891, 34.733911108], [138.749476667, 34.733864721], [138.749443333, 34.733868613], [138.749483891, 34.733911108]]]}}, {"id": "51931", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758839663, 34.742900261], [138.758804319, 34.742934766], [138.758882451, 34.742909252], [138.758839663, 34.742900261]]]}}, {"id": "51932", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741837224, 34.722930559], [138.74180917, 34.722974162], [138.741855837, 34.722980279], [138.741837224, 34.722930559]]]}}, {"id": "51933", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759847497, 34.742346946], [138.759897782, 34.74234], [138.759903061, 34.742308892], [138.759847497, 34.742346946]]]}}, {"id": "51934", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760522218, 34.748706667], [138.760486394, 34.748651387], [138.760484721, 34.748702225], [138.760522218, 34.748706667]]]}}, {"id": "51935", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742448612, 34.715853333], [138.742496939, 34.715851946], [138.742467497, 34.715822495], [138.742448612, 34.715853333]]]}}, {"id": "51936", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.741684721, 34.722954721], [138.741654721, 34.722993892], [138.741725551, 34.722966667], [138.741684721, 34.722954721]]]}}, {"id": "51937", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754741673, 34.745280829], [138.754719728, 34.745238333], [138.754719728, 34.745263333], [138.754741673, 34.745280829]]]}}, {"id": "51938", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.74076607, 34.722713441], [138.740757484, 34.722755144], [138.740798042, 34.72274727], [138.74076607, 34.722713441]]]}}, {"id": "51939", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758008716, 34.743279063], [138.758001349, 34.743319703], [138.758031907, 34.743308234], [138.758008716, 34.743279063]]]}}, {"id": "51940", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "松崎町", "N03_005": null, "N03_007": "22305"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760652776, 34.748890829], [138.760618612, 34.748924162], [138.760661673, 34.74893], [138.760652776, 34.748890829]]]}}, {"id": "51941", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.840031673, 34.788666946], [138.763178054, 34.770505279], [138.7525, 34.800543054], [138.765962672, 34.808766757], [138.751162218, 34.820700559], [138.769120389, 34.822852081], [138.759803009, 34.842864667], [138.778594449, 34.870603892], [138.833169728, 34.882286667], [138.839748612, 34.865249441], [138.892525837, 34.840898333], [138.876403333, 34.788736946], [138.849544721, 34.781966387], [138.850177497, 34.800293613], [138.835966667, 34.799999441], [138.840031673, 34.788666946]]]}}, {"id": "51942", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755455006, 34.804401946], [138.755631154, 34.806389189], [138.755555888, 34.80793891], [138.756082776, 34.806289441], [138.755455006, 34.804401946]]]}}, {"id": "51943", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758007575, 34.782050757], [138.759303281, 34.783877667], [138.75981179, 34.783578396], [138.758007575, 34.782050757]]]}}, {"id": "51944", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755913061, 34.793686387], [138.754957497, 34.793810279], [138.755633333, 34.794103333], [138.755913061, 34.793686387]]]}}, {"id": "51945", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755998742, 34.781699613], [138.755447237, 34.782663955], [138.756243528, 34.783155099], [138.755998742, 34.781699613]]]}}, {"id": "51946", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760938794, 34.784137946], [138.760393969, 34.783733072], [138.761192257, 34.784494225], [138.760938794, 34.784137946]]]}}, {"id": "51947", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.745639948, 34.810539739], [138.744703865, 34.809897964], [138.744643593, 34.810604396], [138.745639948, 34.810539739]]]}}, {"id": "51948", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765804449, 34.779528892], [138.766166109, 34.778599441], [138.765674721, 34.778368333], [138.765804449, 34.779528892]]]}}, {"id": "51949", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755631946, 34.811298333], [138.754696939, 34.811179721], [138.754949442, 34.81158], [138.755631946, 34.811298333]]]}}, {"id": "51950", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743412866, 34.810093396], [138.744091686, 34.809416027], [138.743471582, 34.809342045], [138.743412866, 34.810093396]]]}}, {"id": "51951", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767253281, 34.773981649], [138.766964721, 34.773067225], [138.766200558, 34.772802225], [138.767088755, 34.774071459], [138.767253281, 34.773981649]]]}}, {"id": "51952", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.7568669, 34.781946063], [138.757273541, 34.782578568], [138.75766262, 34.782119171], [138.7568669, 34.781946063]]]}}, {"id": "51953", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766104449, 34.780362495], [138.765845279, 34.779680829], [138.765695279, 34.77994], [138.766104449, 34.780362495]]]}}, {"id": "51954", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76522144, 34.846921369], [138.765187354, 34.846429847], [138.764716537, 34.846710694], [138.76522144, 34.846921369]]]}}, {"id": "51955", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764937224, 34.783049721], [138.76463, 34.782035829], [138.764418612, 34.782002225], [138.764937224, 34.783049721]]]}}, {"id": "51956", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754310311, 34.804358243], [138.754152542, 34.803963162], [138.753760973, 34.80414464], [138.754310311, 34.804358243]]]}}, {"id": "51957", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752943333, 34.802452495], [138.752923061, 34.801821667], [138.752711388, 34.802441387], [138.752943333, 34.802452495]]]}}, {"id": "51958", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756315837, 34.791567775], [138.756056667, 34.791500279], [138.756015551, 34.791934162], [138.756315837, 34.791567775]]]}}, {"id": "51959", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751769728, 34.798711667], [138.751837782, 34.798328613], [138.751551115, 34.798475], [138.751769728, 34.798711667]]]}}, {"id": "51960", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765565551, 34.778300829], [138.765606394, 34.777889441], [138.765490272, 34.77785], [138.765565551, 34.778300829]]]}}, {"id": "51961", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.774689624, 34.854461928], [138.774536005, 34.854074441], [138.774464034, 34.85443082], [138.774689624, 34.854461928]]]}}, {"id": "51962", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752752218, 34.799134162], [138.75245917, 34.798903054], [138.752677224, 34.799218613], [138.752752218, 34.799134162]]]}}, {"id": "51963", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755121946, 34.780497495], [138.754555551, 34.780311667], [138.754535006, 34.780385], [138.755121946, 34.780497495]]]}}, {"id": "51964", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76822083, 34.772486946], [138.767906939, 34.772306667], [138.768036667, 34.772560279], [138.76822083, 34.772486946]]]}}, {"id": "51965", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754533956, 34.803931315], [138.75458061, 34.803205441], [138.754492607, 34.803208514], [138.754533956, 34.803931315]]]}}, {"id": "51966", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743557808, 34.808763811], [138.743236978, 34.808729919], [138.743305305, 34.808972144], [138.743557808, 34.808763811]]]}}, {"id": "51967", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76283083, 34.809713613], [138.762495279, 34.809509441], [138.762447782, 34.809636946], [138.76283083, 34.809713613]]]}}, {"id": "51968", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753708145, 34.781902063], [138.753417302, 34.781816477], [138.753660493, 34.781966135], [138.753708145, 34.781902063]]]}}, {"id": "51969", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765577769, 34.845222207], [138.765573891, 34.845434721], [138.765879468, 34.845329757], [138.765577769, 34.845222207]]]}}, {"id": "51970", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757922438, 34.792662901], [138.757744449, 34.792301261], [138.757688132, 34.792362162], [138.757922438, 34.792662901]]]}}, {"id": "51971", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754321673, 34.805799162], [138.754096394, 34.805844441], [138.754158054, 34.805945829], [138.754321673, 34.805799162]]]}}, {"id": "51972", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.761483061, 34.786368054], [138.76149, 34.786627225], [138.761544721, 34.786587775], [138.761483061, 34.786368054]]]}}, {"id": "51973", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.757032218, 34.79683], [138.757005006, 34.797038613], [138.757107497, 34.797004721], [138.757032218, 34.79683]]]}}, {"id": "51974", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743823087, 34.807722622], [138.743556978, 34.807654847], [138.74353642, 34.80772818], [138.743823087, 34.807722622]]]}}, {"id": "51975", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.745571608, 34.809033144], [138.745373554, 34.809100919], [138.745469118, 34.809173973], [138.745571608, 34.809033144]]]}}, {"id": "51976", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.769709767, 34.847854117], [138.769689209, 34.847519955], [138.76961358, 34.847836892], [138.769709767, 34.847854117]]]}}, {"id": "51977", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.761565279, 34.783754162], [138.761558612, 34.78354], [138.761463061, 34.783720279], [138.761565279, 34.783754162]]]}}, {"id": "51978", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.749380558, 34.802221667], [138.749114163, 34.802221667], [138.749141673, 34.802278054], [138.749380558, 34.802221667]]]}}, {"id": "51979", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.743201141, 34.807914775], [138.742969196, 34.80784727], [138.742982815, 34.807971162], [138.743201141, 34.807914775]]]}}, {"id": "51980", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760534449, 34.787123054], [138.760466109, 34.787303333], [138.760582218, 34.787269441], [138.760534449, 34.787123054]]]}}, {"id": "51981", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766599624, 34.85781973], [138.766441141, 34.857710225], [138.766489274, 34.857854991], [138.766599624, 34.85781973]]]}}, {"id": "51982", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.773224721, 34.762515829], [138.773163333, 34.762685], [138.77327917, 34.762651108], [138.773224721, 34.762515829]]]}}, {"id": "51983", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.758565422, 34.792061892], [138.758728145, 34.792114333], [138.758656368, 34.791942559], [138.758565422, 34.792061892]]]}}, {"id": "51984", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.746472503, 34.803145559], [138.746274449, 34.803286387], [138.746458885, 34.803303333], [138.746472503, 34.803145559]]]}}, {"id": "51985", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760750454, 34.788480757], [138.760586498, 34.788184964], [138.760706485, 34.788581369], [138.760750454, 34.788480757]]]}}, {"id": "51986", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.756888275, 34.781656982], [138.756862996, 34.781445847], [138.756825759, 34.781651577], [138.756888275, 34.781656982]]]}}, {"id": "51987", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75398201, 34.78287409], [138.75397511, 34.782616829], [138.753945447, 34.782876757], [138.75398201, 34.78287409]]]}}, {"id": "51988", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767592776, 34.773512495], [138.767483606, 34.773439162], [138.767524721, 34.773540559], [138.767592776, 34.773512495]]]}}, {"id": "51989", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754869442, 34.782249721], [138.754944721, 34.782480559], [138.755053891, 34.782435279], [138.754869442, 34.782249721]]]}}, {"id": "51990", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766725006, 34.857947486], [138.766832464, 34.858046982], [138.766797328, 34.857822811], [138.766725006, 34.857947486]]]}}, {"id": "51991", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.750247497, 34.797731387], [138.750083891, 34.79772], [138.750056394, 34.797826946], [138.750247497, 34.797731387]]]}}, {"id": "51992", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765829442, 34.856912775], [138.765978054, 34.857048613], [138.765959728, 34.8569], [138.765829442, 34.856912775]]]}}, {"id": "51993", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764500272, 34.782717495], [138.764459442, 34.782869441], [138.764575551, 34.782891946], [138.764500272, 34.782717495]]]}}, {"id": "51994", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.774903891, 34.762583613], [138.774903891, 34.762775], [138.774992776, 34.76273], [138.774903891, 34.762583613]]]}}, {"id": "51995", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766439468, 34.85749291], [138.766556278, 34.857329459], [138.766467536, 34.857323856], [138.766439468, 34.85749291]]]}}, {"id": "51996", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759932192, 34.841259126], [138.759828898, 34.841079892], [138.759808106, 34.841252432], [138.759932192, 34.841259126]]]}}, {"id": "51997", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760655837, 34.806363054], [138.760533061, 34.806182495], [138.760546667, 34.806334721], [138.760655837, 34.806363054]]]}}, {"id": "51998", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753243606, 34.805551387], [138.753181946, 34.805686667], [138.753332218, 34.805579441], [138.753243606, 34.805551387]]]}}, {"id": "51999", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76612917, 34.829185829], [138.76619, 34.829316387], [138.766266667, 34.829205829], [138.76612917, 34.829185829]]]}}, {"id": "52000", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753263891, 34.805337225], [138.753195837, 34.805478054], [138.753318612, 34.805359721], [138.753263891, 34.805337225]]]}}, {"id": "52001", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766410726, 34.857101252], [138.766510778, 34.857141928], [138.766463684, 34.857028108], [138.766410726, 34.857101252]]]}}, {"id": "52002", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759993606, 34.842002495], [138.760021115, 34.841845], [138.759891115, 34.841968892], [138.759993606, 34.842002495]]]}}, {"id": "52003", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752957224, 34.798869441], [138.752888885, 34.799049721], [138.753004721, 34.798976387], [138.752957224, 34.798869441]]]}}, {"id": "52004", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752322218, 34.800610279], [138.752247224, 34.800480559], [138.752192503, 34.800576387], [138.752322218, 34.800610279]]]}}, {"id": "52005", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.745503061, 34.810706108], [138.745400558, 34.810841387], [138.745571115, 34.810762495], [138.745503061, 34.810706108]]]}}, {"id": "52006", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.761024449, 34.806030559], [138.760840272, 34.806103892], [138.760921946, 34.806188333], [138.761024449, 34.806030559]]]}}, {"id": "52007", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760671115, 34.786762225], [138.760630272, 34.786863613], [138.760712218, 34.786846946], [138.760671115, 34.786762225]]]}}, {"id": "52008", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75376917, 34.803872495], [138.753530272, 34.803872495], [138.753557497, 34.803979441], [138.75376917, 34.803872495]]]}}, {"id": "52009", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760470233, 34.841247126], [138.760373048, 34.841111685], [138.760335655, 34.841192459], [138.760470233, 34.841247126]]]}}, {"id": "52010", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752636109, 34.802120279], [138.752465551, 34.802125829], [138.752465551, 34.802193333], [138.752636109, 34.802120279]]]}}, {"id": "52011", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760076472, 34.841133], [138.760224656, 34.841051982], [138.760035966, 34.841090441], [138.760076472, 34.841133]]]}}, {"id": "52012", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751448885, 34.799066667], [138.751537497, 34.799162225], [138.751558054, 34.799027225], [138.751448885, 34.799066667]]]}}, {"id": "52013", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764842218, 34.76927], [138.764808054, 34.769478333], [138.764903606, 34.769281387], [138.764842218, 34.76927]]]}}, {"id": "52014", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766887925, 34.828874108], [138.767068781, 34.82873891], [138.766859935, 34.828808063], [138.766887925, 34.828874108]]]}}, {"id": "52015", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760307263, 34.788455117], [138.760180999, 34.788415189], [138.760205655, 34.788447649], [138.760307263, 34.788455117]]]}}, {"id": "52016", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759986602, 34.837562099], [138.760067406, 34.83743164], [138.759943087, 34.837484757], [138.759986602, 34.837562099]]]}}, {"id": "52017", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754848885, 34.780125829], [138.754705551, 34.780181946], [138.754821673, 34.780193333], [138.754848885, 34.780125829]]]}}, {"id": "52018", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.763979092, 34.84607573], [138.764169001, 34.84611836], [138.764102866, 34.846022613], [138.763979092, 34.84607573]]]}}, {"id": "52019", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754349728, 34.797855279], [138.754431388, 34.797928333], [138.754445279, 34.797860829], [138.754349728, 34.797855279]]]}}, {"id": "52020", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759381388, 34.782323054], [138.759319728, 34.782480829], [138.759395006, 34.782475], [138.759381388, 34.782323054]]]}}, {"id": "52021", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765435006, 34.856676225], [138.765454021, 34.856804604], [138.765516044, 34.856758333], [138.765435006, 34.856676225]]]}}, {"id": "52022", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754553891, 34.806418892], [138.754690272, 34.806486667], [138.754690272, 34.806402225], [138.754553891, 34.806418892]]]}}, {"id": "52023", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.742825032, 34.808495486], [138.742811427, 34.808636324], [138.742920584, 34.808596874], [138.742825032, 34.808495486]]]}}, {"id": "52024", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751353333, 34.798503054], [138.75142834, 34.798598892], [138.751462503, 34.798514441], [138.751353333, 34.798503054]]]}}, {"id": "52025", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752259728, 34.823202495], [138.75221917, 34.823325279], [138.75229834, 34.823320829], [138.752259728, 34.823202495]]]}}, {"id": "52026", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760026109, 34.840541946], [138.760136394, 34.840633892], [138.760067224, 34.840526946], [138.760026109, 34.840541946]]]}}, {"id": "52027", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759476939, 34.782593333], [138.759551673, 34.782700559], [138.759531388, 34.782559721], [138.759476939, 34.782593333]]]}}, {"id": "52028", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759108054, 34.784018892], [138.759101115, 34.784125559], [138.759183061, 34.784063892], [138.759108054, 34.784018892]]]}}, {"id": "52029", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.768623943, 34.858110018], [138.768500726, 34.858087315], [138.768521946, 34.858170468], [138.768623943, 34.858110018]]]}}, {"id": "52030", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.774235006, 34.763293333], [138.774173606, 34.763394721], [138.774262218, 34.763394721], [138.774235006, 34.763293333]]]}}, {"id": "52031", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.761524449, 34.783252495], [138.761613061, 34.783331387], [138.76162, 34.783241387], [138.761524449, 34.783252495]]]}}, {"id": "52032", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760406459, 34.841652495], [138.760310999, 34.841598856], [138.760359922, 34.841704712], [138.760406459, 34.841652495]]]}}, {"id": "52033", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751413606, 34.818222225], [138.751481673, 34.818312495], [138.751468054, 34.818177225], [138.751413606, 34.818222225]]]}}, {"id": "52034", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751851115, 34.800553892], [138.751946939, 34.800491946], [138.751892218, 34.800452495], [138.751851115, 34.800553892]]]}}, {"id": "52035", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76037083, 34.784666387], [138.760384449, 34.784773613], [138.760452776, 34.784683333], [138.76037083, 34.784666387]]]}}, {"id": "52036", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766983684, 34.857681784], [138.767083761, 34.857606847], [138.766985979, 34.857594883], [138.766983684, 34.857681784]]]}}, {"id": "52037", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.754861115, 34.806120279], [138.754833606, 34.806205], [138.754895279, 34.806154162], [138.754861115, 34.806120279]]]}}, {"id": "52038", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.745988054, 34.802216108], [138.745878885, 34.802125829], [138.745844721, 34.802176667], [138.745988054, 34.802216108]]]}}, {"id": "52039", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764671115, 34.783207495], [138.764677782, 34.783106108], [138.764623333, 34.783190559], [138.764671115, 34.783207495]]]}}, {"id": "52040", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.770192866, 34.857703541], [138.770193437, 34.857591243], [138.770134086, 34.857631784], [138.770192866, 34.857703541]]]}}, {"id": "52041", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767727224, 34.848049721], [138.76775917, 34.847964721], [138.767674721, 34.847958054], [138.767727224, 34.848049721]]]}}, {"id": "52042", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772541673, 34.857215], [138.772618067, 34.85711764], [138.772524799, 34.857130216], [138.772541673, 34.857215]]]}}, {"id": "52043", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755004449, 34.806554162], [138.755086394, 34.806627495], [138.755113606, 34.806537225], [138.755004449, 34.806554162]]]}}, {"id": "52044", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753927497, 34.782474721], [138.75403, 34.782395829], [138.753941115, 34.782401667], [138.753927497, 34.782474721]]]}}, {"id": "52045", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751605551, 34.802035559], [138.751503061, 34.802131387], [138.751639728, 34.802052495], [138.751605551, 34.802035559]]]}}, {"id": "52046", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752131115, 34.800773613], [138.752240272, 34.800824441], [138.752281388, 34.800751108], [138.752131115, 34.800773613]]]}}, {"id": "52047", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755265551, 34.781376387], [138.75532, 34.781466667], [138.755340558, 34.781393333], [138.755265551, 34.781376387]]]}}, {"id": "52048", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751038054, 34.820988613], [138.751099442, 34.82109], [138.751106394, 34.820977495], [138.751038054, 34.820988613]]]}}, {"id": "52049", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760427704, 34.788243027], [138.760371219, 34.788251883], [138.76039821, 34.788350351], [138.760427704, 34.788243027]]]}}, {"id": "52050", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759868275, 34.842334009], [138.759953061, 34.842237495], [138.759858949, 34.84224945], [138.759868275, 34.842334009]]]}}, {"id": "52051", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.750833333, 34.821129162], [138.75093083, 34.821161108], [138.750860558, 34.821067225], [138.750833333, 34.821129162]]]}}, {"id": "52052", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772930104, 34.857209901], [138.772849274, 34.857153982], [138.772881777, 34.857256027], [138.772930104, 34.857209901]]]}}, {"id": "52053", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.753441673, 34.801985], [138.753523606, 34.801934162], [138.75340083, 34.801928613], [138.753441673, 34.801985]]]}}, {"id": "52054", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.746199442, 34.802565279], [138.746336109, 34.802593333], [138.746308612, 34.802548333], [138.746199442, 34.802565279]]]}}, {"id": "52055", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.765714449, 34.846763054], [138.765621946, 34.846689162], [138.765614449, 34.846743892], [138.765714449, 34.846763054]]]}}, {"id": "52056", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.762328054, 34.809506667], [138.762396394, 34.809588613], [138.762416667, 34.809523613], [138.762328054, 34.809506667]]]}}, {"id": "52057", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764980272, 34.846015279], [138.765077834, 34.845969144], [138.765019974, 34.845944505], [138.764980272, 34.846015279]]]}}, {"id": "52058", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767887886, 34.857799117], [138.767969546, 34.857784622], [138.767934994, 34.857743721], [138.767887886, 34.857799117]]]}}, {"id": "52059", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766366394, 34.85686], [138.766448054, 34.856817495], [138.766363061, 34.856790279], [138.766366394, 34.85686]]]}}, {"id": "52060", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75510834, 34.781308892], [138.755190272, 34.781218613], [138.75510834, 34.781258054], [138.75510834, 34.781308892]]]}}, {"id": "52061", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759490558, 34.782069441], [138.759565551, 34.782136946], [138.759572503, 34.782058054], [138.759490558, 34.782069441]]]}}, {"id": "52062", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.751563606, 34.818577225], [138.751522776, 34.818492775], [138.751488612, 34.818543333], [138.751563606, 34.818577225]]]}}, {"id": "52063", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.755721115, 34.805027495], [138.755673333, 34.804971108], [138.755625551, 34.805010559], [138.755721115, 34.805027495]]]}}, {"id": "52064", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767432503, 34.848162775], [138.767445279, 34.848102225], [138.767367497, 34.848105], [138.767432503, 34.848162775]]]}}, {"id": "52065", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.75204917, 34.802193333], [138.752110558, 34.802120279], [138.752001388, 34.802148333], [138.75204917, 34.802193333]]]}}, {"id": "52066", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.752247224, 34.802080829], [138.752301673, 34.802001946], [138.752213061, 34.802035559], [138.752247224, 34.802080829]]]}}, {"id": "52067", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.747234306, 34.810270162], [138.747254578, 34.810185721], [138.747200143, 34.810219613], [138.747234306, 34.810270162]]]}}, {"id": "52068", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.770571064, 34.857590306], [138.770621933, 34.857504333], [138.770547315, 34.857517613], [138.770571064, 34.857590306]]]}}, {"id": "52069", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76112834, 34.786559441], [138.761203333, 34.786491946], [138.761114449, 34.786508892], [138.76112834, 34.786559441]]]}}, {"id": "52070", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.770747432, 34.857524604], [138.770786109, 34.857446667], [138.770732166, 34.857455405], [138.770747432, 34.857524604]]]}}, {"id": "52071", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76649083, 34.775286387], [138.766461115, 34.775179721], [138.766428054, 34.775213613], [138.76649083, 34.775286387]]]}}, {"id": "52072", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760847951, 34.838464405], [138.760873567, 34.838379297], [138.760820078, 34.838390477], [138.760847951, 34.838464405]]]}}, {"id": "52073", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767340272, 34.773630559], [138.76736083, 34.773545829], [138.767292503, 34.773619162], [138.767340272, 34.773630559]]]}}, {"id": "52074", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.76026834, 34.786768054], [138.760288885, 34.786689162], [138.760220558, 34.786711667], [138.76026834, 34.786768054]]]}}, {"id": "52075", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.772772399, 34.857277], [138.772713035, 34.857228072], [138.772716433, 34.857292378], [138.772772399, 34.857277]]]}}, {"id": "52076", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.77010808, 34.857832153], [138.77006511, 34.857752937], [138.770079805, 34.857837748], [138.77010808, 34.857832153]]]}}, {"id": "52077", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760780376, 34.837687054], [138.760812023, 34.837613667], [138.760745344, 34.837624622], [138.760780376, 34.837687054]]]}}, {"id": "52078", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767426939, 34.847776387], [138.76752, 34.847833054], [138.767513606, 34.847796667], [138.767426939, 34.847776387]]]}}, {"id": "52079", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.761102218, 34.836960279], [138.76113834, 34.836881387], [138.761077224, 34.836908054], [138.761102218, 34.836960279]]]}}, {"id": "52080", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760294112, 34.843269162], [138.760347795, 34.843333459], [138.76031559, 34.843250991], [138.760294112, 34.843269162]]]}}, {"id": "52081", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.769258275, 34.858223252], [138.769314125, 34.858261297], [138.769334591, 34.858222946], [138.769258275, 34.858223252]]]}}, {"id": "52082", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.760833333, 34.837920829], [138.760833826, 34.837851712], [138.760806226, 34.837898928], [138.760833333, 34.837920829]]]}}, {"id": "52083", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.759632438, 34.842532559], [138.759691777, 34.842476189], [138.759653346, 34.84246873], [138.759632438, 34.842532559]]]}}, {"id": "52084", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767064825, 34.858066613], [138.767009313, 34.858108802], [138.767063554, 34.858101667], [138.767064825, 34.858066613]]]}}, {"id": "52085", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766395435, 34.857882802], [138.766432114, 34.857836523], [138.766379144, 34.857859667], [138.766395435, 34.857882802]]]}}, {"id": "52086", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.766785564, 34.857703261], [138.766841751, 34.857715018], [138.766813061, 34.857679333], [138.766785564, 34.857703261]]]}}, {"id": "52087", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.764881336, 34.846245568], [138.764942361, 34.846250288], [138.764910584, 34.846227748], [138.764881336, 34.846245568]]]}}, {"id": "52088", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "賀茂郡", "N03_004": "西伊豆町", "N03_005": null, "N03_007": "22306"}, "geometry": {"type": "Polygon", "coordinates": [[[138.767777224, 34.773613892], [138.767729442, 34.773596946], [138.767722503, 34.773630829], [138.767777224, 34.773613892]]]}}, {"id": "52089", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "田方郡", "N03_004": "函南町", "N03_005": null, "N03_007": "22325"}, "geometry": {"type": "Polygon", "coordinates": [[[138.912944449, 35.063031108], [139.013829442, 35.182367838], [139.021577004, 35.182038108], [139.044778106, 35.123718892], [139.03323, 35.083985], [138.912944449, 35.063031108]]]}}, {"id": "52090", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "駿東郡", "N03_004": "清水町", "N03_005": null, "N03_007": "22341"}, "geometry": {"type": "Polygon", "coordinates": [[[138.888055279, 35.080395838], [138.887734449, 35.116206946], [138.906375006, 35.119441667], [138.915593606, 35.093132225], [138.888055279, 35.080395838]]]}}, {"id": "52091", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "駿東郡", "N03_004": "長泉町", "N03_005": null, "N03_007": "22342"}, "geometry": {"type": "Polygon", "coordinates": [[[138.887003061, 35.113740838], [138.865356394, 35.152213333], [138.81184, 35.221141108], [138.902536939, 35.161198613], [138.904493606, 35.118943613], [138.887003061, 35.113740838]]]}}, {"id": "52092", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "駿東郡", "N03_004": "小山町", "N03_005": null, "N03_007": "22344"}, "geometry": {"type": "Polygon", "coordinates": [[[138.964580558, 35.31449], [138.971440272, 35.330015], [138.892374163, 35.346161667], [138.905099442, 35.354305559], [138.888635136, 35.361966387], [138.884083061, 35.332604721], [138.730781414, 35.362798613], [138.851207302, 35.390541414], [138.874262477, 35.379173523], [138.915362607, 35.400558892], [138.998177328, 35.402570748], [139.019010999, 35.329306559], [139.004612244, 35.289898027], [138.99177297, 35.285545279], [138.964580558, 35.31449]]]}}, {"id": "52093", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "榛原郡", "N03_004": "吉田町", "N03_005": null, "N03_007": "22424"}, "geometry": {"type": "Polygon", "coordinates": [[[138.241515837, 34.745478054], [138.251415006, 34.759226387], [138.223621115, 34.786630829], [138.250789728, 34.802929441], [138.294263113, 34.767374414], [138.241515837, 34.745478054]]]}}, {"id": "52094", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "榛原郡", "N03_004": "川根本町", "N03_005": null, "N03_007": "22429"}, "geometry": {"type": "Polygon", "coordinates": [[[138.071488054, 34.996787495], [138.01339083, 35.022742225], [138.047344449, 35.039009171], [138.03837, 35.06729], [138.058702218, 35.105136108], [137.999322218, 35.146172775], [138.036363891, 35.210949721], [138.000441946, 35.261703892], [138.02618275, 35.320406721], [138.070332581, 35.34741864], [138.098284449, 35.304358054], [138.13723917, 35.283755279], [138.145742503, 35.256278892], [138.198059728, 35.246321946], [138.183616394, 35.192667775], [138.214890558, 35.203763892], [138.239830558, 35.17665], [138.18366083, 35.136566387], [138.18847834, 35.093881667], [138.209665006, 35.070841108], [138.200056109, 35.05055], [138.173685551, 35.063390279], [138.16106834, 35.046266946], [138.149823061, 35.061219441], [138.103052503, 34.976495], [138.082387224, 34.972513892], [138.071488054, 34.996787495]]]}}, {"id": "52095", "type": "Feature", "properties": {"N03_001": "静岡県", "N03_002": null, "N03_003": "周智郡", "N03_004": "森町", "N03_005": null, "N03_007": "22461"}, "geometry": {"type": "Polygon", "coordinates": [[[137.877760558, 34.815002495], [137.879599728, 34.855254162], [137.921206394, 34.896616667], [137.907577224, 34.928868613], [138.009962776, 34.975617225], [138.012062218, 34.940442775], [138.043780272, 34.922065279], [138.010638612, 34.913678333], [137.920406939, 34.796992495], [137.884184449, 34.784274162], [137.890861115, 34.813554162], [137.877760558, 34.815002495]]]}}], "crs": {"type": "name", "properties": {"name": "urn:ogc:def:crs:EPSG::6668"}}}

このGeojsonDataをFoliumのGeneralMapでDrawします。

>Code<

import folium

# 地図の中心となる緯度経度を設定
center_lat = 35.6895
center_lon = 139.6917

# Foliumの地図オブジェクトを作成
m = folium.Map(location=[center_lat, center_lon], zoom_start=6, tiles="cartodbpositron")
# gdf.to_crs(epsg=4326) # 座標系をEPGS=6668からEPGS=4326に変更

folium.GeoJson(
    geojson_selected,
    style_function=lambda feature: {
        'fillColor': color,
        'color': color,
        'weight': 1, # 線の太さをゼロに設定
        'fillOpacity': 0.6,
    },
#    tooltip = name
).add_to(m)

# 地図を表示
m

>Output<

PretyGood!Drawできています。Let's Draw Coropreth Map!

>Code<

import pandas

m = folium.Map(location=[center_lat, center_lon], zoom_start=6, tiles="cartodbpositron")

folium.Choropleth(
    geo_data = geojson_selected,
    name="choropleth",
    data = df,
    columns=["N03_001", "人口比(対全国人口)"],
    key_on="feature.properties.N03_001",
    fill_color="YlGn",
    fill_opacity=0.7,
    line_opacity=0,
    legend_name="Population Rate (%)",
    # threshold_scale を明示的に指定することで、色の範囲を制御します。
    # ここでは、0, 5, 10, 15, 20% で区切る例
    threshold_scale=[0, 5, 10, 15, 20] # このリストが色の境界値を決定し、0-20%に調整します。
).add_to(m)

folium.LayerControl().add_to(m)

m

>Output<


(参考)EPSG:6668とEPSG:4326の違いについてGemini先生に聞いてみた

EPSG:6668とEPSG:4326は、どちらも地理空間情報における「座標参照系 (CRS: Coordinate Reference System)」を識別するためのコードですが、その内容は大きく異なります。

EPSGコードとは

EPSG(European Petroleum Survey Group)コードは、世界中の様々な座標参照系を数値で一意に識別するための国際的な標準コードです。GPSデータ、地図データ、GISソフトウェアなどで広く利用されています。

EPSG:4326 とは

  • 名称: WGS84 (World Geodetic System 1984)
  • 種類: 地理座標系 (Geographic Coordinate System)
  • 特徴:
    • 世界測地系: 地球全体をカバーする国際的な測地系で、GPS (Global Positioning System) で得られる位置情報や、多くのWeb地図サービス(Google Maps, OpenStreetMapなど)のベースとして広く利用されています。
    • 単位: **緯度と経度(度)**で位置を表します。
    • 基準楕円体: WGS84楕円体を使用しています。
    • 用途:
      • グローバルな位置情報サービス。
      • GPSデータ。
      • 国際的な地理空間データの交換。
      • Web地図サービス。
      • 広範囲の地理データを扱う場合。
  • ポイント: 地球を球体または楕円体として捉え、その表面上の位置を「角度(緯度と経度)」で表現します。距離や面積の計算には、別途楕円体モデルを考慮した計算が必要になります。

EPSG:6668 とは

  • 名称: JGD2011地理座標系 (Japanese Geodetic Datum 2011 Geographic Coordinate System)
  • 種類: 地理座標系 (Geographic Coordinate System)
  • 特徴:
    • 日本測地系2011: 2011年の東北地方太平洋沖地震による地殻変動を考慮して、日本国内で2011年10月21日に告示された新しい測地成果(基準)に基づく日本の公式な測地系です。それ以前はJGD2000が使われていました。
    • 単位: **緯度と経度(度)**で位置を表します。
    • 基準楕円体: GRS80楕円体を使用しています(JGD2000と同じ)。
    • 用途:
      • 日本国内の測量や地図作成。
      • 公的な地理空間データの作成と利用。
      • 日本国内の地籍調査など、高精度な位置情報を必要とする場合。
  • ポイント: WGS84と同じく緯度経度で位置を表す地理座標系ですが、日本の地殻変動を考慮して最適化された日本の測地系である点が大きな違いです。そのため、日本国内で非常に高い精度を求める場合には、WGS84よりもJGD2011(EPSG:6668)を使用することが推奨されます。

EPSG:6668 と EPSG:4326 の主な違いまとめ

項目EPSG:4326 (WGS84)EPSG:6668 (JGD2011地理座標系)
測地系世界測地系 (国際標準)日本測地系2011 (日本の現行基準)
基準時期1984年時点の地球全体2011年時点の日本列島 (地殻変動考慮)
適用範囲地球全体主に日本国内
用途例GPS、国際地図、Web地図日本国内の公共測量、詳細な地図データ、地籍
座標単位緯度、経度(度)緯度、経度(度)
座標値同じ地点でも、わずかに異なる座標値になる

なぜ複数の測地系が必要なのか?

地球は完全な球体ではなく、地殻変動も常に発生しているため、特定の地域や目的に合わせて最適な測地系が定義されます。

  • WGS84 (EPSG:4326) は、GPSの基準として国際的に広く使われているため、汎用性が高いです。
  • JGD2011 (EPSG:6668) は、日本の地殻変動に対応するため、特に本国内での高精度な測量や地図作成において重要な役割を果たします。

異なる座標参照系のデータを扱う際には、適切に変換(CRS変換)を行う必要があります。誤ったCRSでデータを扱ったり、変換せずに重ね合わせたりすると、位置がずれて表示されるなどの問題が発生します。

前回へ:https://shikuuk.blogspot.com/2025/05/pythongisfoliumfolium-in-python.html

次回へ:https://shikuuk.blogspot.com/2025/05/test_28.html



コメント