Skip to content

Instantly share code, notes, and snippets.

@typebrook
Last active February 10, 2025 09:01
Show Gist options
  • Save typebrook/050946f4d751146e09c39b9fac221a3b to your computer and use it in GitHub Desktop.
Save typebrook/050946f4d751146e09c39b9fac221a3b to your computer and use it in GitHub Desktop.
extract power facilities in Taiwan from OSM
*.pbf
*.osm
*.pmtiles
*.shp/**
*.bak

Solution for OSM query

  1. Directory visit https://overpass-ultra.us/
  2. Deploy https://gitlab.com/trailstash/ultra/ and set default conf for Taiwan

Tag statistics for power

  1. ref: https://taginfo.geofabrik.de/asia:taiwan/keys/demolished%3Apower
  2. 電力設施相關的tag
  • power: 電力相關設施
  • construction:power: 建設中
  • proposed:power: 預定地)
  1. 圖徵佔比
  • tower: 電塔 26,369個(80%)
  • line: 電線 1,851個(5.62%)
  • generator: 發電設備 1,657個(5.03%)
  • pole: 電桿 1,079個(3.28%)
  • substation: 變電所 766個(2.33%)
  • plant: 發電廠 318個(0.79%)

power: 電力設施

發電廠  power=plant
變電所  power=substation
電線    power=line

water: 淨水場/水庫/灌排水設施

來源: 自來水公司/農田水利會/水利署下轄單位

水庫            water=reservoir
蓄水池/埤塘     water=basin landuse=water
廢水處理場      wastewater
淨水場          man_made=water_works
曬鹽場          landuse=salt_pond
幹線大排/大圳   waterway=canal
灌排水溝        waterway=drain
農田水路/圳     waterway=ditch
加壓水管        man_made=pressurised
人孔蓋          manhole

ref: WMS https://www.iacloud.ia.gov.tw/servergate/sgsgate.ashx/WMS/canal_public

military: 軍事設施/軍營

軍事設施                            landuse=military
設施種類(如營區/新訓中心/招募處)  military=*
軍種(如陸軍/海軍...)              military_service=*
.ONESHELL:
.PHONY: power.shp power.geojson power.pmtiles power.substation.shp
SHP_OPT := -f 'ESRI Shapefile' -lco ENCODING=UTF-8 -skipfailures --config OSM_CONFIG_FILE=
GEOJSON_OPT := -f GEOJSON -skipfailures --config OSM_CONFIG_FILE=
taiwan-latest.osm.pbf:
curl -O http://download.geofabrik.de/asia/$@
# TODO use fifo to prevent large file in FS
taiwan.osm: taiwan-latest.osm.pbf
#mkfifo fifo
trap 'rm tmp.osm' EXIT
osmconvert $< >tmp.osm
osmfilter tmp.osm --drop-nodes='ref:TW:dataset=' >$@
power.osm: taiwan.osm
osmfilter $< --keep='power=' >$@
power.shp: power.osm
ogr2ogr $(SHP_OPT)osmconf.power.ini $@ $<
rm $@/multilinestrings*
power.substation.osm: taiwan.osm
osmfilter $< --keep='power=substation' >$@
power.substation.shp: power.osm
ogr2ogr $(SHP_OPT)osmconf.power.ini -where "power = 'substation'" $@ $<
rm $@/multilinestrings*
power.green.osm: power.osm
osmfilter $< --keep='plant:source=*wind* =*solar* =*hydro* =*geothermal* generator:source=*wind* =*solar* =*hydro* =*geothermal*' >$@
power.green.shp: green.osm
ogr2ogr $(SHP_OPT)osmconf.power.ini $@ $<
rm $@/multilinestrings*
power.geojson: power.osm
ogr2ogr $(GEOJSON_OPT)osmconf.power.ini power.points.geojson $<
ogr2ogr $(GEOJSON_OPT)osmconf.power.ini power.lines.geojson $< lines
ogr2ogr $(GEOJSON_OPT)osmconf.power.ini power.multipolygons.geojson $< multipolygons
power.pmtiles: power.points.geojson
tippecanoe --force -Z 8 -zg -o $@ --drop-densest-as-needed --extend-zooms-if-still-dropping $<
clean:
rm *osm
rm -rf *shp
water.osm: taiwan.osm
osmfilter $< --keep='water=reservior =basin =waste_water waterway=drain =canal =ditch =pressurised man_made=water_works =manhole landuse=basin =salt_pond' >$@
osmconvert $@ --out-statistics
water.shp: water.osm
ogr2ogr $(SHP_OPT)osmconf.water.ini $@ $<
rm $@/multilinestrings*
military.osm: taiwan.osm
osmfilter $< --keep='military= military_service= landuse=military' >$@
osmconvert $@ --out-statistics
military.shp: military.osm
ogr2ogr $(SHP_OPT)osmconf.military.ini $@ $<
rm $@/multilinestrings*
statistics: plant.csv
#
# Configuration file for importing OSM data into OGR
#
# NOTE: remove the below "[general]" line for GDAL < 3.10
[general]
# put here the name of keys, or key=value, for ways that are assumed to be polygons if they are closed
# see http://wiki.openstreetmap.org/wiki/Map_Features
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism,highway=platform,public_transport=platform
# Uncomment to avoid laundering of keys ( ':' turned into '_' )
#attribute_name_laundering=no
# Some tags, set on ways and when building multipolygons, multilinestrings or other_relations,
# are normally filtered out early, independent of the 'ignore' configuration below.
# Uncomment to disable early filtering. The 'ignore' lines below remain active.
report_all_tags=yes
# uncomment to report all nodes, including the ones without any (significant) tag
#report_all_nodes=yes
# uncomment to report all ways, including the ones without any (significant) tag
#report_all_ways=yes
# uncomment to specify the the format for the all_tags/other_tags field should be JSON
# instead of the default HSTORE formatting.
# Valid values for tags_format are "hstore" and "json"
tags_format=json
[points]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,military,military_servive,landuse,ref,source
# keys that, alone, are not significant enough to report a node as a OGR point
unsignificant=created_by,converted_by,source,time,ele,attribution
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[lines]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,military,military_servive,landuse,ref,source
# type of attribute 'foo' can be changed with something like
#foo_type=Integer/Real/String/DateTime
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#computed_attributes must appear before the keywords _type and _sql
computed_attributes=z_order
z_order_type=Integer
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals
# Note for GDAL developers: if we change the below formula, make sure to edit ogrosmlayer.cpp since it has a hardcoded optimization for this very precise formula
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)"
[multipolygons]
# common attributes
# note: for multipolygons, osm_id=yes instantiates a osm_id field for the id of relations
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set.
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,military,military_servive,landuse,ref,source
# keys that should NOT be reported in the "other_tags" field
ignore=name:,area,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#
# Configuration file for importing OSM data into OGR
#
# NOTE: remove the below "[general]" line for GDAL < 3.10
[general]
# put here the name of keys, or key=value, for ways that are assumed to be polygons if they are closed
# see http://wiki.openstreetmap.org/wiki/Map_Features
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism,highway=platform,public_transport=platform
# Uncomment to avoid laundering of keys ( ':' turned into '_' )
#attribute_name_laundering=no
# Some tags, set on ways and when building multipolygons, multilinestrings or other_relations,
# are normally filtered out early, independent of the 'ignore' configuration below.
# Uncomment to disable early filtering. The 'ignore' lines below remain active.
report_all_tags=yes
# uncomment to report all nodes, including the ones without any (significant) tag
#report_all_nodes=yes
# uncomment to report all ways, including the ones without any (significant) tag
#report_all_ways=yes
# uncomment to specify the the format for the all_tags/other_tags field should be JSON
# instead of the default HSTORE formatting.
# Valid values for tags_format are "hstore" and "json"
tags_format=json
[points]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,power,substation,plant_source,generator_source,voltage,ref,source
# keys that, alone, are not significant enough to report a node as a OGR point
unsignificant=created_by,converted_by,source,time,ele,attribution
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[lines]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,operator,power,substation,plant_source,generator_source,line,wires,cables,voltage,ref,source
# type of attribute 'foo' can be changed with something like
#foo_type=Integer/Real/String/DateTime
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#computed_attributes must appear before the keywords _type and _sql
computed_attributes=z_order
z_order_type=Integer
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals
# Note for GDAL developers: if we change the below formula, make sure to edit ogrosmlayer.cpp since it has a hardcoded optimization for this very precise formula
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)"
[multipolygons]
# common attributes
# note: for multipolygons, osm_id=yes instantiates a osm_id field for the id of relations
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set.
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,power,operator,substation,plant_source,generator_source,voltage,ref,source
# keys that should NOT be reported in the "other_tags" field
ignore=name:,area,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#
# Configuration file for importing OSM data into OGR
#
# NOTE: remove the below "[general]" line for GDAL < 3.10
[general]
# put here the name of keys, or key=value, for ways that are assumed to be polygons if they are closed
# see http://wiki.openstreetmap.org/wiki/Map_Features
closed_ways_are_polygons=aeroway,amenity,boundary,building,craft,geological,historic,landuse,leisure,military,natural,office,place,shop,sport,tourism,highway=platform,public_transport=platform
# Uncomment to avoid laundering of keys ( ':' turned into '_' )
#attribute_name_laundering=no
# Some tags, set on ways and when building multipolygons, multilinestrings or other_relations,
# are normally filtered out early, independent of the 'ignore' configuration below.
# Uncomment to disable early filtering. The 'ignore' lines below remain active.
report_all_tags=yes
# uncomment to report all nodes, including the ones without any (significant) tag
#report_all_nodes=yes
# uncomment to report all ways, including the ones without any (significant) tag
#report_all_ways=yes
# uncomment to specify the the format for the all_tags/other_tags field should be JSON
# instead of the default HSTORE formatting.
# Valid values for tags_format are "hstore" and "json"
tags_format=json
[points]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,water,waterway,landuse,man_made,ref,source
# keys that, alone, are not significant enough to report a node as a OGR point
unsignificant=created_by,converted_by,source,time,ele,attribution
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
[lines]
# common attributes
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,water,waterway,landuse,man_made,ref,source
# type of attribute 'foo' can be changed with something like
#foo_type=Integer/Real/String/DateTime
# keys that should NOT be reported in the "other_tags" field
ignore=name:,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
#computed_attributes must appear before the keywords _type and _sql
computed_attributes=z_order
z_order_type=Integer
# Formula based on https://github.com/openstreetmap/osm2pgsql/blob/master/style.lua#L13
# [foo] is substituted by value of tag foo. When substitution is not wished, the [ character can be escaped with \[ in literals
# Note for GDAL developers: if we change the below formula, make sure to edit ogrosmlayer.cpp since it has a hardcoded optimization for this very precise formula
z_order_sql="SELECT (CASE [highway] WHEN 'minor' THEN 3 WHEN 'road' THEN 3 WHEN 'unclassified' THEN 3 WHEN 'residential' THEN 3 WHEN 'tertiary_link' THEN 4 WHEN 'tertiary' THEN 4 WHEN 'secondary_link' THEN 6 WHEN 'secondary' THEN 6 WHEN 'primary_link' THEN 7 WHEN 'primary' THEN 7 WHEN 'trunk_link' THEN 8 WHEN 'trunk' THEN 8 WHEN 'motorway_link' THEN 9 WHEN 'motorway' THEN 9 ELSE 0 END) + (CASE WHEN [bridge] IN ('yes', 'true', '1') THEN 10 ELSE 0 END) + (CASE WHEN [tunnel] IN ('yes', 'true', '1') THEN -10 ELSE 0 END) + (CASE WHEN [railway] IS NOT NULL THEN 5 ELSE 0 END) + (CASE WHEN [layer] IS NOT NULL THEN 10 * CAST([layer] AS INTEGER) ELSE 0 END)"
[multipolygons]
# common attributes
# note: for multipolygons, osm_id=yes instantiates a osm_id field for the id of relations
# and a osm_way_id field for the id of closed ways. Both fields are exclusively set.
osm_id=yes
osm_version=no
osm_timestamp=no
osm_uid=no
osm_user=no
osm_changeset=no
# keys to report as OGR fields
attributes=name,water,waterway,landuse,man_made,ref,source
# keys that should NOT be reported in the "other_tags" field
ignore=name:,area,created_by,converted_by,source,time,ele,note,todo,openGeoDB:,fixme,FIXME
# uncomment to avoid creation of "other_tags" field
#other_tags=no
# uncomment to create "all_tags" field. "all_tags" and "other_tags" are exclusive
#all_tags=yes
公司名稱 發電廠名稱 所在縣市 裝置容量(瓩) 商轉年度
清水地熱電力股份有限公司 清水地熱發電廠 宜蘭縣大同鄉 42000 110
<table>
<tr>
<td>公司名稱</td>
<td>發電廠名稱</td>
<td>所在縣市</td>
<td>裝置容量(瓩)</td>
<td>商轉年度</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁一期</td>
<td>臺中巿西屯區</td>
<td>9229.82</td>
<td>102</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁二期</td>
<td>臺中巿西屯區</td>
<td>4132.44</td>
<td>103</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁三期</td>
<td>臺中市后里區</td>
<td>3011.04</td>
<td>104</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁四期</td>
<td>臺中市后里區</td>
<td>4624.24</td>
<td>105</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁五期(中區配水池)</td>
<td>臺中市大雅區</td>
<td>1878.24</td>
<td>106</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁五期(后里園區配水池)</td>
<td>臺中市后里段</td>
<td>1472.64</td>
<td>106</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁六期(澎湖監獄)</td>
<td>澎湖縣湖西鄉</td>
<td>1393.26</td>
<td>108</td>
</tr>
<tr>
<td>森勁電力股份有限公司</td>
<td>森勁七期(中正預校太陽光電發電廠)</td>
<td>高雄市鳳山區</td>
<td>7015.14</td>
<td>108</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>高捷大寮機廠(屋頂型)</td>
<td>高雄市大寮區</td>
<td>2106.07</td>
<td>104</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>高鐵燕巢總機廠(屋頂型)</td>
<td>高雄市燕巢區</td>
<td>3356.74</td>
<td>104</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>高鐵烏日基地第一型太陽能電廠</td>
<td>臺中市烏日區</td>
<td>577.63</td>
<td>104</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>高捷北機廠第一型太陽能電廠</td>
<td>高雄市橋頭區</td>
<td>828.24</td>
<td>104</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>台北捷運北投機廠太陽光電發電廠</td>
<td>台北市北投區</td>
<td>3797.28</td>
<td>108</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>台北自來水長興淨水場太陽光電系統</td>
<td>台北市大安區</td>
<td>2136.96</td>
<td>109</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>新營掩埋場二號太陽光電發電廠</td>
<td>台南市新營區、鹽水區</td>
<td>4262.16</td>
<td>111</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>桃捷青埔機廠太陽光電發電廠</td>
<td>桃園市大園區</td>
<td>3600.35</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎電業股份有限公司</td>
<td>新營掩埋場1號太陽光電發電廠</td>
<td>臺南市新營區</td>
<td>2126.36</td>
<td>112</td>
</tr>
<tr>
<td>摩特電力股份有限公司</td>
<td>太陽能發電摩特一廠電廠</td>
<td>彰化縣大村鄉</td>
<td>845.10</td>
<td>104</td>
</tr>
<tr>
<td>廣進矽能電力股份有限公司</td>
<td>太陽能發電系統萬金一號電廠</td>
<td>屏東縣萬巒鄉</td>
<td>688.20</td>
<td>102</td>
</tr>
<tr>
<td>新天然電力股份有限公司(前高屏矽能電力股份有限公司)</td>
<td>豐盛一號</td>
<td>屏東縣里港鄉</td>
<td>691.20</td>
<td>101</td>
</tr>
<tr>
<td>新天然電力股份有限公司(前高屏矽能電力股份有限公司)</td>
<td>里港一號</td>
<td>屏東縣里港鄉</td>
<td>60.00</td>
<td>101</td>
</tr>
<tr>
<td>新天然電力股份有限公司(前高屏矽能電力股份有限公司)</td>
<td>鹽埔一號</td>
<td>屏東縣鹽埔鄉</td>
<td>72.00</td>
<td>101</td>
</tr>
<tr>
<td>冠威電力股份有限公司(前台灣矽能電力股份有限公司)</td>
<td>漢寶二號</td>
<td>屏東縣里港鄉</td>
<td>384.00</td>
<td>101</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠一期</td>
<td>新竹市科技段</td>
<td>550.55</td>
<td>105</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠二期</td>
<td>臺南市安南區</td>
<td>3369.60</td>
<td>106</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠三期</td>
<td>高雄市路竹區</td>
<td>1023.36</td>
<td>106</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠四期</td>
<td>桃園市龜山區</td>
<td>1646.28</td>
<td>106</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠五期</td>
<td>桃園市龍潭區</td>
<td>3957.24</td>
<td>106</td>
</tr>
<tr>
<td>永勁電力股份有限公司</td>
<td>永勁太陽光電發電廠六期</td>
<td>桃園市</td>
<td>9868.32</td>
<td>106</td>
</tr>
<tr>
<td>大聚電業股份有限公司</td>
<td>大亞電線電纜第一型太陽能電廠</td>
<td>臺南市關廟區</td>
<td>2392.25</td>
<td>105</td>
</tr>
<tr>
<td>全利成電力股份有限公司</td>
<td>全利成一號電廠</td>
<td>屏東縣潮州鎮</td>
<td>1231.65</td>
<td>105</td>
</tr>
<tr>
<td>全利成電力股份有限公司</td>
<td>全利成二號電廠(屋頂型)</td>
<td>屏東縣新園鄉</td>
<td>3519.700</td>
<td>110</td>
</tr>
<tr>
<td>全利成電力股份有限公司</td>
<td>全利成三號電廠(屋頂型)</td>
<td>嘉義縣大林鎮</td>
<td>1561.60</td>
<td>110</td>
</tr>
<tr>
<td>台灣速力太陽能源股份有限公司</td>
<td>台灣速力口湖發電廠</td>
<td>雲林縣口湖鄉</td>
<td>4998.00</td>
<td>107</td>
</tr>
<tr>
<td>台灣速力太陽能源股份有限公司</td>
<td>台灣速力口湖發電廠-第二機組</td>
<td>雲林縣口湖鄉</td>
<td>4549.68</td>
<td>109</td>
</tr>
<tr>
<td>台灣速力太陽能源股份有限公司</td>
<td>台灣速力口湖發電廠-第三機組</td>
<td>雲林縣口湖鄉</td>
<td>4984.00</td>
<td>109</td>
</tr>
<tr>
<td>旭孝電力股份有限公司</td>
<td>旭孝一期太陽能電廠</td>
<td>台中市大雅區</td>
<td>2802.50</td>
<td>107</td>
</tr>
<tr>
<td>博碩電業股份有限公司</td>
<td>群創光電第一型太陽能電廠</td>
<td>台南市新市區</td>
<td>5546.10</td>
<td>107</td>
</tr>
<tr>
<td>亞通電力股份有限公司</td>
<td>新竹三陽工業屋頂型太陽光電發電廠</td>
<td>新竹縣湖口鄉</td>
<td>5860.80</td>
<td>108</td>
</tr>
<tr>
<td>亞通電力股份有限公司</td>
<td>新竹三陽工業車棚區太陽光電發電廠</td>
<td>新竹縣湖口鄉</td>
<td>1357.20</td>
<td>108</td>
</tr>
<tr>
<td>同陽能源股份有限公司</td>
<td>華映龍潭廠屋頂型太陽光電系統</td>
<td>桃園市龍潭區</td>
<td>2620.80</td>
<td>108</td>
</tr>
<tr>
<td>同陽能源股份有限公司</td>
<td>台北大眾捷運公司-土城機廠(屋頂型)</td>
<td>新北市板橋區</td>
<td>4999.830</td>
<td>111</td>
</tr>
<tr>
<td>同陽能源股份有限公司</td>
<td>台北大眾捷運公司-蘆洲機廠(屋頂型)</td>
<td>新北市蘆洲區</td>
<td>2993.760</td>
<td>111</td>
</tr>
<tr>
<td>同陽能源股份有限公司</td>
<td>後龍水尾滯洪池水面型太陽光電系統</td>
<td>苗栗縣後龍鎮</td>
<td>9626.76</td>
<td>111</td>
</tr>
<tr>
<td>同陽能源股份有限公司</td>
<td>臺北大眾捷運股份有限公司-新莊機廠屋頂型太陽光電發電系統</td>
<td>新北市新莊區</td>
<td>3599.64</td>
<td>112</td>
</tr>
<tr>
<td>愛弼士能源股份有限公司</td>
<td>風之谷太陽光電發電廠</td>
<td>台南市新市區</td>
<td>4023.00</td>
<td>108</td>
</tr>
<tr>
<td>弘泰電力股份有限公司</td>
<td>群創光電_竹南廠T2棟廠房屋頂太陽能發電廠</td>
<td>苗栗縣竹南鎮</td>
<td>4882.25</td>
<td>108</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源2-1期太陽光電發電廠</td>
<td>雲林縣台西鄉</td>
<td>2192.40</td>
<td>108</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源3-1期太陽光電發電廠</td>
<td>雲林縣台西鄉</td>
<td>1612.80</td>
<td>108</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源第一期太陽光電發電廠</td>
<td>雲林縣口湖鄉</td>
<td>4387.20</td>
<td>109</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源第6-1期太陽光電發電廠</td>
<td>雲林縣四湖鄉</td>
<td>1461.600</td>
<td>111</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源第7-1期太陽光電發電廠</td>
<td>雲林縣口湖鄉</td>
<td>1184.400</td>
<td>111</td>
</tr>
<tr>
<td>映暉能源有限公司</td>
<td>映暉能源第2-2期太陽光電發電廠</td>
<td>雲林縣台西鄉</td>
<td>630.000</td>
<td>111</td>
</tr>
<tr>
<td>廣鑫能源股份有限公司</td>
<td>廣鑫臺中三井Outlet太陽能發電所</td>
<td>台中市梧棲區</td>
<td>4532.51</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>億升新豐廠B棟太陽光電發電廠</td>
<td>新竹縣新豐鄉</td>
<td>897.00</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>桃園大圳8-20號埤塘太陽光電發電廠</td>
<td>桃園市觀音區</td>
<td>2980.80</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>桃園大圳4-6號埤塘太陽光電發電廠</td>
<td>桃園市大園區</td>
<td>4637.52</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>桃園大圳8-24號埤塘太陽光電發電廠</td>
<td>桃園市觀音區</td>
<td>4186.08</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>桃園大圳8-19號埤塘太陽光電發電廠</td>
<td>桃園市大園區</td>
<td>1764.00</td>
<td>108</td>
</tr>
<tr>
<td>華洋電業開發股份有限公司</td>
<td>力麗企業廠房屋頂太陽光電發電廠</td>
<td>彰化縣芳苑鄉</td>
<td>2499.00</td>
<td>108</td>
</tr>
<tr>
<td>富崴能源股份有限公司</td>
<td>權聖太陽光電廠(三轉一)</td>
<td>台南市安南區</td>
<td>154.64</td>
<td>108</td>
</tr>
<tr>
<td>成勁電力股份有限公司</td>
<td>成勁一期臺南關廟太陽光電發電廠</td>
<td>台南市關廟區</td>
<td>3483.48</td>
<td>108</td>
</tr>
<tr>
<td>成勁電力股份有限公司</td>
<td>成勁二期彰化大葉屋頂型太陽光電發電廠</td>
<td>彰化縣大村鄉</td>
<td>3876.18</td>
<td>108</td>
</tr>
<tr>
<td>成勁電力股份有限公司</td>
<td>成勁三期雲林口湖地面型太陽光電發電廠</td>
<td>雲林縣口湖鄉</td>
<td>1990.80</td>
<td>110</td>
</tr>
<tr>
<td>成勁電力股份有限公司</td>
<td>成勁四期空軍防空暨飛彈指揮部太陽光電發電廠</td>
<td>台南市仁德區</td>
<td>5455.560</td>
<td>112</td>
</tr>
<tr>
<td>昇甫電業股份有限公司</td>
<td>昇甫電業第一型太陽能發電廠</td>
<td>屏東縣鹽埔鄉</td>
<td>1039.80</td>
<td>108</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>台東國源汽車二期太陽光電發電電廠</td>
<td>臺東縣臺東市</td>
<td>29.40</td>
<td>108</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>台南一期電廠(屋頂型)</td>
<td>台南市新營區</td>
<td>7.44</td>
<td>109</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>台南二期電廠(屋頂型)</td>
<td>台南市新營區</td>
<td>7.44</td>
<td>109</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>台中一期電廠TW190991(屋頂型)</td>
<td>台中市大甲區</td>
<td>687.93</td>
<td>110</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>雲林一期太陽光電發電廠(屋頂型)</td>
<td>雲林縣林內鄉</td>
<td>88.04</td>
<td>110</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>彰化有鴻工業太陽光電發電廠</td>
<td>彰化縣線西鄉</td>
<td>497.86</td>
<td>110</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>屏南京沅鎢業太陽光電發電計畫(屋頂型)</td>
<td>屏東縣枋寮鄉</td>
<td>846.630</td>
<td>110</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>屏東一期TW190986太陽光電發電廠</td>
<td>屏東縣萬丹鄉</td>
<td>7.440</td>
<td>111</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>屏東二期TW190986太陽光電發電廠</td>
<td>屏東縣萬丹鄉</td>
<td>7.440</td>
<td>111</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>岡山融嘉泰TW190993太陽光電發電廠(屋頂型)</td>
<td>高雄市岡山區</td>
<td>399.280</td>
<td>111</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>新營大昶貿易TW190997太陽光電發電廠</td>
<td>台南市新營區</td>
<td>242.400</td>
<td>111</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>高雄家樂實業TW190996太陽光電發電廠</td>
<td>高雄市彌陀區</td>
<td>146.200</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>北科附工(一期)太陽光電發電廠</td>
<td>桃園市桃園區</td>
<td>1039.04</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>北科附工(二期)太陽光電發電廠</td>
<td>桃園市桃園區</td>
<td>1490.56</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>岡山日出畜牧場太陽光電發電廠</td>
<td>高雄市岡山區</td>
<td>856.98</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>新營壯安公司</td>
<td>臺南市新營區</td>
<td>241.61</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-IP21-001新化廣停五停車場太陽光電發電廠</td>
<td>臺南市新化區</td>
<td>107.44</td>
<td>112</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-001三和國小</td>
<td>嘉義縣大林鎮</td>
<td>167.28</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-008中埔國中</td>
<td>嘉義縣中埔鄉</td>
<td>243.78</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-013六美國小</td>
<td>嘉義縣六腳鄉</td>
<td>306.34</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-039民雄國小</td>
<td>嘉義縣民雄鄉</td>
<td>283.90</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-085下潭國小</td>
<td>嘉義縣鹿草鄉</td>
<td>335.58</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>南港輪胎TW190982(一期)太陽光電發電廠</td>
<td>新竹縣新豐鄉</td>
<td>3247.38</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-054內埔國小太陽光電發電廠</td>
<td>嘉義縣竹崎鄉</td>
<td>394.74</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-087後塘國小太陽光電發電廠</td>
<td>嘉義縣鹿草鄉</td>
<td>160.48</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-128大林國小二期太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>193.80</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-138民雄國中二期太陽光電發電廠</td>
<td>嘉義縣民雄鄉</td>
<td>64.26</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-106光榮國小太陽光電發電廠</td>
<td>嘉義縣義竹鄉</td>
<td>102.34</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-127布袋國小太陽光電發電廠</td>
<td>嘉義縣布袋鎮</td>
<td>172.72</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-002大林國小一期太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>124.44</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-003大林國中太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>498.78</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-005社團國小太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>60.52</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-117義竹國小_信義分校太陽光電發電廠</td>
<td>嘉義縣義竹鄉</td>
<td>117.98</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-037大吉國中太陽光電發電廠</td>
<td>嘉義縣民雄鄉</td>
<td>233.92</td>
<td>113</td>
</tr>
<tr>
<td>得禾能源股份有限公司</td>
<td>I-AR21-135朴子國中二期太陽光電發電廠</td>
<td>嘉義縣朴子市</td>
<td>229.84</td>
<td>113</td>
</tr>
<tr>
<td>全利發電力股份有限公司</td>
<td>全利發1號電廠</td>
<td>高雄市岡山區</td>
<td>974.61</td>
<td>109</td>
</tr>
<tr>
<td>鑫光電能有限公司</td>
<td>新光紡織太陽光電系統</td>
<td>桃園市大溪區</td>
<td>4968.00</td>
<td>109</td>
</tr>
<tr>
<td>台泥綠能股份有限公司</td>
<td>台泥彰濱太陽光電發電系統工程</td>
<td>彰化縣線西鄉</td>
<td>10078.42</td>
<td>109</td>
</tr>
<tr>
<td>台灣艾貴太陽能源股份有限公司</td>
<td>台灣艾貴義竹太陽光電發電廠</td>
<td>嘉義縣義竹鄉</td>
<td>70200.00</td>
<td>109</td>
</tr>
<tr>
<td>鴻元工程顧問有限公司</td>
<td>第三型轉第一型再生能源發電設備</td>
<td>高雄市鳳山區</td>
<td>15.00</td>
<td>108</td>
</tr>
<tr>
<td>茂盛電業股份有限公司</td>
<td>臺南市台南地區農會怡安果菜市場第二期太陽能電廠</td>
<td>臺南市安南區</td>
<td>2317.20</td>
<td>109</td>
</tr>
<tr>
<td>曄恆能源股份有限公司</td>
<td>曄恆嘉義縣鹽業用地一期太陽光電發電廠</td>
<td>嘉義縣布袋鎮</td>
<td>19999.20</td>
<td>109</td>
</tr>
<tr>
<td>昊陽電業股份有限公司</td>
<td>昊陽一號太陽光電發電廠</td>
<td>臺南市北門區</td>
<td>1940.40</td>
<td>109</td>
</tr>
<tr>
<td>昊陽電業股份有限公司</td>
<td>昊陽二號太陽光電發電廠</td>
<td>臺南市北門區</td>
<td>1249.61</td>
<td>110</td>
</tr>
<tr>
<td>心忠電業股份有限公司</td>
<td>心忠學甲第一型太陽光電發電廠</td>
<td>台南市學甲區</td>
<td>75969.600</td>
<td>110</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>中租電力科技一號電廠(屋頂型)</td>
<td>高雄市永安區</td>
<td>5493.60</td>
<td>109</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>帝寶工業新營廠房屋頂太陽光電發電廠設置計畫(屋頂型)</td>
<td>台南市新營區</td>
<td>2488.370</td>
<td>110</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>中租電力漢翔沙北#11#13廠房屋頂型太陽光電發電廠</td>
<td>台中市沙鹿區</td>
<td>5267.275</td>
<td>111</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>中租電力五甲尾滯洪池太陽光電發電廠</td>
<td>高雄市岡山區</td>
<td>4999.200</td>
<td>112</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>臺南市臺南地區農會果菜批發市場第三期太陽光電發電系統</td>
<td>臺南市安南區</td>
<td>1074.48</td>
<td>112</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>盟鑫工業股份有限公司屋頂型太陽光電廠</td>
<td>臺中市梧棲區</td>
<td>3890.96</td>
<td>112</td>
</tr>
<tr>
<td>中租電力科技股份有限公司</td>
<td>大成畜牧場太陽光電廠</td>
<td>台南市官田區</td>
<td>8268.39</td>
<td>113</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙一期口湖段太陽光電系統發電計畫</td>
<td>雲林縣口湖鄉</td>
<td>9553.20</td>
<td>109</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙一期口湖段太陽光電系統發電計畫(第二階段)</td>
<td>雲林縣口湖鄉</td>
<td>13132.80</td>
<td>109</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙一期口湖段太陽光電系統發電計畫(第三階段)</td>
<td>雲林縣口湖鄉</td>
<td>934.8</td>
<td>110</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙1-2期口湖段太陽光電系統發電計畫</td>
<td>雲林縣口湖鄉</td>
<td>1333.80</td>
<td>110</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙1-2期口湖段太陽光電系統發電計畫(第二階段)</td>
<td>雲林縣口湖鄉</td>
<td>832.2</td>
<td>110</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙1-3期口湖段太陽光電系統發電計畫</td>
<td>雲林縣口湖鄉</td>
<td>5107.20</td>
<td>110</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙1-3期口湖段太陽光電系統發電計畫(第二階段)</td>
<td>雲林縣口湖鄉</td>
<td>3157.80</td>
<td>110</td>
</tr>
<tr>
<td>永宙太陽能電力股份有限公司</td>
<td>永宙1-4期口湖段太陽光電系統發電計畫</td>
<td>雲林縣口湖鄉</td>
<td>5939.40</td>
<td>110</td>
</tr>
<tr>
<td>恆伍能源股份有限公司</td>
<td>恆伍第一期太陽光電發電廠</td>
<td>屏東縣長治鄉</td>
<td>1399.68</td>
<td>109</td>
</tr>
<tr>
<td>恆陸能源股份有限公司</td>
<td>恆陸第一期太陽光電發電廠</td>
<td>屏東縣長治鄉</td>
<td>968.96</td>
<td>109</td>
</tr>
<tr>
<td>首美電一股份有限公司</td>
<td>首美大東太陽光電發電系統工程</td>
<td>桃園市中壢區</td>
<td>1064.45</td>
<td>109</td>
</tr>
<tr>
<td>東徽電力股份有限公司</td>
<td>東徽電力嘉義大埔美屋頂型太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>6500.16</td>
<td>109</td>
</tr>
<tr>
<td>東徽電力股份有限公司</td>
<td>東徽電力嘉義大埔美廠房屋頂第二期太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>599.900</td>
<td>111</td>
</tr>
<tr>
<td>兆洋股份有限公司</td>
<td>兆洋台船太陽能發電廠(屋頂型)</td>
<td>高雄市小港區</td>
<td>13837.16</td>
<td>109</td>
</tr>
<tr>
<td>祐達能源有限公司</td>
<td>三新紡織--祐達屋頂型太陽光電發電廠</td>
<td>臺南市永康區</td>
<td>1994.40</td>
<td>109</td>
</tr>
<tr>
<td>東元旭能股份有限公司</td>
<td>東元旭能股份有限公司太陽能發電廠(屋頂型)</td>
<td>桃園市觀音區</td>
<td>491.40</td>
<td>109</td>
</tr>
<tr>
<td>銧昊股份有限公司</td>
<td>銧昊第一期太陽能電廠</td>
<td>屏東縣新埤鄉</td>
<td>1884.18</td>
<td>109</td>
</tr>
<tr>
<td>名竣能源股份有限公司</td>
<td>臺南柳營蔡文瑞太陽光電發電廠(屋頂型)</td>
<td>臺南市柳營區</td>
<td>12.40</td>
<td>109</td>
</tr>
<tr>
<td>奇美綠能股份有限公司</td>
<td>奇美綠能園區地面型太陽光電發電廠(第一期)</td>
<td>台南市善化區</td>
<td>8532.00</td>
<td>110</td>
</tr>
<tr>
<td>奇美綠能股份有限公司</td>
<td>奇美綠能園區地面型太陽光電發電廠(第二期)</td>
<td>台南市善化區</td>
<td>6740.28</td>
<td>110</td>
</tr>
<tr>
<td>泰一能源科技有限公司</td>
<td>屏東鹽埔太陽光電發電廠</td>
<td>屏東縣鹽埔鄉</td>
<td>1949.56</td>
<td>110</td>
</tr>
<tr>
<td>昊軒電業股份有限公司</td>
<td>昊軒一號太陽光電發電廠</td>
<td>台南市後壁區</td>
<td>898.530</td>
<td>110</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>台南市環保局菁寮掩埋場(三轉一)(屋頂型)</td>
<td>台南市後壁區</td>
<td>849.40</td>
<td>110</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>台中港公共倉儲太陽光電發電業</td>
<td>台中市梧棲區</td>
<td>815.850</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>台中港旅客服務中心停車場屋頂太陽光電發電業</td>
<td>台中市梧棲區</td>
<td>1692.420</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>高雄港68號碼頭(高雄港第三貨櫃中心-1、2、3)太陽光電發電業</td>
<td>高雄市前鎮區</td>
<td>652.05</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>高雄港二櫃63倉太陽光電發電業</td>
<td>高雄市前鎮區</td>
<td>703.08</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>高雄港二櫃66倉太陽光電發電業</td>
<td>高雄市前鎮區</td>
<td>1487.49</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>嘉義布袋港太陽光電發電業</td>
<td>嘉義縣布袋鎮</td>
<td>1099.56</td>
<td>112</td>
</tr>
<tr>
<td>昱鼎能源科技開發股份有限公司</td>
<td>嘉義竹崎掩埋場太陽光電發電業</td>
<td>嘉義縣竹崎鄉</td>
<td>1776.02</td>
<td>112</td>
</tr>
<tr>
<td>泓德能源科技股份有限公司</td>
<td>「星星電力-YL南波萬」第三型太陽光電發電設備轉第一型發電業(屋頂型)</td>
<td>雲林縣斗六市</td>
<td>1259.52</td>
<td>110</td>
</tr>
<tr>
<td>泓德能源科技股份有限公司</td>
<td>臺南市柳營區大農里環園西路2段25號建物屋頂太陽光電發電設備(星星電力-柳營1號屋頂型太陽光電系統)(屋頂型三轉一)</td>
<td>台南市柳營區</td>
<td>499.500</td>
<td>110</td>
</tr>
<tr>
<td>燦宇能源股份有限公司</td>
<td>燦宇2期新吉段太陽光電發電廠發電計畫</td>
<td>雲林縣麥寮鄉</td>
<td>3990.00</td>
<td>110</td>
</tr>
<tr>
<td>燦宇能源股份有限公司</td>
<td>燦宇3期新吉段太陽光電發電廠發電計畫</td>
<td>雲林縣麥寮鄉</td>
<td>4651.20</td>
<td>110</td>
</tr>
<tr>
<td>辰亞電力股份有限公司</td>
<td>崙尾東一號電廠</td>
<td>彰化縣鹿港鎮</td>
<td>88038.72</td>
<td>110</td>
</tr>
<tr>
<td>厚固光電股份有限公司</td>
<td>崙尾東二號電廠</td>
<td>彰化縣鹿港鎮</td>
<td>92979.81</td>
<td>110</td>
</tr>
<tr>
<td>台康日能科技股份有限公司</td>
<td>台康日能嘉義公館太陽光電發電系統工程</td>
<td>嘉義縣中埔鄉</td>
<td>4363.92</td>
<td>110</td>
</tr>
<tr>
<td>台康日能科技股份有限公司</td>
<td>台康日能嘉義溪墘太陽光電發電系統工程(第一期第一階段)</td>
<td>嘉義縣布袋鎮菜</td>
<td>2765.880</td>
<td>111</td>
</tr>
<tr>
<td>台康日能科技股份有限公司</td>
<td>台康日能嘉義溪墘太陽光電發電系統工程(第一期第二、三階段)</td>
<td>嘉義縣布袋鎮、義竹鄉</td>
<td>18532.80</td>
<td>111</td>
</tr>
<tr>
<td>台康日能科技股份有限公司</td>
<td>台康日能典寶溪D區太陽光電發電系統工程)</td>
<td>高雄市橋頭區</td>
<td>4085.64</td>
<td>111</td>
</tr>
<tr>
<td>台康日能科技股份有限公司</td>
<td>台康萬興四放太陽光電發電系統工程(水面型)</td>
<td>彰化縣二林鎮</td>
<td>32600.88</td>
<td>111</td>
</tr>
<tr>
<td>佳冬能源股份有限公司</td>
<td>佳冬能源第一期太陽光電發電廠</td>
<td>屏東縣內埔鄉</td>
<td>1985.61</td>
<td>110</td>
</tr>
<tr>
<td>禾迅一號股份有限公司</td>
<td>禾迅一號台南學甲太陽光電發電系統工程(第一期第一階段)</td>
<td>台南市學甲區</td>
<td>37421.48</td>
<td>110</td>
</tr>
<tr>
<td>禾迅一號股份有限公司</td>
<td>禾迅一號台南學甲太陽光電發電系統工程(第一期第二階段)</td>
<td>台南市北門區</td>
<td>11142.95</td>
<td>111</td>
</tr>
<tr>
<td>禾迅一號股份有限公司</td>
<td>禾迅一號台南鹽水太陽光電發電系統工程</td>
<td>台南市鹽水區、新營區</td>
<td>6497.04</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第一期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>418.500</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第1-1階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3360.400</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第2-1階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>5865.200</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第3-1階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>1184.200</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第三期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>2002.600</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第四期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>1450.800</td>
<td>110</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第1-2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>5226.600</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第2-2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>458.800</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第3-2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3614.600</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第二期(第4階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>8853.600</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第三期(第2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>868.930</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第四期(第2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>2746.600</td>
<td>111</td>
</tr>
<tr>
<td>天璣智慧能源股份有限公司</td>
<td>天璣第五期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>1721.120</td>
<td>111</td>
</tr>
<tr>
<td>光合能源股份有限公司</td>
<td>新塭南、北側滯洪池水域型太陽光電發電廠</td>
<td>嘉義縣布袋鎮</td>
<td>35513.28</td>
<td>110</td>
</tr>
<tr>
<td>天機電力股份有限公司</td>
<td>雲林麥寮太陽光電發電廠(一期)-1</td>
<td>雲林縣麥寮鄉</td>
<td>26448.00</td>
<td>110</td>
</tr>
<tr>
<td>天機電力股份有限公司</td>
<td>雲林麥寮太陽光電發電廠二期</td>
<td>雲林縣麥寮鄉</td>
<td>5995.44</td>
<td>112</td>
</tr>
<tr>
<td>裕隆汽車製造股份有限公司</td>
<td>裕隆汽車三義廠第四期太陽光電發電廠</td>
<td>苗栗縣三義鄉</td>
<td>2400.13</td>
<td>110</td>
</tr>
<tr>
<td>裕隆汽車製造股份有限公司</td>
<td>裕隆汽車三義廠第五、六之一期太陽光電發電廠-第五期</td>
<td>苗栗縣三義鄉</td>
<td>2128.40</td>
<td>112</td>
</tr>
<tr>
<td>裕隆汽車製造股份有限公司</td>
<td>裕隆汽車三義廠第五、六期太陽光電發電廠</td>
<td>苗栗縣三義鄉</td>
<td>648.38</td>
<td>112</td>
</tr>
<tr>
<td>裕隆汽車製造股份有限公司</td>
<td>裕隆汽車三義廠第五、六之一期太陽光電發電廠-第6-1期</td>
<td>苗栗縣三義鄉</td>
<td>2684.64</td>
<td>112</td>
</tr>
<tr>
<td>裕隆汽車製造股份有限公司</td>
<td>裕隆汽車三義廠第六之二期太陽光電發電廠</td>
<td>苗栗縣三義鄉</td>
<td>1704.76</td>
<td>113</td>
</tr>
<tr>
<td>禧壹股份有限公司</td>
<td>亞德客太陽光電發電系統(屋頂型)</td>
<td>臺南市新市區</td>
<td>672.700</td>
<td>110</td>
</tr>
<tr>
<td>台灣速力綠能股份有限公司</td>
<td>速力綠能芳苑發電廠-第一機組</td>
<td>彰化縣芳苑鄉</td>
<td>4680.000</td>
<td>110</td>
</tr>
<tr>
<td>台灣速力綠能股份有限公司</td>
<td>速力綠能芳苑發電廠-第二機組</td>
<td>彰化縣芳苑鄉</td>
<td>3487.500</td>
<td>110</td>
</tr>
<tr>
<td>城市發展電業股份有限公司</td>
<td>屏東林邊鎮安太陽光電發電廠(第一期)</td>
<td>屏東縣林邊鄉</td>
<td>6763.680</td>
<td>110</td>
</tr>
<tr>
<td>日晶能源科技有限公司</td>
<td>嘉義縣東石鄉栗子崙段388地號太陽光電發電廠</td>
<td>嘉義縣東石鄉</td>
<td>296.475</td>
<td>110</td>
</tr>
<tr>
<td>日晶能源科技有限公司</td>
<td>嘉義縣東石鄉栗子崙段388地號(二期)地面型太陽光電發電廠</td>
<td>嘉義縣東石鄉</td>
<td>458.625</td>
<td>111</td>
</tr>
<tr>
<td>綠點能享有限公司</td>
<td>臺北天龍一號</td>
<td>台北市內湖區</td>
<td>48.800</td>
<td>111</td>
</tr>
<tr>
<td>綠點能享有限公司</td>
<td>高雄港都15號(高雄市左營區大中二路39號建築物屋頂型太陽光電發電設備)</td>
<td>高雄市左營區</td>
<td>270.32</td>
<td>111</td>
</tr>
<tr>
<td>綠點能享有限公司</td>
<td>嘉義阿里13號(嘉義縣民雄鄉三興村升學一街</td>
<td>嘉義縣民雄鄉</td>
<td>366.73</td>
<td>111</td>
</tr>
<tr>
<td>綠點能享有限公司</td>
<td>台中太陽餅35號</td>
<td>台中市梧棲區</td>
<td>429.18</td>
<td>112</td>
</tr>
<tr>
<td>聯邦電力股份有限公司</td>
<td>聯邦電力高樹鄉太陽光電發電廠</td>
<td>屏東縣高樹鄉</td>
<td>1079.090</td>
<td>111</td>
</tr>
<tr>
<td>得禾二能源有限公司</td>
<td>台南女中TW190992太陽光電發電廠(屋頂型)</td>
<td>台南市中西區</td>
<td>481.600</td>
<td>111</td>
</tr>
<tr>
<td>得禾二能源有限公司</td>
<td>南科聯亞一廠太陽光電發電廠</td>
<td>台南市善化區</td>
<td>132.60</td>
<td>113</td>
</tr>
<tr>
<td>得禾二能源有限公司</td>
<td>南科聯亞二廠太陽光電發電廠</td>
<td>台南市善化區</td>
<td>417.86</td>
<td>113</td>
</tr>
<tr>
<td>桃旭電力股份有限公司</td>
<td>東和鋼鐵桃園廠太陽光電發電廠(屋頂型)</td>
<td>桃園市觀音區</td>
<td>2906.345</td>
<td>111</td>
</tr>
<tr>
<td>桃旭電力股份有限公司</td>
<td>正隆燕巢屋頂型太陽光電發電廠</td>
<td>高雄市燕巢區</td>
<td>4328.61</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第一期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>5118.72</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第一期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>13047.59</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第一期(第三階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>238.70</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第二期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>1526.13</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第二期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>830.18</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第三期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3603.44</td>
<td>111</td>
</tr>
<tr>
<td>天權智慧能源股份有限公司</td>
<td>天權第三期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>226.92</td>
<td>111</td>
</tr>
<tr>
<td>玉衡智慧能源股份有限公司</td>
<td>玉衡第一期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>11069.79</td>
<td>111</td>
</tr>
<tr>
<td>玉衡智慧能源股份有限公司</td>
<td>玉衡第一期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>6358.72</td>
<td>111</td>
</tr>
<tr>
<td>玉衡智慧能源股份有限公司</td>
<td>玉衡第一期(第三階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3305.53</td>
<td>111</td>
</tr>
<tr>
<td>玉衡智慧能源股份有限公司</td>
<td>玉衡第二期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>2748.46</td>
<td>111</td>
</tr>
<tr>
<td>玉衡智慧能源股份有限公司</td>
<td>玉衡第三期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3305.53</td>
<td>111</td>
</tr>
<tr>
<td>富迪能源股份有限公司</td>
<td>高雄市小港春源鋼鐵屋頂型太陽能光電廠</td>
<td>高雄市小港區</td>
<td>1999.80</td>
<td>111</td>
</tr>
<tr>
<td>富迪能源股份有限公司</td>
<td>健馨養護中心案場</td>
<td>彰化縣鹿港鎮</td>
<td>300.00</td>
<td>112</td>
</tr>
<tr>
<td>錸洋科技股份有限公司</td>
<td>桃園市平鎮區南平路2段539巷8、10號等屋頂太陽光電發電設備</td>
<td>桃園市平鎮區</td>
<td>70.395</td>
<td>111</td>
</tr>
<tr>
<td>錸洋科技股份有限公司</td>
<td>阿蓮區九鬮段1584地號</td>
<td>高雄市阿蓮區</td>
<td>1988.96</td>
<td>113</td>
</tr>
<tr>
<td>綠岩能源股份有限公司</td>
<td>綠岩電力一號</td>
<td>南投縣名間鄉</td>
<td>79.53</td>
<td>111</td>
</tr>
<tr>
<td>益揚電力股份有限公司</td>
<td>益揚電力永安一號電廠</td>
<td>高雄市永安區</td>
<td>1240.20</td>
<td>111</td>
</tr>
<tr>
<td>益揚電力股份有限公司</td>
<td>益揚電力永安二號電廠</td>
<td>高雄市永安區</td>
<td>1546.30</td>
<td>111</td>
</tr>
<tr>
<td>益揚電力股份有限公司</td>
<td>益揚電力路竹三號電廠</td>
<td>高雄市路竹區</td>
<td>4990.70</td>
<td>111</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>臺中市清水區北堤路1之10號屋頂型太陽光電(風訓中心案場)</td>
<td>台中市清水區</td>
<td>321.16</td>
<td>111</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>臺東縣臺東市大豐段542地號設置太陽能發電設備標租案</td>
<td>台東縣台東市</td>
<td>5000.00</td>
<td>111</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>臺南中強光電屋頂型太陽能光電廠</td>
<td>台南市善化區</td>
<td>263.19</td>
<td>111</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>雲林廖○風豬舍屋頂型太陽能光電廠</td>
<td>雲林縣二崙鄉</td>
<td>193.80</td>
<td>112</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>林○明地面型太陽能光電案場</td>
<td>雲林縣台西鄉</td>
<td>446.16</td>
<td>112</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>地層下陷區呂永清案場</td>
<td>雲林縣口湖鄉</td>
<td>454.30</td>
<td>112</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>埔心鄉公所太平公墓案場</td>
<td>彰化縣埔心鄉</td>
<td>403.56</td>
<td>112</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>埔心鄉公所第五公墓案場</td>
<td>彰化縣埔心鄉</td>
<td>499.72</td>
<td>112</td>
</tr>
<tr>
<td>辰宇能源股份有限公司</td>
<td>屏東環球購物中心案場</td>
<td>屏東縣屏東市</td>
<td>202.88</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>臺中市豐原區豐原大道一段165號(台中八方夜市案場)屋頂型太陽能光電廠</td>
<td>台中市豐原區</td>
<td>729.120</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>臺中市沙鹿區台灣大道七段200號(靜宜大學)屋頂型太陽光電廠</td>
<td>台中市沙鹿區</td>
<td>881.265</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>雲林縣北港鎮金聯北港一期案場</td>
<td>雲林縣北港鎮</td>
<td>495.600</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>雲林縣北港鎮金聯北港二期案場</td>
<td>雲林縣北港鎮</td>
<td>395.300</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>雲林吳○文豬舍屋頂型太陽能光電廠</td>
<td>雲林縣元長鎮</td>
<td>146.320</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>台南北門漁電共生 (資策會) 太陽能光電廠</td>
<td>台南市北門區</td>
<td>179.800</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>林○毅地面型太陽光電案場</td>
<td>雲林縣台西鄉</td>
<td>137.28</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>蔡○成地面型太陽光電案場</td>
<td>雲林縣台西鄉</td>
<td>400.40</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>高雄三爺埤池999.6kWp水面型太陽光電案場</td>
<td>高雄市路竹區</td>
<td>999.60</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>高雄下社埤池1600.2kWp水面型太陽光電案場</td>
<td>高雄市路竹區</td>
<td>1600.20</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>先進複材屋頂型太陽光電案場(KHH-107PV1214)</td>
<td>高雄市小港區</td>
<td>499.00</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>先進複材屋頂型太陽光電案場(KHH-107PV1259)</td>
<td>高雄市小港區</td>
<td>316.50</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>台南市麻豆區金聯麻豆屋頂型太陽光電案場</td>
<td>臺南市麻豆區</td>
<td>226.56</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>蔡○泉地面型太陽光電案場</td>
<td>雲林縣四湖鄉</td>
<td>245.96</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>柯○丁地面型太陽光電案場</td>
<td>雲林縣四湖鄉</td>
<td>497.64</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>台南市下營區大屯寮段豬舍一期</td>
<td>臺南市下營區</td>
<td>498.68</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>台南市下營區大屯寮段豬舍二期</td>
<td>臺南市下營區</td>
<td>409.20</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>台南市北門區溪底寮段雞舍</td>
<td>臺南市北門區</td>
<td>244.26</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>嘉義縣義竹鄉東後寮段雞舍一期</td>
<td>嘉義縣義竹鄉</td>
<td>335.50</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>嘉義縣義竹鄉東後寮段雞舍二期</td>
<td>嘉義縣義竹鄉</td>
<td>159.64</td>
<td>112</td>
</tr>
<tr>
<td>京承能源股份有限公司</td>
<td>高雄三爺埤二期291.6kWp水面型太陽光電案場</td>
<td>高雄市路竹區</td>
<td>291.60</td>
<td>113</td>
</tr>
<tr>
<td>天篷能源股份有限公司</td>
<td>天篷第一期(第一階段)太陽能電廠</td>
<td>台南市七股區</td>
<td>67852.80</td>
<td>111</td>
</tr>
<tr>
<td>天篷能源股份有限公司</td>
<td>天篷第一期(第二階段)太陽能電廠</td>
<td>台南市七股區</td>
<td>12127.20</td>
<td>111</td>
</tr>
<tr>
<td>豐照能源股份有限公司</td>
<td>豐照能源和泰汽車一期太陽光電發電廠</td>
<td>桃園市楊梅區</td>
<td>914.76</td>
<td>111</td>
</tr>
<tr>
<td>怡陽能源有限公司</td>
<td>霧峰1號-7.08KW</td>
<td>台中市霧峰區</td>
<td>7.08</td>
<td>111</td>
</tr>
<tr>
<td>雪山太陽能有限公司</td>
<td>雪山太陽光電發電廠</td>
<td>台南市七股區</td>
<td>1462.86</td>
<td>111</td>
</tr>
<tr>
<td>凱勤能源股份有限公司</td>
<td>凱勤能源第三期太陽能發電廠</td>
<td>桃園市大園區</td>
<td>932.40</td>
<td>111</td>
</tr>
<tr>
<td>凱勤能源股份有限公司</td>
<td>凱勤能源第一期太陽光電發電業(499.8kW)</td>
<td>桃園市大園區</td>
<td>499.80</td>
<td>112</td>
</tr>
<tr>
<td>凱勤能源股份有限公司</td>
<td>凱勤能源第二期太陽光電發電業(1499.4kW)</td>
<td>桃園市大園區</td>
<td>1499.40</td>
<td>113</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>台中市梧棲區經三路51號(靖鎰案)</td>
<td>台中市梧棲區</td>
<td>356.40</td>
<td>111</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>台中壯佳果案</td>
<td>台中市大甲區</td>
<td>999.90</td>
<td>112</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>彰化全興創新GSK地面型</td>
<td>彰化縣伸港鄉</td>
<td>92.69</td>
<td>112</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>彰化全興創新GSK屋頂型</td>
<td>彰化縣伸港鄉</td>
<td>403.86</td>
<td>112</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>彰化漢青一期</td>
<td>彰化縣伸港鄉</td>
<td>99.90</td>
<td>112</td>
</tr>
<tr>
<td>存量能源股份有限公司</td>
<td>彰化漢青二期</td>
<td>彰化縣伸港鄉</td>
<td>51.60</td>
<td>112</td>
</tr>
<tr>
<td>東小南山太陽能股份有限公司</td>
<td>東小南山太陽光電發電廠</td>
<td>台南市北門區</td>
<td>926.64</td>
<td>111</td>
</tr>
<tr>
<td>生利能源股份有限公司</td>
<td>屏東枋寮太陽光電發電廠一期-1</td>
<td>屏東縣枋寮鄉</td>
<td>4001.31</td>
<td>111</td>
</tr>
<tr>
<td>生利能源股份有限公司</td>
<td>屏東枋寮第二期-1太陽光電發電廠</td>
<td>屏東縣枋寮鄉</td>
<td>2795.10</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍中心倉庫</td>
<td>台中市龍井區</td>
<td>991.20</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍扁鋼胚儲區</td>
<td>台中市龍井區</td>
<td>997.92</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍氧氣廠</td>
<td>台中市龍井區</td>
<td>347.76</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍除礦水電氣室</td>
<td>台中市龍井區</td>
<td>393.12</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍動力場</td>
<td>台中市龍井區</td>
<td>204.12</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍細石料RC屋頂</td>
<td>台中市龍井區</td>
<td>498.96</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中聯資中港廠</td>
<td>台中市龍井區</td>
<td>345.475</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鴻鹿港廠</td>
<td>彰化縣鹿港鎮</td>
<td>4333.38</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋁廠區</td>
<td>高雄市小港區</td>
<td>3137.40</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼88庫</td>
<td>高雄市小港區</td>
<td>982.08</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中聯資室內化儲區</td>
<td>高雄市小港區</td>
<td>476.16</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中聯資著磁料場</td>
<td>高雄市小港區</td>
<td>148.80</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鴻酸鍍廠</td>
<td>高雄市小港區</td>
<td>1096.20</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼廠區1</td>
<td>高雄市小港區</td>
<td>6798.60</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼廠區2</td>
<td>高雄市小港區</td>
<td>4689.84</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼廠區3</td>
<td>高雄市小港區</td>
<td>5784.18</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼廠區4</td>
<td>高雄市小港區</td>
<td>6857.16</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中鋼廠區5</td>
<td>高雄市小港區</td>
<td>5384.280</td>
<td>111</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍室內備品儲區</td>
<td>台中市龍井區</td>
<td>702.44</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍耐火材料倉庫</td>
<td>台中市龍井區</td>
<td>702.44</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍煉鐵大樓</td>
<td>台中市龍井區</td>
<td>158.44</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍熱軋主電氣室</td>
<td>台中市龍井區</td>
<td>179.52</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍第一原水池</td>
<td>台中市龍井區</td>
<td>839.80</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>扁鋼胚連鑄維護廠房</td>
<td>台中市龍井區</td>
<td>217.60</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍窄版改切工場</td>
<td>台中市龍井區</td>
<td>408.00</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍集塵灰倉庫</td>
<td>台中市龍井區</td>
<td>1338.24</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍熱軋精整</td>
<td>台中市龍井區</td>
<td>1285.88</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>永光儲區</td>
<td>高雄市小港區</td>
<td>2396.52</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中碳C1倉庫</td>
<td>屏東縣枋寮鄉</td>
<td>153.720</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中碳C2倉庫</td>
<td>屏東縣枋寮鄉</td>
<td>133.920</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中碳修護工廠</td>
<td>屏東縣枋寮鄉</td>
<td>127.075</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中碳試驗工廠</td>
<td>屏東縣枋寮鄉</td>
<td>328.900</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中聯資中港廠RC屋頂</td>
<td>臺中市龍井區</td>
<td>52.36</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中聯資南堤廠</td>
<td>臺中市龍井區</td>
<td>609.28</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-1</td>
<td>高雄市茄萣區</td>
<td>498.96</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-2</td>
<td>高雄市茄萣區</td>
<td>438.48</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-3</td>
<td>高雄市茄萣區</td>
<td>438.48</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-4</td>
<td>高雄市茄萣區</td>
<td>498.96</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-5</td>
<td>高雄市茄萣區</td>
<td>342.24</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-6</td>
<td>高雄市茄萣區</td>
<td>431.52</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-7</td>
<td>高雄市茄萣區</td>
<td>128.52</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基-8</td>
<td>高雄市茄萣區</td>
<td>408.24</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>興達海基電氣倉庫</td>
<td>高雄市茄萣區</td>
<td>198.00</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中心倉庫(A庫)</td>
<td>高雄市小港區</td>
<td>467.2</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中央修護場-1</td>
<td>高雄市小港區</td>
<td>175.68</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中央修護場-2</td>
<td>高雄市小港區</td>
<td>467.28</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中央修護場-3</td>
<td>高雄市小港區</td>
<td>396.48</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中林儲區</td>
<td>高雄市小港區</td>
<td>860.20</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>南站80000T原水池&VC-1F03原水池</td>
<td>高雄市小港區</td>
<td>897.60</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>鋼板工場01庫-1</td>
<td>高雄市小港區</td>
<td>495.60</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>鋼板工場01庫-2</td>
<td>高雄市小港區</td>
<td>495.60</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>鋼板工場01庫-3</td>
<td>高雄市小港區</td>
<td>184.08</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍熱軋軋輥廠房</td>
<td>臺中市龍井區</td>
<td>430.44</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍型鋼成品H4庫</td>
<td>臺中市龍井區</td>
<td>954.72</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍熱軋成品D7庫</td>
<td>臺中市龍井區</td>
<td>837.08</td>
<td>112</td>
</tr>
<tr>
<td>中鋼光能股份有限公司</td>
<td>中龍熱軋成品D3庫</td>
<td>臺中市龍井區</td>
<td>1289.28</td>
<td>112</td>
</tr>
<tr>
<td>旭信電力股份有限公司</td>
<td>旭信電力宜蘭廠</td>
<td>宜蘭縣五結鄉</td>
<td>1474.20</td>
<td>111</td>
</tr>
<tr>
<td>承隆能源科技股份有限公司</td>
<td>高雄大社區旗楠路80巷66號屋頂型太陽光電發電設備</td>
<td>高雄市大社區</td>
<td>244.555</td>
<td>111</td>
</tr>
<tr>
<td>新埔太陽能有限公司</td>
<td>新埔太陽光電發電廠</td>
<td>台南市七股區</td>
<td>999.495</td>
<td>111</td>
</tr>
<tr>
<td>環台光電股份有限公司</td>
<td>環台彰濱銀泰廠房屋頂太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>4059.27</td>
<td>111</td>
</tr>
<tr>
<td>環台光電股份有限公司</td>
<td>承煒實業廠房屋頂太陽光電發電廠</td>
<td>臺中市神岡區</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>環台光電股份有限公司</td>
<td>南投永新段案地面型太陽光電發電廠</td>
<td>南投縣南投市</td>
<td>499.62</td>
<td>113</td>
</tr>
<tr>
<td>環台光電股份有限公司</td>
<td>環台_苗栗高埔案地面型太陽光電發電廠</td>
<td>苗栗縣西湖鄉</td>
<td>1804.40</td>
<td>113</td>
</tr>
<tr>
<td>茂泓能源股份有限公司</td>
<td>臺南市北門區第一期太陽光電發電廠</td>
<td>台南市北門區</td>
<td>21167.90</td>
<td>111</td>
</tr>
<tr>
<td>綠鑽能源股份有限公司</td>
<td>台中市北屯區創研段19地號太陽能發電廠</td>
<td>臺中市北屯區</td>
<td>19.84</td>
<td>111</td>
</tr>
<tr>
<td>乾耀能源科技股份有限公司</td>
<td>乾耀台南官田區太陽光電發電廠</td>
<td>台南市官田區、六甲區</td>
<td>19349.525</td>
<td>111</td>
</tr>
<tr>
<td>欣晶能源股份有限公司</td>
<td>後潭太陽光電發電廠</td>
<td>台南市柳營區</td>
<td>999.79</td>
<td>111</td>
</tr>
<tr>
<td>天禽能源股份有限公司</td>
<td>天禽第一期太陽能電廠</td>
<td>台南市七股區</td>
<td>19567.20</td>
<td>111</td>
</tr>
<tr>
<td>玉衡能源股份有限公司</td>
<td>慈濟一期電廠</td>
<td>花蓮縣花蓮市</td>
<td>1991.60</td>
<td>111</td>
</tr>
<tr>
<td>晟鑫能源有限公司</td>
<td>慈濟二期電廠</td>
<td>花蓮縣花蓮市</td>
<td>943.80</td>
<td>111</td>
</tr>
<tr>
<td>天衝能源股份有限公司</td>
<td>天衝(第一階段)太陽能電廠</td>
<td>台南市七股區</td>
<td>93595.20</td>
<td>111</td>
</tr>
<tr>
<td>天衝能源股份有限公司</td>
<td>天衝(第二階段)太陽能電廠</td>
<td>台南市七股區</td>
<td>22915.20</td>
<td>112</td>
</tr>
<tr>
<td>得禾一能源股份有限公司</td>
<td>一德金屬TW190995太陽光電發電廠</td>
<td>台南市永康區</td>
<td>159.12</td>
<td>111</td>
</tr>
<tr>
<td>元昱太陽光電股份有限公司</td>
<td>屏東縣東港鎮三西和農場滯洪池太陽光電發電廠</td>
<td>屏東縣東港鎮</td>
<td>3822.00</td>
<td>111</td>
</tr>
<tr>
<td>元昱太陽光電股份有限公司</td>
<td>嘉義縣布袋鎮貴舍2滯洪池水面浮力式太陽光電發電廠(水面型)</td>
<td>嘉義縣布袋鎮</td>
<td>7098.00</td>
<td>112</td>
</tr>
<tr>
<td>元昱太陽光電股份有限公司</td>
<td>嘉義縣義竹鄉新庄農場滯洪池水面浮力式太陽光電發電廠(水面型)</td>
<td>嘉義縣義竹鄉</td>
<td>19500.00</td>
<td>112</td>
</tr>
<tr>
<td>元昱太陽光電股份有限公司</td>
<td>嘉義縣鹿草鄉荷苞嶼滯洪池水面浮力式太陽光電發電廠</td>
<td>嘉義縣鹿草鄉</td>
<td>7176.00</td>
<td>112</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第一期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>658.7</td>
<td>111</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第一期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>646.80</td>
<td>111</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第二期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>4893.70</td>
<td>111</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第三期(第2-1階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>3172.40</td>
<td>111</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第三期(第2-2階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>306.60</td>
<td>111</td>
</tr>
<tr>
<td>開陽智慧能源股份有限公司</td>
<td>開陽第三期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>14044.10</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第一期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>1052.25</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第一期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>2791.69</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第二期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>2504.60</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第三期(第一階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>9555.37</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第三期(第二階段)太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>7206.10</td>
<td>111</td>
</tr>
<tr>
<td>瑤光智慧能源股份有限公司</td>
<td>瑤光第四期太陽能電廠</td>
<td>屏東縣佳冬鄉</td>
<td>834.90</td>
<td>113</td>
</tr>
<tr>
<td>昱興能源股份有限公司</td>
<td>桃園大園PCHOME屋頂型太陽光電發電廠</td>
<td>桃園市大園區</td>
<td>2202.96</td>
<td>111</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集北勢寮地面型太陽光電發電廠</td>
<td>台南市東山區</td>
<td>915.12</td>
<td>111</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集潭頂段地面型太陽光電發電廠</td>
<td>台南市新市區</td>
<td>818.40</td>
<td>111</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集洛陽段太陽光電發電廠</td>
<td>屏東縣鹽埔鄉</td>
<td>1180.48</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集隆安段太陽光電發電廠</td>
<td>屏東縣枋寮鄉</td>
<td>1043.46</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集大平頂(第一期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>1958.04</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集大平頂(第二期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>1958.04</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集大平頂(第三期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>1958.04</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集大平頂(第四期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>1958.04</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集保力小段(第一期)太陽光電發電廠</td>
<td>屏東縣車城鄉</td>
<td>1399.95</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集保力小段(第二期)太陽光電發電廠</td>
<td>屏東縣車城鄉</td>
<td>1399.95</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集保力小段(第三期)太陽光電發電廠</td>
<td>屏東縣車城鄉</td>
<td>1399.95</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集恆春機場段地面型(第一期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>493.29</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集恆春機場段地面型(第二期)太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>493.29</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集舊庄段地面型(第一期)太陽光電發電廠</td>
<td>屏東縣枋山鄉</td>
<td>691.92</td>
<td>112</td>
</tr>
<tr>
<td>日集綠能股份有限公司</td>
<td>日集舊庄段地面型(第二期)太陽光電發電廠</td>
<td>屏東縣枋山鄉</td>
<td>691.92</td>
<td>112</td>
</tr>
<tr>
<td>遠勁綠能股份有限公司</td>
<td>遠勁永豐餘大甲經營屋頂型電廠</td>
<td>台中市大甲區</td>
<td>915.12</td>
<td>111</td>
</tr>
<tr>
<td>遠勁綠能股份有限公司</td>
<td>中華紙漿久堂廠太陽光電發電廠</td>
<td>高雄市大樹區</td>
<td>1916.64</td>
<td>111</td>
</tr>
<tr>
<td>遠勁綠能股份有限公司</td>
<td>高雄永豐餘太陽光電發電廠</td>
<td>高雄市阿蓮區</td>
<td>1999.20</td>
<td>111</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源普威廠</td>
<td>宜蘭縣蘇澳鎮頂寮段0662-0030地號</td>
<td>909.025</td>
<td>111</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源宜蘭廠</td>
<td>宜蘭縣五結鄉</td>
<td>1098.02</td>
<td>111</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源有益廠</td>
<td>高雄市永安區</td>
<td>499.275</td>
<td>112</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源台特化廠</td>
<td>彰化縣線西鄉</td>
<td>1617.20</td>
<td>112</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源建誌廠</td>
<td>高雄市燕巢區</td>
<td>273.00</td>
<td>112</td>
</tr>
<tr>
<td>旭愛能源股份有限公司</td>
<td>旭愛能源維堤廠</td>
<td>宜蘭縣蘇澳鎮</td>
<td>263.67</td>
<td>112</td>
</tr>
<tr>
<td>台灣艾貴綠能股份有限公司</td>
<td>艾貴綠能田寮發電廠</td>
<td>台南市鹽水區</td>
<td>41864.40</td>
<td>111</td>
</tr>
<tr>
<td>晶成能源股份有限公司</td>
<td>台中太平民宅第一期太陽光電發電系統</td>
<td>台中市太平區</td>
<td>19.84</td>
<td>111</td>
</tr>
<tr>
<td>旭創能源有限公司</td>
<td>旭創能源桃苗汽車中華路場</td>
<td>桃園市八德區</td>
<td>366.39</td>
<td>111</td>
</tr>
<tr>
<td>旭創能源有限公司</td>
<td>旭創能源桃苗介壽路場</td>
<td>桃園市八德區</td>
<td>289.00</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>新竹縣竹東鎮99.753瓩</td>
<td>新竹縣竹東鎮</td>
<td>99.753</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>新竹縣竹東鎮198.6瓩</td>
<td>新竹縣竹東鎮</td>
<td>198.60</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>嘉義市東區191.27瓩</td>
<td>嘉義市東區</td>
<td>191.27</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>臺中市梧棲區488.61瓩</td>
<td>台中市梧棲區</td>
<td>488.61</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>桃園市觀音區349.06瓩</td>
<td>桃園市觀音區</td>
<td>349.06</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>桃園市楊梅區338.83瓩</td>
<td>桃園市楊梅區</td>
<td>338.83</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>桃園市新屋區156.465瓩</td>
<td>桃園市新屋區</td>
<td>156.465</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>高雄市大社區257.4瓩</td>
<td>高雄市大社區</td>
<td>257.40</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>臺南市山上區248瓩</td>
<td>台南市山上區</td>
<td>248.00</td>
<td>111</td>
</tr>
<tr>
<td>東迪能源股份有限公司</td>
<td>臺南市官田區317.7瓩</td>
<td>台南市官田區</td>
<td>317.70</td>
<td>111</td>
</tr>
<tr>
<td>嘉創能源股份有限公司</td>
<td>嘉義市東區保成路410 號太陽光電發電廠</td>
<td>嘉義市東區</td>
<td>13.86</td>
<td>111</td>
</tr>
<tr>
<td>佳煌科技有限公司</td>
<td>彰化佳煌太陽能發電廠</td>
<td>彰化縣彰化市</td>
<td>165.66</td>
<td>111</td>
</tr>
<tr>
<td>玉樹能源股份有限公司</td>
<td>玉樹能源第1-2期太陽光電發電廠</td>
<td>屏東縣高樹鄉</td>
<td>30614.80</td>
<td>111</td>
</tr>
<tr>
<td>玉樹能源股份有限公司</td>
<td>玉樹能源第一期太陽光電發電廠</td>
<td>屏東縣高樹鄉</td>
<td>8428.80</td>
<td>111</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>見得行二期太陽光電發電廠</td>
<td>台中市梧棲區</td>
<td>1378.00</td>
<td>111</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>進安太陽光電發電廠</td>
<td>台中市梧棲區</td>
<td>1476.00</td>
<td>111</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>鎔利太陽光電發電廠</td>
<td>嘉義縣梅山區</td>
<td>844.13</td>
<td>111</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>興隆興太陽光電發電廠</td>
<td>嘉義縣大林鎮</td>
<td>669.60</td>
<td>112</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>帝寶C6太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>271.56</td>
<td>112</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>帝寶總部太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>1413.60</td>
<td>112</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>隆茂太陽光電發電廠</td>
<td>彰化縣線西鄉</td>
<td>414.80</td>
<td>112</td>
</tr>
<tr>
<td>冠越科技工程股份有限公司</td>
<td>帝寶F棟太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>334.80</td>
<td>113</td>
</tr>
<tr>
<td>玉山太陽能有限公司</td>
<td>玉山太陽光電發電廠</td>
<td>台南市北門區</td>
<td>801.99</td>
<td>112</td>
</tr>
<tr>
<td>欣亞能源有限公司</td>
<td>台南市學甲區宅子港段165-123地號太陽光電發電廠</td>
<td>台南市學甲區</td>
<td>498.98</td>
<td>112</td>
</tr>
<tr>
<td>天方能源科技股份有限公司</td>
<td>「高雄市楠梓污水下水道系統建設計畫案」之「附屬事業計畫-地面型太陽光電發電廠」</td>
<td>高雄市楠梓區</td>
<td>3946.80</td>
<td>112</td>
</tr>
<tr>
<td>國軒科技股份有限公司</td>
<td>鹿港鎮第一公墓</td>
<td>彰化縣鹿港鎮</td>
<td>8744.34</td>
<td>112</td>
</tr>
<tr>
<td>欣芳苑能源科技股份有限公司</td>
<td>漢寶農畜南北場太陽能電廠</td>
<td>彰化縣芳苑鄉</td>
<td>1424.61</td>
<td>112</td>
</tr>
<tr>
<td>芳苑能源科技股份有限公司</td>
<td>芳苑能源-漢寶第一型太陽能電廠</td>
<td>彰化縣芳苑鄉</td>
<td>1552.32</td>
<td>112</td>
</tr>
<tr>
<td>睿禾控股股份有限公司</td>
<td>後港國小(頂山校區)太陽光電發電廠</td>
<td>台南市七股區</td>
<td>66.98</td>
<td>112</td>
</tr>
<tr>
<td>碩力光能股份有限公司</td>
<td>雲林新興發電廠</td>
<td>雲林縣台西鄉</td>
<td>271968.00</td>
<td>112</td>
</tr>
<tr>
<td>永梁股份有限公司</td>
<td>鳳山淨水廠西清水池太陽光電發電廠</td>
<td>高雄市小港區</td>
<td>2939.160</td>
<td>112</td>
</tr>
<tr>
<td>永梁股份有限公司</td>
<td>鳳山淨水廠東清水池太陽光電發電廠</td>
<td>高雄市小港區</td>
<td>2846.760</td>
<td>112</td>
</tr>
<tr>
<td>十源工程有限公司</td>
<td>十源388地號太陽光電發電廠</td>
<td>嘉義縣東石鄉</td>
<td>494.125</td>
<td>112</td>
</tr>
<tr>
<td>十源工程有限公司</td>
<td>嘉義縣東石鄉栗子崙段128-12地號太陽光電發電廠</td>
<td>嘉義縣東石鄉</td>
<td>499.66</td>
<td>112</td>
</tr>
<tr>
<td>星曄綠能股份有限公司</td>
<td>烏山頭水庫水面型太陽光電發電系統</td>
<td>台南市官田區</td>
<td>13705.2</td>
<td>112</td>
</tr>
<tr>
<td>星崴電力股份有限公司</td>
<td>星崴七股太陽光電發電業</td>
<td>臺南市七股區</td>
<td>77520.00</td>
<td>112</td>
</tr>
<tr>
<td>誠新綠能股份有限公司</td>
<td>誠新屏東萬巒703-1電廠</td>
<td>屏東縣萬巒鄉</td>
<td>106.64</td>
<td>112</td>
</tr>
<tr>
<td>誠新綠能股份有限公司</td>
<td>誠新屏東萬巒703電廠</td>
<td>屏東縣萬巒鄉</td>
<td>186.62</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光桃園1廠</td>
<td>桃園市平鎮區</td>
<td>499.68</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光桃園2廠</td>
<td>桃園市平鎮區</td>
<td>273.34</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光桃園3廠</td>
<td>桃園市平鎮區</td>
<td>83.35</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林6廠</td>
<td>雲林縣古坑鄉</td>
<td>99.99</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林8廠</td>
<td>雲林縣台西鄉</td>
<td>270.58</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林9廠</td>
<td>雲林縣口湖鄉</td>
<td>99.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南3廠</td>
<td>臺南市北門區</td>
<td>482.00</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南4廠</td>
<td>臺南市北門區</td>
<td>499.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南5廠</td>
<td>臺南市北門區</td>
<td>269.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南6廠</td>
<td>臺南市北門區</td>
<td>292.00</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林1廠</td>
<td>雲林縣口湖鄉</td>
<td>399.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林2廠</td>
<td>雲林縣口湖鄉</td>
<td>233.40</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林3廠</td>
<td>雲林縣口湖鄉</td>
<td>499.50</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林4廠</td>
<td>雲林縣口湖鄉</td>
<td>94.50</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光雲林5廠</td>
<td>雲林縣口湖鄉</td>
<td>499.50</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南1廠</td>
<td>臺南市六甲區</td>
<td>312.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南2廠</td>
<td>臺南市六甲區</td>
<td>99.60</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南7廠</td>
<td>臺南市六甲區</td>
<td>384.45</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光台南8廠</td>
<td>臺南市六甲區</td>
<td>22.94</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光嘉義1廠</td>
<td>嘉義縣大林鎮</td>
<td>133.30</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光嘉義2廠</td>
<td>嘉義縣大林鎮</td>
<td>99.82</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光嘉義3廠</td>
<td>嘉義縣大林鎮</td>
<td>254.40</td>
<td>112</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化2廠</td>
<td>彰化縣二林鎮</td>
<td>460.50</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化3廠</td>
<td>彰化縣芳苑鄉</td>
<td>98.40</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化18廠</td>
<td>彰化縣芳苑鄉</td>
<td>368.14</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化35廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.60</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化36廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.60</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化37廠</td>
<td>彰化縣芳苑鄉</td>
<td>77.20</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化38廠</td>
<td>彰化縣芳苑鄉</td>
<td>82.40</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化40廠</td>
<td>彰化縣大城鄉</td>
<td>99.75</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化41廠</td>
<td>彰化縣大城鄉</td>
<td>399.75</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化42廠</td>
<td>彰化縣大城鄉</td>
<td>99.60</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化43廠</td>
<td>彰化縣大城鄉</td>
<td>262.80</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化44廠</td>
<td>彰化縣芳苑鄉</td>
<td>82.50</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化45廠</td>
<td>彰化縣芳苑鄉</td>
<td>74.25</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化46廠</td>
<td>彰化縣芳苑鄉</td>
<td>99.60</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化22廠</td>
<td>彰化縣芳苑鄉</td>
<td>209.25</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化23廠</td>
<td>彰化縣芳苑鄉</td>
<td>280.50</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化24廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.50</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化25廠</td>
<td>彰化縣芳苑鄉</td>
<td>244.13</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化26廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.62</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化27廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.62</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化28廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.62</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化29廠</td>
<td>彰化縣芳苑鄉</td>
<td>116.16</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化51廠</td>
<td>彰化縣芳苑鄉</td>
<td>32.00</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化19廠</td>
<td>彰化縣芳苑鄉</td>
<td>230.64</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化20廠</td>
<td>彰化縣芳苑鄉</td>
<td>499.72</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化21廠</td>
<td>彰化縣芳苑鄉</td>
<td>334.18</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化30廠</td>
<td>彰化縣芳苑鄉</td>
<td>399.90</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化50廠</td>
<td>彰化縣芳苑鄉</td>
<td>99.51</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化15廠</td>
<td>彰化縣芳苑鄉</td>
<td>443.61</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化48廠</td>
<td>彰化縣芳苑鄉</td>
<td>52.39</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化39廠</td>
<td>彰化縣芳苑鄉</td>
<td>340.56</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化10廠</td>
<td>彰化縣大城鄉</td>
<td>276.00</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化11廠</td>
<td>彰化縣大城鄉</td>
<td>203.98</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化1廠</td>
<td>彰化縣芳苑鄉</td>
<td>161.20</td>
<td>113</td>
</tr>
<tr>
<td>金良科技股份有限公司</td>
<td>新光彰化33廠</td>
<td>彰化縣芳苑鄉</td>
<td>246.14</td>
<td>113</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>桃園功學社屋頂型太陽光電案場149.45KW</td>
<td>桃園市中壢區</td>
<td>149.45</td>
<td>112</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>桃園功學社屋頂型太陽光電案場494.1KW</td>
<td>桃園市中壢區</td>
<td>494.10</td>
<td>112</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>台中燦坤屋頂型太陽光電案場</td>
<td>臺中市西屯區</td>
<td>247.23</td>
<td>112</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>新竹三憶食品屋頂型太陽光電案場</td>
<td>新竹縣新豐鄉</td>
<td>166.75</td>
<td>113</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>屏東鹽埔地面型太陽光電案場</td>
<td>屏東縣鹽埔鄉</td>
<td>128.70</td>
<td>113</td>
</tr>
<tr>
<td>禾原新能源科技股份有限公司</td>
<td>台南蘭都屋頂型太陽光電案場</td>
<td>台南市六甲區</td>
<td>133.92</td>
<td>113</td>
</tr>
<tr>
<td>善祚能源有限公司</td>
<td>嘉義鹿草-善祚太陽光電發電廠.45KW</td>
<td>嘉義縣鹿草鄉</td>
<td>229.68</td>
<td>112</td>
</tr>
<tr>
<td>寶興能源股份有限公司</td>
<td>寶興金榮太陽光電發電系統工程(第一期-1第一階段).45KW</td>
<td>屏東縣枋寮鄉</td>
<td>1827.09</td>
<td>112</td>
</tr>
<tr>
<td>寶興能源股份有限公司</td>
<td>寶興金榮太陽光電發電系統工程第一期之1第二階段.1KW</td>
<td>屏東縣枋寮鄉</td>
<td>9216.52</td>
<td>112</td>
</tr>
<tr>
<td>寶興能源股份有限公司</td>
<td>寶興金榮太陽光電發電系統工程第一期之1第三階段.1KW</td>
<td>屏東縣枋寮鄉</td>
<td>4779.11</td>
<td>112</td>
</tr>
<tr>
<td>寶興能源股份有限公司</td>
<td>寶興金榮太陽光電發電系統工程第一期之2第一階段.1KW</td>
<td>屏東縣枋寮鄉</td>
<td>2403.29</td>
<td>112</td>
</tr>
<tr>
<td>桐新能源股份有限公司</td>
<td>臺鐵潮州機廠屋頂型太陽光電系統</td>
<td>屏東縣潮州鎮</td>
<td>3054.48</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>雲林口湖地面型太陽光電案場</td>
<td>雲林縣口湖鄉</td>
<td>450.08</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>高雄赤崁地面型太陽光電案場(1期)</td>
<td>高雄市大寮區</td>
<td>497.28</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>高雄赤崁地面型太陽光電案場(2期)</td>
<td>高雄市大寮區</td>
<td>497.28</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>高雄坪鳳地面型太陽光電案場(1期)</td>
<td>高雄市小港區</td>
<td>497.28</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>高雄坪鳳地面型太陽光電案場(2期)</td>
<td>高雄市小港區</td>
<td>474.88</td>
<td>112</td>
</tr>
<tr>
<td>禾淯有限公司</td>
<td>高雄坪鳳地面型太陽光電案場(3期)</td>
<td>高雄市小港區</td>
<td>497.28</td>
<td>112</td>
</tr>
<tr>
<td>華晶能源股份有限公司</td>
<td>華晶能源炎洲12(1)號太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>413.89</td>
<td>112</td>
</tr>
<tr>
<td>華晶能源股份有限公司</td>
<td>華晶能源炎洲12(2)號太陽光電發電廠</td>
<td>彰化縣鹿港鎮</td>
<td>455.98</td>
<td>112</td>
</tr>
<tr>
<td>華晶能源股份有限公司</td>
<td>華晶世紀鋼太陽能發電廠</td>
<td>新北市八里區</td>
<td>4074.30</td>
<td>112</td>
</tr>
<tr>
<td>宣聚股份有限公司</td>
<td>建新國際10C倉第一型太陽光電發電廠</td>
<td>臺中市清水區</td>
<td>1994.20</td>
<td>112</td>
</tr>
<tr>
<td>宣聚股份有限公司</td>
<td>建新國際物流園區第一型太陽光電發電廠</td>
<td>臺中市梧棲區</td>
<td>1959.43</td>
<td>112</td>
</tr>
<tr>
<td>宣聚股份有限公司</td>
<td>竹山1號菇寮太陽光電發電廠</td>
<td>南投縣竹山鎮</td>
<td>344.40</td>
<td>113</td>
</tr>
<tr>
<td>宣聚股份有限公司</td>
<td>魚池司馬按段1號菇寮太陽光電發電廠</td>
<td>南投縣魚池鄉</td>
<td>998.82</td>
<td>113</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第一次併網範圍)</td>
<td>嘉義縣東石鄉</td>
<td>26812.17</td>
<td>112</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第二次併網)第一階段</td>
<td>嘉義縣東石鄉</td>
<td>1884.96</td>
<td>112</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第二次併網)第二階段</td>
<td>嘉義縣東石鄉</td>
<td>6334.02</td>
<td>112</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第二次併網)第三階段</td>
<td>嘉義縣東石鄉</td>
<td>8787.24</td>
<td>112</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第二次併網)第五階段</td>
<td>嘉義縣布袋鎮</td>
<td>2577.96</td>
<td>112</td>
</tr>
<tr>
<td>廣宇能源股份有限公司</td>
<td>廣宇一期嘉義太陽光電發電廠(第二次併網)第六階段</td>
<td>嘉義縣東石鄉</td>
<td>2661.12</td>
<td>112</td>
</tr>
<tr>
<td>宣冠股份有限公司</td>
<td>宣冠建新國際公司屋頂太陽能場</td>
<td>臺中市梧棲區</td>
<td>1106.84</td>
<td>112</td>
</tr>
<tr>
<td>裕電能源股份有限公司</td>
<td>南投竹山菇寮455.06kW</td>
<td>南投縣竹山鎮</td>
<td>455.06</td>
<td>112</td>
</tr>
<tr>
<td>裕電能源股份有限公司</td>
<td>屏東台利達一期1544.96kW</td>
<td>屏東縣枋寮鄉</td>
<td>1544.96</td>
<td>113</td>
</tr>
<tr>
<td>裕電能源股份有限公司</td>
<td>屏東鹽埔新高段1466.4kW</td>
<td>屏東縣鹽埔鄉</td>
<td>1466.40</td>
<td>113</td>
</tr>
<tr>
<td>裕電能源股份有限公司</td>
<td>南投埔里菇寮327.275kW</td>
<td>南投縣埔里鎮</td>
<td>327.28</td>
<td>113</td>
</tr>
<tr>
<td>安淯科技有限公司</td>
<td>台南易昇屋頂型太陽光電案場(TNN-107PV0757)</td>
<td>臺南市永康區</td>
<td>440.20</td>
<td>112</td>
</tr>
<tr>
<td>安淯科技有限公司</td>
<td>台南易昇屋頂型太陽光電案場(TNN-107PV0776)</td>
<td>臺南市永康區</td>
<td>254.20</td>
<td>112</td>
</tr>
<tr>
<td>安淯科技有限公司</td>
<td>台南易昇屋頂型太陽光電案場(TNN-107PV0777)</td>
<td>臺南市永康區</td>
<td>455.70</td>
<td>112</td>
</tr>
<tr>
<td>志光能源股份有限公司</td>
<td>臺南市七股區三股子段及三和段太陽光電發電系統工程</td>
<td>臺南市七股區</td>
<td>85712.40</td>
<td>112</td>
</tr>
<tr>
<td>恆升能源有限公司</td>
<td>嘉義義竹-1881.6kW</td>
<td>嘉義縣義竹鄉</td>
<td>1881.60</td>
<td>112</td>
</tr>
<tr>
<td>恩富資本太陽能股份有限公司</td>
<td>老虎三寮灣太陽光電系統工程(第一期)</td>
<td>臺南市北門區</td>
<td>21837.60</td>
<td>112</td>
</tr>
<tr>
<td>恩富資本太陽能股份有限公司</td>
<td>老虎蚵寮太陽光電系統工程</td>
<td>臺南市北門區</td>
<td>86184.00</td>
<td>112</td>
</tr>
<tr>
<td>恩富資本太陽能股份有限公司</td>
<td>老虎三寮灣太陽光電系統工程(第二期)</td>
<td>臺南市北門區</td>
<td>20163.60</td>
<td>112</td>
</tr>
<tr>
<td>智新能源股份有限公司</td>
<td>彰化縣汙染農地太陽光電系統「振興段783、784地號」</td>
<td>彰化縣鹿港鎮</td>
<td>459.36</td>
<td>112</td>
</tr>
<tr>
<td>智新能源股份有限公司</td>
<td>彰化縣汙染農地太陽光電系統「振興段973地號」</td>
<td>彰化縣鹿港鎮</td>
<td>174.24</td>
<td>112</td>
</tr>
<tr>
<td>智新能源股份有限公司</td>
<td>彰化縣汙染農地太陽光電系統「振興段2209、2210地號」</td>
<td>彰化縣鹿港鎮</td>
<td>443.52</td>
<td>112</td>
</tr>
<tr>
<td>智新能源股份有限公司</td>
<td>彰化縣汙染農地太陽光電系統「鹿昇段748-1、749地號」</td>
<td>彰化縣鹿港鎮</td>
<td>491.04</td>
<td>112</td>
</tr>
<tr>
<td>智新能源股份有限公司</td>
<td>彰化縣汙染農地太陽光電系統「鹿崙段554地號」</td>
<td>彰化縣鹿港鎮</td>
<td>364.32</td>
<td>112</td>
</tr>
<tr>
<td>欣時股份有限公司</td>
<td>欣時太陽能電廠-雲林莿桐一期</td>
<td>雲林縣蕀桐鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>欣時股份有限公司</td>
<td>欣時太陽能電廠-雲林莿桐二期</td>
<td>雲林縣蕀桐鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>欣時股份有限公司</td>
<td>欣時太陽能電廠-雲林莿桐三期</td>
<td>雲林縣蕀桐鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>聖韮光電股份有限公司</td>
<td>聖韮光電太陽能電廠-雲林莿桐一期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>聖韮光電股份有限公司</td>
<td>聖韮光電太陽能電廠-雲林莿桐二期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>聖韮光電股份有限公司</td>
<td>聖韮光電太陽能電廠-雲林莿桐三期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>原生新能源股份有限公司</td>
<td>原生新能源股份有限公司太陽光電發電廠</td>
<td>臺北市大同區</td>
<td>8.04</td>
<td>112</td>
</tr>
<tr>
<td>騰明能源股份有限公司</td>
<td>苗栗縣南庄鄉屋頂型太陽光電發電廠</td>
<td>苗栗縣南庄鄉</td>
<td>212.16</td>
<td>112</td>
</tr>
<tr>
<td>智捷能源股份有限公司</td>
<td>彰化梧鳳太陽能發電廠</td>
<td>彰化縣埔心鄉</td>
<td>1999.80</td>
<td>112</td>
</tr>
<tr>
<td>智捷能源股份有限公司</td>
<td>智捷埤頭太陽能發電廠</td>
<td>彰化縣埤頭鄉</td>
<td>499.80</td>
<td>113</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林莿桐一期</td>
<td>雲林縣蕀桐鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林莿桐二期</td>
<td>雲林縣蕀桐鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林林內一期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林林內二期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林林內三期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>合伍光電股份有限公司</td>
<td>合伍光電太陽能電廠-雲林林內四期</td>
<td>雲林縣林內鄉</td>
<td>498.00</td>
<td>112</td>
</tr>
<tr>
<td>光鼎能源科技有限公司</td>
<td>光鼎綠電1號太陽能電廠</td>
<td>嘉義市東區遠</td>
<td>99.96</td>
<td>112</td>
</tr>
<tr>
<td>正順能源有限公司</td>
<td>正順榮璋工廠案(199.68瓩)</td>
<td>高雄市路竹區</td>
<td>199.68</td>
<td>112</td>
</tr>
<tr>
<td>嵩旺能源股份有限公司</td>
<td>嵩旺高雄彌陀太陽光電發電廠</td>
<td>高雄市彌陀區</td>
<td>9000.00</td>
<td>112</td>
</tr>
<tr>
<td>怡和國際能源股份有限公司</td>
<td>屏東縣枋寮鄉建興段471-1地號</td>
<td>屏東縣枋寮鄉</td>
<td>230.89</td>
<td>112</td>
</tr>
<tr>
<td>怡和國際能源股份有限公司</td>
<td>屏東縣枋寮鄉建興段471地號</td>
<td>屏東縣枋寮鄉</td>
<td>208.93</td>
<td>112</td>
</tr>
<tr>
<td>怡和國際能源股份有限公司</td>
<td>屏東縣枋寮鄉建興段475-1地號</td>
<td>屏東縣枋寮鄉</td>
<td>262.00</td>
<td>112</td>
</tr>
<tr>
<td>怡和國際能源股份有限公司</td>
<td>屏東縣枋寮鄉建興段475-2地號</td>
<td>屏東縣枋寮鄉</td>
<td>279.69</td>
<td>112</td>
</tr>
<tr>
<td>怡和國際能源股份有限公司</td>
<td>屏東縣枋寮鄉建興段475地號</td>
<td>屏東縣枋寮鄉</td>
<td>275.11</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯台中1廠</td>
<td>臺中市外埔區</td>
<td>226.92</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯彰化1廠</td>
<td>彰化縣伸港鄉</td>
<td>491.84</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯高雄1廠</td>
<td>高雄市路竹區</td>
<td>499.10</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯高雄2廠</td>
<td>高雄市路竹區</td>
<td>146.94</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯雲林1廠</td>
<td>雲林縣斗六市</td>
<td>499.72</td>
<td>112</td>
</tr>
<tr>
<td>睿聯國際股份有限公司</td>
<td>睿聯雲林2廠</td>
<td>雲林縣斗六市</td>
<td>379.44</td>
<td>112</td>
</tr>
<tr>
<td>生豐電力股份有限公司</td>
<td>生豐一期兆豐農場地面型太陽光電發電廠</td>
<td>花蓮縣鳳林鎮</td>
<td>74970.00</td>
<td>112</td>
</tr>
<tr>
<td>辰華電力股份有限公司</td>
<td>崙尾東三號電廠</td>
<td>彰化縣鹿港鎮</td>
<td>67267.20</td>
<td>112</td>
</tr>
<tr>
<td>泰陽光電股份有限公司</td>
<td>泰陽義竹1-1期溫室科技養殖結合太陽光電發電廠</td>
<td>嘉義市義竹鄉</td>
<td>12443.30</td>
<td>112</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>高雄大社-崇瑋工業</td>
<td>高雄市大社區</td>
<td>499.80</td>
<td>112</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>台中烏日-臻愛會館(一期)</td>
<td>臺中市烏日區</td>
<td>439.74</td>
<td>112</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>台中烏日-臻愛會館(二期)</td>
<td>臺中市烏日區</td>
<td>499.28</td>
<td>112</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>屏東潮州-崙東段9地號(一期)</td>
<td>屏東縣潮州鎮</td>
<td>499.91</td>
<td>113</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>屏東潮州-崙東段9地號(二期)</td>
<td>屏東縣潮州鎮</td>
<td>443.67</td>
<td>113</td>
</tr>
<tr>
<td>日益能源科技股份有限公司</td>
<td>台南麻豆-真理大學太陽光電發電廠</td>
<td>台南市麻豆區</td>
<td>469.88</td>
<td>113</td>
</tr>
<tr>
<td>頂晶科技股份有限公司</td>
<td>頂晶2號太陽光電電廠</td>
<td>臺南市下營區</td>
<td>1499.40</td>
<td>112</td>
</tr>
<tr>
<td>頂晶科技股份有限公司</td>
<td>頂晶4號太陽光電電廠</td>
<td>臺南市麻豆區</td>
<td>928.76</td>
<td>112</td>
</tr>
<tr>
<td>磐軒股份有限公司</td>
<td>台中上好2期電廠</td>
<td>臺中市潭子區</td>
<td>51.45</td>
<td>112</td>
</tr>
<tr>
<td>磐軒股份有限公司</td>
<td>台中上好電廠</td>
<td>臺中市潭子區</td>
<td>496.74</td>
<td>112</td>
</tr>
<tr>
<td>磐軒股份有限公司</td>
<td>台中台光道院電廠</td>
<td>臺中市潭子區</td>
<td>99.28</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙仁武里二期</td>
<td>高雄縣仁武鄉</td>
<td>105.27</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙文賢市場一期</td>
<td>高雄縣岡山鎮</td>
<td>87.12</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙文賢市場二期</td>
<td>高雄縣岡山鎮</td>
<td>129.69</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙彌陀公所一期</td>
<td>高雄市彌陀區</td>
<td>19.80</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙彌陀公所二期</td>
<td>高雄市彌陀區</td>
<td>80.19</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙鼓山市場二期</td>
<td>高雄市鼓山區</td>
<td>97.68</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙旗津市場一期</td>
<td>高雄市旗津區</td>
<td>95.70</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙龍華市場一期</td>
<td>高雄市左營區</td>
<td>99.00</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙龍華市場二期</td>
<td>高雄市左營區</td>
<td>185.79</td>
<td>112</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙仁武里一期</td>
<td>高雄市仁武區</td>
<td>90.09</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙楠梓高中A棟</td>
<td>高雄市楠梓區</td>
<td>219.90</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙楠梓高中B棟</td>
<td>高雄市楠梓區</td>
<td>198.90</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙鼓山市場一期</td>
<td>高雄市鼓山區</td>
<td>99.33</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙旗津市場二期</td>
<td>高雄市旗津區</td>
<td>69.30</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙幸福公園</td>
<td>高雄市林園區</td>
<td>201.10</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙武廟市場一期</td>
<td>高雄市苓雅區</td>
<td>89.76</td>
<td>113</td>
</tr>
<tr>
<td>環球大宇宙太陽能工業有限公司</td>
<td>環球大宇宙武廟市場二期</td>
<td>高雄市苓雅區</td>
<td>277.86</td>
<td>113</td>
</tr>
<tr>
<td>宜康能源股份有限公司</td>
<td>宜康太陽光電發電廠</td>
<td>臺南市學甲區</td>
<td>1907.10</td>
<td>112</td>
</tr>
<tr>
<td>鉅光科技工業有限公司</td>
<td>工業世濱食品</td>
<td>高雄市鳥松區</td>
<td>96.00</td>
<td>112</td>
</tr>
<tr>
<td>鉅光科技工業有限公司</td>
<td>鳳西國小</td>
<td>高雄市鳳山區</td>
<td>423.00</td>
<td>112</td>
</tr>
<tr>
<td>巨光能源科技有限公司</td>
<td>巨光台中1廠</td>
<td>臺中市梧棲區</td>
<td>494.71</td>
<td>112</td>
</tr>
<tr>
<td>巨光能源科技有限公司</td>
<td>巨光台中2廠</td>
<td>臺中市梧棲區</td>
<td>494.71</td>
<td>112</td>
</tr>
<tr>
<td>巨光能源科技有限公司</td>
<td>巨光鹿12廠</td>
<td>彰化縣鹿港鎮</td>
<td>999.94</td>
<td>113</td>
</tr>
<tr>
<td>茂正能源股份有限公司</td>
<td>茂正太陽能電廠</td>
<td>雲林縣口湖鄉</td>
<td>87833.60</td>
<td>112</td>
</tr>
<tr>
<td>南陽電業股份有限公司</td>
<td>臺南市北門區太陽光電發電廠第一期</td>
<td>臺南市北門區</td>
<td>5384.06</td>
<td>112</td>
</tr>
<tr>
<td>熲明股份有限公司</td>
<td>熲明彰濱廠房屋頂第三期太陽光電發電廠</td>
<td>彰化縣線西鄉</td>
<td>2185.54</td>
<td>113</td>
</tr>
<tr>
<td>中鈁綠能股份有限公司</td>
<td>中鈁湖西太陽光電發電系統工程(第一階段)</td>
<td>澎湖縣湖西鄉</td>
<td>8969.40</td>
<td>113</td>
</tr>
<tr>
<td>中鈁綠能股份有限公司</td>
<td>中鈁湖西太陽光電發電系統工程(第二階段)</td>
<td>澎湖縣湖西鄉</td>
<td>847.80</td>
<td>113</td>
</tr>
<tr>
<td>方登綠能股份有限公司</td>
<td>方登澎湖太陽光電發電系統工程(第一期)</td>
<td>澎湖縣湖西鄉</td>
<td>9817.20</td>
<td>113</td>
</tr>
<tr>
<td>順長興企業股份有限公司</td>
<td>順長興嘉義1廠</td>
<td>嘉義縣東石鄉</td>
<td>1240.40</td>
<td>113</td>
</tr>
<tr>
<td>東鋼風力發電股份有限公司</td>
<td>東鋼風力台中港物流中心太陽光電發電廠</td>
<td>臺中市梧棲區</td>
<td>1449.90</td>
<td>113</td>
</tr>
<tr>
<td>東鋼風力發電股份有限公司</td>
<td>東鋼風力東高太陽光電發電廠(第一階段)</td>
<td>高雄市小港區</td>
<td>1282.93</td>
<td>113</td>
</tr>
<tr>
<td>東鋼風力發電股份有限公司</td>
<td>東鋼風力東糖太陽光電發電廠</td>
<td>屏東縣內埔鄉</td>
<td>139.52</td>
<td>113</td>
</tr>
<tr>
<td>東鋼風力發電股份有限公司</td>
<td>東鋼風力台北港倉庫太陽光電發電廠</td>
<td>新北市八里區</td>
<td>1096.20</td>
<td>113</td>
</tr>
<tr>
<td>東鋼風力發電股份有限公司</td>
<td>東鋼風力加工中心一太陽光電發電廠</td>
<td>桃園市觀音區</td>
<td>935.22</td>
<td>113</td>
</tr>
<tr>
<td>北門太陽能有限公司</td>
<td>北門太陽光電發電廠</td>
<td>屏東縣里港鄉</td>
<td>1821.38</td>
<td>113</td>
</tr>
<tr>
<td>珠江太陽能有限公司</td>
<td>珠江太陽光電發電廠</td>
<td>屏東縣恆春鎮</td>
<td>2062.13</td>
<td>113</td>
</tr>
<tr>
<td>仁華綠能股份有限公司</td>
<td>仁華湖西太陽光電發電系統工程</td>
<td>澎湖縣湖西鄉</td>
<td>9817.15</td>
<td>113</td>
</tr>
<tr>
<td>大昇能源科技有限公司</td>
<td>鹿13</td>
<td>彰化縣鹿港鎮</td>
<td>1999.98</td>
<td>113</td>
</tr>
<tr>
<td>大福能源股份有限公司</td>
<td>大福北門太陽光電發電系統工程</td>
<td>臺南市北門區</td>
<td>21999.91</td>
<td>113</td>
</tr>
<tr>
<td>旭天能源股份有限公司</td>
<td>大愛感恩科技三重園區太陽光電發電設備</td>
<td>新北市三重區</td>
<td>1059.80</td>
<td>113</td>
</tr>
<tr>
<td>沅碁光電股份有限公司</td>
<td>沅碁高雄1廠</td>
<td>高雄市鳳山區</td>
<td>94.50</td>
<td>113</td>
</tr>
<tr>
<td>沅碁光電股份有限公司</td>
<td>沅碁高雄2廠</td>
<td>高雄市鳳山區</td>
<td>159.39</td>
<td>113</td>
</tr>
<tr>
<td>沅碁光電股份有限公司</td>
<td>沅碁高雄3廠</td>
<td>高雄市鳳山區</td>
<td>172.62</td>
<td>113</td>
</tr>
<tr>
<td>和潤電能股份有限公司</td>
<td>和潤電能一期和泰溪州廠</td>
<td>彰化縣溪州鄉</td>
<td>2799.79</td>
<td>113</td>
</tr>
<tr>
<td>和潤電能股份有限公司</td>
<td>彰化全森牧場案場</td>
<td>彰化縣芳苑鄉</td>
<td>398.97</td>
<td>113</td>
</tr>
<tr>
<td>恆參能源股份有限公司</td>
<td>恆參太陽能光電發電廠</td>
<td>臺南市山上區</td>
<td>781.20</td>
<td>113</td>
</tr>
<tr>
<td>玖基企業股份有限公司</td>
<td>玖基東園國小太陽能電廠</td>
<td>台中市烏日區</td>
<td>66.99</td>
<td>113</td>
</tr>
<tr>
<td>偉澄有限公司</td>
<td>偉澄嘉義1號</td>
<td>嘉義市西區嘉</td>
<td>443.52</td>
<td>113</td>
</tr>
<tr>
<td>偉澄有限公司</td>
<td>偉澄嘉義2號</td>
<td>嘉義市西區嘉</td>
<td>871.68</td>
<td>113</td>
</tr>
<tr>
<td>偉澄有限公司</td>
<td>偉澄嘉義3號</td>
<td>嘉義縣溪口鄉</td>
<td>298.80</td>
<td>113</td>
</tr>
<tr>
<td>茂信能源股份有限公司</td>
<td>茂信太陽能電廠</td>
<td>雲林縣口湖鄉</td>
<td>90379.84</td>
<td>113</td>
</tr>
<tr>
<td>泓錠能源股份有限公司</td>
<td>屏東退輔會(二期)太陽光電發電廠</td>
<td>屏東縣竹田鄉</td>
<td>205.57</td>
<td>113</td>
</tr>
<tr>
<td>泓錠能源股份有限公司</td>
<td>屏東退輔會太陽光電發電廠</td>
<td>屏東縣竹田鄉</td>
<td>294.33</td>
<td>113</td>
</tr>
<tr>
<td>全利能源實業股份有限公司</td>
<td>全利能源一號電廠(第一機組)</td>
<td>屏東縣新園鄉</td>
<td>438.00</td>
<td>113</td>
</tr>
<tr>
<td>全利能源實業股份有限公司</td>
<td>全利能源一號電廠(第二機組)</td>
<td>屏東縣新園鄉</td>
<td>438.00</td>
<td>113</td>
</tr>
<tr>
<td>全利能源實業股份有限公司</td>
<td>全利能源一號電廠(第三機組)</td>
<td>屏東縣新園鄉</td>
<td>438.00</td>
<td>113</td>
</tr>
<tr>
<td>全利能源實業股份有限公司</td>
<td>全利能源一號電廠(第四機組)</td>
<td>屏東縣新園鄉</td>
<td>438.00</td>
<td>113</td>
</tr>
<tr>
<td>帝崴電力股份有限公司</td>
<td>帝崴台北港屋頂型太陽光電發電廠</td>
<td>新北市八里區</td>
<td>2960.72</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電彰化1廠</td>
<td>彰化縣芳苑鄉</td>
<td>1100.40</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電彰化2廠</td>
<td>彰化縣芳苑鄉</td>
<td>383.60</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電台南1廠</td>
<td>臺南市北門區</td>
<td>499.60</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電台南2廠</td>
<td>臺南市北門區</td>
<td>499.60</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電台南3廠</td>
<td>臺南市北門區</td>
<td>499.60</td>
<td>113</td>
</tr>
<tr>
<td>新光電力科技股份有限公司</td>
<td>新電台南4廠</td>
<td>臺南市北門區</td>
<td>167.60</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台中1廠</td>
<td>臺中市潭子區</td>
<td>398.97</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台中2廠</td>
<td>臺中市梧棲區</td>
<td>495.00</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台中3廠</td>
<td>臺中市清水區</td>
<td>1393.92</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台中4廠</td>
<td>臺中市霧峰區</td>
<td>494.70</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克屏東1廠</td>
<td>屏東縣高樹鄉</td>
<td>499.12</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克屏東2廠</td>
<td>屏東縣高樹鄉</td>
<td>499.12</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克屏東3廠</td>
<td>屏東縣高樹鄉</td>
<td>349.52</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台南1廠</td>
<td>臺南市白河區</td>
<td>436.59</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台南2廠</td>
<td>臺南市官田區</td>
<td>488.40</td>
<td>113</td>
</tr>
<tr>
<td>維特克能源有限公司</td>
<td>維特克台東1廠</td>
<td>臺東縣臺東市</td>
<td>498.30</td>
<td>113</td>
</tr>
<tr>
<td>向陽多元光電股份有限公司</td>
<td>向陽多元義竹1-1期溫室科技養殖結合太陽光電發電廠</td>
<td>嘉義縣義竹鄉</td>
<td>7745.20</td>
<td>113</td>
</tr>
<tr>
<td>亮崴電力股份有限公司</td>
<td>亮崴台中港屋頂型太陽光電發電業</td>
<td>臺中市龍井區</td>
<td>4066.40</td>
<td>113</td>
</tr>
<tr>
<td>晁星能源股份有限公司</td>
<td>將軍山子腳2287太陽光電發電廠</td>
<td>臺南市將軍區</td>
<td>46.80</td>
<td>113</td>
</tr>
<tr>
<td>永唐有限公司</td>
<td>永唐台水湖山淨水場太陽光電發電廠</td>
<td>雲林縣斗六市</td>
<td>4180.37</td>
<td>113</td>
</tr>
<tr>
<td>永唐有限公司</td>
<td>永唐台水雲林給水廠前處理場太陽光電發電廠</td>
<td>雲林縣林內鄉</td>
<td>4395.30</td>
<td>113</td>
</tr>
<tr>
<td>京隼一綠能股份有限公司</td>
<td>光和段357地號(一期)太陽光電發電廠</td>
<td>台南市左鎮區</td>
<td>497.70</td>
<td>113</td>
</tr>
<tr>
<td>京隼一綠能股份有限公司</td>
<td>光和段357地號(二期)太陽光電發電廠</td>
<td>台南市左鎮區</td>
<td>498.96</td>
<td>113</td>
</tr>
<tr>
<td>京隼一綠能股份有限公司</td>
<td>光和段357地號(三期)太陽光電發電廠</td>
<td>台南市左鎮區</td>
<td>498.96</td>
<td>113</td>
</tr>
<tr>
<td>暮光能源股份有限公司</td>
<td>永冠臺中龍井區屋頂型太陽光電發電廠</td>
<td>台中市龍井區</td>
<td>7865.10</td>
<td>113</td>
</tr>
<tr>
<td>亞惟股份有限公司</td>
<td>PD2037維勝鋼鐵太陽光電發電業</td>
<td>屏東縣崁頂鄉</td>
<td>3671.10</td>
<td>113</td>
</tr>
<tr>
<td>新威光電股份有限公司</td>
<td>新光鋼新澄物流觀音廠太陽光電發電廠</td>
<td>桃園市觀音區</td>
<td>2730.20</td>
<td>113</td>
</tr>
<tr>
<td>樺良企業股份有限公司</td>
<td>樺良彰化1廠</td>
<td>彰化縣大村鄉</td>
<td>1099.86</td>
<td>113</td>
</tr>
</table>
公司名稱 發電廠名稱 所在縣市 裝置容量(瓩) 商轉年度
嘉南實業股份有限公司 烏山頭水力發電廠 臺南市官田區 8750 91
嘉南實業股份有限公司 西口水力發電廠 臺南市官田區 11520 96
嘉南實業股份有限公司 八田水力發電廠 臺南市官田區 2196 106
名間電力股份有限公司 名間水力發電廠 南投縣名間鄉 16704 97
聚電企業開發股份有限公司 卑南小水力發電廠 臺東縣卑南鄉 1980 93
經一綠能股份有限公司 台東關山圳導水路及沉砂池發電廠 臺東縣海端鄉 1000 109
公司名稱 發電廠名稱 所在縣市 裝置容量(瓩) 商轉年度
森勁電力股份有限公司 森勁一期 臺中巿西屯區 9229.82 102
森勁電力股份有限公司 森勁二期 臺中巿西屯區 4132.44 103
森勁電力股份有限公司 森勁三期 臺中市后里區 3011.04 104
森勁電力股份有限公司 森勁四期 臺中市后里區 4624.24 105
森勁電力股份有限公司 森勁五期(中區配水池) 臺中市大雅區 1878.24 106
森勁電力股份有限公司 森勁五期(后里園區配水池) 臺中市后里段 1472.64 106
森勁電力股份有限公司 森勁六期(澎湖監獄) 澎湖縣湖西鄉 1393.26 108
森勁電力股份有限公司 森勁七期(中正預校太陽光電發電廠) 高雄市鳳山區 7015.14 108
昱鼎電業股份有限公司 高捷大寮機廠(屋頂型) 高雄市大寮區 2106.07 104
昱鼎電業股份有限公司 高鐵燕巢總機廠(屋頂型) 高雄市燕巢區 3356.74 104
昱鼎電業股份有限公司 高鐵烏日基地第一型太陽能電廠 臺中市烏日區 577.63 104
昱鼎電業股份有限公司 高捷北機廠第一型太陽能電廠 高雄市橋頭區 828.24 104
昱鼎電業股份有限公司 台北捷運北投機廠太陽光電發電廠 台北市北投區 3797.28 108
昱鼎電業股份有限公司 台北自來水長興淨水場太陽光電系統 台北市大安區 2136.96 109
昱鼎電業股份有限公司 新營掩埋場二號太陽光電發電廠 台南市新營區、鹽水區 4262.16 111
昱鼎電業股份有限公司 桃捷青埔機廠太陽光電發電廠 桃園市大園區 3600.35 112
昱鼎電業股份有限公司 新營掩埋場1號太陽光電發電廠 臺南市新營區 2126.36 112
摩特電力股份有限公司 太陽能發電摩特一廠電廠 彰化縣大村鄉 845.10 104
廣進矽能電力股份有限公司 太陽能發電系統萬金一號電廠 屏東縣萬巒鄉 688.20 102
新天然電力股份有限公司(前高屏矽能電力股份有限公司) 豐盛一號 屏東縣里港鄉 691.20 101
新天然電力股份有限公司(前高屏矽能電力股份有限公司) 里港一號 屏東縣里港鄉 60.00 101
新天然電力股份有限公司(前高屏矽能電力股份有限公司) 鹽埔一號 屏東縣鹽埔鄉 72.00 101
冠威電力股份有限公司(前台灣矽能電力股份有限公司) 漢寶二號 屏東縣里港鄉 384.00 101
永勁電力股份有限公司 永勁太陽光電發電廠一期 新竹市科技段 550.55 105
永勁電力股份有限公司 永勁太陽光電發電廠二期 臺南市安南區 3369.60 106
永勁電力股份有限公司 永勁太陽光電發電廠三期 高雄市路竹區 1023.36 106
永勁電力股份有限公司 永勁太陽光電發電廠四期 桃園市龜山區 1646.28 106
永勁電力股份有限公司 永勁太陽光電發電廠五期 桃園市龍潭區 3957.24 106
永勁電力股份有限公司 永勁太陽光電發電廠六期 桃園市 9868.32 106
大聚電業股份有限公司 大亞電線電纜第一型太陽能電廠 臺南市關廟區 2392.25 105
全利成電力股份有限公司 全利成一號電廠 屏東縣潮州鎮 1231.65 105
全利成電力股份有限公司 全利成二號電廠(屋頂型) 屏東縣新園鄉 3519.700 110
全利成電力股份有限公司 全利成三號電廠(屋頂型) 嘉義縣大林鎮 1561.60 110
台灣速力太陽能源股份有限公司 台灣速力口湖發電廠 雲林縣口湖鄉 4998.00 107
台灣速力太陽能源股份有限公司 台灣速力口湖發電廠-第二機組 雲林縣口湖鄉 4549.68 109
台灣速力太陽能源股份有限公司 台灣速力口湖發電廠-第三機組 雲林縣口湖鄉 4984.00 109
旭孝電力股份有限公司 旭孝一期太陽能電廠 台中市大雅區 2802.50 107
博碩電業股份有限公司 群創光電第一型太陽能電廠 台南市新市區 5546.10 107
亞通電力股份有限公司 新竹三陽工業屋頂型太陽光電發電廠 新竹縣湖口鄉 5860.80 108
亞通電力股份有限公司 新竹三陽工業車棚區太陽光電發電廠 新竹縣湖口鄉 1357.20 108
同陽能源股份有限公司 華映龍潭廠屋頂型太陽光電系統 桃園市龍潭區 2620.80 108
同陽能源股份有限公司 台北大眾捷運公司-土城機廠(屋頂型) 新北市板橋區 4999.830 111
同陽能源股份有限公司 台北大眾捷運公司-蘆洲機廠(屋頂型) 新北市蘆洲區 2993.760 111
同陽能源股份有限公司 後龍水尾滯洪池水面型太陽光電系統 苗栗縣後龍鎮 9626.76 111
同陽能源股份有限公司 臺北大眾捷運股份有限公司-新莊機廠屋頂型太陽光電發電系統 新北市新莊區 3599.64 112
愛弼士能源股份有限公司 風之谷太陽光電發電廠 台南市新市區 4023.00 108
弘泰電力股份有限公司 群創光電_竹南廠T2棟廠房屋頂太陽能發電廠 苗栗縣竹南鎮 4882.25 108
映暉能源有限公司 映暉能源2-1期太陽光電發電廠 雲林縣台西鄉 2192.40 108
映暉能源有限公司 映暉能源3-1期太陽光電發電廠 雲林縣台西鄉 1612.80 108
映暉能源有限公司 映暉能源第一期太陽光電發電廠 雲林縣口湖鄉 4387.20 109
映暉能源有限公司 映暉能源第6-1期太陽光電發電廠 雲林縣四湖鄉 1461.600 111
映暉能源有限公司 映暉能源第7-1期太陽光電發電廠 雲林縣口湖鄉 1184.400 111
映暉能源有限公司 映暉能源第2-2期太陽光電發電廠 雲林縣台西鄉 630.000 111
廣鑫能源股份有限公司 廣鑫臺中三井Outlet太陽能發電所 台中市梧棲區 4532.51 108
華洋電業開發股份有限公司 億升新豐廠B棟太陽光電發電廠 新竹縣新豐鄉 897.00 108
華洋電業開發股份有限公司 桃園大圳8-20號埤塘太陽光電發電廠 桃園市觀音區 2980.80 108
華洋電業開發股份有限公司 桃園大圳4-6號埤塘太陽光電發電廠 桃園市大園區 4637.52 108
華洋電業開發股份有限公司 桃園大圳8-24號埤塘太陽光電發電廠 桃園市觀音區 4186.08 108
華洋電業開發股份有限公司 桃園大圳8-19號埤塘太陽光電發電廠 桃園市大園區 1764.00 108
華洋電業開發股份有限公司 力麗企業廠房屋頂太陽光電發電廠 彰化縣芳苑鄉 2499.00 108
富崴能源股份有限公司 權聖太陽光電廠(三轉一) 台南市安南區 154.64 108
成勁電力股份有限公司 成勁一期臺南關廟太陽光電發電廠 台南市關廟區 3483.48 108
成勁電力股份有限公司 成勁二期彰化大葉屋頂型太陽光電發電廠 彰化縣大村鄉 3876.18 108
成勁電力股份有限公司 成勁三期雲林口湖地面型太陽光電發電廠 雲林縣口湖鄉 1990.80 110
成勁電力股份有限公司 成勁四期空軍防空暨飛彈指揮部太陽光電發電廠 台南市仁德區 5455.560 112
昇甫電業股份有限公司 昇甫電業第一型太陽能發電廠 屏東縣鹽埔鄉 1039.80 108
得禾能源股份有限公司 台東國源汽車二期太陽光電發電電廠 臺東縣臺東市 29.40 108
得禾能源股份有限公司 台南一期電廠(屋頂型) 台南市新營區 7.44 109
得禾能源股份有限公司 台南二期電廠(屋頂型) 台南市新營區 7.44 109
得禾能源股份有限公司 台中一期電廠TW190991(屋頂型) 台中市大甲區 687.93 110
得禾能源股份有限公司 雲林一期太陽光電發電廠(屋頂型) 雲林縣林內鄉 88.04 110
得禾能源股份有限公司 彰化有鴻工業太陽光電發電廠 彰化縣線西鄉 497.86 110
得禾能源股份有限公司 屏南京沅鎢業太陽光電發電計畫(屋頂型) 屏東縣枋寮鄉 846.630 110
得禾能源股份有限公司 屏東一期TW190986太陽光電發電廠 屏東縣萬丹鄉 7.440 111
得禾能源股份有限公司 屏東二期TW190986太陽光電發電廠 屏東縣萬丹鄉 7.440 111
得禾能源股份有限公司 岡山融嘉泰TW190993太陽光電發電廠(屋頂型) 高雄市岡山區 399.280 111
得禾能源股份有限公司 新營大昶貿易TW190997太陽光電發電廠 台南市新營區 242.400 111
得禾能源股份有限公司 高雄家樂實業TW190996太陽光電發電廠 高雄市彌陀區 146.200 112
得禾能源股份有限公司 北科附工(一期)太陽光電發電廠 桃園市桃園區 1039.04 112
得禾能源股份有限公司 北科附工(二期)太陽光電發電廠 桃園市桃園區 1490.56 112
得禾能源股份有限公司 岡山日出畜牧場太陽光電發電廠 高雄市岡山區 856.98 112
得禾能源股份有限公司 新營壯安公司 臺南市新營區 241.61 112
得禾能源股份有限公司 I-IP21-001新化廣停五停車場太陽光電發電廠 臺南市新化區 107.44 112
得禾能源股份有限公司 I-AR21-001三和國小 嘉義縣大林鎮 167.28 113
得禾能源股份有限公司 I-AR21-008中埔國中 嘉義縣中埔鄉 243.78 113
得禾能源股份有限公司 I-AR21-013六美國小 嘉義縣六腳鄉 306.34 113
得禾能源股份有限公司 I-AR21-039民雄國小 嘉義縣民雄鄉 283.90 113
得禾能源股份有限公司 I-AR21-085下潭國小 嘉義縣鹿草鄉 335.58 113
得禾能源股份有限公司 南港輪胎TW190982(一期)太陽光電發電廠 新竹縣新豐鄉 3247.38 113
得禾能源股份有限公司 I-AR21-054內埔國小太陽光電發電廠 嘉義縣竹崎鄉 394.74 113
得禾能源股份有限公司 I-AR21-087後塘國小太陽光電發電廠 嘉義縣鹿草鄉 160.48 113
得禾能源股份有限公司 I-AR21-128大林國小二期太陽光電發電廠 嘉義縣大林鎮 193.80 113
得禾能源股份有限公司 I-AR21-138民雄國中二期太陽光電發電廠 嘉義縣民雄鄉 64.26 113
得禾能源股份有限公司 I-AR21-106光榮國小太陽光電發電廠 嘉義縣義竹鄉 102.34 113
得禾能源股份有限公司 I-AR21-127布袋國小太陽光電發電廠 嘉義縣布袋鎮 172.72 113
得禾能源股份有限公司 I-AR21-002大林國小一期太陽光電發電廠 嘉義縣大林鎮 124.44 113
得禾能源股份有限公司 I-AR21-003大林國中太陽光電發電廠 嘉義縣大林鎮 498.78 113
得禾能源股份有限公司 I-AR21-005社團國小太陽光電發電廠 嘉義縣大林鎮 60.52 113
得禾能源股份有限公司 I-AR21-117義竹國小_信義分校太陽光電發電廠 嘉義縣義竹鄉 117.98 113
得禾能源股份有限公司 I-AR21-037大吉國中太陽光電發電廠 嘉義縣民雄鄉 233.92 113
得禾能源股份有限公司 I-AR21-135朴子國中二期太陽光電發電廠 嘉義縣朴子市 229.84 113
全利發電力股份有限公司 全利發1號電廠 高雄市岡山區 974.61 109
鑫光電能有限公司 新光紡織太陽光電系統 桃園市大溪區 4968.00 109
台泥綠能股份有限公司 台泥彰濱太陽光電發電系統工程 彰化縣線西鄉 10078.42 109
台灣艾貴太陽能源股份有限公司 台灣艾貴義竹太陽光電發電廠 嘉義縣義竹鄉 70200.00 109
鴻元工程顧問有限公司 第三型轉第一型再生能源發電設備 高雄市鳳山區 15.00 108
茂盛電業股份有限公司 臺南市台南地區農會怡安果菜市場第二期太陽能電廠 臺南市安南區 2317.20 109
曄恆能源股份有限公司 曄恆嘉義縣鹽業用地一期太陽光電發電廠 嘉義縣布袋鎮 19999.20 109
昊陽電業股份有限公司 昊陽一號太陽光電發電廠 臺南市北門區 1940.40 109
昊陽電業股份有限公司 昊陽二號太陽光電發電廠 臺南市北門區 1249.61 110
心忠電業股份有限公司 心忠學甲第一型太陽光電發電廠 台南市學甲區 75969.600 110
中租電力科技股份有限公司 中租電力科技一號電廠(屋頂型) 高雄市永安區 5493.60 109
中租電力科技股份有限公司 帝寶工業新營廠房屋頂太陽光電發電廠設置計畫(屋頂型) 台南市新營區 2488.370 110
中租電力科技股份有限公司 中租電力漢翔沙北#11#13廠房屋頂型太陽光電發電廠 台中市沙鹿區 5267.275 111
中租電力科技股份有限公司 中租電力五甲尾滯洪池太陽光電發電廠 高雄市岡山區 4999.200 112
中租電力科技股份有限公司 臺南市臺南地區農會果菜批發市場第三期太陽光電發電系統 臺南市安南區 1074.48 112
中租電力科技股份有限公司 盟鑫工業股份有限公司屋頂型太陽光電廠 臺中市梧棲區 3890.96 112
中租電力科技股份有限公司 大成畜牧場太陽光電廠 台南市官田區 8268.39 113
永宙太陽能電力股份有限公司 永宙一期口湖段太陽光電系統發電計畫 雲林縣口湖鄉 9553.20 109
永宙太陽能電力股份有限公司 永宙一期口湖段太陽光電系統發電計畫(第二階段) 雲林縣口湖鄉 13132.80 109
永宙太陽能電力股份有限公司 永宙一期口湖段太陽光電系統發電計畫(第三階段) 雲林縣口湖鄉 934.8 110
永宙太陽能電力股份有限公司 永宙1-2期口湖段太陽光電系統發電計畫 雲林縣口湖鄉 1333.80 110
永宙太陽能電力股份有限公司 永宙1-2期口湖段太陽光電系統發電計畫(第二階段) 雲林縣口湖鄉 832.2 110
永宙太陽能電力股份有限公司 永宙1-3期口湖段太陽光電系統發電計畫 雲林縣口湖鄉 5107.20 110
永宙太陽能電力股份有限公司 永宙1-3期口湖段太陽光電系統發電計畫(第二階段) 雲林縣口湖鄉 3157.80 110
永宙太陽能電力股份有限公司 永宙1-4期口湖段太陽光電系統發電計畫 雲林縣口湖鄉 5939.40 110
恆伍能源股份有限公司 恆伍第一期太陽光電發電廠 屏東縣長治鄉 1399.68 109
恆陸能源股份有限公司 恆陸第一期太陽光電發電廠 屏東縣長治鄉 968.96 109
首美電一股份有限公司 首美大東太陽光電發電系統工程 桃園市中壢區 1064.45 109
東徽電力股份有限公司 東徽電力嘉義大埔美屋頂型太陽光電發電廠 嘉義縣大林鎮 6500.16 109
東徽電力股份有限公司 東徽電力嘉義大埔美廠房屋頂第二期太陽光電發電廠 嘉義縣大林鎮 599.900 111
兆洋股份有限公司 兆洋台船太陽能發電廠(屋頂型) 高雄市小港區 13837.16 109
祐達能源有限公司 三新紡織--祐達屋頂型太陽光電發電廠 臺南市永康區 1994.40 109
東元旭能股份有限公司 東元旭能股份有限公司太陽能發電廠(屋頂型) 桃園市觀音區 491.40 109
銧昊股份有限公司 銧昊第一期太陽能電廠 屏東縣新埤鄉 1884.18 109
名竣能源股份有限公司 臺南柳營蔡文瑞太陽光電發電廠(屋頂型) 臺南市柳營區 12.40 109
奇美綠能股份有限公司 奇美綠能園區地面型太陽光電發電廠(第一期) 台南市善化區 8532.00 110
奇美綠能股份有限公司 奇美綠能園區地面型太陽光電發電廠(第二期) 台南市善化區 6740.28 110
泰一能源科技有限公司 屏東鹽埔太陽光電發電廠 屏東縣鹽埔鄉 1949.56 110
昊軒電業股份有限公司 昊軒一號太陽光電發電廠 台南市後壁區 898.530 110
昱鼎能源科技開發股份有限公司 台南市環保局菁寮掩埋場(三轉一)(屋頂型) 台南市後壁區 849.40 110
昱鼎能源科技開發股份有限公司 台中港公共倉儲太陽光電發電業 台中市梧棲區 815.850 112
昱鼎能源科技開發股份有限公司 台中港旅客服務中心停車場屋頂太陽光電發電業 台中市梧棲區 1692.420 112
昱鼎能源科技開發股份有限公司 高雄港68號碼頭(高雄港第三貨櫃中心-1、2、3)太陽光電發電業 高雄市前鎮區 652.05 112
昱鼎能源科技開發股份有限公司 高雄港二櫃63倉太陽光電發電業 高雄市前鎮區 703.08 112
昱鼎能源科技開發股份有限公司 高雄港二櫃66倉太陽光電發電業 高雄市前鎮區 1487.49 112
昱鼎能源科技開發股份有限公司 嘉義布袋港太陽光電發電業 嘉義縣布袋鎮 1099.56 112
昱鼎能源科技開發股份有限公司 嘉義竹崎掩埋場太陽光電發電業 嘉義縣竹崎鄉 1776.02 112
泓德能源科技股份有限公司 「星星電力-YL南波萬」第三型太陽光電發電設備轉第一型發電業(屋頂型) 雲林縣斗六市 1259.52 110
泓德能源科技股份有限公司 臺南市柳營區大農里環園西路2段25號建物屋頂太陽光電發電設備(星星電力-柳營1號屋頂型太陽光電系統)(屋頂型三轉一) 台南市柳營區 499.500 110
燦宇能源股份有限公司 燦宇2期新吉段太陽光電發電廠發電計畫 雲林縣麥寮鄉 3990.00 110
燦宇能源股份有限公司 燦宇3期新吉段太陽光電發電廠發電計畫 雲林縣麥寮鄉 4651.20 110
辰亞電力股份有限公司 崙尾東一號電廠 彰化縣鹿港鎮 88038.72 110
厚固光電股份有限公司 崙尾東二號電廠 彰化縣鹿港鎮 92979.81 110
台康日能科技股份有限公司 台康日能嘉義公館太陽光電發電系統工程 嘉義縣中埔鄉 4363.92 110
台康日能科技股份有限公司 台康日能嘉義溪墘太陽光電發電系統工程(第一期第一階段) 嘉義縣布袋鎮菜 2765.880 111
台康日能科技股份有限公司 台康日能嘉義溪墘太陽光電發電系統工程(第一期第二、三階段) 嘉義縣布袋鎮、義竹鄉 18532.80 111
台康日能科技股份有限公司 台康日能典寶溪D區太陽光電發電系統工程) 高雄市橋頭區 4085.64 111
台康日能科技股份有限公司 台康萬興四放太陽光電發電系統工程(水面型) 彰化縣二林鎮 32600.88 111
佳冬能源股份有限公司 佳冬能源第一期太陽光電發電廠 屏東縣內埔鄉 1985.61 110
禾迅一號股份有限公司 禾迅一號台南學甲太陽光電發電系統工程(第一期第一階段) 台南市學甲區 37421.48 110
禾迅一號股份有限公司 禾迅一號台南學甲太陽光電發電系統工程(第一期第二階段) 台南市北門區 11142.95 111
禾迅一號股份有限公司 禾迅一號台南鹽水太陽光電發電系統工程 台南市鹽水區、新營區 6497.04 111
天璣智慧能源股份有限公司 天璣第一期太陽能電廠 屏東縣佳冬鄉 418.500 110
天璣智慧能源股份有限公司 天璣第二期(第1-1階段)太陽能電廠 屏東縣佳冬鄉 3360.400 110
天璣智慧能源股份有限公司 天璣第二期(第2-1階段)太陽能電廠 屏東縣佳冬鄉 5865.200 110
天璣智慧能源股份有限公司 天璣第二期(第3-1階段)太陽能電廠 屏東縣佳冬鄉 1184.200 110
天璣智慧能源股份有限公司 天璣第三期(第一階段)太陽能電廠 屏東縣佳冬鄉 2002.600 110
天璣智慧能源股份有限公司 天璣第四期(第一階段)太陽能電廠 屏東縣佳冬鄉 1450.800 110
天璣智慧能源股份有限公司 天璣第二期(第1-2階段)太陽能電廠 屏東縣佳冬鄉 5226.600 111
天璣智慧能源股份有限公司 天璣第二期(第2-2階段)太陽能電廠 屏東縣佳冬鄉 458.800 111
天璣智慧能源股份有限公司 天璣第二期(第3-2階段)太陽能電廠 屏東縣佳冬鄉 3614.600 111
天璣智慧能源股份有限公司 天璣第二期(第4階段)太陽能電廠 屏東縣佳冬鄉 8853.600 111
天璣智慧能源股份有限公司 天璣第三期(第2階段)太陽能電廠 屏東縣佳冬鄉 868.930 111
天璣智慧能源股份有限公司 天璣第四期(第2階段)太陽能電廠 屏東縣佳冬鄉 2746.600 111
天璣智慧能源股份有限公司 天璣第五期太陽能電廠 屏東縣佳冬鄉 1721.120 111
光合能源股份有限公司 新塭南、北側滯洪池水域型太陽光電發電廠 嘉義縣布袋鎮 35513.28 110
天機電力股份有限公司 雲林麥寮太陽光電發電廠(一期)-1 雲林縣麥寮鄉 26448.00 110
天機電力股份有限公司 雲林麥寮太陽光電發電廠二期 雲林縣麥寮鄉 5995.44 112
裕隆汽車製造股份有限公司 裕隆汽車三義廠第四期太陽光電發電廠 苗栗縣三義鄉 2400.13 110
裕隆汽車製造股份有限公司 裕隆汽車三義廠第五、六之一期太陽光電發電廠-第五期 苗栗縣三義鄉 2128.40 112
裕隆汽車製造股份有限公司 裕隆汽車三義廠第五、六期太陽光電發電廠 苗栗縣三義鄉 648.38 112
裕隆汽車製造股份有限公司 裕隆汽車三義廠第五、六之一期太陽光電發電廠-第6-1期 苗栗縣三義鄉 2684.64 112
裕隆汽車製造股份有限公司 裕隆汽車三義廠第六之二期太陽光電發電廠 苗栗縣三義鄉 1704.76 113
禧壹股份有限公司 亞德客太陽光電發電系統(屋頂型) 臺南市新市區 672.700 110
台灣速力綠能股份有限公司 速力綠能芳苑發電廠-第一機組 彰化縣芳苑鄉 4680.000 110
台灣速力綠能股份有限公司 速力綠能芳苑發電廠-第二機組 彰化縣芳苑鄉 3487.500 110
城市發展電業股份有限公司 屏東林邊鎮安太陽光電發電廠(第一期) 屏東縣林邊鄉 6763.680 110
日晶能源科技有限公司 嘉義縣東石鄉栗子崙段388地號太陽光電發電廠 嘉義縣東石鄉 296.475 110
日晶能源科技有限公司 嘉義縣東石鄉栗子崙段388地號(二期)地面型太陽光電發電廠 嘉義縣東石鄉 458.625 111
綠點能享有限公司 臺北天龍一號 台北市內湖區 48.800 111
綠點能享有限公司 高雄港都15號(高雄市左營區大中二路39號建築物屋頂型太陽光電發電設備) 高雄市左營區 270.32 111
綠點能享有限公司 嘉義阿里13號(嘉義縣民雄鄉三興村升學一街 嘉義縣民雄鄉 366.73 111
綠點能享有限公司 台中太陽餅35號 台中市梧棲區 429.18 112
聯邦電力股份有限公司 聯邦電力高樹鄉太陽光電發電廠 屏東縣高樹鄉 1079.090 111
得禾二能源有限公司 台南女中TW190992太陽光電發電廠(屋頂型) 台南市中西區 481.600 111
得禾二能源有限公司 南科聯亞一廠太陽光電發電廠 台南市善化區 132.60 113
得禾二能源有限公司 南科聯亞二廠太陽光電發電廠 台南市善化區 417.86 113
桃旭電力股份有限公司 東和鋼鐵桃園廠太陽光電發電廠(屋頂型) 桃園市觀音區 2906.345 111
桃旭電力股份有限公司 正隆燕巢屋頂型太陽光電發電廠 高雄市燕巢區 4328.61 111
天權智慧能源股份有限公司 天權第一期(第一階段)太陽能電廠 屏東縣佳冬鄉 5118.72 111
天權智慧能源股份有限公司 天權第一期(第二階段)太陽能電廠 屏東縣佳冬鄉 13047.59 111
天權智慧能源股份有限公司 天權第一期(第三階段)太陽能電廠 屏東縣佳冬鄉 238.70 111
天權智慧能源股份有限公司 天權第二期(第一階段)太陽能電廠 屏東縣佳冬鄉 1526.13 111
天權智慧能源股份有限公司 天權第二期(第二階段)太陽能電廠 屏東縣佳冬鄉 830.18 111
天權智慧能源股份有限公司 天權第三期(第一階段)太陽能電廠 屏東縣佳冬鄉 3603.44 111
天權智慧能源股份有限公司 天權第三期(第二階段)太陽能電廠 屏東縣佳冬鄉 226.92 111
玉衡智慧能源股份有限公司 玉衡第一期(第一階段)太陽能電廠 屏東縣佳冬鄉 11069.79 111
玉衡智慧能源股份有限公司 玉衡第一期(第二階段)太陽能電廠 屏東縣佳冬鄉 6358.72 111
玉衡智慧能源股份有限公司 玉衡第一期(第三階段)太陽能電廠 屏東縣佳冬鄉 3305.53 111
玉衡智慧能源股份有限公司 玉衡第二期太陽能電廠 屏東縣佳冬鄉 2748.46 111
玉衡智慧能源股份有限公司 玉衡第三期太陽能電廠 屏東縣佳冬鄉 3305.53 111
富迪能源股份有限公司 高雄市小港春源鋼鐵屋頂型太陽能光電廠 高雄市小港區 1999.80 111
富迪能源股份有限公司 健馨養護中心案場 彰化縣鹿港鎮 300.00 112
錸洋科技股份有限公司 桃園市平鎮區南平路2段539巷8、10號等屋頂太陽光電發電設備 桃園市平鎮區 70.395 111
錸洋科技股份有限公司 阿蓮區九鬮段1584地號 高雄市阿蓮區 1988.96 113
綠岩能源股份有限公司 綠岩電力一號 南投縣名間鄉 79.53 111
益揚電力股份有限公司 益揚電力永安一號電廠 高雄市永安區 1240.20 111
益揚電力股份有限公司 益揚電力永安二號電廠 高雄市永安區 1546.30 111
益揚電力股份有限公司 益揚電力路竹三號電廠 高雄市路竹區 4990.70 111
辰宇能源股份有限公司 臺中市清水區北堤路1之10號屋頂型太陽光電(風訓中心案場) 台中市清水區 321.16 111
辰宇能源股份有限公司 臺東縣臺東市大豐段542地號設置太陽能發電設備標租案 台東縣台東市 5000.00 111
辰宇能源股份有限公司 臺南中強光電屋頂型太陽能光電廠 台南市善化區 263.19 111
辰宇能源股份有限公司 雲林廖○風豬舍屋頂型太陽能光電廠 雲林縣二崙鄉 193.80 112
辰宇能源股份有限公司 林○明地面型太陽能光電案場 雲林縣台西鄉 446.16 112
辰宇能源股份有限公司 地層下陷區呂永清案場 雲林縣口湖鄉 454.30 112
辰宇能源股份有限公司 埔心鄉公所太平公墓案場 彰化縣埔心鄉 403.56 112
辰宇能源股份有限公司 埔心鄉公所第五公墓案場 彰化縣埔心鄉 499.72 112
辰宇能源股份有限公司 屏東環球購物中心案場 屏東縣屏東市 202.88 112
京承能源股份有限公司 臺中市豐原區豐原大道一段165號(台中八方夜市案場)屋頂型太陽能光電廠 台中市豐原區 729.120 112
京承能源股份有限公司 臺中市沙鹿區台灣大道七段200號(靜宜大學)屋頂型太陽光電廠 台中市沙鹿區 881.265 112
京承能源股份有限公司 雲林縣北港鎮金聯北港一期案場 雲林縣北港鎮 495.600 112
京承能源股份有限公司 雲林縣北港鎮金聯北港二期案場 雲林縣北港鎮 395.300 112
京承能源股份有限公司 雲林吳○文豬舍屋頂型太陽能光電廠 雲林縣元長鎮 146.320 112
京承能源股份有限公司 台南北門漁電共生 (資策會) 太陽能光電廠 台南市北門區 179.800 112
京承能源股份有限公司 林○毅地面型太陽光電案場 雲林縣台西鄉 137.28 112
京承能源股份有限公司 蔡○成地面型太陽光電案場 雲林縣台西鄉 400.40 112
京承能源股份有限公司 高雄三爺埤池999.6kWp水面型太陽光電案場 高雄市路竹區 999.60 112
京承能源股份有限公司 高雄下社埤池1600.2kWp水面型太陽光電案場 高雄市路竹區 1600.20 112
京承能源股份有限公司 先進複材屋頂型太陽光電案場(KHH-107PV1214) 高雄市小港區 499.00 112
京承能源股份有限公司 先進複材屋頂型太陽光電案場(KHH-107PV1259) 高雄市小港區 316.50 112
京承能源股份有限公司 台南市麻豆區金聯麻豆屋頂型太陽光電案場 臺南市麻豆區 226.56 112
京承能源股份有限公司 蔡○泉地面型太陽光電案場 雲林縣四湖鄉 245.96 112
京承能源股份有限公司 柯○丁地面型太陽光電案場 雲林縣四湖鄉 497.64 112
京承能源股份有限公司 台南市下營區大屯寮段豬舍一期 臺南市下營區 498.68 112
京承能源股份有限公司 台南市下營區大屯寮段豬舍二期 臺南市下營區 409.20 112
京承能源股份有限公司 台南市北門區溪底寮段雞舍 臺南市北門區 244.26 112
京承能源股份有限公司 嘉義縣義竹鄉東後寮段雞舍一期 嘉義縣義竹鄉 335.50 112
京承能源股份有限公司 嘉義縣義竹鄉東後寮段雞舍二期 嘉義縣義竹鄉 159.64 112
京承能源股份有限公司 高雄三爺埤二期291.6kWp水面型太陽光電案場 高雄市路竹區 291.60 113
天篷能源股份有限公司 天篷第一期(第一階段)太陽能電廠 台南市七股區 67852.80 111
天篷能源股份有限公司 天篷第一期(第二階段)太陽能電廠 台南市七股區 12127.20 111
豐照能源股份有限公司 豐照能源和泰汽車一期太陽光電發電廠 桃園市楊梅區 914.76 111
怡陽能源有限公司 霧峰1號-7.08KW 台中市霧峰區 7.08 111
雪山太陽能有限公司 雪山太陽光電發電廠 台南市七股區 1462.86 111
凱勤能源股份有限公司 凱勤能源第三期太陽能發電廠 桃園市大園區 932.40 111
凱勤能源股份有限公司 凱勤能源第一期太陽光電發電業(499.8kW) 桃園市大園區 499.80 112
凱勤能源股份有限公司 凱勤能源第二期太陽光電發電業(1499.4kW) 桃園市大園區 1499.40 113
存量能源股份有限公司 台中市梧棲區經三路51號(靖鎰案) 台中市梧棲區 356.40 111
存量能源股份有限公司 台中壯佳果案 台中市大甲區 999.90 112
存量能源股份有限公司 彰化全興創新GSK地面型 彰化縣伸港鄉 92.69 112
存量能源股份有限公司 彰化全興創新GSK屋頂型 彰化縣伸港鄉 403.86 112
存量能源股份有限公司 彰化漢青一期 彰化縣伸港鄉 99.90 112
存量能源股份有限公司 彰化漢青二期 彰化縣伸港鄉 51.60 112
東小南山太陽能股份有限公司 東小南山太陽光電發電廠 台南市北門區 926.64 111
生利能源股份有限公司 屏東枋寮太陽光電發電廠一期-1 屏東縣枋寮鄉 4001.31 111
生利能源股份有限公司 屏東枋寮第二期-1太陽光電發電廠 屏東縣枋寮鄉 2795.10 112
中鋼光能股份有限公司 中龍中心倉庫 台中市龍井區 991.20 111
中鋼光能股份有限公司 中龍扁鋼胚儲區 台中市龍井區 997.92 111
中鋼光能股份有限公司 中龍氧氣廠 台中市龍井區 347.76 111
中鋼光能股份有限公司 中龍除礦水電氣室 台中市龍井區 393.12 111
中鋼光能股份有限公司 中龍動力場 台中市龍井區 204.12 111
中鋼光能股份有限公司 中龍細石料RC屋頂 台中市龍井區 498.96 111
中鋼光能股份有限公司 中聯資中港廠 台中市龍井區 345.475 111
中鋼光能股份有限公司 中鴻鹿港廠 彰化縣鹿港鎮 4333.38 111
中鋼光能股份有限公司 中鋁廠區 高雄市小港區 3137.40 111
中鋼光能股份有限公司 中鋼88庫 高雄市小港區 982.08 111
中鋼光能股份有限公司 中聯資室內化儲區 高雄市小港區 476.16 111
中鋼光能股份有限公司 中聯資著磁料場 高雄市小港區 148.80 111
中鋼光能股份有限公司 中鴻酸鍍廠 高雄市小港區 1096.20 111
中鋼光能股份有限公司 中鋼廠區1 高雄市小港區 6798.60 111
中鋼光能股份有限公司 中鋼廠區2 高雄市小港區 4689.84 111
中鋼光能股份有限公司 中鋼廠區3 高雄市小港區 5784.18 111
中鋼光能股份有限公司 中鋼廠區4 高雄市小港區 6857.16 111
中鋼光能股份有限公司 中鋼廠區5 高雄市小港區 5384.280 111
中鋼光能股份有限公司 中龍室內備品儲區 台中市龍井區 702.44 112
中鋼光能股份有限公司 中龍耐火材料倉庫 台中市龍井區 702.44 112
中鋼光能股份有限公司 中龍煉鐵大樓 台中市龍井區 158.44 112
中鋼光能股份有限公司 中龍熱軋主電氣室 台中市龍井區 179.52 112
中鋼光能股份有限公司 中龍第一原水池 台中市龍井區 839.80 112
中鋼光能股份有限公司 扁鋼胚連鑄維護廠房 台中市龍井區 217.60 112
中鋼光能股份有限公司 中龍窄版改切工場 台中市龍井區 408.00 112
中鋼光能股份有限公司 中龍集塵灰倉庫 台中市龍井區 1338.24 112
中鋼光能股份有限公司 中龍熱軋精整 台中市龍井區 1285.88 112
中鋼光能股份有限公司 永光儲區 高雄市小港區 2396.52 112
中鋼光能股份有限公司 中碳C1倉庫 屏東縣枋寮鄉 153.720 112
中鋼光能股份有限公司 中碳C2倉庫 屏東縣枋寮鄉 133.920 112
中鋼光能股份有限公司 中碳修護工廠 屏東縣枋寮鄉 127.075 112
中鋼光能股份有限公司 中碳試驗工廠 屏東縣枋寮鄉 328.900 112
中鋼光能股份有限公司 中聯資中港廠RC屋頂 臺中市龍井區 52.36 112
中鋼光能股份有限公司 中聯資南堤廠 臺中市龍井區 609.28 112
中鋼光能股份有限公司 興達海基-1 高雄市茄萣區 498.96 112
中鋼光能股份有限公司 興達海基-2 高雄市茄萣區 438.48 112
中鋼光能股份有限公司 興達海基-3 高雄市茄萣區 438.48 112
中鋼光能股份有限公司 興達海基-4 高雄市茄萣區 498.96 112
中鋼光能股份有限公司 興達海基-5 高雄市茄萣區 342.24 112
中鋼光能股份有限公司 興達海基-6 高雄市茄萣區 431.52 112
中鋼光能股份有限公司 興達海基-7 高雄市茄萣區 128.52 112
中鋼光能股份有限公司 興達海基-8 高雄市茄萣區 408.24 112
中鋼光能股份有限公司 興達海基電氣倉庫 高雄市茄萣區 198.00 112
中鋼光能股份有限公司 中心倉庫(A庫) 高雄市小港區 467.2 112
中鋼光能股份有限公司 中央修護場-1 高雄市小港區 175.68 112
中鋼光能股份有限公司 中央修護場-2 高雄市小港區 467.28 112
中鋼光能股份有限公司 中央修護場-3 高雄市小港區 396.48 112
中鋼光能股份有限公司 中林儲區 高雄市小港區 860.20 112
中鋼光能股份有限公司 南站80000T原水池&VC-1F03原水池 高雄市小港區 897.60 112
中鋼光能股份有限公司 鋼板工場01庫-1 高雄市小港區 495.60 112
中鋼光能股份有限公司 鋼板工場01庫-2 高雄市小港區 495.60 112
中鋼光能股份有限公司 鋼板工場01庫-3 高雄市小港區 184.08 112
中鋼光能股份有限公司 中龍熱軋軋輥廠房 臺中市龍井區 430.44 112
中鋼光能股份有限公司 中龍型鋼成品H4庫 臺中市龍井區 954.72 112
中鋼光能股份有限公司 中龍熱軋成品D7庫 臺中市龍井區 837.08 112
中鋼光能股份有限公司 中龍熱軋成品D3庫 臺中市龍井區 1289.28 112
旭信電力股份有限公司 旭信電力宜蘭廠 宜蘭縣五結鄉 1474.20 111
承隆能源科技股份有限公司 高雄大社區旗楠路80巷66號屋頂型太陽光電發電設備 高雄市大社區 244.555 111
新埔太陽能有限公司 新埔太陽光電發電廠 台南市七股區 999.495 111
環台光電股份有限公司 環台彰濱銀泰廠房屋頂太陽光電發電廠 彰化縣鹿港鎮 4059.27 111
環台光電股份有限公司 承煒實業廠房屋頂太陽光電發電廠 臺中市神岡區 498.00 112
環台光電股份有限公司 南投永新段案地面型太陽光電發電廠 南投縣南投市 499.62 113
環台光電股份有限公司 環台_苗栗高埔案地面型太陽光電發電廠 苗栗縣西湖鄉 1804.40 113
茂泓能源股份有限公司 臺南市北門區第一期太陽光電發電廠 台南市北門區 21167.90 111
綠鑽能源股份有限公司 台中市北屯區創研段19地號太陽能發電廠 臺中市北屯區 19.84 111
乾耀能源科技股份有限公司 乾耀台南官田區太陽光電發電廠 台南市官田區、六甲區 19349.525 111
欣晶能源股份有限公司 後潭太陽光電發電廠 台南市柳營區 999.79 111
天禽能源股份有限公司 天禽第一期太陽能電廠 台南市七股區 19567.20 111
玉衡能源股份有限公司 慈濟一期電廠 花蓮縣花蓮市 1991.60 111
晟鑫能源有限公司 慈濟二期電廠 花蓮縣花蓮市 943.80 111
天衝能源股份有限公司 天衝(第一階段)太陽能電廠 台南市七股區 93595.20 111
天衝能源股份有限公司 天衝(第二階段)太陽能電廠 台南市七股區 22915.20 112
得禾一能源股份有限公司 一德金屬TW190995太陽光電發電廠 台南市永康區 159.12 111
元昱太陽光電股份有限公司 屏東縣東港鎮三西和農場滯洪池太陽光電發電廠 屏東縣東港鎮 3822.00 111
元昱太陽光電股份有限公司 嘉義縣布袋鎮貴舍2滯洪池水面浮力式太陽光電發電廠(水面型) 嘉義縣布袋鎮 7098.00 112
元昱太陽光電股份有限公司 嘉義縣義竹鄉新庄農場滯洪池水面浮力式太陽光電發電廠(水面型) 嘉義縣義竹鄉 19500.00 112
元昱太陽光電股份有限公司 嘉義縣鹿草鄉荷苞嶼滯洪池水面浮力式太陽光電發電廠 嘉義縣鹿草鄉 7176.00 112
開陽智慧能源股份有限公司 開陽第一期(第一階段)太陽能電廠 屏東縣佳冬鄉 658.7 111
開陽智慧能源股份有限公司 開陽第一期(第二階段)太陽能電廠 屏東縣佳冬鄉 646.80 111
開陽智慧能源股份有限公司 開陽第二期太陽能電廠 屏東縣佳冬鄉 4893.70 111
開陽智慧能源股份有限公司 開陽第三期(第2-1階段)太陽能電廠 屏東縣佳冬鄉 3172.40 111
開陽智慧能源股份有限公司 開陽第三期(第2-2階段)太陽能電廠 屏東縣佳冬鄉 306.60 111
開陽智慧能源股份有限公司 開陽第三期(第一階段)太陽能電廠 屏東縣佳冬鄉 14044.10 111
瑤光智慧能源股份有限公司 瑤光第一期(第一階段)太陽能電廠 屏東縣佳冬鄉 1052.25 111
瑤光智慧能源股份有限公司 瑤光第一期(第二階段)太陽能電廠 屏東縣佳冬鄉 2791.69 111
瑤光智慧能源股份有限公司 瑤光第二期太陽能電廠 屏東縣佳冬鄉 2504.60 111
瑤光智慧能源股份有限公司 瑤光第三期(第一階段)太陽能電廠 屏東縣佳冬鄉 9555.37 111
瑤光智慧能源股份有限公司 瑤光第三期(第二階段)太陽能電廠 屏東縣佳冬鄉 7206.10 111
瑤光智慧能源股份有限公司 瑤光第四期太陽能電廠 屏東縣佳冬鄉 834.90 113
昱興能源股份有限公司 桃園大園PCHOME屋頂型太陽光電發電廠 桃園市大園區 2202.96 111
日集綠能股份有限公司 日集北勢寮地面型太陽光電發電廠 台南市東山區 915.12 111
日集綠能股份有限公司 日集潭頂段地面型太陽光電發電廠 台南市新市區 818.40 111
日集綠能股份有限公司 日集洛陽段太陽光電發電廠 屏東縣鹽埔鄉 1180.48 112
日集綠能股份有限公司 日集隆安段太陽光電發電廠 屏東縣枋寮鄉 1043.46 112
日集綠能股份有限公司 日集大平頂(第一期)太陽光電發電廠 屏東縣恆春鎮 1958.04 112
日集綠能股份有限公司 日集大平頂(第二期)太陽光電發電廠 屏東縣恆春鎮 1958.04 112
日集綠能股份有限公司 日集大平頂(第三期)太陽光電發電廠 屏東縣恆春鎮 1958.04 112
日集綠能股份有限公司 日集大平頂(第四期)太陽光電發電廠 屏東縣恆春鎮 1958.04 112
日集綠能股份有限公司 日集保力小段(第一期)太陽光電發電廠 屏東縣車城鄉 1399.95 112
日集綠能股份有限公司 日集保力小段(第二期)太陽光電發電廠 屏東縣車城鄉 1399.95 112
日集綠能股份有限公司 日集保力小段(第三期)太陽光電發電廠 屏東縣車城鄉 1399.95 112
日集綠能股份有限公司 日集恆春機場段地面型(第一期)太陽光電發電廠 屏東縣恆春鎮 493.29 112
日集綠能股份有限公司 日集恆春機場段地面型(第二期)太陽光電發電廠 屏東縣恆春鎮 493.29 112
日集綠能股份有限公司 日集舊庄段地面型(第一期)太陽光電發電廠 屏東縣枋山鄉 691.92 112
日集綠能股份有限公司 日集舊庄段地面型(第二期)太陽光電發電廠 屏東縣枋山鄉 691.92 112
遠勁綠能股份有限公司 遠勁永豐餘大甲經營屋頂型電廠 台中市大甲區 915.12 111
遠勁綠能股份有限公司 中華紙漿久堂廠太陽光電發電廠 高雄市大樹區 1916.64 111
遠勁綠能股份有限公司 高雄永豐餘太陽光電發電廠 高雄市阿蓮區 1999.20 111
旭愛能源股份有限公司 旭愛能源普威廠 宜蘭縣蘇澳鎮頂寮段0662-0030地號 909.025 111
旭愛能源股份有限公司 旭愛能源宜蘭廠 宜蘭縣五結鄉 1098.02 111
旭愛能源股份有限公司 旭愛能源有益廠 高雄市永安區 499.275 112
旭愛能源股份有限公司 旭愛能源台特化廠 彰化縣線西鄉 1617.20 112
旭愛能源股份有限公司 旭愛能源建誌廠 高雄市燕巢區 273.00 112
旭愛能源股份有限公司 旭愛能源維堤廠 宜蘭縣蘇澳鎮 263.67 112
台灣艾貴綠能股份有限公司 艾貴綠能田寮發電廠 台南市鹽水區 41864.40 111
晶成能源股份有限公司 台中太平民宅第一期太陽光電發電系統 台中市太平區 19.84 111
旭創能源有限公司 旭創能源桃苗汽車中華路場 桃園市八德區 366.39 111
旭創能源有限公司 旭創能源桃苗介壽路場 桃園市八德區 289.00 111
東迪能源股份有限公司 新竹縣竹東鎮99.753瓩 新竹縣竹東鎮 99.753 111
東迪能源股份有限公司 新竹縣竹東鎮198.6瓩 新竹縣竹東鎮 198.60 111
東迪能源股份有限公司 嘉義市東區191.27瓩 嘉義市東區 191.27 111
東迪能源股份有限公司 臺中市梧棲區488.61瓩 台中市梧棲區 488.61 111
東迪能源股份有限公司 桃園市觀音區349.06瓩 桃園市觀音區 349.06 111
東迪能源股份有限公司 桃園市楊梅區338.83瓩 桃園市楊梅區 338.83 111
東迪能源股份有限公司 桃園市新屋區156.465瓩 桃園市新屋區 156.465 111
東迪能源股份有限公司 高雄市大社區257.4瓩 高雄市大社區 257.40 111
東迪能源股份有限公司 臺南市山上區248瓩 台南市山上區 248.00 111
東迪能源股份有限公司 臺南市官田區317.7瓩 台南市官田區 317.70 111
嘉創能源股份有限公司 嘉義市東區保成路410 號太陽光電發電廠 嘉義市東區 13.86 111
佳煌科技有限公司 彰化佳煌太陽能發電廠 彰化縣彰化市 165.66 111
玉樹能源股份有限公司 玉樹能源第1-2期太陽光電發電廠 屏東縣高樹鄉 30614.80 111
玉樹能源股份有限公司 玉樹能源第一期太陽光電發電廠 屏東縣高樹鄉 8428.80 111
冠越科技工程股份有限公司 見得行二期太陽光電發電廠 台中市梧棲區 1378.00 111
冠越科技工程股份有限公司 進安太陽光電發電廠 台中市梧棲區 1476.00 111
冠越科技工程股份有限公司 鎔利太陽光電發電廠 嘉義縣梅山區 844.13 111
冠越科技工程股份有限公司 興隆興太陽光電發電廠 嘉義縣大林鎮 669.60 112
冠越科技工程股份有限公司 帝寶C6太陽光電發電廠 彰化縣鹿港鎮 271.56 112
冠越科技工程股份有限公司 帝寶總部太陽光電發電廠 彰化縣鹿港鎮 1413.60 112
冠越科技工程股份有限公司 隆茂太陽光電發電廠 彰化縣線西鄉 414.80 112
冠越科技工程股份有限公司 帝寶F棟太陽光電發電廠 彰化縣鹿港鎮 334.80 113
玉山太陽能有限公司 玉山太陽光電發電廠 台南市北門區 801.99 112
欣亞能源有限公司 台南市學甲區宅子港段165-123地號太陽光電發電廠 台南市學甲區 498.98 112
天方能源科技股份有限公司 「高雄市楠梓污水下水道系統建設計畫案」之「附屬事業計畫-地面型太陽光電發電廠」 高雄市楠梓區 3946.80 112
國軒科技股份有限公司 鹿港鎮第一公墓 彰化縣鹿港鎮 8744.34 112
欣芳苑能源科技股份有限公司 漢寶農畜南北場太陽能電廠 彰化縣芳苑鄉 1424.61 112
芳苑能源科技股份有限公司 芳苑能源-漢寶第一型太陽能電廠 彰化縣芳苑鄉 1552.32 112
睿禾控股股份有限公司 後港國小(頂山校區)太陽光電發電廠 台南市七股區 66.98 112
碩力光能股份有限公司 雲林新興發電廠 雲林縣台西鄉 271968.00 112
永梁股份有限公司 鳳山淨水廠西清水池太陽光電發電廠 高雄市小港區 2939.160 112
永梁股份有限公司 鳳山淨水廠東清水池太陽光電發電廠 高雄市小港區 2846.760 112
十源工程有限公司 十源388地號太陽光電發電廠 嘉義縣東石鄉 494.125 112
十源工程有限公司 嘉義縣東石鄉栗子崙段128-12地號太陽光電發電廠 嘉義縣東石鄉 499.66 112
星曄綠能股份有限公司 烏山頭水庫水面型太陽光電發電系統 台南市官田區 13705.2 112
星崴電力股份有限公司 星崴七股太陽光電發電業 臺南市七股區 77520.00 112
誠新綠能股份有限公司 誠新屏東萬巒703-1電廠 屏東縣萬巒鄉 106.64 112
誠新綠能股份有限公司 誠新屏東萬巒703電廠 屏東縣萬巒鄉 186.62 112
金良科技股份有限公司 新光桃園1廠 桃園市平鎮區 499.68 112
金良科技股份有限公司 新光桃園2廠 桃園市平鎮區 273.34 112
金良科技股份有限公司 新光桃園3廠 桃園市平鎮區 83.35 112
金良科技股份有限公司 新光雲林6廠 雲林縣古坑鄉 99.99 112
金良科技股份有限公司 新光雲林8廠 雲林縣台西鄉 270.58 112
金良科技股份有限公司 新光雲林9廠 雲林縣口湖鄉 99.60 112
金良科技股份有限公司 新光台南3廠 臺南市北門區 482.00 112
金良科技股份有限公司 新光台南4廠 臺南市北門區 499.60 112
金良科技股份有限公司 新光台南5廠 臺南市北門區 269.60 112
金良科技股份有限公司 新光台南6廠 臺南市北門區 292.00 112
金良科技股份有限公司 新光雲林1廠 雲林縣口湖鄉 399.60 112
金良科技股份有限公司 新光雲林2廠 雲林縣口湖鄉 233.40 112
金良科技股份有限公司 新光雲林3廠 雲林縣口湖鄉 499.50 112
金良科技股份有限公司 新光雲林4廠 雲林縣口湖鄉 94.50 112
金良科技股份有限公司 新光雲林5廠 雲林縣口湖鄉 499.50 112
金良科技股份有限公司 新光台南1廠 臺南市六甲區 312.60 112
金良科技股份有限公司 新光台南2廠 臺南市六甲區 99.60 112
金良科技股份有限公司 新光台南7廠 臺南市六甲區 384.45 112
金良科技股份有限公司 新光台南8廠 臺南市六甲區 22.94 112
金良科技股份有限公司 新光嘉義1廠 嘉義縣大林鎮 133.30 112
金良科技股份有限公司 新光嘉義2廠 嘉義縣大林鎮 99.82 112
金良科技股份有限公司 新光嘉義3廠 嘉義縣大林鎮 254.40 112
金良科技股份有限公司 新光彰化2廠 彰化縣二林鎮 460.50 113
金良科技股份有限公司 新光彰化3廠 彰化縣芳苑鄉 98.40 113
金良科技股份有限公司 新光彰化18廠 彰化縣芳苑鄉 368.14 113
金良科技股份有限公司 新光彰化35廠 彰化縣芳苑鄉 499.60 113
金良科技股份有限公司 新光彰化36廠 彰化縣芳苑鄉 499.60 113
金良科技股份有限公司 新光彰化37廠 彰化縣芳苑鄉 77.20 113
金良科技股份有限公司 新光彰化38廠 彰化縣芳苑鄉 82.40 113
金良科技股份有限公司 新光彰化40廠 彰化縣大城鄉 99.75 113
金良科技股份有限公司 新光彰化41廠 彰化縣大城鄉 399.75 113
金良科技股份有限公司 新光彰化42廠 彰化縣大城鄉 99.60 113
金良科技股份有限公司 新光彰化43廠 彰化縣大城鄉 262.80 113
金良科技股份有限公司 新光彰化44廠 彰化縣芳苑鄉 82.50 113
金良科技股份有限公司 新光彰化45廠 彰化縣芳苑鄉 74.25 113
金良科技股份有限公司 新光彰化46廠 彰化縣芳苑鄉 99.60 113
金良科技股份有限公司 新光彰化22廠 彰化縣芳苑鄉 209.25 113
金良科技股份有限公司 新光彰化23廠 彰化縣芳苑鄉 280.50 113
金良科技股份有限公司 新光彰化24廠 彰化縣芳苑鄉 499.50 113
金良科技股份有限公司 新光彰化25廠 彰化縣芳苑鄉 244.13 113
金良科技股份有限公司 新光彰化26廠 彰化縣芳苑鄉 499.62 113
金良科技股份有限公司 新光彰化27廠 彰化縣芳苑鄉 499.62 113
金良科技股份有限公司 新光彰化28廠 彰化縣芳苑鄉 499.62 113
金良科技股份有限公司 新光彰化29廠 彰化縣芳苑鄉 116.16 113
金良科技股份有限公司 新光彰化51廠 彰化縣芳苑鄉 32.00 113
金良科技股份有限公司 新光彰化19廠 彰化縣芳苑鄉 230.64 113
金良科技股份有限公司 新光彰化20廠 彰化縣芳苑鄉 499.72 113
金良科技股份有限公司 新光彰化21廠 彰化縣芳苑鄉 334.18 113
金良科技股份有限公司 新光彰化30廠 彰化縣芳苑鄉 399.90 113
金良科技股份有限公司 新光彰化50廠 彰化縣芳苑鄉 99.51 113
金良科技股份有限公司 新光彰化15廠 彰化縣芳苑鄉 443.61 113
金良科技股份有限公司 新光彰化48廠 彰化縣芳苑鄉 52.39 113
金良科技股份有限公司 新光彰化39廠 彰化縣芳苑鄉 340.56 113
金良科技股份有限公司 新光彰化10廠 彰化縣大城鄉 276.00 113
金良科技股份有限公司 新光彰化11廠 彰化縣大城鄉 203.98 113
金良科技股份有限公司 新光彰化1廠 彰化縣芳苑鄉 161.20 113
金良科技股份有限公司 新光彰化33廠 彰化縣芳苑鄉 246.14 113
禾原新能源科技股份有限公司 桃園功學社屋頂型太陽光電案場149.45KW 桃園市中壢區 149.45 112
禾原新能源科技股份有限公司 桃園功學社屋頂型太陽光電案場494.1KW 桃園市中壢區 494.10 112
禾原新能源科技股份有限公司 台中燦坤屋頂型太陽光電案場 臺中市西屯區 247.23 112
禾原新能源科技股份有限公司 新竹三憶食品屋頂型太陽光電案場 新竹縣新豐鄉 166.75 113
禾原新能源科技股份有限公司 屏東鹽埔地面型太陽光電案場 屏東縣鹽埔鄉 128.70 113
禾原新能源科技股份有限公司 台南蘭都屋頂型太陽光電案場 台南市六甲區 133.92 113
善祚能源有限公司 嘉義鹿草-善祚太陽光電發電廠.45KW 嘉義縣鹿草鄉 229.68 112
寶興能源股份有限公司 寶興金榮太陽光電發電系統工程(第一期-1第一階段).45KW 屏東縣枋寮鄉 1827.09 112
寶興能源股份有限公司 寶興金榮太陽光電發電系統工程第一期之1第二階段.1KW 屏東縣枋寮鄉 9216.52 112
寶興能源股份有限公司 寶興金榮太陽光電發電系統工程第一期之1第三階段.1KW 屏東縣枋寮鄉 4779.11 112
寶興能源股份有限公司 寶興金榮太陽光電發電系統工程第一期之2第一階段.1KW 屏東縣枋寮鄉 2403.29 112
桐新能源股份有限公司 臺鐵潮州機廠屋頂型太陽光電系統 屏東縣潮州鎮 3054.48 112
禾淯有限公司 雲林口湖地面型太陽光電案場 雲林縣口湖鄉 450.08 112
禾淯有限公司 高雄赤崁地面型太陽光電案場(1期) 高雄市大寮區 497.28 112
禾淯有限公司 高雄赤崁地面型太陽光電案場(2期) 高雄市大寮區 497.28 112
禾淯有限公司 高雄坪鳳地面型太陽光電案場(1期) 高雄市小港區 497.28 112
禾淯有限公司 高雄坪鳳地面型太陽光電案場(2期) 高雄市小港區 474.88 112
禾淯有限公司 高雄坪鳳地面型太陽光電案場(3期) 高雄市小港區 497.28 112
華晶能源股份有限公司 華晶能源炎洲12(1)號太陽光電發電廠 彰化縣鹿港鎮 413.89 112
華晶能源股份有限公司 華晶能源炎洲12(2)號太陽光電發電廠 彰化縣鹿港鎮 455.98 112
華晶能源股份有限公司 華晶世紀鋼太陽能發電廠 新北市八里區 4074.30 112
宣聚股份有限公司 建新國際10C倉第一型太陽光電發電廠 臺中市清水區 1994.20 112
宣聚股份有限公司 建新國際物流園區第一型太陽光電發電廠 臺中市梧棲區 1959.43 112
宣聚股份有限公司 竹山1號菇寮太陽光電發電廠 南投縣竹山鎮 344.40 113
宣聚股份有限公司 魚池司馬按段1號菇寮太陽光電發電廠 南投縣魚池鄉 998.82 113
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第一次併網範圍) 嘉義縣東石鄉 26812.17 112
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第二次併網)第一階段 嘉義縣東石鄉 1884.96 112
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第二次併網)第二階段 嘉義縣東石鄉 6334.02 112
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第二次併網)第三階段 嘉義縣東石鄉 8787.24 112
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第二次併網)第五階段 嘉義縣布袋鎮 2577.96 112
廣宇能源股份有限公司 廣宇一期嘉義太陽光電發電廠(第二次併網)第六階段 嘉義縣東石鄉 2661.12 112
宣冠股份有限公司 宣冠建新國際公司屋頂太陽能場 臺中市梧棲區 1106.84 112
裕電能源股份有限公司 南投竹山菇寮455.06kW 南投縣竹山鎮 455.06 112
裕電能源股份有限公司 屏東台利達一期1544.96kW 屏東縣枋寮鄉 1544.96 113
裕電能源股份有限公司 屏東鹽埔新高段1466.4kW 屏東縣鹽埔鄉 1466.40 113
裕電能源股份有限公司 南投埔里菇寮327.275kW 南投縣埔里鎮 327.28 113
安淯科技有限公司 台南易昇屋頂型太陽光電案場(TNN-107PV0757) 臺南市永康區 440.20 112
安淯科技有限公司 台南易昇屋頂型太陽光電案場(TNN-107PV0776) 臺南市永康區 254.20 112
安淯科技有限公司 台南易昇屋頂型太陽光電案場(TNN-107PV0777) 臺南市永康區 455.70 112
志光能源股份有限公司 臺南市七股區三股子段及三和段太陽光電發電系統工程 臺南市七股區 85712.40 112
恆升能源有限公司 嘉義義竹-1881.6kW 嘉義縣義竹鄉 1881.60 112
恩富資本太陽能股份有限公司 老虎三寮灣太陽光電系統工程(第一期) 臺南市北門區 21837.60 112
恩富資本太陽能股份有限公司 老虎蚵寮太陽光電系統工程 臺南市北門區 86184.00 112
恩富資本太陽能股份有限公司 老虎三寮灣太陽光電系統工程(第二期) 臺南市北門區 20163.60 112
智新能源股份有限公司 彰化縣汙染農地太陽光電系統「振興段783、784地號」 彰化縣鹿港鎮 459.36 112
智新能源股份有限公司 彰化縣汙染農地太陽光電系統「振興段973地號」 彰化縣鹿港鎮 174.24 112
智新能源股份有限公司 彰化縣汙染農地太陽光電系統「振興段2209、2210地號」 彰化縣鹿港鎮 443.52 112
智新能源股份有限公司 彰化縣汙染農地太陽光電系統「鹿昇段748-1、749地號」 彰化縣鹿港鎮 491.04 112
智新能源股份有限公司 彰化縣汙染農地太陽光電系統「鹿崙段554地號」 彰化縣鹿港鎮 364.32 112
欣時股份有限公司 欣時太陽能電廠-雲林莿桐一期 雲林縣蕀桐鄉 498.00 112
欣時股份有限公司 欣時太陽能電廠-雲林莿桐二期 雲林縣蕀桐鄉 498.00 112
欣時股份有限公司 欣時太陽能電廠-雲林莿桐三期 雲林縣蕀桐鄉 498.00 112
聖韮光電股份有限公司 聖韮光電太陽能電廠-雲林莿桐一期 雲林縣林內鄉 498.00 112
聖韮光電股份有限公司 聖韮光電太陽能電廠-雲林莿桐二期 雲林縣林內鄉 498.00 112
聖韮光電股份有限公司 聖韮光電太陽能電廠-雲林莿桐三期 雲林縣林內鄉 498.00 112
原生新能源股份有限公司 原生新能源股份有限公司太陽光電發電廠 臺北市大同區 8.04 112
騰明能源股份有限公司 苗栗縣南庄鄉屋頂型太陽光電發電廠 苗栗縣南庄鄉 212.16 112
智捷能源股份有限公司 彰化梧鳳太陽能發電廠 彰化縣埔心鄉 1999.80 112
智捷能源股份有限公司 智捷埤頭太陽能發電廠 彰化縣埤頭鄉 499.80 113
合伍光電股份有限公司 合伍光電太陽能電廠-雲林莿桐一期 雲林縣蕀桐鄉 498.00 112
合伍光電股份有限公司 合伍光電太陽能電廠-雲林莿桐二期 雲林縣蕀桐鄉 498.00 112
合伍光電股份有限公司 合伍光電太陽能電廠-雲林林內一期 雲林縣林內鄉 498.00 112
合伍光電股份有限公司 合伍光電太陽能電廠-雲林林內二期 雲林縣林內鄉 498.00 112
合伍光電股份有限公司 合伍光電太陽能電廠-雲林林內三期 雲林縣林內鄉 498.00 112
合伍光電股份有限公司 合伍光電太陽能電廠-雲林林內四期 雲林縣林內鄉 498.00 112
光鼎能源科技有限公司 光鼎綠電1號太陽能電廠 嘉義市東區遠 99.96 112
正順能源有限公司 正順榮璋工廠案(199.68瓩) 高雄市路竹區 199.68 112
嵩旺能源股份有限公司 嵩旺高雄彌陀太陽光電發電廠 高雄市彌陀區 9000.00 112
怡和國際能源股份有限公司 屏東縣枋寮鄉建興段471-1地號 屏東縣枋寮鄉 230.89 112
怡和國際能源股份有限公司 屏東縣枋寮鄉建興段471地號 屏東縣枋寮鄉 208.93 112
怡和國際能源股份有限公司 屏東縣枋寮鄉建興段475-1地號 屏東縣枋寮鄉 262.00 112
怡和國際能源股份有限公司 屏東縣枋寮鄉建興段475-2地號 屏東縣枋寮鄉 279.69 112
怡和國際能源股份有限公司 屏東縣枋寮鄉建興段475地號 屏東縣枋寮鄉 275.11 112
睿聯國際股份有限公司 睿聯台中1廠 臺中市外埔區 226.92 112
睿聯國際股份有限公司 睿聯彰化1廠 彰化縣伸港鄉 491.84 112
睿聯國際股份有限公司 睿聯高雄1廠 高雄市路竹區 499.10 112
睿聯國際股份有限公司 睿聯高雄2廠 高雄市路竹區 146.94 112
睿聯國際股份有限公司 睿聯雲林1廠 雲林縣斗六市 499.72 112
睿聯國際股份有限公司 睿聯雲林2廠 雲林縣斗六市 379.44 112
生豐電力股份有限公司 生豐一期兆豐農場地面型太陽光電發電廠 花蓮縣鳳林鎮 74970.00 112
辰華電力股份有限公司 崙尾東三號電廠 彰化縣鹿港鎮 67267.20 112
泰陽光電股份有限公司 泰陽義竹1-1期溫室科技養殖結合太陽光電發電廠 嘉義市義竹鄉 12443.30 112
日益能源科技股份有限公司 高雄大社-崇瑋工業 高雄市大社區 499.80 112
日益能源科技股份有限公司 台中烏日-臻愛會館(一期) 臺中市烏日區 439.74 112
日益能源科技股份有限公司 台中烏日-臻愛會館(二期) 臺中市烏日區 499.28 112
日益能源科技股份有限公司 屏東潮州-崙東段9地號(一期) 屏東縣潮州鎮 499.91 113
日益能源科技股份有限公司 屏東潮州-崙東段9地號(二期) 屏東縣潮州鎮 443.67 113
日益能源科技股份有限公司 台南麻豆-真理大學太陽光電發電廠 台南市麻豆區 469.88 113
頂晶科技股份有限公司 頂晶2號太陽光電電廠 臺南市下營區 1499.40 112
頂晶科技股份有限公司 頂晶4號太陽光電電廠 臺南市麻豆區 928.76 112
磐軒股份有限公司 台中上好2期電廠 臺中市潭子區 51.45 112
磐軒股份有限公司 台中上好電廠 臺中市潭子區 496.74 112
磐軒股份有限公司 台中台光道院電廠 臺中市潭子區 99.28 112
環球大宇宙太陽能工業有限公司 環球大宇宙仁武里二期 高雄縣仁武鄉 105.27 112
環球大宇宙太陽能工業有限公司 環球大宇宙文賢市場一期 高雄縣岡山鎮 87.12 112
環球大宇宙太陽能工業有限公司 環球大宇宙文賢市場二期 高雄縣岡山鎮 129.69 112
環球大宇宙太陽能工業有限公司 環球大宇宙彌陀公所一期 高雄市彌陀區 19.80 112
環球大宇宙太陽能工業有限公司 環球大宇宙彌陀公所二期 高雄市彌陀區 80.19 112
環球大宇宙太陽能工業有限公司 環球大宇宙鼓山市場二期 高雄市鼓山區 97.68 112
環球大宇宙太陽能工業有限公司 環球大宇宙旗津市場一期 高雄市旗津區 95.70 112
環球大宇宙太陽能工業有限公司 環球大宇宙龍華市場一期 高雄市左營區 99.00 112
環球大宇宙太陽能工業有限公司 環球大宇宙龍華市場二期 高雄市左營區 185.79 112
環球大宇宙太陽能工業有限公司 環球大宇宙仁武里一期 高雄市仁武區 90.09 113
環球大宇宙太陽能工業有限公司 環球大宇宙楠梓高中A棟 高雄市楠梓區 219.90 113
環球大宇宙太陽能工業有限公司 環球大宇宙楠梓高中B棟 高雄市楠梓區 198.90 113
環球大宇宙太陽能工業有限公司 環球大宇宙鼓山市場一期 高雄市鼓山區 99.33 113
環球大宇宙太陽能工業有限公司 環球大宇宙旗津市場二期 高雄市旗津區 69.30 113
環球大宇宙太陽能工業有限公司 環球大宇宙幸福公園 高雄市林園區 201.10 113
環球大宇宙太陽能工業有限公司 環球大宇宙武廟市場一期 高雄市苓雅區 89.76 113
環球大宇宙太陽能工業有限公司 環球大宇宙武廟市場二期 高雄市苓雅區 277.86 113
宜康能源股份有限公司 宜康太陽光電發電廠 臺南市學甲區 1907.10 112
鉅光科技工業有限公司 工業世濱食品 高雄市鳥松區 96.00 112
鉅光科技工業有限公司 鳳西國小 高雄市鳳山區 423.00 112
巨光能源科技有限公司 巨光台中1廠 臺中市梧棲區 494.71 112
巨光能源科技有限公司 巨光台中2廠 臺中市梧棲區 494.71 112
巨光能源科技有限公司 巨光鹿12廠 彰化縣鹿港鎮 999.94 113
茂正能源股份有限公司 茂正太陽能電廠 雲林縣口湖鄉 87833.60 112
南陽電業股份有限公司 臺南市北門區太陽光電發電廠第一期 臺南市北門區 5384.06 112
熲明股份有限公司 熲明彰濱廠房屋頂第三期太陽光電發電廠 彰化縣線西鄉 2185.54 113
中鈁綠能股份有限公司 中鈁湖西太陽光電發電系統工程(第一階段) 澎湖縣湖西鄉 8969.40 113
中鈁綠能股份有限公司 中鈁湖西太陽光電發電系統工程(第二階段) 澎湖縣湖西鄉 847.80 113
方登綠能股份有限公司 方登澎湖太陽光電發電系統工程(第一期) 澎湖縣湖西鄉 9817.20 113
順長興企業股份有限公司 順長興嘉義1廠 嘉義縣東石鄉 1240.40 113
東鋼風力發電股份有限公司 東鋼風力台中港物流中心太陽光電發電廠 臺中市梧棲區 1449.90 113
東鋼風力發電股份有限公司 東鋼風力東高太陽光電發電廠(第一階段) 高雄市小港區 1282.93 113
東鋼風力發電股份有限公司 東鋼風力東糖太陽光電發電廠 屏東縣內埔鄉 139.52 113
東鋼風力發電股份有限公司 東鋼風力台北港倉庫太陽光電發電廠 新北市八里區 1096.20 113
東鋼風力發電股份有限公司 東鋼風力加工中心一太陽光電發電廠 桃園市觀音區 935.22 113
北門太陽能有限公司 北門太陽光電發電廠 屏東縣里港鄉 1821.38 113
珠江太陽能有限公司 珠江太陽光電發電廠 屏東縣恆春鎮 2062.13 113
仁華綠能股份有限公司 仁華湖西太陽光電發電系統工程 澎湖縣湖西鄉 9817.15 113
大昇能源科技有限公司 鹿13 彰化縣鹿港鎮 1999.98 113
大福能源股份有限公司 大福北門太陽光電發電系統工程 臺南市北門區 21999.91 113
旭天能源股份有限公司 大愛感恩科技三重園區太陽光電發電設備 新北市三重區 1059.80 113
沅碁光電股份有限公司 沅碁高雄1廠 高雄市鳳山區 94.50 113
沅碁光電股份有限公司 沅碁高雄2廠 高雄市鳳山區 159.39 113
沅碁光電股份有限公司 沅碁高雄3廠 高雄市鳳山區 172.62 113
和潤電能股份有限公司 和潤電能一期和泰溪州廠 彰化縣溪州鄉 2799.79 113
和潤電能股份有限公司 彰化全森牧場案場 彰化縣芳苑鄉 398.97 113
恆參能源股份有限公司 恆參太陽能光電發電廠 臺南市山上區 781.20 113
玖基企業股份有限公司 玖基東園國小太陽能電廠 台中市烏日區 66.99 113
偉澄有限公司 偉澄嘉義1號 嘉義市西區嘉 443.52 113
偉澄有限公司 偉澄嘉義2號 嘉義市西區嘉 871.68 113
偉澄有限公司 偉澄嘉義3號 嘉義縣溪口鄉 298.80 113
茂信能源股份有限公司 茂信太陽能電廠 雲林縣口湖鄉 90379.84 113
泓錠能源股份有限公司 屏東退輔會(二期)太陽光電發電廠 屏東縣竹田鄉 205.57 113
泓錠能源股份有限公司 屏東退輔會太陽光電發電廠 屏東縣竹田鄉 294.33 113
全利能源實業股份有限公司 全利能源一號電廠(第一機組) 屏東縣新園鄉 438.00 113
全利能源實業股份有限公司 全利能源一號電廠(第二機組) 屏東縣新園鄉 438.00 113
全利能源實業股份有限公司 全利能源一號電廠(第三機組) 屏東縣新園鄉 438.00 113
全利能源實業股份有限公司 全利能源一號電廠(第四機組) 屏東縣新園鄉 438.00 113
帝崴電力股份有限公司 帝崴台北港屋頂型太陽光電發電廠 新北市八里區 2960.72 113
新光電力科技股份有限公司 新電彰化1廠 彰化縣芳苑鄉 1100.40 113
新光電力科技股份有限公司 新電彰化2廠 彰化縣芳苑鄉 383.60 113
新光電力科技股份有限公司 新電台南1廠 臺南市北門區 499.60 113
新光電力科技股份有限公司 新電台南2廠 臺南市北門區 499.60 113
新光電力科技股份有限公司 新電台南3廠 臺南市北門區 499.60 113
新光電力科技股份有限公司 新電台南4廠 臺南市北門區 167.60 113
維特克能源有限公司 維特克台中1廠 臺中市潭子區 398.97 113
維特克能源有限公司 維特克台中2廠 臺中市梧棲區 495.00 113
維特克能源有限公司 維特克台中3廠 臺中市清水區 1393.92 113
維特克能源有限公司 維特克台中4廠 臺中市霧峰區 494.70 113
維特克能源有限公司 維特克屏東1廠 屏東縣高樹鄉 499.12 113
維特克能源有限公司 維特克屏東2廠 屏東縣高樹鄉 499.12 113
維特克能源有限公司 維特克屏東3廠 屏東縣高樹鄉 349.52 113
維特克能源有限公司 維特克台南1廠 臺南市白河區 436.59 113
維特克能源有限公司 維特克台南2廠 臺南市官田區 488.40 113
維特克能源有限公司 維特克台東1廠 臺東縣臺東市 498.30 113
向陽多元光電股份有限公司 向陽多元義竹1-1期溫室科技養殖結合太陽光電發電廠 嘉義縣義竹鄉 7745.20 113
亮崴電力股份有限公司 亮崴台中港屋頂型太陽光電發電業 臺中市龍井區 4066.40 113
晁星能源股份有限公司 將軍山子腳2287太陽光電發電廠 臺南市將軍區 46.80 113
永唐有限公司 永唐台水湖山淨水場太陽光電發電廠 雲林縣斗六市 4180.37 113
永唐有限公司 永唐台水雲林給水廠前處理場太陽光電發電廠 雲林縣林內鄉 4395.30 113
京隼一綠能股份有限公司 光和段357地號(一期)太陽光電發電廠 台南市左鎮區 497.70 113
京隼一綠能股份有限公司 光和段357地號(二期)太陽光電發電廠 台南市左鎮區 498.96 113
京隼一綠能股份有限公司 光和段357地號(三期)太陽光電發電廠 台南市左鎮區 498.96 113
暮光能源股份有限公司 永冠臺中龍井區屋頂型太陽光電發電廠 台中市龍井區 7865.10 113
亞惟股份有限公司 PD2037維勝鋼鐵太陽光電發電業 屏東縣崁頂鄉 3671.10 113
新威光電股份有限公司 新光鋼新澄物流觀音廠太陽光電發電廠 桃園市觀音區 2730.20 113
樺良企業股份有限公司 樺良彰化1廠 彰化縣大村鄉 1099.86 113
公司名稱 發電廠名稱 所在縣市 機組(座) 裝置容量(瓩) 商轉年度
中威風力發電股份有限公司 臺中市大甲大安(一期)風力發電廠 臺中市大安區、大甲區 13 29900 98、101
中威風力發電股份有限公司 臺中市大甲大安(二期)風力發電廠 臺中市大安區、大甲區 8 18400 98
中威風力發電股份有限公司 臺中市大甲大安(三期)風力發電廠 臺中市大安區、大甲區 3 6900 101
中威風力發電股份有限公司 臺中市大豐風力發電廠 臺中市大安區、大甲區 8 18400 101、102
中威風力發電股份有限公司 臺中市風力發電廠#68 臺中市大安區、大甲區 1 2300 101
通威風力發電股份有限公司 通苑一期風力發電廠 苗栗縣通霄鎮 6 13800 103
通威風力發電股份有限公司 通苑二期風力發電廠 苗栗縣通霄鎮 3 6900 103
通威風力發電股份有限公司 通苑房里北風力發電廠 苗栗縣通霄鎮 1 2300 103
通威風力發電股份有限公司 苗栗縣通霄鎮設置風力發電廠 苗栗縣通霄鎮 2 4600 105
通威風力發電股份有限公司 臺中市大安風力發電廠#63 臺中縣大安區、大甲區 1 2300 105
通威風力發電股份有限公司 臺中市大甲風力發電廠#67 臺中縣大安區、大甲區 1 2300 105
通威風力發電股份有限公司 臺中市大豐二期風力發電廠#38A 臺中縣大安區、大甲區 1 2300 104
通威風力發電股份有限公司 臺中市大安風力發電廠(第29B號機組) 臺中縣大安區、大甲區 1 2300 107
通威風力發電股份有限公司 臺中市大豐三期風力發電廠#70 臺中縣大安區、大甲區 1 2300 107
龍威風力發電股份有限公司 後龍一期風力發電廠 苗栗縣後龍鎮 14 30800 102
龍威風力發電股份有限公司 後龍二期風力發電廠 苗栗縣後龍鎮 2 3200 102
龍威風力發電股份有限公司 後龍三期風力發電廠 苗栗縣後龍鎮 4600 105
龍威風力發電股份有限公司 後龍四期風力發電廠 苗栗縣後龍鎮 3200 105
龍威風力發電股份有限公司 後龍風力發電廠 苗栗縣後龍鎮 2300 105
鹿威風力發電股份有限公司 彰濱風力發電廠 彰化縣彰濱工業區 21 48300 96、97、98
鹿威風力發電股份有限公司 鹿港風力發電廠 彰化縣彰濱工業區 13 29900 96、97、98、107
鹿威風力發電股份有限公司 彰濱及鹿港風力發電廠二期 彰化縣彰濱工業區 8 18400 98、100
鹿威風力發電股份有限公司 彰化縣鹿港鎮設置第67號風力發電機 彰化縣彰濱工業區 1 2350 111
觀威風力發電股份有限公司 觀音風力發電廠 桃園市觀音區 19 43700 99、101、102
桃威風力發電股份有限公司 新屋風力發電廠 桃園市新屋區 2 4600 100
崎威風力發電股份有限公司 竹南二期風力發電廠 苗栗縣竹南鎮 3 6900 100
豐威風力發電股份有限公司 新豐風力發電廠 新竹縣新豐鄉 5 11500 101
豐威風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠 雲林縣麥寮鄉 1 2300 107
安威風力發電股份有限公司 臺中市大甲區風力發電廠 臺中市大甲區 1 2300 105
安威風力發電股份有限公司 臺中市大甲區風力發電廠二期 臺中市大甲區 1 2300 107
安威風力發電股份有限公司 臺中市大安區西部風力發電廠 臺中市大安區 1 2300 106
安威風力發電股份有限公司 臺中市大安區西部風力發電廠 臺中市大安區海墘里風力發電廠 1 2300 106
安威風力發電股份有限公司 臺中市清水區風力發電廠 臺中市清水區 1 2300 106
清風風力發電股份有限公司 臺中市清水區風力發電廠 臺中市清水區 1 2300 105
永能風力發電股份有限公司 「苗栗縣竹南鎮龍鳳里及海口里風力發電廠(第11A號機組)」及「苗栗縣竹南鎮海口北風力發電廠(第13B號機組)」 苗栗縣竹南鎮 2 4700 110
凌威風力發電股份有限公司 「新北市林口區風力發電廠」第A04、A05-2號風機 新北市林口區 2 4700 110
立為風力發電股份有限公司 彰化縣福興鄉芳苑鄉風力發電廠(第A-01、A-02、A-06、A-07、A-12、A-13、A-14) 彰化縣福興鄉 7 25200 110
立為風力發電股份有限公司 彰化縣福興鄉芳苑鄉風力發電廠(第A-03、A-04號風機) 彰化縣芳苑鄉 2 8400 112
創維風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠(第D03、C05、C06、E04、E05、E10號機組) 雲林縣麥寮鄉及台西鄉 6 21600 110
創維風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠(第K02及K05號機組) 雲林縣麥寮鄉及台西鄉 2 7200 110
創維風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠第L01、E06-A、K16機組 雲林縣麥寮鄉及台西鄉 3 12600 112
創維風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠K38-A機組 雲林縣台西鄉 1 3600 112
創維風力發電股份有限公司 雲林縣麥寮鄉及台西鄉風力發電廠第E01-A號風機 雲林縣麥寮鄉 1 4200 112
苗栗風力股份有限公司 竹南風力發電廠 苗栗縣竹南鎮 4 7800 95
苗栗風力股份有限公司 後龍大鵬風力發電廠 苗栗縣後龍鎮 21 42000 95
東鋼風力發電股份有限公司 龍港風力發電廠 苗栗縣後龍鎮 5 11500 105
台泥綠能股份有限公司 台泥綠能風力發電廠興建計畫 彰化縣線西鄉 2 7200 109
北苑風力發電股份有限公司 北苑風力發電場 彰化縣芳苑鄉 4 14400 110
彰苑風力發電股份有限公司 彰苑風力發電場 彰化縣芳苑鄉 4 14400 110
星寶電力股份有限公司 星寶電力風力發電業(B01、B02、B03) 彰化縣芳苑鄉 3 10350 110
彰旺風力發電股份有限公司 彰旺風力發電廠 彰化縣芳苑鄉 4 14400 110
新源風力發電股份有限公司 雲林縣崙背鄉風力發電廠(第E02、E08、E12、D06-A、D09、D11號風機) 雲林縣崙背鄉 6 25200 113
海洋風力發電股份有限公司 海洋竹南離岸式風力發電計畫第21號及第28號機組 苗栗縣竹南鎮 2 8000 106
海洋風力發電股份有限公司 海洋竹南離岸式風力發電計畫第二階段示範風場 苗栗縣竹南鎮 20 120000 108
彰芳風力發電股份有限公司 彰化彰芳離岸風力發電開發計畫(第一期) 彰化縣芳苑鄉 1 9600 112
彰芳風力發電股份有限公司 彰化彰芳離岸風力發電開發計畫(第一期第二階段) 彰化縣芳苑鄉西側海域 8 76800 112
彰芳風力發電股份有限公司 彰化彰芳離岸風力發電計畫(第一期第三階段) 彰化縣芳苑鄉 1 9600 113
彰芳風力發電股份有限公司 彰化彰芳離岸風力發電計畫(第二期第一階段) 彰化縣芳苑鄉 11 105600 113
大彰化東南離岸風力發電股份有限公司 大彰化東南離岸風力發電計畫(第一批次) 彰化縣鹿港鎮 9 72621 112
大彰化東南離岸風力發電股份有限公司 大彰化東南離岸風力發電計畫(第一批次) 彰化縣鹿港鎮 12 96828 113
大彰化西南離岸風力發電股份有限公司 大彰化西南離岸風力發電計畫第一階段 彰化縣鹿港鎮 7 57316 112
大彰化西南離岸風力發電股份有限公司 大彰化西南離岸風力發電計畫第一階段 彰化縣鹿港鎮 29 237452 113
海能風力發電股份有限公司 海能離岸風力發電計畫(第一階段) 苗栗竹南及後龍外海 32 256000 112
海能風力發電股份有限公司 海能離岸風力發電計畫第二階段報竣風場 苗栗竹南及後龍外海 15 120000 112
允能風力發電股份有限公司 雲林離岸風力發電廠(第37.38.42.51.52.53.64.76.80機組) 雲林縣四湖鄉 9 72000 112
允能風力發電股份有限公司 雲林離岸風力發電廠(第43、49、50、57、63、78及79號機組) 雲林縣四湖鄉 7 56000 113
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"name": "lines",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "osm_id": "33406778", "operator": "台灣電力公司", "power": "substation", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3099638, 22.6492091 ], [ 120.3093093, 22.6496975 ], [ 120.3092682, 22.6496633 ], [ 120.3092452, 22.6492199 ], [ 120.3099638, 22.6492091 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52174646", "name": "板橋~城中線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 50, "other_tags": { "alt_name": "板橋~城中~成都線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4874783, 25.0290603 ], [ 121.4871317, 25.030305 ], [ 121.4871421, 25.0326129 ], [ 121.4881629, 25.0346652 ], [ 121.4891907, 25.0367149 ], [ 121.4916219, 25.0377477 ], [ 121.4938126, 25.0386838 ], [ 121.4957824, 25.039302 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52174647", "name": "板橋~萬華線", "operator": "台灣電力公司", "power": "line", "wires": "double;single", "cables": "9", "voltage": "69000", "z_order": 50, "other_tags": { "alt_name": "埔墘~萬華線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4874783, 25.0290603 ], [ 121.4888459, 25.0292965 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52176335", "name": "板橋~青年線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "板橋~南海線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4985872, 25.0078895 ], [ 121.4986386, 25.0091017 ], [ 121.5017616, 25.0117461 ], [ 121.504694, 25.0142294 ], [ 121.507685, 25.0167588 ], [ 121.509918, 25.0201077 ], [ 121.509505, 25.0233416 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52176340", "name": "台北~古亭線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 50, "other_tags": { "alt_name": "台北~水源線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5313779, 25.0107992 ], [ 121.5326707, 25.0082053 ], [ 121.534014, 25.0046419 ], [ 121.5349565, 25.0026906 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52176341", "name": "台北~永和線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5349565, 25.0026906 ], [ 121.5330281, 25.0023304 ], [ 121.5309339, 25.0019025 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52176345", "name": "台北~古亭線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "3", "voltage": "69000", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5313779, 25.0107992 ], [ 121.5296761, 25.0110316 ], [ 121.5288488, 25.0115098 ], [ 121.5283319, 25.0119829 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52187035", "name": "深美~台北~臥龍線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "深美~台北~建國線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.55396, 25.0138789 ], [ 121.5558036, 25.0149124 ], [ 121.5582353, 25.0132292 ], [ 121.5611694, 25.0098677 ], [ 121.5633697, 25.0076897 ], [ 121.5644615, 25.0046566 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52187094", "name": "深美~台北線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.622617, 25.0035541 ], [ 121.6201575, 25.0057939 ], [ 121.6186286, 25.0075904 ], [ 121.6184193, 25.0077309 ], [ 121.6162595, 25.0091805 ], [ 121.6116854, 25.0117772 ], [ 121.6087556, 25.0133935 ], [ 121.6045012, 25.01577 ], [ 121.6028292, 25.0167822 ], [ 121.5978365, 25.0180575 ], [ 121.593618, 25.0189978 ], [ 121.5905051, 25.0188717 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52199522", "name": "南港~八連~松山線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000;69000", "z_order": 50, "other_tags": { "alt_name": "南港~週美線;南港~康寧線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6153733, 25.0652854 ], [ 121.6164202, 25.0648906 ], [ 121.6201394, 25.0637504 ], [ 121.6224249, 25.0628297 ], [ 121.624653, 25.062369 ], [ 121.62727, 25.0615813 ], [ 121.6299227, 25.0608234 ], [ 121.6321786, 25.0606476 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52199524", "name": "松山~週美線", "operator": "台灣電力公司", "power": "line", "wires": "double;single", "cables": "6;6", "voltage": "161000;69000", "z_order": 0, "other_tags": { "alt_name": "松山~內湖線;松山~內污線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5704434, 25.0528633 ], [ 121.5731667, 25.0533742 ], [ 121.5742285, 25.0538727 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "52199525", "name": "松山~民權線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5705012, 25.0530385 ], [ 121.5729948, 25.0536301 ], [ 121.5741611, 25.0540224 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "102658298", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6130454, 24.1020071 ], [ 120.6100617, 24.1032614 ], [ 120.6076639, 24.1038424 ], [ 120.6050054, 24.1045341 ], [ 120.6023371, 24.1052358 ], [ 120.5996762, 24.1059637 ], [ 120.5972304, 24.1066991 ], [ 120.594429, 24.1075608 ], [ 120.59196, 24.1083618 ], [ 120.5912867, 24.1084649 ], [ 120.5869086, 24.1090336 ], [ 120.5843078, 24.1094413 ], [ 120.5796616, 24.1088676 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103263338", "name": "新營~白河線(一進一出新東)", "power": "line", "wires": "1", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3231614, 23.3271948 ], [ 120.325533, 23.3267413 ], [ 120.3273815, 23.3262629 ], [ 120.3295058, 23.3253145 ], [ 120.3315142, 23.3241357 ], [ 120.3328026, 23.3229633 ], [ 120.3343861, 23.321714 ], [ 120.3362154, 23.3223744 ], [ 120.3363078, 23.3225924 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103309091", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6306074, 24.0866805 ], [ 120.6287038, 24.0893328 ], [ 120.627445, 24.0910375 ], [ 120.6259411, 24.0931232 ], [ 120.6250473, 24.0944322 ], [ 120.6235257, 24.0964485 ], [ 120.6210179, 24.0977965 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103774600", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.752246, 23.994757 ], [ 120.7493778, 23.9958823 ], [ 120.7459901, 23.9972057 ], [ 120.7428702, 23.9984215 ], [ 120.739857, 24.0003549 ], [ 120.7377334, 24.0023962 ], [ 120.734742, 24.0045597 ], [ 120.7337532, 24.0050318 ], [ 120.7319359, 24.0058995 ], [ 120.7312603, 24.0060999 ], [ 120.728914, 24.0067961 ], [ 120.7263106, 24.0075863 ], [ 120.7229115, 24.0085804 ], [ 120.7200444, 24.007972 ], [ 120.7171778, 24.0082488 ], [ 120.7153483, 24.0078282 ], [ 120.7125022, 24.0068155 ], [ 120.7098537, 24.0071765 ], [ 120.7085791, 24.0080477 ], [ 120.7081499, 24.008341 ], [ 120.7052557, 24.0114161 ], [ 120.7014827, 24.0153068 ], [ 120.6968162, 24.0188553 ], [ 120.6947733, 24.0204553 ], [ 120.6917969, 24.0227295 ], [ 120.6895356, 24.0244663 ], [ 120.6874936, 24.026019 ], [ 120.6853043, 24.0277149 ], [ 120.6827391, 24.0297143 ], [ 120.6806545, 24.0317578 ], [ 120.6788372, 24.0335574 ], [ 120.6767576, 24.0355965 ], [ 120.6748302, 24.0374975 ], [ 120.6730456, 24.0392324 ], [ 120.6709578, 24.0413084 ], [ 120.6690339, 24.0427547 ], [ 120.6658452, 24.045096 ], [ 120.6638501, 24.0466297 ], [ 120.6615661, 24.0483651 ], [ 120.6594591, 24.0499593 ], [ 120.6567669, 24.0519971 ], [ 120.654207, 24.0539196 ], [ 120.6531333, 24.0554262 ], [ 120.6511912, 24.0580904 ], [ 120.6493106, 24.0607269 ], [ 120.6473343, 24.0634712 ], [ 120.6455419, 24.0659626 ], [ 120.6437556, 24.0684367 ], [ 120.6418144, 24.0711349 ], [ 120.6404097, 24.0731141 ], [ 120.6389012, 24.0751802 ], [ 120.6371105, 24.0776275 ], [ 120.6353805, 24.0801053 ], [ 120.6341377, 24.0818278 ], [ 120.6324013, 24.0841899 ], [ 120.6306074, 24.0866805 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103947639", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6210179, 24.0977965 ], [ 120.6175793, 24.0996376 ], [ 120.6153552, 24.1008211 ], [ 120.6130454, 24.1020071 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103964827", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6536515, 24.0014419 ], [ 120.6528279, 24.003546 ], [ 120.6502117, 24.0051605 ], [ 120.6487169, 24.0058605 ], [ 120.6455677, 24.0061935 ], [ 120.643285, 24.0078584 ], [ 120.64097, 24.0090855 ], [ 120.6393003, 24.0110827 ], [ 120.6391371, 24.0145465 ], [ 120.6388695, 24.0158595 ], [ 120.6383836, 24.0184096 ], [ 120.6376416, 24.0208671 ], [ 120.6360511, 24.0243657 ], [ 120.6349205, 24.0278376 ], [ 120.6335009, 24.0307837 ], [ 120.632162, 24.0340381 ], [ 120.6317318, 24.0363405 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "103964830", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177697, 24.0497513 ], [ 120.5203955, 24.0504148 ], [ 120.5235501, 24.0512638 ], [ 120.5262316, 24.0519511 ], [ 120.5287952, 24.0525749 ], [ 120.5315757, 24.0532356 ], [ 120.5344653, 24.0539242 ], [ 120.5374308, 24.0534863 ], [ 120.5404773, 24.0530356 ], [ 120.5437616, 24.0525612 ], [ 120.5475391, 24.0520058 ], [ 120.5513447, 24.0521954 ], [ 120.5540629, 24.0522447 ], [ 120.5566812, 24.0524178 ], [ 120.5592143, 24.0514105 ], [ 120.5617457, 24.0512896 ], [ 120.5636348, 24.0526808 ], [ 120.5679822, 24.0512751 ], [ 120.5721599, 24.0499011 ], [ 120.5748509, 24.0489982 ], [ 120.5776133, 24.0480679 ], [ 120.5812206, 24.047065 ], [ 120.585329, 24.0454707 ], [ 120.5880269, 24.0445755 ], [ 120.5891007, 24.0442135 ], [ 120.5924355, 24.0429552 ], [ 120.5943009, 24.0422607 ], [ 120.5983318, 24.0407458 ], [ 120.6010683, 24.0397223 ], [ 120.602916, 24.0391628 ], [ 120.6083879, 24.0375637 ], [ 120.6099885, 24.0370746 ], [ 120.6123165, 24.0363741 ], [ 120.6149442, 24.035566 ], [ 120.6178747, 24.0346941 ], [ 120.6208835, 24.0337972 ], [ 120.6228182, 24.0332171 ], [ 120.6240257, 24.0336436 ], [ 120.6267147, 24.034572 ], [ 120.630575, 24.0359255 ], [ 120.6317318, 24.0363405 ], [ 120.6343524, 24.0372611 ], [ 120.6381274, 24.0385897 ], [ 120.6418478, 24.0398978 ], [ 120.6457905, 24.0412225 ], [ 120.6493488, 24.0425134 ], [ 120.6516504, 24.0433108 ], [ 120.6561327, 24.0448898 ], [ 120.6593022, 24.0450873 ], [ 120.6623943, 24.045248 ], [ 120.6682843, 24.0455994 ], [ 120.6712047, 24.045766 ], [ 120.674405, 24.0459484 ], [ 120.6774116, 24.0461113 ], [ 120.679824, 24.046254 ], [ 120.684543, 24.0465999 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "104661318", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4894889, 24.2106296 ], [ 120.4899715, 24.2105071 ], [ 120.4925794, 24.2103367 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "104661319", "name": "中火南~全興線(一進一出彰濱)", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5153308, 24.1601254 ], [ 120.5144602, 24.162849 ], [ 120.5136422, 24.1653785 ], [ 120.5128651, 24.167838 ], [ 120.5119759, 24.1704027 ], [ 120.5105298, 24.1727216 ], [ 120.5098015, 24.1743498 ], [ 120.5087234, 24.1766147 ], [ 120.5072961, 24.1796622 ], [ 120.5033744, 24.1818163 ], [ 120.5011926, 24.1838771 ], [ 120.4989354, 24.1859871 ], [ 120.496809, 24.1880235 ], [ 120.4945969, 24.1901868 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "104661324", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4893557, 24.2103153 ], [ 120.4898982, 24.2102993 ], [ 120.4925794, 24.2103367 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "104661325", "name": "中火南~中寮線(一進一出全興)", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4892468, 24.2087254 ], [ 120.4907681, 24.2065322 ], [ 120.4915731, 24.2031438 ], [ 120.4919778, 24.2013529 ], [ 120.4935249, 24.1965948 ], [ 120.4945178, 24.1935461 ], [ 120.495547, 24.1902997 ], [ 120.4977428, 24.1884353 ], [ 120.5002352, 24.1863748 ], [ 120.5026563, 24.1843815 ], [ 120.5047603, 24.1827056 ], [ 120.5075499, 24.1803114 ], [ 120.5103294, 24.1766905 ], [ 120.5132133, 24.1730207 ], [ 120.5151966, 24.169197 ], [ 120.517104, 24.1654801 ], [ 120.5169179, 24.1615674 ], [ 120.5157194, 24.1598556 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "104661330", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4893949, 24.2090672 ], [ 120.4912572, 24.2085433 ], [ 120.4932535, 24.2077243 ], [ 120.4958528, 24.2066749 ], [ 120.4978554, 24.205821 ], [ 120.5000324, 24.2049719 ], [ 120.5019672, 24.2041428 ], [ 120.5031632, 24.2008549 ], [ 120.5044437, 24.1989347 ], [ 120.5069436, 24.1965317 ], [ 120.5088708, 24.1957845 ], [ 120.5107412, 24.1948417 ], [ 120.5119961, 24.1918333 ], [ 120.5139302, 24.1891438 ], [ 120.5162511, 24.1859377 ], [ 120.5186266, 24.1826628 ], [ 120.5209655, 24.1794045 ], [ 120.5233471, 24.1760682 ], [ 120.5255537, 24.1729349 ], [ 120.5277701, 24.1719979 ], [ 120.5302646, 24.1720586 ], [ 120.533148, 24.1721031 ], [ 120.5358253, 24.1721538 ], [ 120.538234, 24.1724721 ], [ 120.5401552, 24.172355 ], [ 120.5439441, 24.1722661 ], [ 120.5468252, 24.1730823 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "105013657", "name": "中火南~全興線(一進一出彰濱)", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4945969, 24.1901868 ], [ 120.4923126, 24.1889392 ], [ 120.4887231, 24.1865131 ], [ 120.486189, 24.1844985 ], [ 120.4838178, 24.1821572 ], [ 120.481573, 24.1796359 ], [ 120.4787434, 24.1771834 ], [ 120.4761445, 24.1748853 ], [ 120.4738153, 24.1728265 ], [ 120.4715465, 24.170862 ], [ 120.4680637, 24.1688781 ], [ 120.4661277, 24.1666079 ], [ 120.4639905, 24.1641569 ], [ 120.461856, 24.161724 ], [ 120.4592767, 24.1589903 ], [ 120.4580089, 24.1563928 ], [ 120.4555774, 24.1534723 ], [ 120.4531599, 24.1505575 ], [ 120.4507032, 24.1476775 ], [ 120.4482366, 24.1447541 ], [ 120.4457518, 24.1418163 ], [ 120.4437105, 24.1390766 ], [ 120.4417201, 24.13636 ], [ 120.4393754, 24.133675 ], [ 120.4367073, 24.1333324 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "108211186", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2607881, 23.0881447 ], [ 120.2591985, 23.0852867 ], [ 120.2588049, 23.0829786 ], [ 120.2594508, 23.0811277 ], [ 120.2604996, 23.0782568 ], [ 120.2619872, 23.0771075 ], [ 120.2639931, 23.0767285 ], [ 120.2655694, 23.0752333 ], [ 120.2664255, 23.0729989 ], [ 120.2680831, 23.0710839 ], [ 120.2679061, 23.0695441 ], [ 120.2681958, 23.0672047 ], [ 120.2682864, 23.064221 ], [ 120.2684602, 23.0615397 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "108573909", "power": "generator", "z_order": 0, "other_tags": { "generator:source": "nuclear", "plant": "output" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6630275, 25.2028039 ], [ 121.6634788, 25.2027637 ], [ 121.6634338, 25.2023495 ], [ 121.6629825, 25.2023897 ], [ 121.6630275, 25.2028039 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "108573934", "power": "generator", "z_order": 0, "other_tags": { "generator:source": "nuclear", "plant": "output" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.661907, 25.2029296 ], [ 121.6623583, 25.2028894 ], [ 121.6623133, 25.2024752 ], [ 121.6618619, 25.2025154 ], [ 121.661907, 25.2029296 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "108574879", "power": "generator", "z_order": 0, "other_tags": { "generator:method": "fission", "generator:source": "nuclear" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.752276, 21.9576717 ], [ 120.7523166, 21.95762 ], [ 120.7523369, 21.9575588 ], [ 120.7523346, 21.9574948 ], [ 120.7523099, 21.957435 ], [ 120.7522656, 21.9573859 ], [ 120.7522064, 21.9573529 ], [ 120.7521657, 21.9573422 ], [ 120.7521427, 21.9573397 ], [ 120.7520815, 21.9573446 ], [ 120.7520244, 21.9573657 ], [ 120.7519764, 21.9574014 ], [ 120.7519404, 21.957451 ], [ 120.7519224, 21.9575084 ], [ 120.7519209, 21.9575425 ], [ 120.7519266, 21.9575794 ], [ 120.7519399, 21.9576145 ], [ 120.75196, 21.9576465 ], [ 120.7519863, 21.9576744 ], [ 120.7520181, 21.9576972 ], [ 120.7520539, 21.9577139 ], [ 120.7520959, 21.9577245 ], [ 120.7521393, 21.9577269 ], [ 120.7521803, 21.9577213 ], [ 120.7522194, 21.9577083 ], [ 120.752276, 21.9576717 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "108574880", "power": "generator", "z_order": 0, "other_tags": { "generator:method": "fission", "generator:source": "nuclear" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7514849, 21.958649 ], [ 120.751525, 21.958597 ], [ 120.7515446, 21.9585356 ], [ 120.7515415, 21.9584717 ], [ 120.7515161, 21.9584122 ], [ 120.751471, 21.9583637 ], [ 120.7514114, 21.9583316 ], [ 120.7513577, 21.9583201 ], [ 120.7512978, 21.9583229 ], [ 120.7512411, 21.9583414 ], [ 120.7511926, 21.9583742 ], [ 120.7511562, 21.9584185 ], [ 120.7511349, 21.9584706 ], [ 120.7511302, 21.9585202 ], [ 120.7511353, 21.9585555 ], [ 120.7511474, 21.9585894 ], [ 120.751169, 21.9586247 ], [ 120.7511981, 21.958655 ], [ 120.7512362, 21.9586804 ], [ 120.7512794, 21.9586974 ], [ 120.7513492, 21.9587049 ], [ 120.7513899, 21.9586991 ], [ 120.7514285, 21.958686 ], [ 120.7514849, 21.958649 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "110413202", "name": "自立變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.239633, 24.9724867 ], [ 121.2388163, 24.9724912 ], [ 121.2388124, 24.9718122 ], [ 121.2392021, 24.9718184 ], [ 121.2395259, 24.9718235 ], [ 121.2395945, 24.9718407 ], [ 121.2396297, 24.9718724 ], [ 121.239642, 24.9719127 ], [ 121.239633, 24.9724867 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "110413203", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2229683, 24.966737 ], [ 121.2233372, 24.9666862 ], [ 121.2234474, 24.9674338 ], [ 121.2230712, 24.9674776 ], [ 121.22307, 24.967469 ], [ 121.2230474, 24.9673066 ], [ 121.2229683, 24.966737 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "110413204", "name": "中壢一次變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "yes" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.24325, 24.9901032 ], [ 121.2437968, 24.988513 ], [ 121.2447489, 24.9887825 ], [ 121.2456925, 24.9890589 ], [ 121.2448552, 24.9914805 ], [ 121.2440506, 24.9912306 ], [ 121.2439084, 24.9911864 ], [ 121.2442028, 24.9904017 ], [ 121.24325, 24.9901032 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "110413205", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2664994, 24.9753801 ], [ 121.2666389, 24.9750883 ], [ 121.2674328, 24.9753995 ], [ 121.2672611, 24.975701 ], [ 121.2664994, 24.9753801 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "112022553", "name": "五權變電所", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2140177, 25.0211573 ], [ 121.2147721, 25.0211433 ], [ 121.214831, 25.0214646 ], [ 121.2149243, 25.0216684 ], [ 121.2145375, 25.0217662 ], [ 121.2140356, 25.0212774 ], [ 121.2140177, 25.0211573 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114396899", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2310716, 24.9449499 ], [ 121.2315353, 24.9448403 ], [ 121.2319135, 24.9454931 ], [ 121.2323919, 24.9458054 ], [ 121.233173, 24.9462104 ], [ 121.2352797, 24.9474059 ], [ 121.2371143, 24.9484375 ], [ 121.2393137, 24.9497182 ], [ 121.2413511, 24.9501491 ], [ 121.2436037, 24.950349 ], [ 121.2462826, 24.950525 ], [ 121.2485029, 24.9504828 ], [ 121.2507453, 24.9502576 ], [ 121.2530611, 24.9501321 ], [ 121.2550942, 24.9500718 ], [ 121.2572722, 24.9498383 ], [ 121.260126, 24.9498184 ], [ 121.2625508, 24.9495849 ], [ 121.2644074, 24.9490693 ], [ 121.2661235, 24.9484278 ], [ 121.26774, 24.947742 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114397074", "name": "變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "yes" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2306379, 24.944885 ], [ 121.2311247, 24.9447483 ], [ 121.23123, 24.9450766 ], [ 121.2309937, 24.945146 ], [ 121.2309339, 24.9451092 ], [ 121.2308895, 24.9451376 ], [ 121.2307009, 24.9450258 ], [ 121.2306379, 24.944885 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114402826", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2576664, 25.1178128 ], [ 121.2591175, 25.1192816 ], [ 121.2622074, 25.119505 ], [ 121.2651364, 25.1185147 ], [ 121.267722, 25.1167758 ], [ 121.2683121, 25.1163965 ], [ 121.2703292, 25.1143661 ], [ 121.2713484, 25.1125208 ], [ 121.2712304, 25.1105968 ], [ 121.2715952, 25.1089555 ], [ 121.2721005, 25.1055844 ], [ 121.2729849, 25.1031669 ], [ 121.2730865, 25.100542 ], [ 121.2733869, 25.0988413 ], [ 121.2738268, 25.0953776 ], [ 121.2732206, 25.092949 ], [ 121.2745215, 25.0909621 ], [ 121.2753114, 25.088409 ], [ 121.2765072, 25.0864278 ], [ 121.2761871, 25.0849543 ], [ 121.2745563, 25.0824927 ], [ 121.2733887, 25.0795822 ], [ 121.2715331, 25.0763256 ], [ 121.2726606, 25.0748969 ], [ 121.2718692, 25.0729956 ], [ 121.2734596, 25.0712847 ], [ 121.2726725, 25.0682086 ], [ 121.2731768, 25.0658884 ], [ 121.2743216, 25.0646025 ], [ 121.2763556, 25.0635855 ], [ 121.2793886, 25.0636924 ], [ 121.2807602, 25.0624244 ], [ 121.281033, 25.0605899 ], [ 121.2818377, 25.0582069 ], [ 121.2800583, 25.0550552 ], [ 121.2793363, 25.0523301 ], [ 121.2791488, 25.048787 ], [ 121.2767225, 25.0467623 ], [ 121.2765723, 25.0421744 ], [ 121.2752633, 25.0392972 ], [ 121.2774735, 25.035546 ], [ 121.2777717, 25.0333377 ], [ 121.277731, 25.0313076 ], [ 121.2777758, 25.0290907 ], [ 121.2743407, 25.0272247 ], [ 121.272089, 25.0272452 ], [ 121.2718718, 25.0263945 ], [ 121.2713756, 25.0244505 ], [ 121.2696053, 25.0224527 ], [ 121.2699398, 25.0198652 ], [ 121.2692483, 25.0168635 ], [ 121.2673455, 25.0146435 ], [ 121.2642556, 25.0122722 ], [ 121.2614661, 25.0101322 ], [ 121.2582689, 25.0088497 ], [ 121.2565946, 25.0077802 ], [ 121.2530868, 25.0065818 ], [ 121.2514453, 25.0052123 ], [ 121.2506514, 25.003677 ], [ 121.2500291, 25.0014212 ], [ 121.2503001, 24.9983212 ], [ 121.2489533, 24.9976484 ], [ 121.2489081, 24.9947933 ], [ 121.2489268, 24.9929924 ], [ 121.2486025, 24.9904229 ], [ 121.2451482, 24.990373 ], [ 121.2445943, 24.9902435 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114547701", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2513948, 24.8995021 ], [ 121.2525397, 24.8993386 ], [ 121.2522673, 24.8974283 ], [ 121.2533673, 24.8947084 ], [ 121.2550126, 24.8928777 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114547702", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1876136, 24.8479138 ], [ 121.1901584, 24.8511518 ], [ 121.191841, 24.8555322 ], [ 121.1933091, 24.8565593 ], [ 121.1946745, 24.857367 ], [ 121.193822, 24.8585611 ], [ 121.1965424, 24.8604777 ], [ 121.1977234, 24.861256 ], [ 121.2002607, 24.8628135 ], [ 121.2028294, 24.8644219 ], [ 121.2054493, 24.8660453 ], [ 121.2080341, 24.8677375 ], [ 121.2107857, 24.8694624 ], [ 121.2132748, 24.8710583 ], [ 121.2154098, 24.8720127 ], [ 121.2176951, 24.8731029 ], [ 121.2199583, 24.8740896 ], [ 121.2222706, 24.8751839 ], [ 121.2247805, 24.8763186 ], [ 121.2280952, 24.8778205 ], [ 121.2310367, 24.8791569 ], [ 121.2345247, 24.8808999 ], [ 121.236771, 24.8818142 ], [ 121.2395712, 24.8830989 ], [ 121.2419839, 24.8841865 ], [ 121.2444161, 24.8853003 ], [ 121.2467914, 24.8871887 ], [ 121.2492783, 24.8891669 ], [ 121.2514964, 24.8909249 ], [ 121.2550126, 24.8928777 ], [ 121.257493, 24.894109 ], [ 121.2596697, 24.8952291 ], [ 121.2623163, 24.896568 ], [ 121.2647518, 24.8978141 ], [ 121.2671121, 24.8990593 ], [ 121.269348, 24.9008347 ], [ 121.2707458, 24.9021319 ], [ 121.2732066, 24.9042476 ], [ 121.275266, 24.9054139 ], [ 121.2767251, 24.9064458 ], [ 121.278472, 24.9077656 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114548411", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2865114, 24.9148406 ], [ 121.2866789, 24.9152142 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114550938", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2781741, 24.9026717 ], [ 121.2756523, 24.8999162 ], [ 121.2749334, 24.8992544 ], [ 121.273764, 24.8980257 ], [ 121.2716273, 24.8960978 ], [ 121.2697136, 24.894451 ], [ 121.268634, 24.8929997 ], [ 121.2679044, 24.8914257 ], [ 121.2668231, 24.8894853 ], [ 121.2658948, 24.8876451 ], [ 121.2650058, 24.8858825 ], [ 121.2640662, 24.8840403 ], [ 121.2618142, 24.8824653 ], [ 121.2601598, 24.8813562 ], [ 121.2577331, 24.8806999 ], [ 121.2547925, 24.87981 ], [ 121.2519844, 24.8786704 ], [ 121.2493182, 24.8764205 ], [ 121.2481435, 24.8754676 ], [ 121.2456631, 24.8735942 ], [ 121.2437876, 24.8721261 ], [ 121.241873, 24.8706591 ], [ 121.2399657, 24.8692322 ], [ 121.2381019, 24.8677463 ], [ 121.2360628, 24.8661669 ], [ 121.2339666, 24.8645373 ], [ 121.2306758, 24.8626938 ], [ 121.2271593, 24.860754 ], [ 121.2251468, 24.8596252 ], [ 121.2228028, 24.8583286 ], [ 121.2200005, 24.8567475 ], [ 121.2174091, 24.8552854 ], [ 121.2154035, 24.8537693 ], [ 121.2132301, 24.8520206 ], [ 121.211375, 24.8505452 ], [ 121.2072735, 24.8472223 ], [ 121.2049662, 24.8451929 ], [ 121.2023555, 24.842992 ], [ 121.1996921, 24.8419216 ], [ 121.1981793, 24.8412303 ], [ 121.1957536, 24.8402399 ], [ 121.1925821, 24.8388015 ], [ 121.1893171, 24.8373989 ], [ 121.1866772, 24.8361901 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114553859", "name": "核一~頂湖線", "operator": "台灣電力公司", "power": "line", "cables": "6", "voltage": "345000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3638509, 25.0340461 ], [ 121.3644319, 25.0319273 ], [ 121.3650648, 25.0287614 ], [ 121.3665939, 25.0270291 ], [ 121.367967, 25.0209865 ], [ 121.3690369, 25.0189124 ], [ 121.3710421, 25.0180481 ], [ 121.3729392, 25.0166868 ], [ 121.3765658, 25.016771 ], [ 121.3795013, 25.0167903 ], [ 121.3821335, 25.0167413 ], [ 121.3854929, 25.0200765 ], [ 121.3888047, 25.0236544 ], [ 121.3905245, 25.0254987 ], [ 121.3928441, 25.0270067 ], [ 121.3932405, 25.0284934 ], [ 121.3938947, 25.0311422 ], [ 121.3981165, 25.0357133 ], [ 121.3979552, 25.0369934 ], [ 121.4018746, 25.0427892 ], [ 121.4034038, 25.0451261 ], [ 121.404318, 25.0465157 ], [ 121.4055489, 25.0509127 ], [ 121.4062232, 25.0534902 ], [ 121.40551, 25.0576985 ], [ 121.4058873, 25.059177 ], [ 121.406608, 25.0620911 ], [ 121.407002, 25.0646486 ], [ 121.4075226, 25.0684186 ], [ 121.4112713, 25.0746263 ], [ 121.4141553, 25.0795506 ], [ 121.4177421, 25.0855698 ], [ 121.4185196, 25.0868542 ], [ 121.4193214, 25.0881929 ], [ 121.4223874, 25.092516 ], [ 121.4263991, 25.0981512 ], [ 121.428721, 25.1010045 ], [ 121.430594, 25.1037689 ], [ 121.4340671, 25.1090469 ], [ 121.4353763, 25.1111321 ], [ 121.4359666, 25.1121318 ], [ 121.4371319, 25.1140769 ], [ 121.4375621, 25.1147405 ], [ 121.438867, 25.1168732 ], [ 121.439549, 25.1213848 ], [ 121.4400081, 25.1244768 ], [ 121.4406234, 25.1284892 ], [ 121.4427417, 25.1344323 ], [ 121.4442887, 25.1389584 ], [ 121.445893, 25.143489 ], [ 121.4462499, 25.1445191 ], [ 121.4492, 25.1473522 ], [ 121.4518657, 25.1499843 ], [ 121.4545384, 25.1525997 ], [ 121.457446, 25.1553889 ], [ 121.45945, 25.1573379 ], [ 121.4609023, 25.158813 ], [ 121.4622435, 25.1601226 ], [ 121.4638121, 25.1606953 ], [ 121.4655804, 25.1641504 ], [ 121.4644729, 25.1683103 ], [ 121.4634387, 25.1724817 ], [ 121.4627643, 25.1762621 ], [ 121.4638006, 25.1786931 ], [ 121.4655138, 25.1826555 ], [ 121.4664236, 25.1838874 ], [ 121.467718, 25.1855167 ], [ 121.4699332, 25.1879557 ], [ 121.4719876, 25.1902407 ], [ 121.4746832, 25.1932388 ], [ 121.4772028, 25.1960018 ], [ 121.4810183, 25.2002519 ], [ 121.485258, 25.204479 ], [ 121.4873851, 25.2067268 ], [ 121.490323, 25.2097073 ], [ 121.4928597, 25.212297 ], [ 121.4938291, 25.2136258 ], [ 121.4961365, 25.2168883 ], [ 121.497061, 25.2181537 ], [ 121.5007888, 25.2233541 ], [ 121.5023116, 25.2246789 ], [ 121.5052604, 25.2272098 ], [ 121.508348, 25.2298688 ], [ 121.5093494, 25.2306953 ], [ 121.5107721, 25.2326351 ], [ 121.5121818, 25.2345765 ], [ 121.5151388, 25.2378798 ], [ 121.5163467, 25.2392989 ], [ 121.5190751, 25.242297 ], [ 121.5217553, 25.2453102 ], [ 121.5256775, 25.2483705 ], [ 121.5295158, 25.2513242 ], [ 121.5313938, 25.2527805 ], [ 121.5336037, 25.2545078 ], [ 121.5350729, 25.2563251 ], [ 121.5370676, 25.2588605 ], [ 121.5390174, 25.2613086 ], [ 121.5403068, 25.2617339 ], [ 121.5431283, 25.2626634 ], [ 121.5461311, 25.2636654 ], [ 121.5492541, 25.2646882 ], [ 121.5514768, 25.2654316 ], [ 121.554709, 25.2664901 ], [ 121.5571826, 25.2672738 ], [ 121.5606858, 25.26848 ], [ 121.5619614, 25.2688794 ], [ 121.5633632, 25.2696675 ], [ 121.5651944, 25.2707037 ], [ 121.567916, 25.2722314 ], [ 121.5721165, 25.2746035 ], [ 121.576549, 25.2770857 ], [ 121.5781964, 25.2786588 ], [ 121.5807993, 25.2811137 ], [ 121.5825615, 25.282795 ], [ 121.5839966, 25.2841795 ], [ 121.5855695, 25.2845631 ], [ 121.5867101, 25.2840645 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114663177", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2564408, 24.90386 ], [ 121.2565345, 24.9041187 ], [ 121.256626, 24.9043562 ], [ 121.2567262, 24.9045878 ], [ 121.2571327, 24.9046752 ], [ 121.2574307, 24.9047489 ], [ 121.2577288, 24.9048144 ], [ 121.2580073, 24.9048761 ], [ 121.2583614, 24.9049515 ], [ 121.2586295, 24.904996 ], [ 121.2587529, 24.905446 ], [ 121.2587234, 24.9058937 ], [ 121.2594529, 24.9061053 ], [ 121.2601744, 24.9062951 ], [ 121.2608396, 24.9064191 ], [ 121.2615495, 24.9062218 ], [ 121.2618515, 24.9064128 ], [ 121.263435, 24.907546 ], [ 121.2643137, 24.9080399 ], [ 121.2668903, 24.9093806 ], [ 121.2678134, 24.9098747 ], [ 121.2687686, 24.9103694 ], [ 121.269529, 24.9107376 ], [ 121.2703951, 24.9112059 ], [ 121.2711145, 24.9116409 ], [ 121.2728061, 24.9125209 ], [ 121.2735284, 24.9128891 ], [ 121.2748012, 24.9131689 ], [ 121.2757695, 24.9133566 ], [ 121.2781929, 24.9139629 ], [ 121.2807475, 24.9151175 ], [ 121.2827624, 24.9157736 ], [ 121.2845512, 24.9157758 ], [ 121.2866789, 24.9152142 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114663464", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2872757, 24.9148879 ], [ 121.2870437, 24.9153796 ], [ 121.2859887, 24.9162566 ], [ 121.2845049, 24.916836 ], [ 121.2831298, 24.9189974 ], [ 121.2810475, 24.9210109 ], [ 121.2790948, 24.9227331 ], [ 121.2772902, 24.9244039 ], [ 121.2756723, 24.9258563 ], [ 121.2752217, 24.9278221 ], [ 121.2746853, 24.9299431 ], [ 121.2742669, 24.931743 ], [ 121.2738592, 24.9336007 ], [ 121.2733978, 24.9356054 ], [ 121.271972, 24.9376387 ], [ 121.2705654, 24.9394773 ], [ 121.2699646, 24.9412474 ], [ 121.2691599, 24.9434173 ], [ 121.2683716, 24.9455788 ], [ 121.26774, 24.947742 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114665430", "name": "松樹一次變電所", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2862002, 24.9133716 ], [ 121.2867356, 24.9134221 ], [ 121.2868079, 24.9134289 ], [ 121.2867887, 24.9135594 ], [ 121.2887978, 24.9136909 ], [ 121.2888482, 24.9136942 ], [ 121.2890229, 24.9137057 ], [ 121.2888314, 24.9152254 ], [ 121.2860752, 24.9150241 ], [ 121.2861896, 24.913511 ], [ 121.2862002, 24.9133716 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "114821212", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2827212, 25.0351866 ], [ 121.2822384, 25.0333396 ], [ 121.2820667, 25.0319597 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "116874354", "power": "line", "line": "bay", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6094783, 22.4185239 ], [ 120.6099816, 22.418642 ], [ 120.6106507, 22.4188754 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "119043571", "power": "line", "line": "bay", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6095718, 22.4181018 ], [ 120.6101012, 22.4182355 ], [ 120.6103901, 22.4183464 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121252218", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4925794, 24.2103367 ], [ 120.4948128, 24.2098958 ], [ 120.4980577, 24.2102726 ], [ 120.5009944, 24.210597 ], [ 120.5038338, 24.2097017 ], [ 120.5067443, 24.2072561 ], [ 120.5086902, 24.2049868 ], [ 120.5107828, 24.2033126 ], [ 120.5133171, 24.2018316 ], [ 120.5156041, 24.2005566 ], [ 120.5183375, 24.1989741 ], [ 120.5211492, 24.1971286 ], [ 120.5245179, 24.1966039 ], [ 120.5267201, 24.1961278 ], [ 120.5269803, 24.1960844 ], [ 120.5299332, 24.1957655 ], [ 120.5328039, 24.1951311 ], [ 120.5356873, 24.1945158 ], [ 120.5389496, 24.1937898 ], [ 120.5415692, 24.1932138 ], [ 120.544829, 24.1922892 ], [ 120.5453591, 24.1894065 ], [ 120.5451499, 24.1868716 ], [ 120.545153, 24.1844001 ], [ 120.545129, 24.1819819 ], [ 120.5487758, 24.180994 ], [ 120.5499281, 24.1831073 ], [ 120.5514128, 24.1850161 ], [ 120.552892, 24.1870963 ], [ 120.5541475, 24.1888683 ], [ 120.5572248, 24.1908992 ], [ 120.5593026, 24.189682 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121252221", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5009944, 24.210597 ], [ 120.5029959, 24.2107322 ], [ 120.5038338, 24.2097017 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121981984", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5398388, 24.1337973 ], [ 120.5377672, 24.135355 ], [ 120.5359166, 24.1383091 ], [ 120.5343221, 24.1409171 ], [ 120.5325844, 24.1439595 ], [ 120.5318606, 24.1468535 ], [ 120.5309991, 24.1503965 ], [ 120.5302273, 24.1535469 ], [ 120.5294267, 24.1569595 ], [ 120.5287701, 24.1597212 ], [ 120.5268906, 24.1610026 ], [ 120.5239984, 24.1606798 ], [ 120.5184633, 24.1595206 ], [ 120.5167332, 24.1591503 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121981985", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5448177, 24.1291109 ], [ 120.5433176, 24.1317616 ], [ 120.541492, 24.1350172 ], [ 120.5400004, 24.1376788 ], [ 120.5381657, 24.1409046 ], [ 120.5366412, 24.1436259 ], [ 120.5351802, 24.1462912 ], [ 120.5336989, 24.1488173 ], [ 120.5323054, 24.1513698 ], [ 120.5308606, 24.1539153 ], [ 120.5298252, 24.1578732 ], [ 120.528883, 24.1620388 ], [ 120.5279136, 24.16589 ], [ 120.5289965, 24.1677373 ], [ 120.5300534, 24.1695738 ], [ 120.5329532, 24.1703068 ], [ 120.5358766, 24.1710415 ], [ 120.5382805, 24.1716861 ], [ 120.5397659, 24.1714915 ], [ 120.5441996, 24.1710098 ], [ 120.5473616, 24.172542 ], [ 120.5486005, 24.1731457 ], [ 120.5519398, 24.1747958 ], [ 120.5543339, 24.1772488 ], [ 120.5574096, 24.1806118 ], [ 120.5592721, 24.1826582 ], [ 120.5609968, 24.1845046 ], [ 120.5640873, 24.1855492 ], [ 120.5660955, 24.1862184 ], [ 120.5674651, 24.1853616 ], [ 120.5689147, 24.1844388 ], [ 120.5701807, 24.183648 ], [ 120.5705612, 24.1832291 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121981986", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5727343, 24.1821792 ], [ 120.5730365, 24.1818183 ], [ 120.5720969, 24.1811224 ], [ 120.5710734, 24.1803466 ], [ 120.569777, 24.1816311 ], [ 120.568516, 24.1828665 ], [ 120.5675462, 24.1838362 ], [ 120.56646, 24.1850064 ], [ 120.5644535, 24.1840845 ], [ 120.5622051, 24.1830537 ], [ 120.5604835, 24.1822752 ], [ 120.5592115, 24.1808432 ], [ 120.5575948, 24.1791165 ], [ 120.5558934, 24.1770454 ], [ 120.5535198, 24.1745005 ], [ 120.5515674, 24.1722868 ], [ 120.5501007, 24.1705845 ], [ 120.5480198, 24.1694874 ], [ 120.5444314, 24.1703147 ], [ 120.5420882, 24.170746 ], [ 120.540432, 24.1710376 ], [ 120.5387185, 24.1692527 ], [ 120.5360101, 24.1688238 ], [ 120.5360557, 24.1668285 ], [ 120.5361837, 24.1647884 ], [ 120.5363618, 24.1630082 ], [ 120.5373398, 24.1588788 ], [ 120.5378967, 24.1571373 ], [ 120.5382221, 24.1560975 ], [ 120.5384513, 24.1553651 ], [ 120.5400062, 24.1533597 ], [ 120.5407434, 24.1512946 ], [ 120.5407146, 24.1511557 ], [ 120.5405272, 24.1487872 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121997902", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7389243, 25.1579501 ], [ 121.7383533, 25.1573923 ], [ 121.7380811, 25.1557951 ], [ 121.7378743, 25.1549721 ], [ 121.737481, 25.1544998 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121997903", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7361602, 25.1545561 ], [ 121.735345, 25.1553572 ], [ 121.7328602, 25.1568418 ], [ 121.7304353, 25.1581007 ], [ 121.7280538, 25.1593526 ], [ 121.7263408, 25.1585614 ], [ 121.7233644, 25.1581804 ], [ 121.7195629, 25.1576747 ], [ 121.7137781, 25.1567641 ], [ 121.7107848, 25.1553047 ], [ 121.7084593, 25.1554209 ], [ 121.703108, 25.1575277 ], [ 121.7017841, 25.1580452 ], [ 121.6995613, 25.1589349 ], [ 121.6955528, 25.1605448 ], [ 121.6915196, 25.1621407 ], [ 121.6897827, 25.1628406 ], [ 121.6883301, 25.1634209 ], [ 121.6864698, 25.1642592 ], [ 121.6829384, 25.1658734 ], [ 121.6815129, 25.1667515 ], [ 121.6782905, 25.168723 ], [ 121.6727137, 25.172184 ], [ 121.6703143, 25.1736498 ], [ 121.6685372, 25.1748 ], [ 121.6633845, 25.1779185 ], [ 121.6619861, 25.1811711 ], [ 121.6595533, 25.1865515 ], [ 121.6595294, 25.1872846 ], [ 121.6595256, 25.1873986 ], [ 121.6594662, 25.1892195 ], [ 121.6592579, 25.1937394 ], [ 121.6592589, 25.1978896 ], [ 121.6600995, 25.1996134 ], [ 121.6608852, 25.1997483 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "121997905", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0160394, 24.8051618 ], [ 121.0175708, 24.8070736 ], [ 121.0194735, 24.8095802 ], [ 121.0199334, 24.8102061 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122063472", "name": "核二~汐止線", "operator": "台灣電力公司", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6607958, 25.2001501 ], [ 121.6598562, 25.1999999 ], [ 121.6565879, 25.1979562 ], [ 121.6519924, 25.1933761 ], [ 121.6495362, 25.19091 ], [ 121.649336, 25.1900402 ], [ 121.6485816, 25.1867831 ], [ 121.6479439, 25.1839748 ], [ 121.6468768, 25.1794984 ], [ 121.6463285, 25.1765702 ], [ 121.6455635, 25.1726094 ], [ 121.6450193, 25.1699089 ], [ 121.6444487, 25.1668019 ], [ 121.6439224, 25.1640784 ], [ 121.6436277, 25.1624951 ], [ 121.6427941, 25.1580452 ], [ 121.6434489, 25.1528002 ], [ 121.6441944, 25.1487914 ], [ 121.6447302, 25.1458177 ], [ 121.6452283, 25.1427466 ], [ 121.6456365, 25.1402802 ], [ 121.6465006, 25.1343635 ], [ 121.6468303, 25.1321918 ], [ 121.6477139, 25.1259446 ], [ 121.6479824, 25.1238575 ], [ 121.6481475, 25.1223997 ], [ 121.6482867, 25.1210968 ], [ 121.6485607, 25.1190559 ], [ 121.6490628, 25.1150842 ], [ 121.6496908, 25.110088 ], [ 121.6499567, 25.1081359 ], [ 121.6505472, 25.1033196 ], [ 121.6495641, 25.1010473 ], [ 121.6487941, 25.0993153 ], [ 121.6461961, 25.0932704 ], [ 121.643679, 25.0899646 ], [ 121.6426449, 25.0885623 ], [ 121.641847, 25.0861897 ], [ 121.6412, 25.0842823 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122066598", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6130695, 25.2044491 ], [ 121.6147328, 25.202523 ], [ 121.6154568, 25.2016813 ], [ 121.620104, 25.2007842 ], [ 121.6256459, 25.2027178 ], [ 121.6285901, 25.2037242 ], [ 121.6324336, 25.2039805 ], [ 121.636248, 25.2027049 ], [ 121.6403323, 25.2013731 ], [ 121.6443903, 25.200485 ], [ 121.6490874, 25.2013853 ], [ 121.6513788, 25.2020281 ], [ 121.6537661, 25.2017144 ], [ 121.6563192, 25.2013458 ], [ 121.6599589, 25.2003932 ], [ 121.6607365, 25.2004999 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122150811", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 50, "other_tags": { "circuits": "4", "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4497794, 22.63443 ], [ 120.4479061, 22.6339535 ], [ 120.4484252, 22.6292781 ], [ 120.4502226, 22.6261379 ], [ 120.4525038, 22.6227208 ], [ 120.4531413, 22.6188985 ], [ 120.4520017, 22.6155693 ], [ 120.4516152, 22.6122604 ], [ 120.4511533, 22.6089376 ], [ 120.4525486, 22.6051576 ], [ 120.4532486, 22.6013406 ], [ 120.4543007, 22.5977824 ], [ 120.4543949, 22.59491 ], [ 120.4554231, 22.5918318 ], [ 120.455709, 22.5887601 ], [ 120.4554044, 22.5859031 ], [ 120.4550507, 22.5819874 ], [ 120.4537084, 22.5786116 ], [ 120.4530727, 22.5749304 ], [ 120.4508424, 22.5716061 ], [ 120.4485884, 22.568284 ], [ 120.4484957, 22.5651353 ], [ 120.4486046, 22.5617015 ], [ 120.447482, 22.558113 ], [ 120.4463259, 22.5540993 ], [ 120.4459416, 22.5523363 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122190580", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5448177, 24.1291109 ], [ 120.5463286, 24.1264161 ], [ 120.5479585, 24.123555 ], [ 120.5503016, 24.1193621 ], [ 120.5538564, 24.1171504 ], [ 120.5571559, 24.1162398 ], [ 120.5601331, 24.1154195 ], [ 120.5630448, 24.1146037 ], [ 120.5664992, 24.1136502 ], [ 120.5692896, 24.112895 ], [ 120.5725843, 24.1110408 ], [ 120.5759378, 24.1099642 ], [ 120.5796616, 24.1088676 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122190583", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5309341, 24.1233353 ], [ 120.5292461, 24.1213814 ], [ 120.5272596, 24.1190429 ], [ 120.5267249, 24.1163764 ], [ 120.5262268, 24.1137986 ], [ 120.5257114, 24.1111854 ], [ 120.5251392, 24.1083442 ], [ 120.5245739, 24.1054794 ], [ 120.525556, 24.1036667 ], [ 120.5267004, 24.1015698 ], [ 120.5279096, 24.0993243 ], [ 120.5273169, 24.0976667 ], [ 120.5264938, 24.095417 ], [ 120.5256097, 24.0930882 ], [ 120.5253307, 24.0903107 ], [ 120.5250444, 24.0878447 ], [ 120.5237981, 24.0856785 ], [ 120.5228956, 24.0837768 ], [ 120.5217471, 24.0816025 ], [ 120.5207012, 24.0796013 ], [ 120.5195336, 24.0774141 ], [ 120.5198256, 24.0749538 ], [ 120.5201624, 24.0725627 ], [ 120.5204928, 24.0702708 ], [ 120.5208944, 24.0678382 ], [ 120.5212532, 24.0654082 ], [ 120.5215654, 24.0632199 ], [ 120.5211676, 24.0609577 ], [ 120.5207224, 24.0583793 ], [ 120.520208, 24.0553679 ], [ 120.5197711, 24.0528241 ], [ 120.5186554, 24.0514928 ], [ 120.5175539, 24.050181 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122190593", "name": "全興超高壓變電所", "power": "substation", "voltage": "345000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5148771, 24.158872 ], [ 120.5135977, 24.1588653 ], [ 120.5135548, 24.1589087 ], [ 120.5135184, 24.1608281 ], [ 120.5146509, 24.1608377 ], [ 120.5147908, 24.1608389 ], [ 120.5154246, 24.1588533 ], [ 120.5153665, 24.1588241 ], [ 120.5148856, 24.158823 ], [ 120.5148771, 24.158872 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "122190595", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5314459, 24.1238898 ], [ 120.5336094, 24.1264588 ], [ 120.5359407, 24.1292308 ], [ 120.5377939, 24.1314252 ], [ 120.5398388, 24.1337973 ], [ 120.5414444, 24.1356643 ], [ 120.5429271, 24.1374061 ], [ 120.5443351, 24.1391663 ], [ 120.5458078, 24.140905 ], [ 120.5479914, 24.1419817 ], [ 120.5518552, 24.1438837 ], [ 120.5534934, 24.1446895 ], [ 120.5536034, 24.1467053 ], [ 120.5538721, 24.1504795 ], [ 120.5540531, 24.1533307 ], [ 120.5542145, 24.1563858 ], [ 120.5544967, 24.1604091 ], [ 120.5552703, 24.1630123 ], [ 120.5567377, 24.1681588 ], [ 120.5576462, 24.1712687 ], [ 120.5582637, 24.1733812 ], [ 120.5600777, 24.1793082 ], [ 120.5607621, 24.1817367 ], [ 120.5614756, 24.1841067 ], [ 120.5641988, 24.1850254 ], [ 120.5662086, 24.1856974 ], [ 120.5689813, 24.1840337 ], [ 120.5706922, 24.1825065 ], [ 120.5709832, 24.1821597 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "123644965", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0120403, 24.8170069 ], [ 121.0118211, 24.8161924 ], [ 121.010975, 24.8133973 ], [ 121.0101303, 24.8115803 ], [ 121.0101391, 24.8106934 ], [ 121.0097275, 24.8089324 ], [ 121.0094562, 24.8076892 ], [ 121.0113266, 24.805177 ], [ 121.0109972, 24.8036898 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "123843698", "name": "深美~木捷線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5994263, 24.9930153 ], [ 121.5981675, 24.9936124 ], [ 121.5980581, 24.9943617 ], [ 121.5960274, 24.9965417 ], [ 121.5914666, 24.9966293 ], [ 121.5892337, 24.9987042 ], [ 121.588138, 24.9993351 ], [ 121.5863979, 24.9991189 ], [ 121.5864648, 24.9996731 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "123843700", "name": "協和~深美線", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 50, "other_tags": { "alt_name": "協和~深美紅線;協和~深美白線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7358358, 25.1543345 ], [ 121.735195, 25.1551769 ], [ 121.7328971, 25.1565355 ], [ 121.7305014, 25.157716 ], [ 121.7264553, 25.1581029 ], [ 121.72336, 25.1574785 ], [ 121.7193434, 25.1572833 ], [ 121.7161298, 25.1559439 ], [ 121.7130336, 25.1540098 ], [ 121.7117667, 25.1523377 ], [ 121.7100913, 25.1490543 ], [ 121.7090603, 25.1471793 ], [ 121.7072353, 25.1445364 ], [ 121.704433, 25.1402401 ], [ 121.702075, 25.1365104 ], [ 121.7002141, 25.1337667 ], [ 121.6976995, 25.1301475 ], [ 121.6954161, 25.1268723 ], [ 121.6937613, 25.1246205 ], [ 121.6917136, 25.1219218 ], [ 121.689357, 25.1188125 ], [ 121.6875494, 25.1154065 ], [ 121.686569, 25.1136472 ], [ 121.6845878, 25.1099786 ], [ 121.6832805, 25.1082498 ], [ 121.6815143, 25.1059563 ], [ 121.6783979, 25.1017587 ], [ 121.67499, 25.0950074 ], [ 121.674493, 25.0907543 ], [ 121.6763505, 25.0875612 ], [ 121.6784491, 25.0824853 ], [ 121.6796127, 25.0799452 ], [ 121.6801952, 25.0786385 ], [ 121.6828772, 25.0758454 ], [ 121.6847555, 25.0738264 ], [ 121.6892571, 25.0714541 ], [ 121.6907317, 25.0705772 ], [ 121.6910655, 25.069453 ], [ 121.6891525, 25.0656514 ], [ 121.6841667, 25.0642439 ], [ 121.6804686, 25.0632031 ], [ 121.6758877, 25.0612117 ], [ 121.6708579, 25.0589827 ], [ 121.6691592, 25.05822 ], [ 121.6675009, 25.0574724 ], [ 121.6643515, 25.0562095 ], [ 121.6629759, 25.0554091 ], [ 121.6618745, 25.0547712 ], [ 121.6614072, 25.052735 ], [ 121.6590395, 25.0532355 ], [ 121.6565988, 25.0518294 ], [ 121.6547027, 25.049709 ], [ 121.6540584, 25.0473676 ], [ 121.6527362, 25.0443953 ], [ 121.6506056, 25.0394952 ], [ 121.6479244, 25.0365535 ], [ 121.6455396, 25.03392 ], [ 121.6416894, 25.0296883 ], [ 121.638294, 25.0272849 ], [ 121.6354598, 25.0252304 ], [ 121.6348554, 25.0241674 ], [ 121.6336162, 25.0216704 ], [ 121.6322859, 25.0187678 ], [ 121.6303234, 25.0147912 ], [ 121.6286279, 25.0114025 ], [ 121.6287037, 25.0097048 ], [ 121.6279492, 25.0083274 ], [ 121.6260531, 25.0050864 ], [ 121.6253637, 25.0039612 ], [ 121.6255755, 25.003552 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "123843701", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 30, "other_tags": { "circuits": "2", "layer": "3", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6393028, 25.0563652 ], [ 121.6414931, 25.056938 ], [ 121.6433252, 25.0572838 ], [ 121.6456122, 25.0578674 ], [ 121.6465849, 25.0577967 ], [ 121.647862, 25.0580017 ], [ 121.648505, 25.0584064 ], [ 121.6493475, 25.0589 ], [ 121.6501396, 25.0602908 ], [ 121.6561859, 25.0586775 ], [ 121.6609668, 25.0603913 ], [ 121.6632543, 25.0612101 ], [ 121.6670134, 25.0625557 ], [ 121.6699845, 25.0641268 ], [ 121.6746622, 25.0666519 ], [ 121.6755231, 25.0670101 ], [ 121.6790369, 25.0676685 ], [ 121.6843347, 25.0684596 ], [ 121.6891504, 25.071171 ], [ 121.6901914, 25.0716671 ], [ 121.6956352, 25.0741484 ], [ 121.6987585, 25.0755737 ], [ 121.7025227, 25.0773239 ], [ 121.7068873, 25.0793261 ], [ 121.7113507, 25.0811175 ], [ 121.7170577, 25.0834731 ], [ 121.7231436, 25.0850137 ], [ 121.7251432, 25.0855602 ], [ 121.7253334, 25.0856084 ], [ 121.725976, 25.085771 ], [ 121.7272393, 25.0860908 ], [ 121.7296161, 25.0866924 ], [ 121.7316447, 25.087205 ], [ 121.7338887, 25.0877965 ], [ 121.738018, 25.0888458 ], [ 121.7436869, 25.0902533 ], [ 121.7453696, 25.0906839 ], [ 121.7500879, 25.0924253 ], [ 121.7567549, 25.0949917 ], [ 121.7589935, 25.0956819 ], [ 121.7633374, 25.097326 ], [ 121.7684642, 25.0992115 ], [ 121.7712046, 25.1002159 ], [ 121.7750527, 25.1010315 ], [ 121.7798291, 25.1018858 ], [ 121.781283, 25.1043267 ], [ 121.7837351, 25.1084976 ], [ 121.7846549, 25.1101279 ], [ 121.7866297, 25.1118291 ], [ 121.7907886, 25.1140003 ], [ 121.7935679, 25.1153947 ], [ 121.799152, 25.1139578 ], [ 121.800534, 25.1136521 ], [ 121.8025181, 25.1156873 ], [ 121.8058329, 25.1190712 ], [ 121.8084658, 25.1217679 ], [ 121.8098694, 25.1232425 ], [ 121.8126091, 25.1256637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "125228638", "operator": "台灣電力公司", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5872526, 25.2845787 ], [ 121.5880109, 25.2842305 ], [ 121.5886102, 25.2820219 ], [ 121.5883068, 25.2781915 ], [ 121.5882841, 25.2751168 ], [ 121.5880964, 25.2711213 ], [ 121.5879444, 25.2679282 ], [ 121.5885449, 25.2656991 ], [ 121.589283, 25.263037 ], [ 121.5899176, 25.2609027 ], [ 121.5906894, 25.2579925 ], [ 121.5912888, 25.2559054 ], [ 121.592793, 25.2522542 ], [ 121.5936663, 25.2501708 ], [ 121.594553, 25.2481069 ], [ 121.595864, 25.2449382 ], [ 121.5967186, 25.242916 ], [ 121.5975581, 25.2408851 ], [ 121.5988106, 25.237907 ], [ 121.5998067, 25.2355422 ], [ 121.6012909, 25.2320183 ], [ 121.6018182, 25.2302348 ], [ 121.6036357, 25.2241251 ], [ 121.6038458, 25.2233256 ], [ 121.6049338, 25.2191523 ], [ 121.6056401, 25.216464 ], [ 121.6064301, 25.2134251 ], [ 121.6088778, 25.2100892 ], [ 121.6100202, 25.2085436 ], [ 121.6130695, 25.2044491 ], [ 121.6145608, 25.2024584 ], [ 121.6152766, 25.2015212 ], [ 121.6167355, 25.1968448 ], [ 121.6177193, 25.1941462 ], [ 121.6197666, 25.1886264 ], [ 121.6216926, 25.183409 ], [ 121.6223723, 25.1815911 ], [ 121.622947, 25.1800028 ], [ 121.624042, 25.1783694 ], [ 121.6256551, 25.1759439 ], [ 121.6266206, 25.1745088 ], [ 121.6282618, 25.1720543 ], [ 121.6301337, 25.1692506 ], [ 121.6314884, 25.1672032 ], [ 121.6337655, 25.1636787 ], [ 121.6367039, 25.1592819 ], [ 121.6375238, 25.1540239 ], [ 121.6378029, 25.152303 ], [ 121.6377851, 25.1490327 ], [ 121.637706, 25.1439353 ], [ 121.6376439, 25.1408086 ], [ 121.6373732, 25.1373518 ], [ 121.6376013, 25.1355451 ], [ 121.6375337, 25.1306828 ], [ 121.6374766, 25.1291507 ], [ 121.6374456, 25.1236492 ], [ 121.6373698, 25.1197314 ], [ 121.63732, 25.114389 ], [ 121.6372644, 25.1122031 ], [ 121.6372124, 25.1047097 ], [ 121.637139, 25.1020651 ], [ 121.6370976, 25.0989819 ], [ 121.6370119, 25.091826 ], [ 121.6369436, 25.0874739 ], [ 121.6407113, 25.0841711 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "125674314", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0210168, 24.6799302 ], [ 121.0230561, 24.6799851 ], [ 121.0246555, 24.6800423 ], [ 121.0293181, 24.6801371 ], [ 121.0339298, 24.6802348 ], [ 121.0379589, 24.6803178 ], [ 121.0448966, 24.6811036 ], [ 121.0463706, 24.6814544 ], [ 121.0489822, 24.682024 ], [ 121.0513444, 24.6825602 ], [ 121.0548828, 24.6833491 ], [ 121.0575639, 24.6839335 ], [ 121.0613121, 24.6849367 ], [ 121.065837, 24.6875276 ], [ 121.0694009, 24.689522 ], [ 121.0749048, 24.6922525 ], [ 121.0761964, 24.6928961 ], [ 121.0791976, 24.6943806 ], [ 121.0838358, 24.6966626 ], [ 121.0873715, 24.6983114 ], [ 121.0896786, 24.6993815 ], [ 121.0927787, 24.7012142 ], [ 121.0948872, 24.7024437 ], [ 121.0986764, 24.7057805 ], [ 121.1037403, 24.7094014 ], [ 121.1065856, 24.7113931 ], [ 121.109614, 24.7151892 ], [ 121.1106443, 24.716457 ], [ 121.1139748, 24.7204825 ], [ 121.1163598, 24.7241095 ], [ 121.1186072, 24.7275537 ], [ 121.1218795, 24.7294516 ], [ 121.1261431, 24.7320581 ], [ 121.1289557, 24.7337718 ], [ 121.1307301, 24.7348347 ], [ 121.1336221, 24.7365941 ], [ 121.1349853, 24.7374103 ], [ 121.1353655, 24.7376379 ], [ 121.1388926, 24.7397986 ], [ 121.1431889, 24.7423981 ], [ 121.1468513, 24.7446019 ], [ 121.1506939, 24.7469193 ], [ 121.1544849, 24.7493122 ], [ 121.1568019, 24.750731 ], [ 121.1599684, 24.7522676 ], [ 121.1619091, 24.7531946 ], [ 121.164807, 24.7545903 ], [ 121.1668103, 24.7553994 ], [ 121.1703925, 24.7568431 ], [ 121.1739411, 24.7593035 ], [ 121.1768632, 24.7613828 ], [ 121.1787233, 24.7628032 ], [ 121.181102, 24.7645772 ], [ 121.1823262, 24.765681 ], [ 121.1838345, 24.7672991 ], [ 121.1885651, 24.7716718 ], [ 121.188782, 24.7733185 ], [ 121.1893746, 24.7769945 ], [ 121.1899437, 24.7804052 ], [ 121.1904797, 24.7838291 ], [ 121.1910406, 24.7872528 ], [ 121.191665, 24.7911191 ], [ 121.191563, 24.7935822 ], [ 121.1913303, 24.7986073 ], [ 121.19123, 24.800978 ], [ 121.1909871, 24.805624 ], [ 121.1922464, 24.8086439 ], [ 121.1935348, 24.811709 ], [ 121.1941396, 24.8148439 ], [ 121.1955573, 24.8168048 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "128458733", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0036354, 24.8613401 ], [ 121.004288, 24.8587229 ], [ 121.0059345, 24.8568255 ], [ 121.0071771, 24.8560704 ], [ 121.0099486, 24.8550866 ], [ 121.0119645, 24.8530194 ], [ 121.0141762, 24.8521778 ], [ 121.0169526, 24.8514286 ], [ 121.0202293, 24.8500956 ], [ 121.023604, 24.8487215 ], [ 121.024639, 24.8471885 ], [ 121.0247026, 24.8442387 ], [ 121.0283643, 24.8442434 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "129025956", "name": "龍潭超高壓變電所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1923022, 24.8196065 ], [ 121.192283, 24.8194325 ], [ 121.1926418, 24.8167358 ], [ 121.1960131, 24.8171031 ], [ 121.1957972, 24.8185122 ], [ 121.1955816, 24.8202436 ], [ 121.1922063, 24.8198624 ], [ 121.1923022, 24.8196065 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "129716882", "name": "頂湖~龍潭線", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1950445, 24.8203739 ], [ 121.1966337, 24.8211943 ], [ 121.2007371, 24.8212383 ], [ 121.204741, 24.8218087 ], [ 121.2066134, 24.8220338 ], [ 121.2101645, 24.8217459 ], [ 121.2124035, 24.8198391 ], [ 121.2142181, 24.8193467 ], [ 121.217575, 24.8184146 ], [ 121.2201142, 24.8176958 ], [ 121.2230472, 24.8184967 ], [ 121.2250759, 24.8202773 ], [ 121.2278282, 24.8227664 ], [ 121.2308406, 24.8252771 ], [ 121.2324052, 24.8266573 ], [ 121.2347217, 24.8286603 ], [ 121.2378009, 24.8294198 ], [ 121.2414402, 24.8303157 ], [ 121.2439359, 24.8309479 ], [ 121.2462338, 24.8315137 ], [ 121.2488838, 24.8337819 ], [ 121.2510152, 24.8355506 ], [ 121.253693, 24.8378036 ], [ 121.2552792, 24.8407026 ], [ 121.2567459, 24.8435224 ], [ 121.2588536, 24.8472423 ], [ 121.2604667, 24.8502009 ], [ 121.2613139, 24.8517543 ], [ 121.2623443, 24.8536437 ], [ 121.2640437, 24.856735 ], [ 121.2658912, 24.8601268 ], [ 121.267429, 24.8629304 ], [ 121.2689398, 24.8656804 ], [ 121.270435, 24.8684043 ], [ 121.2720463, 24.8713746 ], [ 121.2735697, 24.8741374 ], [ 121.2755906, 24.8761904 ], [ 121.2780651, 24.8774829 ], [ 121.2794057, 24.8804541 ], [ 121.2794431, 24.8840482 ], [ 121.2788622, 24.886098 ], [ 121.2794984, 24.8889273 ], [ 121.2810493, 24.8907717 ], [ 121.284459, 24.8953612 ], [ 121.2858752, 24.8966463 ], [ 121.2891261, 24.8998091 ], [ 121.2899844, 24.9020084 ], [ 121.2908508, 24.9043882 ], [ 121.2918534, 24.9069961 ], [ 121.2927147, 24.909308 ], [ 121.2936032, 24.9117434 ], [ 121.2943609, 24.9137278 ], [ 121.2956582, 24.9158628 ], [ 121.2970321, 24.9179438 ], [ 121.298466, 24.9197589 ], [ 121.3000963, 24.9217007 ], [ 121.3026122, 24.9229797 ], [ 121.3047901, 24.9240748 ], [ 121.3071022, 24.9252472 ], [ 121.3093499, 24.9264001 ], [ 121.3114313, 24.9282536 ], [ 121.3133732, 24.9299873 ], [ 121.3154895, 24.9318553 ], [ 121.3171685, 24.9333195 ], [ 121.3198856, 24.9351777 ], [ 121.3226859, 24.937034 ], [ 121.3252635, 24.9387335 ], [ 121.3272054, 24.9392058 ], [ 121.3289193, 24.9399715 ], [ 121.3320307, 24.941025 ], [ 121.3333436, 24.9430635 ], [ 121.333475, 24.9454398 ], [ 121.3335669, 24.9479457 ], [ 121.333417, 24.9517462 ], [ 121.33354, 24.9545925 ], [ 121.3345249, 24.9565909 ], [ 121.3352708, 24.9584462 ], [ 121.3367085, 24.9602257 ], [ 121.3365582, 24.9643989 ], [ 121.336408, 24.9682214 ], [ 121.3372878, 24.9699327 ], [ 121.3389079, 24.9727921 ], [ 121.3406137, 24.976235 ], [ 121.342266, 24.979172 ], [ 121.3441543, 24.9809809 ], [ 121.3461176, 24.9828773 ], [ 121.3490359, 24.9858142 ], [ 121.3525871, 24.9892767 ], [ 121.3546256, 24.9908904 ], [ 121.3561276, 24.9918823 ], [ 121.3614265, 24.994046 ], [ 121.3650406, 24.9943741 ], [ 121.3678435, 24.9977269 ], [ 121.3691635, 24.9978224 ], [ 121.3712376, 24.9999424 ], [ 121.3737775, 25.0031254 ], [ 121.3739119, 25.0032939 ], [ 121.3745024, 25.0050417 ], [ 121.3734516, 25.0068085 ], [ 121.3680665, 25.0113171 ], [ 121.3671942, 25.0126939 ], [ 121.3651075, 25.0164037 ], [ 121.3648599, 25.0176766 ], [ 121.3644249, 25.0208436 ], [ 121.3642816, 25.0228308 ], [ 121.3637658, 25.0259657 ], [ 121.3636041, 25.0275208 ], [ 121.3632675, 25.0308145 ], [ 121.363155, 25.0319884 ], [ 121.3629506, 25.0340584 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "132864652", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6963876, 24.9957564 ], [ 121.6938556, 24.9938559 ], [ 121.6930879, 24.9932749 ], [ 121.6878603, 24.9890404 ], [ 121.6841644, 24.9860586 ], [ 121.6802793, 24.9828754 ], [ 121.6789139, 24.9819965 ], [ 121.6773757, 24.9810489 ], [ 121.6728762, 24.9787507 ], [ 121.6698279, 24.9764068 ], [ 121.667868, 24.9748894 ], [ 121.6653088, 24.972868 ], [ 121.6632291, 24.9720984 ], [ 121.6559247, 24.9694495 ], [ 121.6499844, 24.9668306 ], [ 121.6482042, 24.9607712 ], [ 121.6430109, 24.9571344 ], [ 121.6399541, 24.9559717 ], [ 121.6374939, 24.9548092 ], [ 121.6359761, 24.9544933 ], [ 121.6305471, 24.9525878 ], [ 121.6269499, 24.9495806 ], [ 121.6254048, 24.9485534 ], [ 121.6240658, 24.9476743 ], [ 121.6201108, 24.9462484 ], [ 121.613181, 24.9438217 ], [ 121.6102924, 24.9428019 ], [ 121.6071548, 24.940726 ], [ 121.6036077, 24.9384099 ], [ 121.602318, 24.9375853 ], [ 121.5965833, 24.9338277 ], [ 121.5932962, 24.9316712 ], [ 121.588599, 24.9287422 ], [ 121.5857074, 24.9279652 ], [ 121.5808569, 24.9266713 ], [ 121.5799466, 24.9264221 ], [ 121.5780175, 24.9259261 ], [ 121.573241, 24.9241219 ], [ 121.5696072, 24.920606 ], [ 121.5674077, 24.9184886 ], [ 121.5649333, 24.9160447 ], [ 121.5638771, 24.9135943 ], [ 121.5627034, 24.912916 ], [ 121.5609107, 24.9119025 ], [ 121.5557722, 24.9089924 ], [ 121.5504993, 24.9057371 ], [ 121.5487891, 24.9045104 ], [ 121.5460432, 24.9030671 ], [ 121.5436426, 24.9020493 ], [ 121.5410801, 24.8988801 ], [ 121.5372654, 24.8957835 ], [ 121.5327411, 24.8951101 ], [ 121.5253344, 24.893972 ], [ 121.5220179, 24.8931689 ], [ 121.5177975, 24.8924154 ], [ 121.5138508, 24.8917079 ], [ 121.5122258, 24.8914102 ], [ 121.505828, 24.8902572 ], [ 121.5024301, 24.8896528 ], [ 121.5004792, 24.8893566 ], [ 121.4930379, 24.8895876 ], [ 121.489457, 24.8877147 ], [ 121.4821524, 24.8866118 ], [ 121.4798248, 24.8862857 ], [ 121.4768272, 24.886952 ], [ 121.4743317, 24.887324 ], [ 121.4729355, 24.8870505 ], [ 121.4658259, 24.8852045 ], [ 121.4636291, 24.8854655 ], [ 121.4622655, 24.8856224 ], [ 121.4600542, 24.8857515 ], [ 121.453251, 24.8823226 ], [ 121.4491929, 24.8807362 ], [ 121.4448384, 24.8781055 ], [ 121.4419797, 24.876195 ], [ 121.4402815, 24.8750643 ], [ 121.4374853, 24.8739887 ], [ 121.4346781, 24.8729327 ], [ 121.4326033, 24.8721364 ], [ 121.42638, 24.8696634 ], [ 121.4232217, 24.8676002 ], [ 121.4176431, 24.8625536 ], [ 121.4173065, 24.8622491 ], [ 121.4154568, 24.8605758 ], [ 121.4136249, 24.8589619 ], [ 121.4123171, 24.8577618 ], [ 121.409612, 24.855419 ], [ 121.4086418, 24.85318 ], [ 121.407871, 24.8495553 ], [ 121.4055403, 24.8471472 ], [ 121.4029482, 24.8452472 ], [ 121.4012209, 24.843985 ], [ 121.3979605, 24.8416295 ], [ 121.3923314, 24.8375866 ], [ 121.3903402, 24.8360128 ], [ 121.3893285, 24.8354146 ], [ 121.3845081, 24.8304795 ], [ 121.3801539, 24.826053 ], [ 121.3772745, 24.8230573 ], [ 121.3740619, 24.8198125 ], [ 121.3724039, 24.8175395 ], [ 121.3708821, 24.8154024 ], [ 121.3691172, 24.8129336 ], [ 121.3668883, 24.809924 ], [ 121.365979, 24.8086464 ], [ 121.3649197, 24.8072218 ], [ 121.3604804, 24.8010566 ], [ 121.357968, 24.7997158 ], [ 121.3554428, 24.7984641 ], [ 121.3523513, 24.7969284 ], [ 121.3485193, 24.7949991 ], [ 121.3476941, 24.7945819 ], [ 121.3425268, 24.7919483 ], [ 121.3355548, 24.788425 ], [ 121.334309, 24.7877789 ], [ 121.3264135, 24.7881829 ], [ 121.3215791, 24.7884532 ], [ 121.3158286, 24.788745 ], [ 121.3143268, 24.7888318 ], [ 121.3095374, 24.7890861 ], [ 121.3081795, 24.7891404 ], [ 121.3003619, 24.7894227 ], [ 121.2918592, 24.7897755 ], [ 121.2846227, 24.7899876 ], [ 121.2810614, 24.7902722 ], [ 121.2748369, 24.7900116 ], [ 121.2726956, 24.7905378 ], [ 121.2692592, 24.7905555 ], [ 121.2636242, 24.7905446 ], [ 121.2614646, 24.790479 ], [ 121.2568946, 24.7891385 ], [ 121.2534346, 24.7878877 ], [ 121.2500002, 24.7861306 ], [ 121.24504, 24.7874175 ], [ 121.2394116, 24.7909757 ], [ 121.2380194, 24.7927472 ], [ 121.2351243, 24.7935873 ], [ 121.2331538, 24.7941543 ], [ 121.2309924, 24.7947502 ], [ 121.2245449, 24.7965199 ], [ 121.22077, 24.7974812 ], [ 121.2163598, 24.799323 ], [ 121.2141455, 24.8048703 ], [ 121.2094899, 24.8095026 ], [ 121.2077807, 24.8122636 ], [ 121.2058387, 24.8155172 ], [ 121.2043742, 24.8168925 ], [ 121.199049, 24.8170869 ], [ 121.197008, 24.8168183 ], [ 121.1969754, 24.8174482 ], [ 121.1961383, 24.8195194 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "133530225", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6995048, 25.0005416 ], [ 121.7027827, 24.9999806 ], [ 121.7087992, 25.0008576 ], [ 121.7139674, 25.0007079 ], [ 121.717826, 25.0013276 ], [ 121.7197082, 25.0015818 ], [ 121.7217064, 25.0013391 ], [ 121.7258731, 25.0024122 ], [ 121.7278648, 25.0029029 ], [ 121.731229, 25.0041338 ], [ 121.7354168, 25.0060886 ], [ 121.7375836, 25.0069628 ], [ 121.740439, 25.0081168 ], [ 121.7433702, 25.009317 ], [ 121.7444488, 25.009783 ], [ 121.7468172, 25.0107935 ], [ 121.7493367, 25.0115918 ], [ 121.7526225, 25.012937 ], [ 121.7568945, 25.0150387 ], [ 121.7581207, 25.0159448 ], [ 121.7640067, 25.0178408 ], [ 121.7705604, 25.0183202 ], [ 121.7715204, 25.0183942 ], [ 121.772864, 25.018505 ], [ 121.7769722, 25.0188226 ], [ 121.7790076, 25.0190047 ], [ 121.7824713, 25.019242 ], [ 121.7849123, 25.0194199 ], [ 121.7862639, 25.0192676 ], [ 121.7919039, 25.0199641 ], [ 121.7961175, 25.0202665 ], [ 121.7992503, 25.0205021 ], [ 121.8020986, 25.0207379 ], [ 121.8039907, 25.0217076 ], [ 121.8072028, 25.0232704 ], [ 121.8106595, 25.0254032 ], [ 121.8136377, 25.0271378 ], [ 121.816894, 25.0287424 ], [ 121.8184517, 25.0294331 ], [ 121.8231815, 25.0317145 ], [ 121.825909, 25.0333191 ], [ 121.8305026, 25.0355084 ], [ 121.8339104, 25.0373487 ], [ 121.8355688, 25.0382181 ], [ 121.8383339, 25.0396698 ], [ 121.8447949, 25.0416027 ], [ 121.84622, 25.0420718 ], [ 121.8505277, 25.0429668 ], [ 121.8552791, 25.0440971 ], [ 121.8584759, 25.0451644 ], [ 121.8614913, 25.04584 ], [ 121.8640272, 25.0458396 ], [ 121.867614, 25.0455848 ], [ 121.871731, 25.0455927 ], [ 121.8751682, 25.0454881 ], [ 121.877944, 25.045383 ], [ 121.882453, 25.0451628 ], [ 121.884947, 25.0450232 ], [ 121.8874953, 25.0448942 ], [ 121.8903451, 25.0440973 ], [ 121.8965903, 25.0421553 ], [ 121.9013063, 25.0411085 ], [ 121.9046248, 25.0414451 ], [ 121.9079168, 25.0418299 ], [ 121.9107358, 25.0412457 ], [ 121.9142126, 25.0416599 ], [ 121.9180386, 25.0399779 ], [ 121.9205759, 25.0387658 ], [ 121.921236, 25.038872 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "133530226", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6963876, 24.9957564 ], [ 121.6998831, 24.9962377 ], [ 121.7031139, 24.9968227 ], [ 121.7081317, 24.9993254 ], [ 121.7112307, 24.9989669 ], [ 121.7153944, 24.9961034 ], [ 121.7202392, 24.997141 ], [ 121.7228066, 24.9975511 ], [ 121.7261196, 24.9980639 ], [ 121.7280866, 24.9984129 ], [ 121.733324, 24.9993252 ], [ 121.7356266, 25.0008665 ], [ 121.7389021, 25.0022113 ], [ 121.740295, 25.0029434 ], [ 121.7448309, 25.0057705 ], [ 121.7490612, 25.0074998 ], [ 121.7562968, 25.0080648 ], [ 121.7586498, 25.0095085 ], [ 121.7638159, 25.0103059 ], [ 121.7676389, 25.0102134 ], [ 121.7711568, 25.010125 ], [ 121.7781937, 25.0093839 ], [ 121.7819847, 25.0094369 ], [ 121.7851087, 25.0094653 ], [ 121.788091, 25.0102805 ], [ 121.7890381, 25.011068 ], [ 121.7939926, 25.0116452 ], [ 121.8007724, 25.010249 ], [ 121.8036644, 25.0097525 ], [ 121.8062702, 25.0095993 ], [ 121.8119943, 25.0125533 ], [ 121.8132322, 25.013625 ], [ 121.8164764, 25.0166205 ], [ 121.8209242, 25.0177056 ], [ 121.8239829, 25.0184878 ], [ 121.8292444, 25.0215467 ], [ 121.8324159, 25.0233467 ], [ 121.8362396, 25.025702 ], [ 121.8395874, 25.0264433 ], [ 121.8456296, 25.0249724 ], [ 121.8496334, 25.0250119 ], [ 121.8535039, 25.0250625 ], [ 121.8570417, 25.0248234 ], [ 121.8616583, 25.0248356 ], [ 121.8647204, 25.025945 ], [ 121.8661904, 25.0256605 ], [ 121.8695837, 25.0270354 ], [ 121.8749149, 25.0293362 ], [ 121.8802782, 25.0291244 ], [ 121.8852384, 25.0293298 ], [ 121.8907313, 25.0295535 ], [ 121.8926212, 25.0295232 ], [ 121.8988444, 25.0294091 ], [ 121.9018998, 25.0294788 ], [ 121.9043138, 25.0296014 ], [ 121.9072474, 25.0291834 ], [ 121.9119084, 25.0300027 ], [ 121.9139505, 25.0326964 ], [ 121.9163103, 25.035924 ], [ 121.9202886, 25.0383273 ], [ 121.9213004, 25.0387311 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135174291", "name": "汐止超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "alt_name": "汐止E/S;汐止變電所", "alt_name:en": "Xizhi E/S;Xizhi Substation", "alt_name:zh": "汐止E/S;汐止變電所", "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "rating": "2500 MVA", "substation": "transmission", "utility": "power" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6406174, 25.0817727 ], [ 121.6405028, 25.0824202 ], [ 121.6404635, 25.0839986 ], [ 121.6405361, 25.0844797 ], [ 121.6414634, 25.0845512 ], [ 121.6415193, 25.0843588 ], [ 121.6420784, 25.0838227 ], [ 121.6421028, 25.0837195 ], [ 121.6427482, 25.082648 ], [ 121.6428933, 25.0821875 ], [ 121.6429814, 25.0817384 ], [ 121.642818, 25.0811161 ], [ 121.6427331, 25.08107 ], [ 121.6417803, 25.0808779 ], [ 121.6416533, 25.0808375 ], [ 121.6413736, 25.0806355 ], [ 121.6410893, 25.080881 ], [ 121.641069, 25.0809531 ], [ 121.6411336, 25.0810077 ], [ 121.6411304, 25.0810186 ], [ 121.6411131, 25.081077 ], [ 121.6411095, 25.0810891 ], [ 121.6408455, 25.0810495 ], [ 121.6406174, 25.0817727 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638638", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6247966, 25.0032223 ], [ 121.6245516, 25.0037582 ], [ 121.622617, 25.0035541 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638641", "name": "深美~世貿~虎林線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "深美~基信~虎林線", "construction:name": "深美~大安線", "construction:voltage": "345000", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "start_date": "1988-09" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6250057, 25.0033066 ], [ 121.6248279, 25.0036396 ], [ 121.6248342, 25.0041543 ], [ 121.6239871, 25.0082 ], [ 121.6209331, 25.0099939 ], [ 121.6188065, 25.0112727 ], [ 121.6171229, 25.0127526 ], [ 121.6140966, 25.0147483 ], [ 121.6097326, 25.0181449 ], [ 121.6080769, 25.0195081 ], [ 121.6038304, 25.0228372 ], [ 121.6010015, 25.0249511 ], [ 121.5974005, 25.027748 ], [ 121.592068, 25.0279484 ], [ 121.5883208, 25.0280797 ], [ 121.5843745, 25.0284945 ], [ 121.5800704, 25.0283828 ], [ 121.5768768, 25.03008 ], [ 121.5744846, 25.0314135 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638644", "name": "台北~深坑線", "operator": "台灣電力公司", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6183528, 25.004217 ], [ 121.618123, 25.0046726 ], [ 121.6163226, 25.0058532 ], [ 121.6148785, 25.0064406 ], [ 121.614481, 25.0079449 ], [ 121.6103918, 25.0109682 ], [ 121.6083249, 25.0124708 ], [ 121.6030538, 25.0156184 ], [ 121.601386, 25.0155669 ], [ 121.5974968, 25.0154196 ], [ 121.5944648, 25.0153116 ], [ 121.5933947, 25.0160163 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638663", "name": "深美超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "alt_name": "深美E/S;深美變電所", "alt_name:en": "Shenmei E/S;Shenmei Substation", "alt_name:zh": "深美E/S;深美變電所", "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "rating": "2500 MVA", "substation": "transmission", "utility": "power" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6237865, 25.0007779 ], [ 121.6252488, 25.0014449 ], [ 121.6266172, 25.0019241 ], [ 121.6266727, 25.0020375 ], [ 121.6266469, 25.0021569 ], [ 121.6258535, 25.0036075 ], [ 121.6257299, 25.0038335 ], [ 121.6254293, 25.0044121 ], [ 121.6251422, 25.0045594 ], [ 121.6249845, 25.0044717 ], [ 121.6247763, 25.0043085 ], [ 121.6246559, 25.0041281 ], [ 121.6243834, 25.0039205 ], [ 121.6242118, 25.0038413 ], [ 121.6241178, 25.0035817 ], [ 121.6238036, 25.003391 ], [ 121.6238423, 25.0033219 ], [ 121.6234166, 25.003024 ], [ 121.6225595, 25.0021443 ], [ 121.6225114, 25.0019888 ], [ 121.6224549, 25.0019262 ], [ 121.6224376, 25.0018722 ], [ 121.6224411, 25.0017438 ], [ 121.622427, 25.0016653 ], [ 121.6223594, 25.0015659 ], [ 121.6222987, 25.0014267 ], [ 121.6223995, 25.0013212 ], [ 121.6224231, 25.0012965 ], [ 121.6225469, 25.0011439 ], [ 121.6223315, 25.0010167 ], [ 121.6225785, 25.0009749 ], [ 121.6229355, 25.0009563 ], [ 121.6237865, 25.0007779 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638673", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6995048, 25.0005416 ], [ 121.6978564, 25.0014801 ], [ 121.6951052, 25.0029373 ], [ 121.6934241, 25.0026362 ], [ 121.6909086, 25.0023091 ], [ 121.6858365, 25.002204 ], [ 121.6831862, 25.0005243 ], [ 121.6798117, 24.9988958 ], [ 121.6773007, 24.9988907 ], [ 121.6743725, 24.9989659 ], [ 121.6728959, 24.9989678 ], [ 121.6652058, 24.9989314 ], [ 121.6618995, 24.9981829 ], [ 121.6582852, 24.996321 ], [ 121.6518799, 24.9929988 ], [ 121.6492525, 24.9925227 ], [ 121.6474054, 24.9920544 ], [ 121.6451318, 24.9918835 ], [ 121.6423026, 24.9925974 ], [ 121.6381976, 24.9937521 ], [ 121.6369505, 24.9941334 ], [ 121.6353198, 24.994528 ], [ 121.6316549, 24.9978287 ], [ 121.6305962, 24.9986528 ], [ 121.6284654, 25.0001535 ], [ 121.6249669, 25.0004434 ], [ 121.6243321, 25.0011691 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638674", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.622617, 25.0035541 ], [ 121.6244122, 25.003429 ], [ 121.6245834, 25.0031138 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135638676", "name": "南港~義捷線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6006054, 25.027662 ], [ 121.6023438, 25.0289514 ], [ 121.6035856, 25.0299101 ], [ 121.6052626, 25.0312061 ], [ 121.6061656, 25.0319047 ], [ 121.607476, 25.0331232 ], [ 121.6110093, 25.0365731 ], [ 121.6128516, 25.0381022 ], [ 121.6143053, 25.0393277 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135640772", "name": "南港~義捷線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "深美~臥龍#11義捷分歧線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "start_date": "1999-04" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6006054, 25.027662 ], [ 121.6002646, 25.0280728 ], [ 121.5990874, 25.0294875 ], [ 121.5975589, 25.0315607 ], [ 121.5955808, 25.0338726 ], [ 121.591734, 25.0351004 ], [ 121.590908, 25.0370511 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135655595", "name": "深美~台北線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "深美~台北、臥龍線;深美~台北、建國線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5905051, 25.0188717 ], [ 121.5892951, 25.0176531 ], [ 121.5855862, 25.0139659 ], [ 121.5842492, 25.0129972 ], [ 121.582695, 25.0118323 ], [ 121.5799106, 25.0107403 ], [ 121.5771391, 25.0096592 ], [ 121.5725303, 25.007834 ], [ 121.5701493, 25.0068928 ], [ 121.5652857, 25.0049757 ], [ 121.5644615, 25.0046566 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135655596", "name": "深坑變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "69000;22000", "z_order": 0, "other_tags": { "alt_name": "深坑S/S;深坑二次變電所", "alt_name:en": "Shenkeng S/S;Shenkeng Secondary Substation", "alt_name:zh": "深坑S/S;深坑二次變電所", "barrier": "wall", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "rating": "75 MVA", "substation": "minor_distribution", "utility": "power" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6182455, 25.0044438 ], [ 121.6181414, 25.0043647 ], [ 121.61816, 25.0039812 ], [ 121.6182699, 25.0039858 ], [ 121.618312, 25.0039398 ], [ 121.6186242, 25.0040601 ], [ 121.6187211, 25.0040999 ], [ 121.6186084, 25.0043301 ], [ 121.6185485, 25.0043052 ], [ 121.6185065, 25.0043892 ], [ 121.6184707, 25.0043576 ], [ 121.6183566, 25.0043515 ], [ 121.6182455, 25.0044438 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135694791", "name": "深美~冬山線", "operator": "台灣電力公司", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7085009, 24.6447049 ], [ 121.7057734, 24.648052 ], [ 121.7048812, 24.6498805 ], [ 121.7044272, 24.6508974 ], [ 121.7027707, 24.6543591 ], [ 121.7022895, 24.6554264 ], [ 121.7009987, 24.6581521 ], [ 121.6987659, 24.6629285 ], [ 121.6982315, 24.6640746 ], [ 121.6965624, 24.6689263 ], [ 121.6961076, 24.6718195 ], [ 121.695708, 24.6743103 ], [ 121.6953278, 24.6767714 ], [ 121.6948736, 24.6795481 ], [ 121.694464, 24.6821653 ], [ 121.6940612, 24.6847028 ], [ 121.6936553, 24.6872497 ], [ 121.6939142, 24.6898854 ], [ 121.694197, 24.692507 ], [ 121.6944028, 24.6949513 ], [ 121.6947014, 24.6978849 ], [ 121.6949781, 24.7005157 ], [ 121.693964, 24.7041926 ], [ 121.6930133, 24.7076239 ], [ 121.6936701, 24.7103653 ], [ 121.6943036, 24.7128606 ], [ 121.6949609, 24.715454 ], [ 121.6955552, 24.7179284 ], [ 121.696222, 24.7206636 ], [ 121.6964429, 24.7233173 ], [ 121.6965761, 24.7253837 ], [ 121.6964997, 24.728054 ], [ 121.6963551, 24.731367 ], [ 121.6970077, 24.7329968 ], [ 121.6984259, 24.7366655 ], [ 121.699572, 24.7394871 ], [ 121.7003669, 24.7415658 ], [ 121.7010587, 24.7441931 ], [ 121.7017807, 24.7468306 ], [ 121.702298, 24.7516457 ], [ 121.7028336, 24.7566872 ], [ 121.7032298, 24.7600683 ], [ 121.7044309, 24.7637835 ], [ 121.7054657, 24.7669956 ], [ 121.7059071, 24.7683846 ], [ 121.7067976, 24.77113 ], [ 121.7075201, 24.7734542 ], [ 121.7081996, 24.7755787 ], [ 121.7090075, 24.7780604 ], [ 121.7112467, 24.7819027 ], [ 121.7132697, 24.7853436 ], [ 121.7148565, 24.7880456 ], [ 121.715396, 24.7892733 ], [ 121.7169782, 24.7916007 ], [ 121.719649, 24.7936673 ], [ 121.7209703, 24.7948021 ], [ 121.7258684, 24.7987997 ], [ 121.7265877, 24.7998617 ], [ 121.7293548, 24.8038656 ], [ 121.730815, 24.8059029 ], [ 121.7325284, 24.8103703 ], [ 121.7332144, 24.8142534 ], [ 121.7337775, 24.8174048 ], [ 121.7343769, 24.8187775 ], [ 121.7350376, 24.8215558 ], [ 121.7355992, 24.822845 ], [ 121.7354235, 24.8247531 ], [ 121.7348255, 24.82731 ], [ 121.7342059, 24.8299268 ], [ 121.7341823, 24.8330977 ], [ 121.7353163, 24.8344951 ], [ 121.7396955, 24.8397133 ], [ 121.7397699, 24.8414562 ], [ 121.7404844, 24.8421562 ], [ 121.7419685, 24.8421771 ], [ 121.7482694, 24.8423469 ], [ 121.7527797, 24.8424684 ], [ 121.7559575, 24.8427611 ], [ 121.7576017, 24.8428824 ], [ 121.7592514, 24.8451308 ], [ 121.761236, 24.8478596 ], [ 121.762476, 24.8499281 ], [ 121.7653101, 24.8544193 ], [ 121.7660575, 24.8568551 ], [ 121.7668885, 24.8597463 ], [ 121.765901, 24.8623692 ], [ 121.7639184, 24.8676521 ], [ 121.760981, 24.8700674 ], [ 121.7598753, 24.870935 ], [ 121.7590196, 24.8716165 ], [ 121.7536189, 24.8759263 ], [ 121.7508028, 24.8781515 ], [ 121.7479047, 24.8804144 ], [ 121.7454967, 24.8822991 ], [ 121.739942, 24.8867865 ], [ 121.7355471, 24.8899008 ], [ 121.72808, 24.8910166 ], [ 121.7240544, 24.8932662 ], [ 121.7208131, 24.8960901 ], [ 121.7172428, 24.8991533 ], [ 121.7158335, 24.9003783 ], [ 121.7148854, 24.9011924 ], [ 121.7115741, 24.9040922 ], [ 121.7101837, 24.9052803 ], [ 121.7060438, 24.9111481 ], [ 121.7007609, 24.9144107 ], [ 121.7001852, 24.9150503 ], [ 121.6988705, 24.916687 ], [ 121.6970817, 24.9225209 ], [ 121.696545, 24.9243247 ], [ 121.6957205, 24.927019 ], [ 121.6950082, 24.9294912 ], [ 121.6940804, 24.9324587 ], [ 121.6937461, 24.9336673 ], [ 121.6913247, 24.9380341 ], [ 121.690378, 24.9397876 ], [ 121.6903966, 24.9412963 ], [ 121.6897048, 24.9433857 ], [ 121.6878484, 24.9452904 ], [ 121.6864235, 24.9477897 ], [ 121.6849982, 24.9491499 ], [ 121.6833085, 24.9507984 ], [ 121.681268, 24.9527266 ], [ 121.6796173, 24.9543174 ], [ 121.6778667, 24.9560218 ], [ 121.6731045, 24.9607475 ], [ 121.6715495, 24.9626476 ], [ 121.670293, 24.9642548 ], [ 121.6687593, 24.9661735 ], [ 121.6667997, 24.9685718 ], [ 121.6640815, 24.9722367 ], [ 121.6625817, 24.9742741 ], [ 121.6600513, 24.9771449 ], [ 121.6538672, 24.9813476 ], [ 121.6477929, 24.9838699 ], [ 121.6438201, 24.9876594 ], [ 121.6401894, 24.9899672 ], [ 121.6380281, 24.991395 ], [ 121.6363105, 24.9924355 ], [ 121.6352108, 24.9931421 ], [ 121.6327895, 24.9945687 ], [ 121.6266369, 24.9981235 ], [ 121.6237537, 25.0008653 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135761514", "name": "深美~板橋線", "operator": "台灣電力公司", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6229537, 25.0012296 ], [ 121.6237607, 24.9993754 ], [ 121.6247644, 24.9980057 ], [ 121.6237987, 24.9965843 ], [ 121.621332, 24.9963511 ], [ 121.6201153, 24.9962312 ], [ 121.6156782, 24.993253 ], [ 121.613374, 24.9913719 ], [ 121.6103978, 24.9890657 ], [ 121.608834, 24.9877873 ], [ 121.603308, 24.9832943 ], [ 121.6004686, 24.9810406 ], [ 121.5995872, 24.9803218 ], [ 121.5986899, 24.9795901 ], [ 121.5973274, 24.9768615 ], [ 121.5930077, 24.9681868 ], [ 121.5912128, 24.9645489 ], [ 121.5881668, 24.9583631 ], [ 121.5873064, 24.9565472 ], [ 121.5850573, 24.9519008 ], [ 121.5842426, 24.950944 ], [ 121.5806697, 24.9467472 ], [ 121.5776674, 24.9441018 ], [ 121.5760081, 24.9426265 ], [ 121.5713034, 24.9396213 ], [ 121.5675795, 24.9372221 ], [ 121.5632981, 24.9345977 ], [ 121.5592671, 24.9313178 ], [ 121.5531609, 24.9284826 ], [ 121.5471587, 24.9295092 ], [ 121.5423928, 24.9291835 ], [ 121.5393542, 24.9306227 ], [ 121.5353629, 24.933895 ], [ 121.5336259, 24.9345233 ], [ 121.532031, 24.9350726 ], [ 121.5254341, 24.9373622 ], [ 121.5208805, 24.9391772 ], [ 121.5153232, 24.941594 ], [ 121.5122075, 24.9429626 ], [ 121.5087421, 24.9444888 ], [ 121.503595, 24.9466947 ], [ 121.5014612, 24.9481629 ], [ 121.4984756, 24.9502629 ], [ 121.4959972, 24.9519736 ], [ 121.4928047, 24.9541047 ], [ 121.4902716, 24.9557991 ], [ 121.4871942, 24.957819 ], [ 121.4851033, 24.959728 ], [ 121.4836515, 24.9629915 ], [ 121.4813073, 24.968373 ], [ 121.47992, 24.9714956 ], [ 121.4794753, 24.9724578 ], [ 121.4777922, 24.9762403 ], [ 121.476402, 24.9793525 ], [ 121.4744306, 24.9838418 ], [ 121.474165, 24.9851231 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135762164", "name": "冬山超高壓變電所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7112021, 24.6423612 ], [ 121.7112963, 24.6424378 ], [ 121.7113881, 24.6426221 ], [ 121.7119174, 24.6444638 ], [ 121.7118215, 24.644506 ], [ 121.71205, 24.6453349 ], [ 121.7121747, 24.6454114 ], [ 121.7122494, 24.645686 ], [ 121.7113544, 24.6456621 ], [ 121.7105432, 24.6457846 ], [ 121.710093, 24.6457717 ], [ 121.7095464, 24.6459099 ], [ 121.7095066, 24.6458142 ], [ 121.7087487, 24.6454712 ], [ 121.7081827, 24.6447125 ], [ 121.7078371, 24.6439676 ], [ 121.7074167, 24.6433505 ], [ 121.7073285, 24.6428492 ], [ 121.708025, 24.6419303 ], [ 121.7083254, 24.6414999 ], [ 121.7112021, 24.6423612 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135762167", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8139713, 24.5880754 ], [ 121.8107721, 24.5891239 ], [ 121.8074758, 24.5910024 ], [ 121.8050955, 24.5922943 ], [ 121.8028209, 24.5936322 ], [ 121.8001806, 24.5951852 ], [ 121.7942181, 24.5985851 ], [ 121.7896833, 24.6011475 ], [ 121.7869967, 24.6027016 ], [ 121.7838871, 24.6034088 ], [ 121.7797468, 24.6043541 ], [ 121.7748011, 24.6054929 ], [ 121.7690254, 24.6057168 ], [ 121.7658476, 24.6061776 ], [ 121.7630787, 24.6075615 ], [ 121.7603986, 24.6106764 ], [ 121.7583008, 24.6119283 ], [ 121.7557152, 24.6134759 ], [ 121.7514864, 24.6135766 ], [ 121.7466756, 24.6136223 ], [ 121.7437572, 24.6139722 ], [ 121.7389988, 24.612772 ], [ 121.7344193, 24.6119747 ], [ 121.7278947, 24.6112409 ], [ 121.7249425, 24.6106573 ], [ 121.7212448, 24.6099375 ], [ 121.7172391, 24.6097639 ], [ 121.710072, 24.6096186 ], [ 121.7055534, 24.6121151 ], [ 121.7015219, 24.6129552 ], [ 121.6982093, 24.614268 ], [ 121.6956703, 24.6152719 ], [ 121.6933142, 24.6202676 ], [ 121.6927662, 24.6250298 ], [ 121.6923618, 24.6286268 ], [ 121.6945142, 24.6328152 ], [ 121.6964509, 24.6365514 ], [ 121.6983406, 24.640093 ], [ 121.7020639, 24.6415243 ], [ 121.702548, 24.6433384 ], [ 121.7034487, 24.644324 ], [ 121.7083809, 24.6442769 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135795795", "name": "汐止~板橋線", "operator": "台灣電力公司", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6030174, 24.9919781 ], [ 121.60145, 24.9904417 ], [ 121.5994818, 24.988052 ], [ 121.5971398, 24.9852553 ], [ 121.5949809, 24.9826414 ], [ 121.5921835, 24.9790531 ], [ 121.5881431, 24.9736864 ], [ 121.5866844, 24.9717052 ], [ 121.5838808, 24.9677968 ], [ 121.5817914, 24.9649088 ], [ 121.580771, 24.9635079 ], [ 121.5778341, 24.9601904 ], [ 121.5732899, 24.9551477 ], [ 121.5717363, 24.953426 ], [ 121.5703742, 24.9519062 ], [ 121.5645731, 24.9489618 ], [ 121.5616925, 24.9479679 ], [ 121.559426, 24.9477208 ], [ 121.5554346, 24.9470491 ], [ 121.5519133, 24.9464722 ], [ 121.5485531, 24.945886 ], [ 121.5419947, 24.9448317 ], [ 121.5395941, 24.9458315 ], [ 121.5351777, 24.9477695 ], [ 121.5329174, 24.9488202 ], [ 121.5257958, 24.948045 ], [ 121.5227076, 24.9455579 ], [ 121.5179554, 24.9440664 ], [ 121.5165918, 24.9436384 ], [ 121.5153691, 24.9433036 ], [ 121.511741, 24.9449826 ], [ 121.5087634, 24.9501827 ], [ 121.5078842, 24.952014 ], [ 121.5072514, 24.9531477 ], [ 121.5055554, 24.9549183 ], [ 121.5048397, 24.9557545 ], [ 121.5014979, 24.959725 ], [ 121.4992538, 24.9628969 ], [ 121.4981152, 24.9637956 ], [ 121.4928081, 24.9680548 ], [ 121.4897979, 24.9704771 ], [ 121.485165, 24.974135 ], [ 121.4844715, 24.9747293 ], [ 121.4830178, 24.975733 ], [ 121.4813356, 24.9768926 ], [ 121.4780734, 24.9787491 ], [ 121.4767764, 24.9794799 ], [ 121.4751271, 24.9840639 ], [ 121.4745556, 24.9855416 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135795801", "name": "板橋超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "alt_name": "板橋E/S;板橋變電所", "alt_name:en": "Banqiao E/S;Banqiao Substation", "alt_name:zh": "板橋E/S;板橋變電所", "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "rating": "2500 MVA", "substation": "transmission", "utility": "power" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4715909, 24.9853971 ], [ 121.4729716, 24.9873294 ], [ 121.4730527, 24.9873668 ], [ 121.4736712, 24.987169 ], [ 121.473626, 24.9870336 ], [ 121.4744724, 24.9863095 ], [ 121.4744087, 24.9858104 ], [ 121.4736009, 24.9848226 ], [ 121.4734969, 24.9847827 ], [ 121.4733673, 24.9848061 ], [ 121.472175, 24.9853967 ], [ 121.4717936, 24.9852338 ], [ 121.4715909, 24.9853971 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135913536", "operator": "台灣電力公司", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6030174, 24.9919781 ], [ 121.6060328, 24.9957578 ], [ 121.6070852, 24.996764 ], [ 121.6122461, 25.0017662 ], [ 121.6142401, 25.0055757 ], [ 121.6155627, 25.0079271 ], [ 121.6174809, 25.0097041 ], [ 121.6216057, 25.0135197 ], [ 121.6240093, 25.0159142 ], [ 121.6265243, 25.0183538 ], [ 121.6291208, 25.0208734 ], [ 121.6306443, 25.0227924 ], [ 121.6326763, 25.0256088 ], [ 121.6346924, 25.0279649 ], [ 121.6366341, 25.0301986 ], [ 121.6404035, 25.0348079 ], [ 121.6415827, 25.0364024 ], [ 121.6427081, 25.0376152 ], [ 121.6430257, 25.040104 ], [ 121.6434016, 25.0431636 ], [ 121.6450652, 25.0477545 ], [ 121.6472252, 25.0522686 ], [ 121.6482753, 25.055014 ], [ 121.6490072, 25.0567337 ], [ 121.6486277, 25.05806 ], [ 121.647666, 25.061024 ], [ 121.6476305, 25.0611341 ], [ 121.6475752, 25.0613174 ], [ 121.6475624, 25.0613567 ], [ 121.6475367, 25.061435 ], [ 121.6475009, 25.0615443 ], [ 121.6473578, 25.0619814 ], [ 121.6470713, 25.0621752 ], [ 121.6469884, 25.0622312 ], [ 121.6468414, 25.0623307 ], [ 121.6462899, 25.0627155 ], [ 121.6449827, 25.0635879 ], [ 121.6445215, 25.0654 ], [ 121.6445073, 25.0654502 ], [ 121.6442131, 25.066612 ], [ 121.6441699, 25.0667478 ], [ 121.6440296, 25.0671889 ], [ 121.6439633, 25.067479 ], [ 121.643919, 25.0676354 ], [ 121.643414, 25.0694184 ], [ 121.64314, 25.0706931 ], [ 121.6429211, 25.0717112 ], [ 121.6424298, 25.0735441 ], [ 121.6422991, 25.073992 ], [ 121.6419617, 25.0752292 ], [ 121.6417299, 25.0760792 ], [ 121.642667, 25.0781285 ], [ 121.6442696, 25.0816456 ], [ 121.6426178, 25.0836127 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135933925", "name": "陽明~天母線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "alt_name": "陽明~石牌線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.527796, 25.1366 ], [ 121.5274687, 25.1364993 ], [ 121.5269792, 25.135969 ], [ 121.5258747, 25.1347589 ], [ 121.5255679, 25.1317177 ], [ 121.5239857, 25.1290055 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135933926", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6243579, 25.0748573 ], [ 121.626075, 25.0756138 ], [ 121.6305208, 25.0762008 ], [ 121.6366317, 25.0769285 ], [ 121.6370734, 25.0772523 ], [ 121.6398241, 25.0796421 ], [ 121.6414099, 25.0812358 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135933928", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5277918, 25.1372066 ], [ 121.52781, 25.1371617 ], [ 121.5274919, 25.137049 ], [ 121.5274866, 25.1369213 ], [ 121.5277687, 25.1362927 ], [ 121.5282666, 25.1363752 ], [ 121.528458, 25.1367198 ], [ 121.5282064, 25.1373637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135964175", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.732937, 25.1357004 ], [ 121.7331794, 25.1356127 ], [ 121.7311225, 25.1348428 ], [ 121.7310052, 25.1359261 ], [ 121.7276984, 25.1367658 ], [ 121.7245876, 25.137963 ], [ 121.7226207, 25.1387811 ], [ 121.7214236, 25.1392968 ], [ 121.7208992, 25.1396017 ], [ 121.7200098, 25.1402081 ], [ 121.7198048, 25.1403398 ], [ 121.7187183, 25.1410995 ], [ 121.7169819, 25.1422561 ], [ 121.7139755, 25.1442779 ], [ 121.7106624, 25.1465627 ], [ 121.710239, 25.1468055 ], [ 121.7096656, 25.1476169 ], [ 121.7090661, 25.1481513 ], [ 121.7088843, 25.1480239 ], [ 121.7083068, 25.1480592 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135964176", "name": "八堵一次變電所", "operator": "台灣電力公司", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7212632, 25.1032013 ], [ 121.7217136, 25.1027095 ], [ 121.7216543, 25.1025963 ], [ 121.7213612, 25.1022027 ], [ 121.7202274, 25.1013963 ], [ 121.7200983, 25.1013277 ], [ 121.7196944, 25.1011804 ], [ 121.7195409, 25.101279 ], [ 121.719364, 25.1010753 ], [ 121.7192082, 25.1010526 ], [ 121.7189619, 25.1013648 ], [ 121.7188367, 25.1015236 ], [ 121.7191309, 25.1017007 ], [ 121.7188876, 25.1019999 ], [ 121.7194709, 25.1026395 ], [ 121.7198526, 25.1028657 ], [ 121.7199619, 25.102992 ], [ 121.7202506, 25.1028308 ], [ 121.7205667, 25.1030814 ], [ 121.7208097, 25.1029836 ], [ 121.7212632, 25.1032013 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135964180", "power": "line", "voltage": "161000", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6409549, 25.075662 ], [ 121.6410965, 25.0749284 ], [ 121.6417368, 25.071611 ], [ 121.6419661, 25.0715839 ], [ 121.6427783, 25.0714879 ], [ 121.6433009, 25.0715582 ], [ 121.643873, 25.0716743 ], [ 121.6438968, 25.0716791 ], [ 121.6441961, 25.0717398 ], [ 121.6443693, 25.071775 ], [ 121.6449422, 25.0718939 ], [ 121.6458617, 25.0720848 ], [ 121.6486689, 25.0726214 ], [ 121.6518155, 25.076416 ], [ 121.6533964, 25.0771626 ], [ 121.6560744, 25.0783631 ], [ 121.6565785, 25.078589 ], [ 121.660073, 25.0801715 ], [ 121.6631497, 25.081582 ], [ 121.6698185, 25.0849953 ], [ 121.6734883, 25.0868882 ], [ 121.6752981, 25.087818 ], [ 121.6771773, 25.0890304 ], [ 121.677621, 25.0896328 ], [ 121.6782742, 25.0905556 ], [ 121.6784012, 25.0930643 ], [ 121.6782984, 25.0967257 ], [ 121.6786319, 25.0991324 ], [ 121.6809579, 25.099963 ], [ 121.6841776, 25.1007186 ], [ 121.6875015, 25.1014986 ], [ 121.6917148, 25.1032226 ], [ 121.6924926, 25.1035342 ], [ 121.69804, 25.1057567 ], [ 121.7017227, 25.1055871 ], [ 121.7031271, 25.1055212 ], [ 121.7083254, 25.1051862 ], [ 121.7084902, 25.1051767 ], [ 121.715131, 25.1047948 ], [ 121.7170147, 25.1046712 ], [ 121.7186175, 25.102665 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135964181", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7473409, 25.1270399 ], [ 121.7474639, 25.1264774 ], [ 121.7476647, 25.1258188 ], [ 121.7476916, 25.1226117 ], [ 121.7477618, 25.1206844 ], [ 121.7474743, 25.1184295 ], [ 121.7462076, 25.1171472 ], [ 121.741864, 25.1171442 ], [ 121.7390814, 25.1171396 ], [ 121.7372681, 25.1185763 ], [ 121.7347186, 25.1200007 ], [ 121.7336212, 25.1214314 ], [ 121.7305823, 25.1244679 ], [ 121.726333, 25.1256801 ], [ 121.7272414, 25.1241923 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135964183", "power": "line", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.721289, 25.102796 ], [ 121.7215868, 25.1026469 ], [ 121.7210084, 25.1044266 ], [ 121.7204022, 25.1055684 ], [ 121.7206196, 25.1075826 ], [ 121.7203895, 25.1100644 ], [ 121.7209202, 25.1117428 ], [ 121.724254, 25.111847 ], [ 121.7253044, 25.1141517 ], [ 121.7255215, 25.1149613 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135965380", "operator": "台灣電力公司", "power": "line", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7210589, 25.1028112 ], [ 121.7191374, 25.1039809 ], [ 121.7182657, 25.1045047 ], [ 121.7175855, 25.1058151 ], [ 121.7158057, 25.1091858 ], [ 121.7147081, 25.1112348 ], [ 121.7138591, 25.1128132 ], [ 121.7125903, 25.115328 ], [ 121.7121174, 25.116124 ], [ 121.7112083, 25.1178547 ], [ 121.7108253, 25.1185121 ], [ 121.7099229, 25.1202187 ], [ 121.7088837, 25.1221911 ], [ 121.7079987, 25.123864 ], [ 121.7092202, 25.1254528 ], [ 121.7100561, 25.1265021 ], [ 121.710852, 25.1286156 ], [ 121.7113348, 25.1308134 ], [ 121.7091269, 25.1344353 ], [ 121.7081399, 25.134501 ], [ 121.7063146, 25.135382 ], [ 121.7053147, 25.1355764 ], [ 121.7048433, 25.1369874 ], [ 121.704927, 25.1387777 ], [ 121.7042193, 25.1389337 ], [ 121.7039174, 25.1389967 ], [ 121.7035266, 25.1390832 ], [ 121.7026442, 25.1391837 ], [ 121.7010861, 25.1396103 ], [ 121.6960672, 25.1407421 ], [ 121.6955704, 25.1424705 ], [ 121.6959379, 25.143388 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135966590", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6931584, 24.9403106 ], [ 121.6905152, 24.94424 ], [ 121.6895864, 24.9457494 ], [ 121.6887956, 24.9466069 ], [ 121.685812, 24.9500761 ], [ 121.682357, 24.9541364 ], [ 121.6812362, 24.9554373 ], [ 121.6790107, 24.9580249 ], [ 121.6740883, 24.9636751 ], [ 121.6717969, 24.9664026 ], [ 121.6707795, 24.9675343 ], [ 121.6679658, 24.9708008 ], [ 121.6657953, 24.9733004 ], [ 121.6645183, 24.9747718 ], [ 121.6631127, 24.976442 ], [ 121.6603893, 24.9795738 ], [ 121.6581388, 24.9821267 ], [ 121.6546994, 24.9861678 ], [ 121.6526358, 24.9889481 ], [ 121.6521898, 24.9930245 ], [ 121.6511993, 24.9991794 ], [ 121.6493889, 25.010428 ], [ 121.6491675, 25.0120949 ], [ 121.6486163, 25.0167936 ], [ 121.6474583, 25.0204704 ], [ 121.6470923, 25.0216347 ], [ 121.6466435, 25.0233842 ], [ 121.6461188, 25.025242 ], [ 121.6447023, 25.0303511 ], [ 121.643637, 25.0343926 ], [ 121.6432266, 25.0364329 ], [ 121.6429898, 25.0376103 ], [ 121.6428609, 25.0383019 ], [ 121.6425388, 25.03994 ], [ 121.6417661, 25.0438347 ], [ 121.6412769, 25.046389 ], [ 121.6405305, 25.050425 ], [ 121.6396774, 25.0544258 ], [ 121.6393479, 25.0561317 ], [ 121.6393028, 25.0563652 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135966592", "name": "南港一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "addr:city": "新北市", "addr:country": "TW", "addr:district": "汐止區", "addr:full": "新北市汐止區樟樹里12鄰大同路一段275號", "addr:housenumber": "275", "addr:street": "大同路一段", "alt_name": "南港P/S;南港變電所", "alt_name:en": "Nangang P/S;Nangang Substation", "alt_name:zh": "南港P/S;南港變電所", "barrier": "wall", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "rating": "600 MVA", "substation": "transmission", "utility": "power", "wall": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.634113, 25.0601371 ], [ 121.634254, 25.0599799 ], [ 121.6352885, 25.0588255 ], [ 121.6356384, 25.0584248 ], [ 121.6362705, 25.0588769 ], [ 121.6368978, 25.0593235 ], [ 121.6367233, 25.0595205 ], [ 121.6368, 25.0595856 ], [ 121.6355384, 25.0610254 ], [ 121.6353506, 25.0612398 ], [ 121.634113, 25.0601371 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969448", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7886605, 24.4405952 ], [ 121.7896547, 24.4422713 ], [ 121.7911727, 24.4448556 ], [ 121.7958934, 24.4463179 ], [ 121.7994079, 24.4509039 ], [ 121.8011791, 24.4531471 ], [ 121.8041176, 24.455468 ], [ 121.807228, 24.4579024 ], [ 121.8082823, 24.4597403 ], [ 121.810891, 24.4614255 ], [ 121.8115267, 24.463192 ], [ 121.8144671, 24.4650591 ], [ 121.8175172, 24.4669531 ], [ 121.8198051, 24.4703104 ], [ 121.8207593, 24.4716857 ], [ 121.8230518, 24.4767179 ], [ 121.8243774, 24.4795823 ], [ 121.8264241, 24.4836093 ], [ 121.8266446, 24.4890488 ], [ 121.8260356, 24.4938848 ], [ 121.8257764, 24.4967303 ], [ 121.8253816, 24.5004117 ], [ 121.8235599, 24.5045118 ], [ 121.8216204, 24.508829 ], [ 121.8195319, 24.5133208 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969449", "power": "line", "line": "substation", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1", "colour": "blue" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.710663, 24.6440259 ], [ 121.710907, 24.6439674 ], [ 121.7115547, 24.6437585 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969450", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7116159, 24.644072 ], [ 121.7135699, 24.6451279 ], [ 121.7161783, 24.6446339 ], [ 121.7189027, 24.6465001 ], [ 121.7205173, 24.6481985 ], [ 121.7221255, 24.6512434 ], [ 121.7230936, 24.6554994 ], [ 121.7241974, 24.6572825 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969451", "power": "line", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8252158, 24.5172424 ], [ 121.826193, 24.5179737 ], [ 121.8267451, 24.518342 ], [ 121.8273824, 24.5187531 ], [ 121.8277528, 24.520003 ], [ 121.8283563, 24.521513 ], [ 121.8286997, 24.5224639 ], [ 121.8292661, 24.5248495 ], [ 121.8297113, 24.5256401 ], [ 121.8299594, 24.5266214 ], [ 121.8304677, 24.5276981 ], [ 121.8311173, 24.5296645 ], [ 121.8315886, 24.530874 ], [ 121.8319, 24.5319819 ], [ 121.8321808, 24.5325569 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969452", "power": "line", "cables": "6", "voltage": "161000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8314097, 24.5326346 ], [ 121.8301475, 24.5286713 ], [ 121.8283927, 24.5223094 ], [ 121.828635, 24.5212752 ], [ 121.8295343, 24.5172406 ], [ 121.8301817, 24.5159174 ], [ 121.8304986, 24.5133816 ], [ 121.8308176, 24.5105072 ], [ 121.8310959, 24.5091177 ], [ 121.8315154, 24.5071091 ], [ 121.8325581, 24.5022319 ], [ 121.8332271, 24.4991858 ], [ 121.8331833, 24.4989539 ], [ 121.8335628, 24.4969827 ], [ 121.8340292, 24.4948351 ], [ 121.8342409, 24.4938878 ], [ 121.8329657, 24.4878567 ], [ 121.8313901, 24.483028 ], [ 121.8310349, 24.4819545 ], [ 121.8301587, 24.4791601 ], [ 121.8274636, 24.4762711 ], [ 121.8269654, 24.4757095 ], [ 121.8221746, 24.4704903 ], [ 121.818211, 24.4662835 ], [ 121.8147977, 24.4634571 ], [ 121.8131622, 24.4620823 ], [ 121.8111861, 24.4604454 ], [ 121.8092407, 24.4582759 ], [ 121.8084855, 24.4573944 ], [ 121.8062173, 24.45478 ], [ 121.8047283, 24.453079 ], [ 121.8026535, 24.4507429 ], [ 121.7984212, 24.4464083 ], [ 121.7963381, 24.4447856 ], [ 121.7921295, 24.4411027 ], [ 121.7911466, 24.4401349 ], [ 121.7905145, 24.4395534 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969453", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7851207, 24.6247974 ], [ 121.7841474, 24.6241906 ], [ 121.783702, 24.6237393 ], [ 121.7854472, 24.6222875 ], [ 121.7864601, 24.6214618 ], [ 121.7878228, 24.6207943 ], [ 121.7898884, 24.619837 ], [ 121.7907888, 24.619417 ], [ 121.7918565, 24.6189227 ], [ 121.7927257, 24.6185204 ], [ 121.793532, 24.6181472 ], [ 121.7945162, 24.6176916 ], [ 121.7952958, 24.6173307 ], [ 121.7974, 24.616373 ], [ 121.7984523, 24.6158827 ], [ 121.7987167, 24.6156661 ], [ 121.7992458, 24.6152866 ], [ 121.8003727, 24.6144908 ], [ 121.8015644, 24.6136434 ], [ 121.8030327, 24.6125997 ], [ 121.8039192, 24.6119525 ], [ 121.8057988, 24.6106147 ], [ 121.8066885, 24.6099843 ], [ 121.8069273, 24.6098083 ], [ 121.8078757, 24.6091897 ], [ 121.8090233, 24.608021 ], [ 121.8100042, 24.6072868 ], [ 121.811698, 24.6062929 ], [ 121.8156674, 24.6040787 ], [ 121.8167433, 24.6034493 ], [ 121.8174644, 24.6028591 ], [ 121.8180674, 24.6023757 ], [ 121.8183906, 24.6021166 ], [ 121.8187251, 24.6018926 ], [ 121.819991, 24.6008888 ], [ 121.8202413, 24.6004345 ], [ 121.8205709, 24.5998536 ], [ 121.8210256, 24.5991088 ], [ 121.8212252, 24.5987788 ], [ 121.8214062, 24.5984682 ], [ 121.823715, 24.5957021 ], [ 121.8264819, 24.5926033 ], [ 121.8267434, 24.5923913 ], [ 121.8283198, 24.5910013 ], [ 121.8291596, 24.5902955 ], [ 121.8325074, 24.5874571 ], [ 121.833712, 24.586417 ], [ 121.8338806, 24.5862873 ], [ 121.8347479, 24.5855498 ], [ 121.8350246, 24.5849272 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969454", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7645991, 24.6581732 ], [ 121.7648987, 24.6581746 ], [ 121.7670438, 24.6583883 ], [ 121.7691446, 24.658591 ], [ 121.7711365, 24.6587776 ], [ 121.7733924, 24.6589933 ], [ 121.7756804, 24.659199 ], [ 121.7770915, 24.658835 ], [ 121.778888, 24.6584774 ], [ 121.7805579, 24.6581494 ], [ 121.7821086, 24.6566098 ], [ 121.783772, 24.6549736 ], [ 121.7853932, 24.6533553 ], [ 121.7869144, 24.6518689 ], [ 121.7885284, 24.6502742 ], [ 121.7900231, 24.6487828 ], [ 121.7916113, 24.6472294 ], [ 121.7933832, 24.645466 ], [ 121.79481, 24.6440548 ], [ 121.7964755, 24.6424088 ], [ 121.7979564, 24.6406266 ], [ 121.7991038, 24.6392644 ], [ 121.8003256, 24.6378275 ], [ 121.8020821, 24.6363538 ], [ 121.8036982, 24.6350411 ], [ 121.8054324, 24.6336003 ], [ 121.8072089, 24.6320965 ], [ 121.8087794, 24.6308945 ], [ 121.8103266, 24.6296435 ], [ 121.8113108, 24.6287104 ], [ 121.8104919, 24.6268492 ], [ 121.8114798, 24.6257103 ], [ 121.8105793, 24.6234636 ], [ 121.8120501, 24.6224998 ], [ 121.8142877, 24.6221606 ], [ 121.8156487, 24.6221798 ], [ 121.8170625, 24.62276 ], [ 121.8183473, 24.6228416 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969455", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7648077, 24.6583782 ], [ 121.7649999, 24.6585266 ], [ 121.7673572, 24.6597206 ], [ 121.769879, 24.6610081 ], [ 121.7721057, 24.6621454 ], [ 121.7735259, 24.662812 ], [ 121.7757791, 24.663839 ], [ 121.7774038, 24.6645831 ], [ 121.7790866, 24.6652436 ], [ 121.7810593, 24.6660001 ], [ 121.7825089, 24.6665486 ], [ 121.7842143, 24.6672194 ], [ 121.7857617, 24.6685916 ], [ 121.787767, 24.6704022 ], [ 121.7879094, 24.6724301 ], [ 121.7880895, 24.6748553 ], [ 121.7882064, 24.6766446 ], [ 121.7883604, 24.679065 ], [ 121.7885136, 24.6808981 ], [ 121.7886496, 24.6825933 ], [ 121.7887882, 24.6848872 ], [ 121.7893294, 24.6869848 ], [ 121.7898122, 24.6887518 ], [ 121.7897584, 24.6908837 ], [ 121.7897051, 24.6927307 ], [ 121.789662, 24.6947441 ], [ 121.7896269, 24.696655 ], [ 121.7895819, 24.6987083 ], [ 121.7895463, 24.7003721 ], [ 121.7879496, 24.702277 ], [ 121.7870875, 24.7038884 ], [ 121.7858489, 24.7056073 ], [ 121.7847708, 24.7071241 ], [ 121.7836035, 24.7087053 ], [ 121.7824526, 24.7103757 ], [ 121.7817117, 24.7120638 ], [ 121.7800676, 24.7156208 ], [ 121.7785942, 24.7188706 ], [ 121.7774985, 24.7212876 ], [ 121.7765327, 24.7233879 ], [ 121.7756393, 24.725326 ], [ 121.7746932, 24.7273805 ], [ 121.7732849, 24.7292309 ], [ 121.7721539, 24.7306702 ], [ 121.7705434, 24.7327792 ], [ 121.7691748, 24.7345427 ], [ 121.7678011, 24.736316 ], [ 121.7663945, 24.7381298 ], [ 121.7650539, 24.7398158 ], [ 121.7640724, 24.7414577 ], [ 121.7632522, 24.743934 ], [ 121.7629409, 24.7459666 ], [ 121.7625937, 24.7481615 ], [ 121.7620813, 24.7502876 ], [ 121.7618018, 24.7523696 ], [ 121.7614349, 24.754509 ], [ 121.761219, 24.7559307 ], [ 121.7629884, 24.7573054 ], [ 121.7635077, 24.7583268 ], [ 121.763864, 24.7607743 ], [ 121.7642432, 24.7637766 ], [ 121.764349, 24.7652285 ], [ 121.7639856, 24.7671624 ], [ 121.7636068, 24.7692785 ], [ 121.7635108, 24.7710189 ], [ 121.7631831, 24.77294 ], [ 121.7628085, 24.7753879 ], [ 121.7625182, 24.7773771 ], [ 121.7622378, 24.7792486 ], [ 121.7626522, 24.7813996 ], [ 121.7630335, 24.7832135 ], [ 121.7633817, 24.7849733 ], [ 121.7637774, 24.7869927 ], [ 121.7641995, 24.7890255 ], [ 121.7645729, 24.7908883 ], [ 121.7649701, 24.7927841 ], [ 121.7659526, 24.7948339 ], [ 121.7668394, 24.7966807 ], [ 121.7663026, 24.7989713 ], [ 121.7668213, 24.8011032 ], [ 121.7673599, 24.8033301 ], [ 121.767872, 24.8053963 ], [ 121.7698652, 24.8068271 ], [ 121.7710955, 24.8083458 ], [ 121.7723449, 24.8098837 ], [ 121.7735789, 24.8113916 ], [ 121.7752615, 24.813183 ], [ 121.7765822, 24.814939 ], [ 121.7777396, 24.8165424 ], [ 121.7791764, 24.8181415 ], [ 121.7805604, 24.8197115 ], [ 121.7819436, 24.8213095 ], [ 121.7836069, 24.8228086 ], [ 121.7851838, 24.8247102 ], [ 121.7866915, 24.8263561 ], [ 121.7883526, 24.8281817 ], [ 121.7903519, 24.8303907 ], [ 121.7913894, 24.8316702 ], [ 121.7925776, 24.8333697 ], [ 121.7938877, 24.834869 ], [ 121.79391, 24.8348945 ], [ 121.7953206, 24.8364675 ], [ 121.797001, 24.8381802 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969460", "name": "羅東一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.763068, 24.658018 ], [ 121.763065, 24.6579551 ], [ 121.7631422, 24.657923 ], [ 121.7631824, 24.6579313 ], [ 121.7642833, 24.6576972 ], [ 121.7644783, 24.6576784 ], [ 121.7646851, 24.65761 ], [ 121.7647717, 24.6576041 ], [ 121.7648339, 24.6575746 ], [ 121.7652241, 24.6587961 ], [ 121.7651966, 24.658845 ], [ 121.7651444, 24.6588553 ], [ 121.7651283, 24.658886 ], [ 121.7651706, 24.6589991 ], [ 121.7652802, 24.6589718 ], [ 121.7653939, 24.6593326 ], [ 121.7653697, 24.6593758 ], [ 121.765283, 24.6594013 ], [ 121.7653019, 24.659455 ], [ 121.7653895, 24.6594322 ], [ 121.7654348, 24.6594626 ], [ 121.7654791, 24.6595944 ], [ 121.7637668, 24.66008 ], [ 121.7631517, 24.6582069 ], [ 121.763068, 24.658018 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969461", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8232902, 24.5921098 ], [ 121.8212538, 24.5931671 ], [ 121.8183735, 24.594646 ], [ 121.815424, 24.5945136 ], [ 121.8112441, 24.594277 ], [ 121.8082633, 24.5970914 ], [ 121.806218, 24.5997687 ], [ 121.8036243, 24.6031979 ], [ 121.8023546, 24.6048785 ], [ 121.8012681, 24.6073922 ], [ 121.7997256, 24.6108237 ], [ 121.792811, 24.6119088 ], [ 121.7901137, 24.612481 ], [ 121.7883722, 24.6144442 ], [ 121.7850512, 24.6159967 ], [ 121.7836755, 24.6166403 ], [ 121.7771172, 24.6196885 ], [ 121.7728213, 24.6199514 ], [ 121.7709143, 24.6200746 ], [ 121.7642808, 24.6204334 ], [ 121.7583591, 24.6208713 ], [ 121.7562961, 24.6195788 ], [ 121.7505426, 24.6179269 ], [ 121.7445009, 24.6187859 ], [ 121.7396578, 24.6194489 ], [ 121.7364471, 24.619915 ], [ 121.7328069, 24.6204328 ], [ 121.7312275, 24.620636 ], [ 121.7273335, 24.6200457 ], [ 121.7233199, 24.6194719 ], [ 121.7219712, 24.6192741 ], [ 121.7190147, 24.6189025 ], [ 121.7151153, 24.6182317 ], [ 121.7123408, 24.6188984 ], [ 121.7095662, 24.6195651 ], [ 121.7074305, 24.6222411 ], [ 121.7056188, 24.6245882 ], [ 121.7047018, 24.6271716 ], [ 121.703842, 24.6297382 ], [ 121.702989, 24.6321559 ], [ 121.7043789, 24.6341386 ], [ 121.7059921, 24.6364913 ], [ 121.7081583, 24.6381011 ], [ 121.7102452, 24.6397636 ], [ 121.7109819, 24.6426508 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969462", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6931584, 24.9403106 ], [ 121.6958687, 24.9357873 ], [ 121.6992447, 24.9304838 ], [ 121.7002612, 24.9279723 ], [ 121.7006564, 24.9269915 ], [ 121.7041748, 24.9233957 ], [ 121.7068394, 24.9206356 ], [ 121.707868, 24.91951 ], [ 121.7087419, 24.9186202 ], [ 121.7099949, 24.9173368 ], [ 121.711621, 24.9155537 ], [ 121.7153143, 24.9114257 ], [ 121.7176345, 24.9088306 ], [ 121.7198073, 24.9064056 ], [ 121.7233538, 24.9024226 ], [ 121.7246398, 24.9011017 ], [ 121.725347, 24.9001827 ], [ 121.7286959, 24.8964702 ], [ 121.7303105, 24.8956824 ], [ 121.736177, 24.8929005 ], [ 121.741015, 24.8906416 ], [ 121.7484768, 24.8871243 ], [ 121.7497504, 24.8857175 ], [ 121.7528901, 24.8822086 ], [ 121.7552262, 24.8795948 ], [ 121.7570588, 24.8775427 ], [ 121.7607642, 24.8736681 ], [ 121.7651841, 24.8693521 ], [ 121.7678298, 24.8666617 ], [ 121.7687695, 24.8657103 ], [ 121.7692123, 24.8652718 ], [ 121.7689847, 24.862839 ], [ 121.768651, 24.8587042 ], [ 121.7674218, 24.8563459 ], [ 121.7662098, 24.8539036 ], [ 121.7645132, 24.8505691 ], [ 121.7636534, 24.8487577 ], [ 121.7631644, 24.8477806 ], [ 121.7622153, 24.8459447 ], [ 121.760658, 24.8425789 ], [ 121.7594429, 24.8401039 ], [ 121.7580024, 24.8371268 ], [ 121.7570149, 24.8351862 ], [ 121.755474, 24.8320861 ], [ 121.7546994, 24.8305518 ], [ 121.7526058, 24.8263374 ], [ 121.751618, 24.8243124 ], [ 121.750436, 24.8219425 ], [ 121.7493073, 24.819683 ], [ 121.7477424, 24.816495 ], [ 121.746154, 24.8141041 ], [ 121.744756, 24.8120141 ], [ 121.7430116, 24.8093611 ], [ 121.740659, 24.8059055 ], [ 121.7383794, 24.8024743 ], [ 121.7360469, 24.7993397 ], [ 121.7328355, 24.794421 ], [ 121.7312755, 24.7918074 ], [ 121.7301602, 24.7901585 ], [ 121.7285078, 24.7877443 ], [ 121.7269178, 24.7853887 ], [ 121.7252683, 24.7829529 ], [ 121.7236242, 24.7805272 ], [ 121.7219904, 24.7780896 ], [ 121.7203684, 24.7756731 ], [ 121.7187793, 24.773371 ], [ 121.7172161, 24.7710512 ], [ 121.7155663, 24.7686017 ], [ 121.713803, 24.7660541 ], [ 121.7123461, 24.7638886 ], [ 121.7116497, 24.7618589 ], [ 121.7110076, 24.7598157 ], [ 121.7100867, 24.7567991 ], [ 121.7088655, 24.7529779 ], [ 121.7093603, 24.7504913 ], [ 121.7101415, 24.7476704 ], [ 121.710751, 24.7454403 ], [ 121.7113722, 24.7432347 ], [ 121.712069, 24.7406526 ], [ 121.7128098, 24.7380146 ], [ 121.7135905, 24.7351464 ], [ 121.714328, 24.7324502 ], [ 121.7150588, 24.729769 ], [ 121.7154039, 24.7286695 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969464", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7972011, 24.6422903 ], [ 121.7969587, 24.6426322 ], [ 121.7966098, 24.6424257 ], [ 121.7969307, 24.642089 ], [ 121.7972011, 24.6422903 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "135969465", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7646272, 24.6583023 ], [ 121.7649677, 24.6583963 ], [ 121.7677417, 24.6587765 ], [ 121.7706791, 24.659151 ], [ 121.7734406, 24.6595252 ], [ 121.7749557, 24.6594596 ], [ 121.7763089, 24.6594069 ], [ 121.7777409, 24.6593588 ], [ 121.7792726, 24.6593053 ], [ 121.7801573, 24.6607609 ], [ 121.7808957, 24.6618187 ], [ 121.7815065, 24.6628101 ], [ 121.7820872, 24.6638736 ], [ 121.7823822, 24.6645366 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136039854", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8189851, 24.857718 ], [ 121.8185491, 24.8573392 ], [ 121.8178089, 24.8561427 ], [ 121.8158257, 24.854548 ], [ 121.8137147, 24.8528055 ], [ 121.8118537, 24.8512127 ], [ 121.8101254, 24.8496394 ], [ 121.808423, 24.8482338 ], [ 121.8066453, 24.8467665 ], [ 121.8048733, 24.8453413 ], [ 121.8034193, 24.844101 ], [ 121.8017868, 24.8427435 ], [ 121.8001315, 24.8412523 ], [ 121.7985712, 24.8397929 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136039855", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.797001, 24.8381802 ], [ 121.7985712, 24.8397929 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136039857", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8195319, 24.5133208 ], [ 121.8219019, 24.5182877 ], [ 121.8243151, 24.5230972 ], [ 121.8261408, 24.5270734 ], [ 121.828375, 24.5316803 ], [ 121.8291802, 24.5333784 ], [ 121.8335455, 24.5387355 ], [ 121.8350819, 24.5406046 ], [ 121.8360804, 24.5453231 ], [ 121.8346135, 24.5482973 ], [ 121.8335799, 24.5513071 ], [ 121.8335896, 24.5547696 ], [ 121.8329132, 24.5579169 ], [ 121.8327218, 24.5601489 ], [ 121.8319217, 24.5621963 ], [ 121.8300512, 24.5669864 ], [ 121.830388, 24.5715916 ], [ 121.8298649, 24.5770698 ], [ 121.8291561, 24.5819316 ], [ 121.8254794, 24.5844204 ], [ 121.8205267, 24.5860388 ], [ 121.8139713, 24.5880754 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136039858", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7627535, 24.7019761 ], [ 121.7627426, 24.7040782 ], [ 121.7629782, 24.7063123 ], [ 121.7632302, 24.7087058 ], [ 121.7633746, 24.7101946 ], [ 121.7636171, 24.7133371 ], [ 121.7639984, 24.7166824 ], [ 121.7641771, 24.7196552 ], [ 121.7653088, 24.7210237 ], [ 121.7666734, 24.7226701 ], [ 121.7678014, 24.7240638 ], [ 121.7691832, 24.7257421 ], [ 121.7705405, 24.7273948 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136040082", "name": "花蓮-光華線", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5311634, 23.9529849 ], [ 121.531052, 23.9514868 ], [ 121.5311815, 23.9504824 ], [ 121.5313271, 23.9493531 ], [ 121.5315584, 23.9482594 ], [ 121.5320447, 23.9459602 ], [ 121.5342575, 23.94339 ], [ 121.5362101, 23.9405761 ], [ 121.5376285, 23.9394438 ], [ 121.5380775, 23.9393089 ], [ 121.540751, 23.9385056 ], [ 121.543706, 23.9360334 ], [ 121.5471168, 23.934162 ], [ 121.5500158, 23.932633 ], [ 121.5526091, 23.9311689 ], [ 121.5559402, 23.92928 ], [ 121.5577879, 23.9280992 ], [ 121.5598223, 23.925674 ], [ 121.5626052, 23.9244274 ], [ 121.5655595, 23.9236448 ], [ 121.5685267, 23.9223745 ], [ 121.5714465, 23.9213506 ], [ 121.5745911, 23.9205564 ], [ 121.5778021, 23.9202903 ], [ 121.5806655, 23.9201677 ], [ 121.5836471, 23.9202396 ], [ 121.586684, 23.9209352 ], [ 121.5892996, 23.923329 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136040083", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4326384, 23.7233369 ], [ 121.4328861, 23.7259357 ], [ 121.4343771, 23.7269327 ], [ 121.4349011, 23.7284131 ], [ 121.4364439, 23.7327601 ], [ 121.4372792, 23.7351238 ], [ 121.4387176, 23.7392082 ], [ 121.4401515, 23.7423641 ], [ 121.4418846, 23.7456235 ], [ 121.4427311, 23.7472451 ], [ 121.4429846, 23.7477307 ], [ 121.4432443, 23.7482283 ], [ 121.4438031, 23.7492713 ], [ 121.4446285, 23.7508119 ], [ 121.4451135, 23.7517246 ], [ 121.4454493, 23.7523564 ], [ 121.4459034, 23.753211 ], [ 121.447522, 23.7562637 ], [ 121.4488518, 23.7587722 ], [ 121.4497617, 23.7621536 ], [ 121.4499784, 23.7630602 ], [ 121.4507549, 23.765975 ], [ 121.4508113, 23.7686632 ], [ 121.4509328, 23.7724796 ], [ 121.4509867, 23.7752307 ], [ 121.4511011, 23.778184 ], [ 121.4496616, 23.7814715 ], [ 121.4484237, 23.784134 ], [ 121.4468454, 23.7875534 ], [ 121.4458224, 23.7906581 ], [ 121.4451272, 23.7927433 ], [ 121.4445325, 23.7945642 ], [ 121.4439546, 23.7962849 ], [ 121.4427491, 23.7998977 ], [ 121.4417775, 23.8027543 ], [ 121.4401329, 23.8077369 ], [ 121.4391097, 23.8108112 ], [ 121.4412428, 23.8137522 ], [ 121.4428844, 23.8161126 ], [ 121.4462898, 23.8209043 ], [ 121.4492113, 23.8216236 ], [ 121.4517936, 23.8222454 ], [ 121.4537725, 23.8227291 ], [ 121.4556315, 23.8231823 ], [ 121.4564734, 23.8233522 ], [ 121.4585418, 23.823864 ], [ 121.4615395, 23.8245641 ], [ 121.4641878, 23.8252618 ], [ 121.4658549, 23.8256585 ], [ 121.4702946, 23.8267321 ], [ 121.4727531, 23.8287954 ], [ 121.4750479, 23.830692 ], [ 121.4773398, 23.8326117 ], [ 121.4797861, 23.8346475 ], [ 121.481961, 23.8364519 ], [ 121.4835708, 23.8389675 ], [ 121.4853696, 23.8417369 ], [ 121.4870813, 23.8443587 ], [ 121.4880952, 23.8462419 ], [ 121.4885022, 23.846916 ], [ 121.4902089, 23.8493603 ], [ 121.4917833, 23.8517258 ], [ 121.4933813, 23.8540775 ], [ 121.4952716, 23.8563827 ], [ 121.4968996, 23.8586862 ], [ 121.4985401, 23.8610878 ], [ 121.5003798, 23.8636732 ], [ 121.5017517, 23.8656135 ], [ 121.5037327, 23.8684311 ], [ 121.5041104, 23.8716706 ], [ 121.5041477, 23.8720488 ], [ 121.5044069, 23.8746685 ], [ 121.5046956, 23.8772096 ], [ 121.5027554, 23.8815654 ], [ 121.5016765, 23.8840104 ], [ 121.4992148, 23.8895109 ], [ 121.4988936, 23.8928828 ], [ 121.4998966, 23.8971259 ], [ 121.5008764, 23.9012874 ], [ 121.5013954, 23.9035053 ], [ 121.5012263, 23.905374 ], [ 121.5010747, 23.9066589 ], [ 121.5005965, 23.9106148 ], [ 121.5003836, 23.9124221 ], [ 121.5001212, 23.9146772 ], [ 121.4999083, 23.916647 ], [ 121.4986863, 23.9255209 ], [ 121.4986612, 23.9274352 ], [ 121.4980753, 23.9329678 ], [ 121.4995912, 23.9384774 ], [ 121.5012202, 23.9406495 ], [ 121.5022827, 23.9420627 ], [ 121.5027742, 23.9427143 ], [ 121.5045185, 23.945069 ], [ 121.5063832, 23.9460328 ], [ 121.507876, 23.9468291 ], [ 121.5099323, 23.9479211 ], [ 121.5194688, 23.9529873 ], [ 121.5205827, 23.9535653 ], [ 121.5226218, 23.9545919 ], [ 121.525078, 23.9549319 ], [ 121.5270939, 23.9552027 ], [ 121.531955, 23.9558303 ], [ 121.5375159, 23.9574218 ], [ 121.5393041, 23.9593519 ], [ 121.541031, 23.9613429 ], [ 121.5430426, 23.9637755 ], [ 121.5431553, 23.9639118 ], [ 121.5443593, 23.9653597 ], [ 121.546046, 23.9674054 ], [ 121.5464642, 23.9726238 ], [ 121.5467066, 23.9757681 ], [ 121.5468763, 23.9777717 ], [ 121.5472024, 23.9818815 ], [ 121.5474467, 23.9849485 ], [ 121.5488986, 23.9877345 ], [ 121.5495455, 23.9889274 ], [ 121.5508888, 23.9894239 ], [ 121.5521388, 23.9898848 ], [ 121.5547076, 23.9888661 ], [ 121.5548775, 23.9888 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136040084", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5425269, 23.9605296 ], [ 121.5440686, 23.9623216 ], [ 121.5454174, 23.9639006 ], [ 121.5468018, 23.9655643 ], [ 121.548647, 23.9677534 ], [ 121.5502269, 23.9696052 ], [ 121.5521783, 23.9718299 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136040088", "name": "花蓮一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "alt_name": "花蓮P/S", "alt_name:en": "Hualien P/S", "alt_name:zh": "花蓮P/S", "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5556072, 23.9872239 ], [ 121.5547748, 23.9872108 ], [ 121.5543347, 23.9874569 ], [ 121.5543696, 23.9875155 ], [ 121.5542271, 23.9875146 ], [ 121.5544196, 23.9882452 ], [ 121.5545256, 23.988252 ], [ 121.5545591, 23.9883372 ], [ 121.5544988, 23.9883735 ], [ 121.5544626, 23.9884415 ], [ 121.5547904, 23.9896517 ], [ 121.5549787, 23.989959 ], [ 121.5563801, 23.98916 ], [ 121.556403, 23.9891083 ], [ 121.556183, 23.9887411 ], [ 121.5563819, 23.9886254 ], [ 121.5556072, 23.9872239 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136172722", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4140547, 24.0108193 ], [ 121.4163662, 24.0088683 ], [ 121.4182604, 24.0076932 ], [ 121.4208538, 24.0052021 ], [ 121.4221539, 24.0032747 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136343017", "name": "鳳林超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "addr:city": "花蓮縣", "addr:country": "TW", "addr:district": "鳳林鎮", "addr:housenumber": "6", "addr:province": "台灣省", "addr:street": "中正路一段", "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "ref": "鳳林E/S", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4324307, 23.7204105 ], [ 121.4341384, 23.7213186 ], [ 121.4326306, 23.7235469 ], [ 121.4313022, 23.7230586 ], [ 121.4312665, 23.7229826 ], [ 121.4312204, 23.7229589 ], [ 121.4311215, 23.7229801 ], [ 121.4302117, 23.7226367 ], [ 121.4302274, 23.7226166 ], [ 121.429963, 23.7225171 ], [ 121.4300285, 23.722364 ], [ 121.4293817, 23.7221065 ], [ 121.4293105, 23.722236 ], [ 121.4290504, 23.7220456 ], [ 121.428566, 23.7214787 ], [ 121.4310979, 23.7205051 ], [ 121.4324307, 23.7204105 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136343018", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2", "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4302803, 23.7212449 ], [ 121.428768, 23.7232881 ], [ 121.426452, 23.7227966 ], [ 121.421465, 23.7193372 ], [ 121.4180679, 23.7169809 ], [ 121.4153159, 23.7150615 ], [ 121.4134311, 23.7117265 ], [ 121.4118219, 23.7088459 ], [ 121.4090693, 23.705865 ], [ 121.4071485, 23.7037761 ], [ 121.4057592, 23.7023641 ], [ 121.4047083, 23.7012207 ], [ 121.4030859, 23.6994942 ], [ 121.4008534, 23.6971198 ], [ 121.3991122, 23.6952843 ], [ 121.3988014, 23.693682 ], [ 121.4002782, 23.6908485 ], [ 121.4034458, 23.6848188 ], [ 121.4045489, 23.6838752 ], [ 121.4063803, 23.6823225 ], [ 121.4081966, 23.6818093 ], [ 121.4102479, 23.6795421 ], [ 121.4126538, 23.676971 ], [ 121.4145407, 23.6738582 ], [ 121.4155558, 23.6722068 ], [ 121.4165851, 23.6685356 ], [ 121.4154466, 23.6649453 ], [ 121.4138945, 23.6623575 ], [ 121.4123736, 23.6598289 ], [ 121.4106, 23.6569257 ], [ 121.407937, 23.6527682 ], [ 121.407069, 23.6514068 ], [ 121.4060947, 23.64984 ], [ 121.4053039, 23.6485921 ], [ 121.4045683, 23.6473699 ], [ 121.4028401, 23.644677 ], [ 121.3993689, 23.6417403 ], [ 121.3968729, 23.6396721 ], [ 121.3956665, 23.6373745 ], [ 121.394327, 23.6348542 ], [ 121.3929918, 23.6322872 ], [ 121.3914277, 23.6293457 ], [ 121.3898358, 23.6263073 ], [ 121.389189, 23.6250988 ], [ 121.3882521, 23.6228687 ], [ 121.3873644, 23.6208594 ], [ 121.3863749, 23.6154675 ], [ 121.3858074, 23.6124204 ], [ 121.3848147, 23.6096706 ], [ 121.3838244, 23.6069834 ], [ 121.3826733, 23.6037706 ], [ 121.3816418, 23.6009028 ], [ 121.3805014, 23.5976906 ], [ 121.3794855, 23.5949048 ], [ 121.3788297, 23.5908581 ], [ 121.3783541, 23.5880626 ], [ 121.378174, 23.5867599 ], [ 121.3764796, 23.5824011 ], [ 121.3745112, 23.5809611 ], [ 121.3725751, 23.5794944 ], [ 121.3710376, 23.5780363 ], [ 121.3694555, 23.5765441 ], [ 121.3696296, 23.5738672 ], [ 121.3692315, 23.5714011 ], [ 121.3691764, 23.5675021 ], [ 121.3690887, 23.5621949 ], [ 121.3697713, 23.5600147 ], [ 121.3704299, 23.5579963 ], [ 121.3709299, 23.5563908 ], [ 121.3715988, 23.5542364 ], [ 121.3715838, 23.5518532 ], [ 121.3715959, 23.5503844 ], [ 121.3716335, 23.5489898 ], [ 121.3715252, 23.5446897 ], [ 121.3715143, 23.5411826 ], [ 121.3715285, 23.5384985 ], [ 121.3714848, 23.5368161 ], [ 121.3714666, 23.5349406 ], [ 121.3699963, 23.5306162 ], [ 121.3687365, 23.5267385 ], [ 121.3679867, 23.5244182 ], [ 121.366728, 23.5205909 ], [ 121.3659144, 23.518223 ], [ 121.3658565, 23.5139326 ], [ 121.3658047, 23.5113697 ], [ 121.3657278, 23.5084601 ], [ 121.3657132, 23.5057803 ], [ 121.3656353, 23.5032371 ], [ 121.3655552, 23.500428 ], [ 121.3655271, 23.4976641 ], [ 121.3654555, 23.4948106 ], [ 121.3654081, 23.492652 ], [ 121.3648981, 23.4900474 ], [ 121.3645661, 23.4880765 ], [ 121.3640526, 23.4849926 ], [ 121.3636036, 23.4826986 ], [ 121.3632664, 23.4802486 ], [ 121.3607936, 23.4782611 ], [ 121.3587012, 23.4765656 ], [ 121.3563509, 23.4721015 ], [ 121.3547931, 23.4698901 ], [ 121.3532872, 23.4677855 ], [ 121.3506903, 23.4647788 ], [ 121.3493409, 23.4631636 ], [ 121.3474206, 23.4609247 ], [ 121.3459308, 23.4591772 ], [ 121.3448247, 23.4563325 ], [ 121.3429644, 23.4517926 ], [ 121.3422673, 23.4500384 ], [ 121.3413905, 23.4478655 ], [ 121.3398867, 23.4441106 ], [ 121.3391878, 23.4423092 ], [ 121.3383999, 23.4404157 ], [ 121.3367761, 23.4362714 ], [ 121.3351357, 23.4321751 ], [ 121.3342899, 23.4300243 ], [ 121.3335346, 23.4281515 ], [ 121.3322461, 23.4249186 ], [ 121.3288158, 23.4163314 ], [ 121.3266596, 23.4109211 ], [ 121.3266235, 23.4084828 ], [ 121.3266155, 23.4058592 ], [ 121.3257904, 23.4040766 ], [ 121.324908, 23.4021559 ], [ 121.323125, 23.3983029 ], [ 121.3205985, 23.3927938 ], [ 121.321007, 23.3894159 ], [ 121.3213002, 23.3868447 ], [ 121.3200322, 23.3827168 ], [ 121.3187441, 23.3784802 ], [ 121.3175594, 23.3746225 ], [ 121.3162694, 23.3704507 ], [ 121.3155128, 23.3679496 ], [ 121.3146482, 23.3649286 ], [ 121.3131624, 23.3598083 ], [ 121.3127964, 23.3584635 ], [ 121.3119462, 23.3555185 ], [ 121.3111962, 23.3524926 ], [ 121.3102578, 23.3494856 ], [ 121.3093664, 23.3462955 ], [ 121.3069406, 23.3419043 ], [ 121.3061457, 23.3384209 ], [ 121.3052756, 23.3345945 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361923", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5197653, 23.9496676 ], [ 121.5198569, 23.9496137 ], [ 121.5201666, 23.9493935 ], [ 121.5203047, 23.9493322 ], [ 121.5206874, 23.9492764 ], [ 121.5207238, 23.9493385 ], [ 121.5208599, 23.9492963 ], [ 121.5212886, 23.9497295 ], [ 121.5207072, 23.9500278 ], [ 121.5206901, 23.9502021 ], [ 121.5201639, 23.9502869 ], [ 121.5198261, 23.9501038 ], [ 121.5197205, 23.9499758 ], [ 121.5197653, 23.9496676 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361925", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6279582, 24.1546502 ], [ 121.6306739, 24.1533606 ], [ 121.6334094, 24.1520369 ], [ 121.6352757, 24.1502752 ], [ 121.6379361, 24.1497068 ], [ 121.6373082, 24.147159 ], [ 121.6366615, 24.1446784 ], [ 121.6352847, 24.1417285 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361926", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5966342, 24.058807 ], [ 121.5997226, 24.0640625 ], [ 121.6006872, 24.0660576 ], [ 121.6018374, 24.0682478 ], [ 121.6022932, 24.0689179 ], [ 121.6029232, 24.0698439 ], [ 121.6037607, 24.0716952 ], [ 121.6041156, 24.0737184 ], [ 121.6045654, 24.0763615 ], [ 121.6047036, 24.0781338 ], [ 121.6053486, 24.0809165 ], [ 121.6056678, 24.0829232 ], [ 121.606415, 24.0839722 ], [ 121.6068195, 24.08454 ], [ 121.6079118, 24.0860987 ], [ 121.6086111, 24.088058 ], [ 121.6093505, 24.0900113 ], [ 121.6100721, 24.0919848 ], [ 121.6107958, 24.093943 ], [ 121.6118075, 24.0966708 ], [ 121.6126479, 24.0989761 ], [ 121.6140423, 24.1026636 ], [ 121.6140941, 24.1027999 ], [ 121.6144696, 24.1037883 ], [ 121.6151848, 24.1057132 ], [ 121.6163454, 24.1074642 ], [ 121.6175173, 24.1092507 ], [ 121.6182182, 24.1106106 ], [ 121.6190821, 24.1116012 ], [ 121.6203329, 24.1135925 ], [ 121.6215253, 24.1153556 ], [ 121.6228043, 24.117254 ], [ 121.6237155, 24.1186862 ], [ 121.6249555, 24.1205271 ], [ 121.6264187, 24.1227464 ], [ 121.6267455, 24.123242 ], [ 121.6285294, 24.1259321 ], [ 121.6297405, 24.1277038 ], [ 121.6314566, 24.1302727 ], [ 121.6329056, 24.1325739 ], [ 121.6335174, 24.1342779 ], [ 121.6328727, 24.1367058 ], [ 121.6325778, 24.13827 ], [ 121.6319852, 24.1406361 ], [ 121.6317024, 24.142164 ], [ 121.6299481, 24.1445649 ], [ 121.6288275, 24.1454646 ], [ 121.627182, 24.1473289 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361927", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5557522, 23.9884431 ], [ 121.5560688, 23.9882959 ], [ 121.5559823, 23.9880868 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361928", "name": "東華分歧線", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5784395, 23.9134526 ], [ 121.5794747, 23.9152961 ], [ 121.5818059, 23.9180659 ], [ 121.5836471, 23.9202396 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361930", "name": "變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6063138, 24.0657945 ], [ 121.6072102, 24.0654603 ], [ 121.6072666, 24.0657678 ], [ 121.607295, 24.0659228 ], [ 121.6064145, 24.0662473 ], [ 121.6063138, 24.0657945 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136361932", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6067928, 24.0659115 ], [ 121.6064475, 24.0660459 ], [ 121.6043765, 24.0670115 ], [ 121.6021953, 24.0680434 ], [ 121.6010135, 24.0658763 ], [ 121.6001518, 24.0641974 ], [ 121.5990233, 24.0620588 ], [ 121.5967643, 24.0587004 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136362190", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3304524, 23.4091547 ], [ 121.3309845, 23.4098976 ], [ 121.331476, 23.4107022 ], [ 121.3319281, 23.4114528 ], [ 121.3325025, 23.4123173 ], [ 121.3331051, 23.413458 ], [ 121.3340195, 23.4151994 ], [ 121.3344849, 23.4161104 ], [ 121.334927, 23.4169205 ], [ 121.3353596, 23.4177013 ], [ 121.3357956, 23.4184607 ], [ 121.3362463, 23.4192932 ], [ 121.3366001, 23.4201091 ], [ 121.337584, 23.4218729 ], [ 121.3382607, 23.4231735 ], [ 121.33872, 23.4240527 ], [ 121.3397207, 23.4259808 ], [ 121.3407476, 23.4279319 ], [ 121.34132, 23.4290146 ], [ 121.3424191, 23.4311065 ], [ 121.3429717, 23.43215 ], [ 121.3444549, 23.4349875 ], [ 121.3457588, 23.4374001 ], [ 121.345956, 23.4378072 ], [ 121.3463392, 23.4384824 ], [ 121.348259, 23.4420367 ], [ 121.3484281, 23.442341 ], [ 121.349982, 23.4452355 ], [ 121.3511043, 23.4472153 ], [ 121.3521192, 23.4489866 ], [ 121.3530079, 23.4507909 ], [ 121.3539411, 23.4525069 ], [ 121.3544629, 23.4534484 ], [ 121.3547346, 23.4539166 ], [ 121.3556272, 23.4556408 ], [ 121.3561517, 23.4565914 ], [ 121.3576391, 23.4593078 ], [ 121.3582165, 23.4603754 ], [ 121.3588797, 23.4615485 ], [ 121.3592122, 23.4622082 ], [ 121.3597698, 23.4632243 ], [ 121.3602819, 23.4641811 ], [ 121.3617271, 23.4668673 ], [ 121.3621254, 23.4675876 ], [ 121.3623346, 23.4683244 ], [ 121.361685, 23.4685086 ], [ 121.3622485, 23.4704188 ], [ 121.3618009, 23.4748591 ], [ 121.3639128, 23.4791253 ], [ 121.3640094, 23.480006 ], [ 121.3642937, 23.4820033 ], [ 121.3647132, 23.4845229 ], [ 121.3650696, 23.4869598 ], [ 121.3653538, 23.4889042 ], [ 121.3656334, 23.4908776 ], [ 121.3658484, 23.4927638 ], [ 121.3664098, 23.4943989 ], [ 121.3667967, 23.4953729 ], [ 121.3669348, 23.495389 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136447739", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8662953, 25.0424539 ], [ 121.8661854, 25.0426709 ], [ 121.8659609, 25.0436186 ], [ 121.8640555, 25.0462361 ], [ 121.8628973, 25.0479163 ], [ 121.8611368, 25.0503633 ], [ 121.8600222, 25.0524815 ], [ 121.858645, 25.0547158 ], [ 121.8571551, 25.0571807 ], [ 121.85526, 25.0596598 ], [ 121.8535244, 25.0619332 ], [ 121.8529357, 25.0626896 ], [ 121.8509836, 25.0635085 ], [ 121.8462182, 25.0655188 ], [ 121.8437879, 25.0671972 ], [ 121.8412355, 25.068952 ], [ 121.8403084, 25.0695847 ], [ 121.837134, 25.0718206 ], [ 121.8344982, 25.0736356 ], [ 121.8341611, 25.079185 ], [ 121.8340286, 25.0820508 ], [ 121.8339121, 25.0835804 ], [ 121.8339173, 25.0874915 ], [ 121.8336469, 25.088993 ], [ 121.8302928, 25.0937044 ], [ 121.8289451, 25.0955566 ], [ 121.8268483, 25.0984198 ], [ 121.8243106, 25.0994616 ], [ 121.8226627, 25.1016636 ], [ 121.8214221, 25.1026327 ], [ 121.8203188, 25.1055319 ], [ 121.8209431, 25.105612 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136447742", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.9207655, 25.040064 ], [ 121.9198065, 25.0398367 ], [ 121.9192271, 25.0409345 ], [ 121.9175689, 25.0424179 ], [ 121.9150971, 25.0446062 ], [ 121.9131983, 25.0461039 ], [ 121.9119814, 25.0473172 ], [ 121.9097096, 25.049307 ], [ 121.908188, 25.050693 ], [ 121.9063281, 25.0520339 ], [ 121.9028451, 25.0550155 ], [ 121.9003295, 25.0569619 ], [ 121.8958774, 25.0604056 ], [ 121.893326, 25.0623715 ], [ 121.8909932, 25.0641558 ], [ 121.8880042, 25.0664791 ], [ 121.8849821, 25.0688228 ], [ 121.8818784, 25.0713457 ], [ 121.8804375, 25.072512 ], [ 121.8790127, 25.0734239 ], [ 121.8776023, 25.0746301 ], [ 121.8765378, 25.0754633 ], [ 121.8752474, 25.0765098 ], [ 121.8702097, 25.0804247 ], [ 121.8661534, 25.0835275 ], [ 121.8634294, 25.0856612 ], [ 121.8599896, 25.0883995 ], [ 121.8588432, 25.089318 ], [ 121.8534947, 25.09346 ], [ 121.8526136, 25.0941254 ], [ 121.8514938, 25.0975474 ], [ 121.8484242, 25.0992591 ], [ 121.8440753, 25.0998146 ], [ 121.8423396, 25.1014354 ], [ 121.8384735, 25.1050316 ], [ 121.8373095, 25.1060878 ], [ 121.8326484, 25.1077406 ], [ 121.8291323, 25.1089347 ], [ 121.8269658, 25.1102624 ], [ 121.8252148, 25.111069 ], [ 121.8218368, 25.1129001 ], [ 121.8170794, 25.1156852 ], [ 121.8148717, 25.1183546 ], [ 121.8152909, 25.1229666 ], [ 121.8126091, 25.1256637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136447744", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8232795, 24.8650541 ], [ 121.8246241, 24.8668524 ], [ 121.8266963, 24.8706917 ], [ 121.8278836, 24.8726314 ], [ 121.8297255, 24.875618 ], [ 121.8306385, 24.8770772 ], [ 121.8313489, 24.8781967 ], [ 121.83403, 24.8826666 ], [ 121.8346231, 24.8836115 ], [ 121.8358907, 24.8856916 ], [ 121.8366523, 24.8869708 ], [ 121.8392203, 24.8881955 ], [ 121.8425359, 24.8906885 ], [ 121.8434881, 24.8914042 ], [ 121.8463539, 24.8935445 ], [ 121.8498834, 24.8962331 ], [ 121.851416, 24.8984042 ], [ 121.8529486, 24.9005685 ], [ 121.8534848, 24.9013264 ], [ 121.8549344, 24.9033803 ], [ 121.8574675, 24.9069775 ], [ 121.8595072, 24.9098901 ], [ 121.8630166, 24.9130529 ], [ 121.8642308, 24.9141558 ], [ 121.8680957, 24.9175916 ], [ 121.8711189, 24.9202809 ], [ 121.8722258, 24.9212316 ], [ 121.8734184, 24.9222937 ], [ 121.8753751, 24.924034 ], [ 121.8778615, 24.926275 ], [ 121.8801053, 24.9282815 ], [ 121.8803553, 24.9295622 ], [ 121.8806003, 24.9309876 ], [ 121.881304, 24.932928 ], [ 121.8811399, 24.935089 ], [ 121.8809176, 24.9362422 ], [ 121.8807457, 24.9373898 ], [ 121.8799302, 24.9411162 ], [ 121.8794718, 24.9433905 ], [ 121.8787856, 24.9464584 ], [ 121.8791484, 24.9523371 ], [ 121.8792004, 24.9549728 ], [ 121.8795424, 24.9602283 ], [ 121.8796598, 24.9630725 ], [ 121.8795499, 24.9652198 ], [ 121.8784526, 24.9677703 ], [ 121.8746186, 24.9729231 ], [ 121.8736872, 24.9780525 ], [ 121.8771449, 24.9812446 ], [ 121.8785164, 24.982378 ], [ 121.8800411, 24.9874665 ], [ 121.8812724, 24.9895771 ], [ 121.8819869, 24.9915372 ], [ 121.8827971, 24.9934395 ], [ 121.8846025, 24.9982039 ], [ 121.8855402, 25.0006149 ], [ 121.8845765, 25.0043046 ], [ 121.883559, 25.007581 ], [ 121.8811872, 25.0103887 ], [ 121.8794732, 25.0119536 ], [ 121.880209, 25.0136542 ], [ 121.8812211, 25.0147722 ], [ 121.8821532, 25.0157918 ], [ 121.8815001, 25.0181854 ], [ 121.8794507, 25.0183298 ], [ 121.8788476, 25.0190234 ], [ 121.8787751, 25.0223337 ], [ 121.8769463, 25.0243863 ], [ 121.8765598, 25.0255993 ], [ 121.8754995, 25.0287772 ], [ 121.8745179, 25.031385 ], [ 121.8726009, 25.0335795 ], [ 121.8713747, 25.0350128 ], [ 121.87032, 25.0372102 ], [ 121.8686065, 25.0408379 ], [ 121.8681131, 25.0417586 ], [ 121.8667003, 25.0423171 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136447747", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7483868, 25.1231428 ], [ 121.7504973, 25.1207972 ], [ 121.7527469, 25.120134 ], [ 121.7579255, 25.1183184 ], [ 121.7603202, 25.1198236 ], [ 121.7622707, 25.1210048 ], [ 121.7628552, 25.1223176 ], [ 121.7652693, 25.12268 ], [ 121.76868, 25.1232056 ], [ 121.7705183, 25.1250258 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136448817", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5857448, 25.2818077 ], [ 121.5856638, 25.2814434 ], [ 121.5829679, 25.2790064 ], [ 121.581868, 25.2780871 ], [ 121.5794356, 25.276091 ], [ 121.5775755, 25.2745869 ], [ 121.5759831, 25.273254 ], [ 121.5727646, 25.271557 ], [ 121.5694464, 25.2697923 ], [ 121.5676213, 25.2688294 ], [ 121.5659656, 25.2679494 ], [ 121.5638655, 25.2668779 ], [ 121.5631887, 25.2665358 ], [ 121.5598608, 25.2649966 ], [ 121.5582035, 25.2642492 ], [ 121.5561193, 25.2632418 ], [ 121.5545872, 25.2625255 ], [ 121.5496194, 25.2622419 ], [ 121.547889, 25.2621292 ], [ 121.5441394, 25.2619289 ], [ 121.5418522, 25.2602008 ], [ 121.5404899, 25.2591539 ], [ 121.539103, 25.2581164 ], [ 121.5377977, 25.2571199 ], [ 121.5364657, 25.2561048 ], [ 121.5351292, 25.2548795 ], [ 121.5336764, 25.253587 ], [ 121.5323442, 25.2523849 ], [ 121.5301596, 25.2503817 ], [ 121.5286796, 25.2494942 ], [ 121.5269912, 25.2474956 ], [ 121.5242455, 25.2449861 ], [ 121.5230671, 25.2437092 ], [ 121.5204702, 25.2409288 ], [ 121.5173309, 25.2375304 ], [ 121.516524, 25.2366865 ], [ 121.513141, 25.2329687 ], [ 121.5108922, 25.2319054 ], [ 121.5081835, 25.2314927 ], [ 121.5063371, 25.2312119 ], [ 121.5043703, 25.2309382 ], [ 121.500278, 25.2298662 ], [ 121.4965318, 25.2288906 ], [ 121.49437, 25.2283401 ], [ 121.4926251, 25.2278748 ], [ 121.4906718, 25.2275858 ], [ 121.4870767, 25.2270524 ], [ 121.4858718, 25.2268821 ], [ 121.4828809, 25.2264392 ], [ 121.4796722, 25.2259721 ], [ 121.4771978, 25.2256168 ], [ 121.4752021, 25.2253176 ], [ 121.4727384, 25.2249575 ], [ 121.4708853, 25.2246777 ], [ 121.4669907, 25.2237677 ], [ 121.4646238, 25.2231788 ], [ 121.4612753, 25.2224464 ], [ 121.4582952, 25.2217481 ], [ 121.4548633, 25.2209427 ], [ 121.4523463, 25.2205366 ], [ 121.4519574, 25.220529 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492166", "name": "東林~蘆洲線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4093871, 25.0866153 ], [ 121.4131942, 25.0862774 ], [ 121.4179252, 25.0862678 ], [ 121.4189774, 25.0862193 ], [ 121.4237224, 25.0859819 ], [ 121.4253163, 25.0859393 ], [ 121.4304075, 25.0857416 ], [ 121.431601, 25.0861233 ], [ 121.4364134, 25.0881701 ], [ 121.439748, 25.0880134 ], [ 121.4425629, 25.0865632 ], [ 121.4462672, 25.085591 ], [ 121.4498042, 25.0844604 ], [ 121.453206, 25.0830243 ], [ 121.4566435, 25.0815698 ], [ 121.4595217, 25.0802708 ], [ 121.4622951, 25.0791952 ], [ 121.464512, 25.0783323 ], [ 121.4662172, 25.077662 ], [ 121.4687418, 25.0769053 ], [ 121.4723148, 25.0774186 ], [ 121.4762561, 25.0779276 ], [ 121.4768363, 25.0781217 ], [ 121.4772879, 25.0782702 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492168", "name": "東林~八里線", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.413646, 25.1530274 ], [ 121.4166868, 25.1507247 ], [ 121.4196828, 25.149615 ], [ 121.4238088, 25.1474991 ], [ 121.4246213, 25.1470905 ], [ 121.4272659, 25.1457468 ], [ 121.4297793, 25.1444478 ], [ 121.4332093, 25.1437343 ], [ 121.435458, 25.1429708 ], [ 121.4370503, 25.1363425 ], [ 121.4359742, 25.1336089 ], [ 121.4348041, 25.1308469 ], [ 121.4347731, 25.1307737 ], [ 121.4347497, 25.1275651 ], [ 121.4337101, 25.1246822 ], [ 121.433399, 25.1238421 ], [ 121.4322361, 25.1206428 ], [ 121.4297018, 25.1170092 ], [ 121.4283078, 25.1157048 ], [ 121.42582, 25.1131025 ], [ 121.4223534, 25.1078203 ], [ 121.4212898, 25.1060057 ], [ 121.4197096, 25.1036743 ], [ 121.4191017, 25.1020868 ], [ 121.4143161, 25.0956055 ], [ 121.4122784, 25.094506 ], [ 121.4123064, 25.0921893 ], [ 121.4133398, 25.0894875 ], [ 121.4142161, 25.0878157 ], [ 121.4131942, 25.0862774 ], [ 121.4114909, 25.0836979 ], [ 121.4106439, 25.0824044 ], [ 121.4088032, 25.0807759 ], [ 121.4044787, 25.0797397 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492169", "name": "東林~蘆洲線", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4043076, 25.0798946 ], [ 121.4080244, 25.0815788 ], [ 121.4091795, 25.0832424 ], [ 121.4093039, 25.0848648 ], [ 121.4093871, 25.0866153 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492170", "power": "line", "voltage": "161000", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4006522, 25.0494581 ], [ 121.4021856, 25.0491035 ], [ 121.4047647, 25.0495811 ], [ 121.4056869, 25.0493692 ], [ 121.4063994, 25.0487822 ], [ 121.4075789, 25.0485824 ], [ 121.409175, 25.0474961 ], [ 121.410277, 25.0486285 ], [ 121.4095692, 25.0516308 ], [ 121.4104816, 25.0533495 ], [ 121.4129286, 25.0554294 ], [ 121.4155895, 25.0572066 ], [ 121.4187444, 25.0587171 ], [ 121.4198342, 25.060463 ], [ 121.420694, 25.0606975 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492172", "operator": "台灣電力公司", "power": "line", "cables": "6", "voltage": "161000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3643893, 25.035003 ], [ 121.3660749, 25.0330329 ], [ 121.3672414, 25.0316515 ], [ 121.3707949, 25.0305916 ], [ 121.3724722, 25.0312896 ], [ 121.3746936, 25.0321744 ], [ 121.3760034, 25.0330664 ], [ 121.3784486, 25.0342966 ], [ 121.3814846, 25.0356235 ], [ 121.3843355, 25.0368648 ], [ 121.3872612, 25.0381835 ], [ 121.3894182, 25.0376825 ], [ 121.3929543, 25.036874 ], [ 121.3959968, 25.0361606 ], [ 121.3981576, 25.0362521 ], [ 121.4005191, 25.0362341 ], [ 121.4044411, 25.0362385 ], [ 121.4064745, 25.0362356 ], [ 121.4129528, 25.0362154 ], [ 121.4137096, 25.0355985 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136492174", "power": "line", "cables": "12", "voltage": "161000", "z_order": 50, "other_tags": { "circuits": "4", "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3659041, 25.0341492 ], [ 121.3668996, 25.0329944 ], [ 121.3710846, 25.0314913 ], [ 121.3727554, 25.0321708 ], [ 121.3747933, 25.0329679 ], [ 121.376517, 25.0342194 ], [ 121.378818, 25.0351394 ], [ 121.3816078, 25.036297 ], [ 121.3840507, 25.0373026 ], [ 121.3856505, 25.0378976 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136493919", "name": "東林一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4041161, 25.0789124 ], [ 121.4042524, 25.0790694 ], [ 121.40429, 25.0790316 ], [ 121.4047405, 25.0792727 ], [ 121.4048106, 25.0793275 ], [ 121.4045727, 25.0796678 ], [ 121.4046696, 25.0798331 ], [ 121.4043856, 25.0800451 ], [ 121.4042357, 25.0800092 ], [ 121.4039575, 25.080072 ], [ 121.4036619, 25.0800938 ], [ 121.4032572, 25.0802273 ], [ 121.4028797, 25.0798209 ], [ 121.4041161, 25.0789124 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499909", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "9", "voltage": "69000", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3627164, 25.0365177 ], [ 121.3627128, 25.0367043 ], [ 121.3615237, 25.0367219 ], [ 121.3609885, 25.0351313 ], [ 121.3605193, 25.0334934 ], [ 121.3595226, 25.0314884 ], [ 121.3584503, 25.029706 ], [ 121.3567328, 25.0269101 ], [ 121.3555059, 25.0248969 ], [ 121.3548343, 25.023713 ], [ 121.3544492, 25.023034 ], [ 121.3535167, 25.0208685 ], [ 121.3525049, 25.0183582 ], [ 121.3521453, 25.0170891 ], [ 121.3529999, 25.0153204 ], [ 121.3547198, 25.0117057 ], [ 121.3557637, 25.0080014 ], [ 121.3573561, 25.0060157 ], [ 121.3581557, 25.0032903 ], [ 121.3591395, 24.9990078 ], [ 121.358352, 24.996835 ], [ 121.3581616, 24.9967535 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499910", "name": "國光電廠~頂湖線", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3624744, 25.0340918 ], [ 121.3620322, 25.0322966 ], [ 121.3611273, 25.0298701 ], [ 121.3568641, 25.0287287 ], [ 121.3556227, 25.0267208 ], [ 121.3489418, 25.0237828 ], [ 121.347893, 25.0249347 ], [ 121.3459507, 25.0273825 ], [ 121.342753, 25.028199 ], [ 121.3422141, 25.0304128 ], [ 121.3438619, 25.0329085 ], [ 121.3434834, 25.0362244 ], [ 121.3416649, 25.0397197 ], [ 121.3406258, 25.0420047 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499913", "power": "line", "wires": "double,double,single,single", "cables": "12", "voltage": "161000;161000;69000;69000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3555059, 25.0248969 ], [ 121.354227, 25.0239986 ], [ 121.3489381, 25.0225493 ], [ 121.3453443, 25.0195747 ], [ 121.3401469, 25.01725 ], [ 121.3375232, 25.0124885 ], [ 121.3366283, 25.0101766 ], [ 121.3328248, 25.0084117 ], [ 121.3314865, 25.0084272 ], [ 121.3283755, 25.0084099 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499915", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3677363, 25.0370834 ], [ 121.3686816, 25.0359564 ], [ 121.3731113, 25.0376916 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499916", "name": "林口電廠~頂湖線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3399601, 25.0376296 ], [ 121.3376748, 25.0329515 ], [ 121.3371084, 25.0319639 ], [ 121.3364924, 25.0290576 ], [ 121.3370564, 25.0286111 ], [ 121.3394648, 25.0267042 ], [ 121.3458868, 25.0263974 ], [ 121.3486649, 25.0264873 ], [ 121.3526114, 25.0294253 ], [ 121.3537542, 25.0321464 ], [ 121.3574172, 25.0334195 ], [ 121.3608867, 25.0354419 ], [ 121.360869, 25.0370611 ], [ 121.3617877, 25.036846 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499918", "operator": "台灣電力公司", "power": "line", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3612891, 25.0339939 ], [ 121.3612756, 25.0334035 ], [ 121.3612722, 25.0325394 ], [ 121.3606603, 25.0290898 ], [ 121.3605198, 25.0259285 ], [ 121.3604649, 25.023416 ], [ 121.361718, 25.0198024 ], [ 121.3635441, 25.0178355 ], [ 121.3630463, 25.0163687 ], [ 121.3642226, 25.0139214 ], [ 121.3657013, 25.0139653 ], [ 121.3675369, 25.0136515 ], [ 121.3693498, 25.0126243 ], [ 121.3732909, 25.0132309 ], [ 121.3755039, 25.0138971 ], [ 121.3783919, 25.014799 ], [ 121.3807215, 25.0152551 ], [ 121.3849135, 25.0158239 ], [ 121.3868472, 25.0191358 ], [ 121.3902732, 25.0219748 ], [ 121.3927844, 25.0238639 ], [ 121.3953942, 25.0235975 ], [ 121.3988161, 25.0233528 ], [ 121.4017845, 25.0243063 ], [ 121.400298, 25.0277844 ], [ 121.4037868, 25.0325801 ], [ 121.4085892, 25.0341842 ], [ 121.4125251, 25.0343709 ], [ 121.4128742, 25.0357582 ], [ 121.4133032, 25.0380309 ], [ 121.4105904, 25.0419901 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136499920", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3424291, 25.0438368 ], [ 121.3398613, 25.0429632 ], [ 121.3376321, 25.0422527 ], [ 121.333969, 25.0409828 ], [ 121.3275314, 25.0407533 ], [ 121.324424, 25.0407778 ], [ 121.3209036, 25.0404711 ], [ 121.318771, 25.0403485 ], [ 121.3151725, 25.040157 ], [ 121.3109719, 25.0389061 ], [ 121.3101326, 25.0399324 ], [ 121.3080406, 25.0423662 ], [ 121.3068268, 25.0417982 ], [ 121.3065807, 25.0405487 ], [ 121.3068858, 25.0399155 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136501970", "name": "林口電廠~東林線", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3094403, 25.110309 ], [ 121.312397, 25.1069834 ], [ 121.3141263, 25.1050728 ], [ 121.3156749, 25.1031616 ], [ 121.3177862, 25.1024652 ], [ 121.320549, 25.1012064 ], [ 121.3233421, 25.1000035 ], [ 121.3266977, 25.0980539 ], [ 121.3279329, 25.0972724 ], [ 121.3299632, 25.096307 ], [ 121.3334788, 25.0945109 ], [ 121.3364928, 25.0931173 ], [ 121.339137, 25.0930511 ], [ 121.3412205, 25.0929988 ], [ 121.3442928, 25.0929283 ], [ 121.3461082, 25.0928879 ], [ 121.3499564, 25.09279 ], [ 121.3522869, 25.0927266 ], [ 121.3580093, 25.0925797 ], [ 121.3611222, 25.0925212 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136501971", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2970383, 25.1197783 ], [ 121.2969719, 25.1197255 ], [ 121.2954792, 25.1185304 ], [ 121.2929528, 25.1174047 ], [ 121.2893773, 25.114755 ], [ 121.2853023, 25.1113116 ], [ 121.2834554, 25.1094407 ], [ 121.2820702, 25.1088024 ], [ 121.2789861, 25.1096145 ], [ 121.2770545, 25.1110693 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136531131", "name": "麻豆變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2478098, 23.1769547 ], [ 120.2483075, 23.1769674 ], [ 120.2482289, 23.1776181 ], [ 120.247608, 23.1776048 ], [ 120.2474915, 23.177234 ], [ 120.247558, 23.1772212 ], [ 120.247479, 23.17692 ], [ 120.2478111, 23.1769295 ], [ 120.2478098, 23.1769547 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136698451", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9899939, 24.774154 ], [ 120.9926221, 24.7739038 ], [ 120.9934203, 24.7733068 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136854903", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4566254, 25.0702515 ], [ 121.4576963, 25.070713 ], [ 121.4588084, 25.0710933 ], [ 121.4629169, 25.0727394 ], [ 121.4654525, 25.0737452 ], [ 121.4686107, 25.0749519 ], [ 121.4713204, 25.0758496 ], [ 121.473538, 25.0765746 ], [ 121.4765454, 25.077581 ], [ 121.4774314, 25.0779221 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136889171", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9368547, 24.7091178 ], [ 120.9367656, 24.7093954 ], [ 120.9370858, 24.7105998 ], [ 120.936642, 24.7142195 ], [ 120.9364361, 24.7160635 ], [ 120.936507, 24.7183642 ], [ 120.9372745, 24.7194651 ], [ 120.9391896, 24.7209198 ], [ 120.9405937, 24.7226111 ], [ 120.9434484, 24.7253179 ], [ 120.9441192, 24.7260133 ], [ 120.9452614, 24.7274099 ], [ 120.9476028, 24.7297583 ], [ 120.9493783, 24.7323318 ], [ 120.9502886, 24.7332506 ], [ 120.9508104, 24.7345189 ], [ 120.9523028, 24.7359983 ], [ 120.9549358, 24.7377492 ], [ 120.9563111, 24.7391364 ], [ 120.9582485, 24.7413653 ], [ 120.9587725, 24.7432919 ], [ 120.9573931, 24.7455701 ], [ 120.9538625, 24.7476117 ], [ 120.9508689, 24.7491199 ], [ 120.9492932, 24.7512775 ], [ 120.947759, 24.751792 ], [ 120.9466816, 24.7526902 ], [ 120.9441558, 24.7552378 ], [ 120.9436993, 24.7583918 ], [ 120.9428694, 24.7608238 ], [ 120.9420247, 24.7629649 ], [ 120.9411523, 24.7656854 ], [ 120.9386678, 24.7665172 ], [ 120.9352544, 24.7669156 ], [ 120.9308066, 24.7665663 ], [ 120.9280041, 24.7674564 ], [ 120.9260366, 24.7702114 ], [ 120.9248031, 24.7714631 ], [ 120.9205393, 24.7698612 ], [ 120.9190649, 24.7690644 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "136889172", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9690174, 24.7487483 ], [ 120.9676276, 24.7474471 ], [ 120.9660958, 24.7460067 ], [ 120.9642268, 24.7441679 ], [ 120.9624163, 24.7424092 ], [ 120.9599775, 24.7397321 ], [ 120.9576802, 24.7376839 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "137098786", "name": "佳里變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1848036, 23.1659587 ], [ 120.1846453, 23.1650062 ], [ 120.1852245, 23.1651582 ], [ 120.1853079, 23.165216 ], [ 120.1853279, 23.1652998 ], [ 120.1854486, 23.1659225 ], [ 120.1848036, 23.1659587 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "137098800", "name": "學甲~佳里線;麻豆~佳里線", "power": "line", "cables": "9", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "3" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1867941, 23.1682206 ], [ 120.1875919, 23.1691251 ], [ 120.1893615, 23.1710947 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "137167987", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2578369, 23.1395809 ], [ 120.2577947, 23.1394554 ], [ 120.2552021, 23.1405505 ], [ 120.2550655, 23.1442608 ], [ 120.2560905, 23.148422 ], [ 120.2568255, 23.1517842 ], [ 120.2577139, 23.155599 ], [ 120.2585753, 23.1592578 ], [ 120.260005, 23.1628866 ], [ 120.2616815, 23.1664113 ], [ 120.2646275, 23.1691339 ], [ 120.2682245, 23.1710536 ], [ 120.2718498, 23.1729828 ], [ 120.2753724, 23.1748514 ], [ 120.2794988, 23.1763529 ], [ 120.283148, 23.1768295 ], [ 120.287191, 23.1768124 ], [ 120.2908613, 23.1763287 ], [ 120.2947701, 23.1755048 ], [ 120.2986628, 23.1740976 ], [ 120.3024842, 23.1722696 ], [ 120.3062335, 23.1703354 ], [ 120.3098334, 23.1684038 ], [ 120.313449, 23.1665981 ], [ 120.3171778, 23.1647176 ], [ 120.3197595, 23.1634002 ], [ 120.325902, 23.1639946 ], [ 120.3305078, 23.160739 ], [ 120.3331268, 23.156324 ], [ 120.3364682, 23.1524012 ], [ 120.3394872, 23.1500647 ], [ 120.3423463, 23.1477898 ], [ 120.3453205, 23.1463362 ], [ 120.3493101, 23.1444065 ], [ 120.3517673, 23.1418399 ], [ 120.354961, 23.1413956 ], [ 120.3567091, 23.1398481 ], [ 120.3591776, 23.1396137 ], [ 120.3613704, 23.1397365 ], [ 120.3648135, 23.1393994 ], [ 120.3663525, 23.1389849 ], [ 120.3679656, 23.1386886 ], [ 120.3725494, 23.137999 ], [ 120.3753271, 23.1365289 ], [ 120.3756004, 23.1338614 ], [ 120.3759672, 23.131222 ], [ 120.3766279, 23.126571 ], [ 120.3771177, 23.1231046 ], [ 120.3775397, 23.1200223 ], [ 120.3779993, 23.1166032 ], [ 120.3784109, 23.1139675 ], [ 120.3790063, 23.1094854 ], [ 120.3791918, 23.1071551 ], [ 120.3795212, 23.1032774 ], [ 120.3798207, 23.0996079 ], [ 120.3801119, 23.0956485 ], [ 120.37958, 23.092618 ], [ 120.3788641, 23.0885816 ], [ 120.3782741, 23.0849972 ], [ 120.3778129, 23.0824348 ], [ 120.3771468, 23.0786209 ], [ 120.3767056, 23.076231 ], [ 120.3759633, 23.0719112 ], [ 120.3754752, 23.0690281 ], [ 120.375078, 23.066888 ], [ 120.3765156, 23.0635174 ], [ 120.3756944, 23.0583638 ], [ 120.3761068, 23.0535438 ], [ 120.3762488, 23.0520171 ], [ 120.3764323, 23.0498625 ], [ 120.3766967, 23.0477454 ], [ 120.3770863, 23.0445807 ], [ 120.3774583, 23.0417574 ], [ 120.377753, 23.0392134 ], [ 120.378136, 23.0363676 ], [ 120.3785934, 23.032665 ], [ 120.3788157, 23.0309913 ], [ 120.37948, 23.0282588 ], [ 120.3802495, 23.0248266 ], [ 120.3800081, 23.0232412 ], [ 120.3793263, 23.0190494 ], [ 120.3787335, 23.0152821 ], [ 120.3782746, 23.0123508 ], [ 120.3778694, 23.0100099 ], [ 120.3775282, 23.008039 ], [ 120.3771332, 23.0054733 ], [ 120.3767622, 23.0030531 ], [ 120.3759655, 22.9991798 ], [ 120.3756266, 22.9964546 ], [ 120.375411, 22.9949207 ], [ 120.3748128, 22.9909681 ], [ 120.374009, 22.9858814 ], [ 120.3736256, 22.9838163 ], [ 120.3730299, 22.9802587 ], [ 120.3727321, 22.9783331 ], [ 120.3722411, 22.9754046 ], [ 120.3718877, 22.9732791 ], [ 120.3711228, 22.9711476 ], [ 120.368987, 22.9654056 ], [ 120.3688771, 22.9613068 ], [ 120.3688584, 22.9596309 ], [ 120.3679406, 22.9551498 ], [ 120.3673281, 22.9520776 ], [ 120.3666896, 22.9487611 ], [ 120.3658554, 22.9445919 ], [ 120.3653782, 22.9422977 ], [ 120.3649625, 22.9401659 ], [ 120.3640778, 22.9358331 ], [ 120.3637869, 22.9339833 ], [ 120.363663, 22.9301216 ], [ 120.3635448, 22.92614 ], [ 120.3635355, 22.9227684 ], [ 120.363577, 22.9220632 ], [ 120.3635825, 22.9214923 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "140898105", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2988608, 23.1064994 ], [ 120.298472, 23.1062284 ], [ 120.2986195, 23.106068 ], [ 120.2989037, 23.1063588 ], [ 120.2989936, 23.106529 ], [ 120.2989478, 23.1065708 ], [ 120.2988608, 23.1064994 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "140898108", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3016954, 23.1082061 ], [ 120.302337, 23.1119864 ], [ 120.3012569, 23.1139882 ], [ 120.3008149, 23.1161355 ], [ 120.3020447, 23.1185482 ], [ 120.3022296, 23.1205743 ], [ 120.3024739, 23.1224186 ], [ 120.3026133, 23.1242218 ], [ 120.3027386, 23.1246618 ], [ 120.3029878, 23.1255106 ], [ 120.3030945, 23.1262035 ], [ 120.303131, 23.1267597 ], [ 120.3032976, 23.1277089 ], [ 120.3033241, 23.1280227 ], [ 120.3033992, 23.1286097 ], [ 120.3035226, 23.1294484 ], [ 120.3036567, 23.1301637 ], [ 120.303668, 23.1304693 ], [ 120.3036782, 23.1307458 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "141602473", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3016954, 23.1082061 ], [ 120.302457, 23.1077075 ], [ 120.302188, 23.1062703 ], [ 120.3018381, 23.1047308 ], [ 120.3027057, 23.1046633 ], [ 120.3031006, 23.1037415 ], [ 120.3028689, 23.1027615 ], [ 120.3028361, 23.10238 ], [ 120.3026666, 23.101807 ], [ 120.3024911, 23.1009207 ], [ 120.3022257, 23.0998852 ], [ 120.3019053, 23.0987697 ], [ 120.3016015, 23.0974546 ], [ 120.3013587, 23.0961094 ], [ 120.3002257, 23.0961756 ], [ 120.3001282, 23.095233 ], [ 120.2999862, 23.0944001 ], [ 120.2998436, 23.0936063 ], [ 120.2997051, 23.0927941 ], [ 120.2995622, 23.0919909 ], [ 120.3004502, 23.091954 ], [ 120.300077, 23.0903872 ], [ 120.2999488, 23.0898471 ], [ 120.2997611, 23.0890404 ], [ 120.2994337, 23.0879614 ], [ 120.2991863, 23.0869196 ], [ 120.3003262, 23.0858537 ], [ 120.3009163, 23.0852787 ], [ 120.3017693, 23.0846693 ], [ 120.3027671, 23.0837637 ], [ 120.3036468, 23.0830087 ], [ 120.3044603, 23.0829946 ], [ 120.3058411, 23.0829697 ], [ 120.305801, 23.0799676 ], [ 120.3045409, 23.0779329 ], [ 120.3035285, 23.0760878 ], [ 120.3018245, 23.0744956 ], [ 120.3010918, 23.0727796 ], [ 120.2995031, 23.0709966 ], [ 120.296747, 23.0692123 ], [ 120.2944505, 23.0676854 ], [ 120.2927337, 23.0677813 ], [ 120.2925544, 23.0677474 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "142670566", "power": "line", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2758636, 23.1008424 ], [ 120.2747943, 23.1037881 ], [ 120.27384, 23.1045384 ], [ 120.2735988, 23.1052982 ], [ 120.2730727, 23.1069549 ], [ 120.2729825, 23.1090475 ], [ 120.2722165, 23.110303 ], [ 120.2712062, 23.1132296 ], [ 120.2700768, 23.1155593 ], [ 120.2694481, 23.1174 ], [ 120.2699047, 23.1195647 ], [ 120.2697051, 23.1214589 ], [ 120.2700274, 23.1229698 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "142674124", "name": "豐華變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "豐華D/S;豐華配電變電所", "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.278006, 23.0868918 ], [ 120.2787083, 23.0864631 ], [ 120.2784661, 23.0856339 ], [ 120.278335, 23.0856091 ], [ 120.2776814, 23.0859778 ], [ 120.2776629, 23.0860343 ], [ 120.2776845, 23.0860759 ], [ 120.277668, 23.086086 ], [ 120.2776524, 23.0860955 ], [ 120.2776108, 23.0860578 ], [ 120.2775461, 23.0860542 ], [ 120.2774883, 23.0860868 ], [ 120.278006, 23.0868918 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "142674125", "power": "cable", "voltage": "161000", "z_order": -10, "other_tags": { "circuits": "4", "layer": "-1", "location": "underground" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2751848, 23.101047 ], [ 120.2758205, 23.1011778 ], [ 120.2760619, 23.1009459 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "142674130", "power": "line", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2695515, 23.1149068 ], [ 120.2676172, 23.1161209 ], [ 120.26827, 23.1176017 ], [ 120.2687986, 23.1185438 ], [ 120.2695639, 23.1223031 ], [ 120.2697457, 23.1230343 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "142675879", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2921962, 23.0579406 ], [ 120.2904368, 23.0555796 ], [ 120.28884, 23.0552763 ], [ 120.2887349, 23.052308 ], [ 120.2887123, 23.0514882 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143320385", "name": "新營~隆田線;官田~隆田線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3130464, 23.2110908 ], [ 120.3133069, 23.2092071 ], [ 120.3135698, 23.2072793 ], [ 120.3138621, 23.2053466 ], [ 120.3138085, 23.203016 ], [ 120.3141759, 23.2006601 ], [ 120.3146024, 23.1987411 ], [ 120.3156554, 23.1974861 ], [ 120.3157065, 23.1974252 ], [ 120.3159031, 23.1971909 ], [ 120.315973, 23.1971076 ], [ 120.3171223, 23.1963274 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143320405", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "location": "outdoor", "substation": "transition" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3125112, 23.2142934 ], [ 120.3126958, 23.2143136 ], [ 120.3127085, 23.2142151 ], [ 120.312524, 23.2141949 ], [ 120.3125112, 23.2142934 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143702413", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3019397, 23.0504984 ], [ 120.3021535, 23.0505625 ], [ 120.3021704, 23.0503997 ], [ 120.3019665, 23.0503503 ], [ 120.3019397, 23.0504984 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143965653", "name": "新營~學甲線", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1923906, 23.2470109 ], [ 120.1933122, 23.249439 ], [ 120.1953015, 23.2511311 ], [ 120.196813, 23.2525316 ], [ 120.1979948, 23.2536266 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143965654", "name": "新營~學甲線;學甲~永華線", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1921765, 23.2473948 ], [ 120.1919702, 23.24762 ], [ 120.1930225, 23.2493866 ], [ 120.1950133, 23.2526645 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "143965655", "name": "學甲變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1918366, 23.2473725 ], [ 120.1922348, 23.2477185 ], [ 120.1927399, 23.2472178 ], [ 120.1923767, 23.2468679 ], [ 120.1918366, 23.2473725 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "146487244", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3358837, 23.0808509 ], [ 120.333746, 23.0811717 ], [ 120.3317692, 23.0809373 ], [ 120.330463, 23.0808361 ], [ 120.3295698, 23.0807868 ], [ 120.3287142, 23.0807423 ], [ 120.3275635, 23.0806733 ], [ 120.3261607, 23.0805844 ], [ 120.3248411, 23.0805326 ], [ 120.3237011, 23.0811051 ], [ 120.3228267, 23.0816035 ], [ 120.3218397, 23.0821661 ], [ 120.3209948, 23.0827015 ], [ 120.3210189, 23.0828249 ], [ 120.3182482, 23.0827385 ], [ 120.3167944, 23.0829557 ], [ 120.3158744, 23.0831432 ], [ 120.3152656, 23.0830741 ], [ 120.314764, 23.0830322 ], [ 120.3140355, 23.0828398 ], [ 120.3126731, 23.0829831 ], [ 120.311385, 23.0829995 ], [ 120.3100432, 23.0830258 ], [ 120.3089631, 23.0828935 ], [ 120.3086453, 23.0830494 ], [ 120.3076339, 23.0829188 ], [ 120.3058411, 23.0829697 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "148896752", "name": "安南一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "alt_name": "安南P/S", "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1898982, 23.0161211 ], [ 120.1899919, 23.0159691 ], [ 120.1898909, 23.015907 ], [ 120.1902243, 23.015389 ], [ 120.1911117, 23.0156909 ], [ 120.1916029, 23.0158271 ], [ 120.1914556, 23.0164548 ], [ 120.1913094, 23.0170418 ], [ 120.1898982, 23.0161211 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "150877939", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1906201, 23.0164775 ], [ 120.1896177, 23.0176697 ], [ 120.193051, 23.0200187 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "150877940", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2674278, 23.0585142 ], [ 120.2648071, 23.0581277 ], [ 120.2616343, 23.0576507 ], [ 120.2585819, 23.0571786 ], [ 120.2556632, 23.0567106 ], [ 120.2529052, 23.0570036 ], [ 120.2500099, 23.057652 ], [ 120.2472248, 23.0572623 ], [ 120.2442138, 23.0560039 ], [ 120.2425803, 23.0535693 ], [ 120.2406518, 23.0507441 ], [ 120.2380814, 23.0493239 ], [ 120.235622, 23.047935 ], [ 120.2330181, 23.0464922 ], [ 120.2301028, 23.0448553 ], [ 120.22769, 23.0421417 ], [ 120.2267007, 23.0403485 ], [ 120.2255024, 23.037833 ], [ 120.2238226, 23.0346202 ], [ 120.2216372, 23.0291995 ], [ 120.2198355, 23.0268381 ], [ 120.2176245, 23.0244135 ], [ 120.2148195, 23.0238222 ], [ 120.2112807, 23.0232414 ], [ 120.2076924, 23.0227029 ], [ 120.2049745, 23.0222681 ], [ 120.2008367, 23.0216245 ], [ 120.1972364, 23.0201685 ], [ 120.193695, 23.0187442 ], [ 120.1906633, 23.0175207 ], [ 120.1909701, 23.0167311 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "150877941", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1908037, 23.0166127 ], [ 120.1900134, 23.0175447 ], [ 120.1922505, 23.0190962 ], [ 120.1947765, 23.0208435 ], [ 120.1975169, 23.0220921 ], [ 120.2015732, 23.0227845 ], [ 120.2059011, 23.0235498 ], [ 120.2102785, 23.0243189 ], [ 120.2145671, 23.0250489 ], [ 120.2175388, 23.0267531 ], [ 120.219389, 23.029123 ], [ 120.221009, 23.0332551 ], [ 120.2228973, 23.0373476 ], [ 120.2242759, 23.0411833 ], [ 120.2263412, 23.0445499 ], [ 120.2283263, 23.0472153 ], [ 120.2289388, 23.0507108 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "150880596", "power": "substation", "z_order": 0, "other_tags": { "barrier": "fence" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1928062, 23.0208039 ], [ 120.1929328, 23.0208563 ], [ 120.1929822, 23.0206357 ], [ 120.1928514, 23.0205739 ], [ 120.1928062, 23.0208039 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "157901183", "name": "森崴七股光電場", "operator": "森崴能源股份有限公司", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "77 MW", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.0970875, 23.1525942 ], [ 120.0970074, 23.1671669 ], [ 120.0937126, 23.1671255 ], [ 120.0936119, 23.1526875 ], [ 120.0970875, 23.1525942 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "158473587", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.193051, 23.0200187 ], [ 120.1928738, 23.02076 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "161206054", "name": "新竹一次變電所", "operator": "台灣電力公司", "power": "substation", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0079869, 24.7888204 ], [ 121.0095678, 24.787665 ], [ 121.0097774, 24.7876183 ], [ 121.0099656, 24.7876994 ], [ 121.0107098, 24.7886151 ], [ 121.0098604, 24.7892067 ], [ 121.0088508, 24.7899098 ], [ 121.0079869, 24.7888204 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "162545499", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2517163, 23.0348011 ], [ 120.2518601, 23.0344017 ], [ 120.2511486, 23.0342461 ], [ 120.25103, 23.034671 ], [ 120.2517163, 23.0348011 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "164569707", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2722669, 23.0586452 ], [ 120.2727828, 23.0585971 ], [ 120.2756346, 23.058056 ], [ 120.2775597, 23.0557626 ], [ 120.2802097, 23.0526012 ], [ 120.2830959, 23.0519686 ], [ 120.2867372, 23.0515128 ], [ 120.2887349, 23.052308 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "165407761", "power": "generator", "z_order": 0, "other_tags": { "generator:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.208111, 24.4689608 ], [ 121.2081261, 24.4689299 ], [ 121.2081671, 24.4689465 ], [ 121.208152, 24.4689774 ], [ 121.208111, 24.4689608 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "168819841", "name": "變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8190282, 24.8579447 ], [ 121.8191128, 24.857878 ], [ 121.8190897, 24.857854 ], [ 121.8193443, 24.8576504 ], [ 121.819309, 24.8576136 ], [ 121.8193355, 24.8575973 ], [ 121.8191932, 24.8574568 ], [ 121.8188474, 24.8577466 ], [ 121.8190282, 24.8579447 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "170266886", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3191052, 23.0188858 ], [ 120.3184545, 23.0140065 ], [ 120.3167425, 23.0127632 ], [ 120.3144163, 23.0111109 ], [ 120.3125714, 23.0098111 ], [ 120.3108372, 23.008571 ], [ 120.3090928, 23.0073415 ], [ 120.3073433, 23.0061118 ], [ 120.305647, 23.0049024 ], [ 120.3036114, 23.0034373 ], [ 120.3017063, 23.0021014 ], [ 120.3023738, 22.9997208 ], [ 120.303258, 22.9967561 ], [ 120.3043465, 22.994906 ], [ 120.3055062, 22.9929512 ], [ 120.3066586, 22.9910126 ], [ 120.3068839, 22.9906335 ], [ 120.3081352, 22.9885613 ], [ 120.3092686, 22.9866547 ], [ 120.3105113, 22.9845726 ], [ 120.3109278, 22.9827674 ], [ 120.3114438, 22.9808259 ], [ 120.3119065, 22.9788498 ], [ 120.3124702, 22.9766262 ], [ 120.3130643, 22.9742089 ], [ 120.3127642, 22.9718914 ], [ 120.3124433, 22.9695457 ], [ 120.3121085, 22.9670326 ], [ 120.3117859, 22.9647594 ], [ 120.3109127, 22.9625034 ], [ 120.3105903, 22.9629197 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "171984942", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1802283, 24.7937082 ], [ 121.1796359, 24.7949889 ], [ 121.1773774, 24.7990971 ], [ 121.1752212, 24.8008226 ], [ 121.1720361, 24.8032816 ], [ 121.1706613, 24.8044229 ], [ 121.1672864, 24.8073669 ], [ 121.1660123, 24.8084538 ], [ 121.1624396, 24.8120619 ], [ 121.1592571, 24.8153721 ], [ 121.1545367, 24.8202274 ], [ 121.152502, 24.8214035 ], [ 121.1504317, 24.8226076 ], [ 121.1450499, 24.8257266 ], [ 121.1440903, 24.8262947 ], [ 121.1426196, 24.8271598 ], [ 121.1415357, 24.8284422 ], [ 121.1380947, 24.8328195 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "171995869", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.289723, 22.9334047 ], [ 120.2905609, 22.9338235 ], [ 120.2899377, 22.9355027 ], [ 120.2929483, 22.9365771 ], [ 120.2967015, 22.9379146 ], [ 120.299753, 22.9395436 ], [ 120.3019241, 22.9387093 ], [ 120.304038, 22.9379017 ], [ 120.3062581, 22.9374129 ], [ 120.3084227, 22.9365203 ], [ 120.3110766, 22.9362143 ], [ 120.3142705, 22.9369496 ], [ 120.315032, 22.9345311 ], [ 120.3159782, 22.9317129 ], [ 120.316689, 22.9298128 ], [ 120.3197117, 22.9288902 ], [ 120.3218785, 22.9271821 ], [ 120.3250539, 22.9271481 ], [ 120.3280032, 22.9271056 ], [ 120.3299694, 22.929112 ], [ 120.3332371, 22.928062 ], [ 120.3369572, 22.9276964 ], [ 120.3405665, 22.9275774 ], [ 120.3434373, 22.9285211 ], [ 120.3459443, 22.9295487 ], [ 120.3478219, 22.9290394 ], [ 120.3503646, 22.9262825 ], [ 120.3529181, 22.9271125 ], [ 120.3564236, 22.9286954 ], [ 120.3586093, 22.9281613 ], [ 120.3577453, 22.925103 ], [ 120.3572773, 22.9230744 ], [ 120.3580722, 22.9217893 ], [ 120.3605488, 22.9212763 ], [ 120.361165, 22.921286 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "172120907", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2577576, 22.9655956 ], [ 120.2558389, 22.965651 ], [ 120.2556734, 22.9653538 ], [ 120.2547014, 22.9648904 ], [ 120.2539423, 22.9647635 ], [ 120.2534726, 22.9647109 ], [ 120.2532685, 22.9646858 ], [ 120.2525687, 22.9646441 ], [ 120.2525565, 22.9649728 ], [ 120.2522963, 22.9650726 ], [ 120.2516117, 22.9650757 ], [ 120.2512077, 22.9650775 ], [ 120.2505171, 22.965058 ], [ 120.2497148, 22.965223 ], [ 120.2478707, 22.9664319 ], [ 120.2465425, 22.967442 ], [ 120.2453582, 22.9682579 ], [ 120.2446451, 22.9687481 ], [ 120.2438513, 22.9692729 ], [ 120.2439318, 22.9696592 ], [ 120.2435676, 22.9697352 ], [ 120.243188, 22.9698575 ], [ 120.2429518, 22.9699721 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "172267805", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2532652, 22.8930868 ], [ 120.2557838, 22.8901448 ], [ 120.2585272, 22.8882292 ], [ 120.261892, 22.8859291 ], [ 120.2650363, 22.8837625 ], [ 120.2677947, 22.8819272 ], [ 120.2708415, 22.8799013 ], [ 120.2739196, 22.8808129 ], [ 120.2772943, 22.8818225 ], [ 120.2805599, 22.8828958 ], [ 120.2841206, 22.884038 ], [ 120.2878765, 22.8852508 ], [ 120.2915553, 22.8864072 ], [ 120.2953314, 22.8876101 ], [ 120.298636, 22.8886658 ], [ 120.3002378, 22.8907315 ], [ 120.3020217, 22.89299 ], [ 120.3036832, 22.8951262 ], [ 120.3055784, 22.8974978 ], [ 120.3083022, 22.9011004 ], [ 120.3098176, 22.9030007 ], [ 120.3111037, 22.9046135 ], [ 120.3128317, 22.9068176 ], [ 120.3155258, 22.9102872 ], [ 120.3181065, 22.9126919 ], [ 120.320302, 22.9150044 ], [ 120.3230878, 22.9176071 ], [ 120.3255484, 22.9200348 ], [ 120.327719, 22.9222044 ], [ 120.3307198, 22.9250925 ], [ 120.3322852, 22.926631 ], [ 120.3348558, 22.9264698 ], [ 120.3392989, 22.9262726 ], [ 120.343345, 22.9259791 ], [ 120.3464835, 22.9257878 ], [ 120.3501989, 22.9250396 ], [ 120.3552298, 22.9239743 ], [ 120.3588947, 22.9232067 ], [ 120.3611498, 22.9220851 ], [ 120.3620344, 22.921394 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "172451304", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2985143, 22.9047499 ], [ 120.2951245, 22.9045616 ], [ 120.2928845, 22.9029957 ], [ 120.2903476, 22.9012498 ], [ 120.2857252, 22.8982081 ], [ 120.2834104, 22.8967657 ], [ 120.2806407, 22.8948885 ], [ 120.2775931, 22.8928883 ], [ 120.2744563, 22.891091 ], [ 120.2736556, 22.8884219 ], [ 120.2746864, 22.8863225 ], [ 120.2760401, 22.8835126 ], [ 120.2774507, 22.8806453 ], [ 120.2788316, 22.8777798 ], [ 120.281648, 22.8720861 ], [ 120.2822011, 22.8709033 ], [ 120.2827923, 22.8696967 ], [ 120.2838859, 22.8673427 ], [ 120.2850664, 22.8649873 ], [ 120.2864738, 22.8620777 ], [ 120.2879398, 22.859085 ], [ 120.2888149, 22.8572851 ], [ 120.2894916, 22.8554603 ], [ 120.2904479, 22.8548036 ], [ 120.290955, 22.8544649 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "172618648", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3649012, 23.0779172 ], [ 120.3627136, 23.0766579 ], [ 120.3610711, 23.0757084 ], [ 120.3582896, 23.0742621 ], [ 120.355951, 23.0728472 ], [ 120.3538726, 23.0715679 ], [ 120.3520081, 23.0704143 ], [ 120.34962, 23.0706506 ], [ 120.3471554, 23.0708974 ], [ 120.3450165, 23.0711267 ], [ 120.3424407, 23.0713665 ], [ 120.3397493, 23.071607 ], [ 120.337539, 23.0707774 ], [ 120.3351048, 23.0699022 ], [ 120.332723, 23.068994 ], [ 120.3308776, 23.0682833 ], [ 120.3286568, 23.0674468 ], [ 120.3264708, 23.0666151 ], [ 120.3239253, 23.0656823 ], [ 120.3224018, 23.0651201 ], [ 120.319556, 23.0640314 ], [ 120.316509, 23.0628838 ], [ 120.3133642, 23.0616917 ], [ 120.3114835, 23.0609969 ], [ 120.3092737, 23.0601583 ], [ 120.3071112, 23.0593104 ], [ 120.3049603, 23.0585141 ], [ 120.30316, 23.0582055 ], [ 120.3001499, 23.0576998 ], [ 120.2976331, 23.057292 ], [ 120.2952717, 23.0557229 ], [ 120.292568, 23.0538509 ], [ 120.2908612, 23.0531778 ], [ 120.2887349, 23.052308 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "172618651", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3646014, 23.0783059 ], [ 120.3626814, 23.0782807 ], [ 120.3592333, 23.0774121 ], [ 120.357405, 23.0768331 ], [ 120.3538872, 23.0758995 ], [ 120.3501889, 23.0748626 ], [ 120.3449475, 23.0733977 ], [ 120.3426476, 23.0727489 ], [ 120.3401715, 23.0721035 ], [ 120.3360274, 23.0713729 ], [ 120.3328946, 23.0709386 ], [ 120.3305181, 23.0701375 ], [ 120.3281844, 23.0692717 ], [ 120.3251516, 23.0681671 ], [ 120.3222433, 23.0670375 ], [ 120.318326, 23.065682 ], [ 120.3146086, 23.0643286 ], [ 120.3110425, 23.063137 ], [ 120.3076282, 23.0617857 ], [ 120.3045008, 23.0606406 ], [ 120.3019161, 23.0597018 ], [ 120.2987969, 23.0585889 ], [ 120.2964858, 23.0577938 ], [ 120.2929984, 23.057966 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173413103", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6039479, 22.4060966 ], [ 120.6037443, 22.4027668 ], [ 120.60539, 22.400297 ], [ 120.607261, 22.3989591 ], [ 120.6101818, 22.397912 ], [ 120.613755, 22.3962746 ], [ 120.617558, 22.3962187 ], [ 120.6208701, 22.3962403 ], [ 120.6231268, 22.3949197 ], [ 120.6244606, 22.3925362 ], [ 120.6248622, 22.3900825 ], [ 120.6249287, 22.3863055 ], [ 120.6252312, 22.3836098 ], [ 120.6253471, 22.3803727 ], [ 120.6255233, 22.377522 ], [ 120.6256514, 22.3748835 ], [ 120.6261025, 22.3729953 ], [ 120.6267378, 22.3679352 ], [ 120.6270119, 22.3657099 ], [ 120.6294474, 22.3622859 ], [ 120.6312262, 22.3597836 ], [ 120.6331268, 22.3570012 ], [ 120.6347114, 22.3548449 ], [ 120.6385615, 22.3493474 ], [ 120.6395714, 22.3478776 ], [ 120.6411813, 22.3457128 ], [ 120.643011, 22.3431084 ], [ 120.6458655, 22.3390011 ], [ 120.647801, 22.3362179 ], [ 120.6496509, 22.3336279 ], [ 120.6501429, 22.3327809 ], [ 120.6517352, 22.3301774 ], [ 120.6525578, 22.3259563 ], [ 120.6530837, 22.3227925 ], [ 120.653124, 22.3225841 ], [ 120.6536288, 22.3199731 ], [ 120.6543688, 22.3162856 ], [ 120.6550266, 22.3127241 ], [ 120.6559865, 22.3071766 ], [ 120.6562133, 22.3059174 ], [ 120.6565583, 22.304264 ], [ 120.6574675, 22.2994009 ], [ 120.6583389, 22.294777 ], [ 120.6599523, 22.2865002 ], [ 120.6609579, 22.2808225 ], [ 120.661524, 22.2778354 ], [ 120.6619129, 22.2757001 ], [ 120.6643731, 22.2688172 ], [ 120.6653042, 22.2662257 ], [ 120.6677426, 22.2595088 ], [ 120.6682826, 22.2579769 ], [ 120.6696879, 22.2540959 ], [ 120.6706269, 22.2514652 ], [ 120.6717747, 22.2483093 ], [ 120.672673, 22.2458242 ], [ 120.6744148, 22.2431638 ], [ 120.6759947, 22.2408759 ], [ 120.6778559, 22.2377869 ], [ 120.6806796, 22.2334206 ], [ 120.6835328, 22.2289794 ], [ 120.6847136, 22.2271661 ], [ 120.686214, 22.2248328 ], [ 120.6895079, 22.2232957 ], [ 120.6914582, 22.2224687 ], [ 120.6941306, 22.2211685 ], [ 120.6967976, 22.2199794 ], [ 120.7004463, 22.2182503 ], [ 120.70387, 22.2166989 ], [ 120.7086011, 22.2144473 ], [ 120.7127559, 22.2124408 ], [ 120.7148975, 22.2114516 ], [ 120.7180308, 22.209647 ], [ 120.7220798, 22.207357 ], [ 120.7245675, 22.2059339 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469222", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7481259, 21.9585106 ], [ 120.7478548, 21.9589461 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469224", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8787035, 22.1616359 ], [ 120.8782371, 22.1618415 ], [ 120.8789065, 22.1644822 ], [ 120.8785299, 22.1653296 ], [ 120.8771383, 22.1658346 ], [ 120.8751752, 22.1675848 ], [ 120.8743567, 22.1690308 ], [ 120.8735459, 22.1702593 ], [ 120.8727245, 22.1717558 ], [ 120.8724626, 22.1724947 ], [ 120.8723391, 22.1737855 ], [ 120.8722558, 22.1745558 ], [ 120.8720286, 22.1768613 ], [ 120.8716455, 22.1799573 ], [ 120.8713196, 22.1835902 ], [ 120.871442, 22.1840337 ], [ 120.8707445, 22.1879323 ], [ 120.8699819, 22.1896455 ], [ 120.8693195, 22.1910912 ], [ 120.8688512, 22.19311 ], [ 120.8683941, 22.1953779 ], [ 120.8681713, 22.1964037 ], [ 120.8676805, 22.19858 ], [ 120.8671871, 22.2008828 ], [ 120.8669529, 22.2020244 ], [ 120.8668573, 22.2025199 ], [ 120.8665484, 22.2042029 ], [ 120.8656739, 22.2079932 ], [ 120.8654158, 22.2089843 ], [ 120.8650579, 22.2107862 ], [ 120.864948, 22.2114072 ], [ 120.8648026, 22.2122326 ], [ 120.8642006, 22.2157723 ], [ 120.8640217, 22.2165843 ], [ 120.8636734, 22.2183183 ], [ 120.8635862, 22.2187608 ], [ 120.8632071, 22.2210301 ], [ 120.8626321, 22.2219232 ], [ 120.8617108, 22.2234036 ], [ 120.8604403, 22.2253847 ], [ 120.8593822, 22.2273069 ], [ 120.8580283, 22.229928 ], [ 120.857926, 22.2301537 ], [ 120.8566349, 22.2325386 ], [ 120.8563194, 22.2332131 ], [ 120.8555787, 22.2345845 ], [ 120.8532983, 22.2365413 ], [ 120.8530816, 22.2367252 ], [ 120.8510561, 22.2384218 ], [ 120.8488196, 22.2403695 ], [ 120.846427, 22.2413079 ], [ 120.8450751, 22.2418404 ], [ 120.8415993, 22.2432184 ], [ 120.8372438, 22.2429809 ], [ 120.835674, 22.2429128 ], [ 120.8349436, 22.2428556 ], [ 120.834343, 22.242843 ], [ 120.8316175, 22.2427267 ], [ 120.831369, 22.2427289 ], [ 120.8281556, 22.2425727 ], [ 120.8240678, 22.2423783 ], [ 120.821287, 22.2422286 ], [ 120.8171954, 22.2420153 ], [ 120.8167222, 22.2417986 ], [ 120.8147867, 22.2409006 ], [ 120.811167, 22.2393282 ], [ 120.8101253, 22.2388934 ], [ 120.8052902, 22.2365085 ], [ 120.8030847, 22.2329086 ], [ 120.8011154, 22.2298255 ], [ 120.800458, 22.2276353 ], [ 120.8003971, 22.2273444 ], [ 120.7994113, 22.2242271 ], [ 120.7991162, 22.2232516 ], [ 120.7985339, 22.2212285 ], [ 120.7980029, 22.2196343 ], [ 120.7976311, 22.2183807 ], [ 120.7959932, 22.2155163 ], [ 120.7949781, 22.2143127 ], [ 120.79472, 22.2139941 ], [ 120.7919673, 22.2136666 ], [ 120.7914989, 22.2135914 ], [ 120.7883972, 22.213202 ], [ 120.7856731, 22.212879 ], [ 120.7817357, 22.2123572 ], [ 120.7796823, 22.2120844 ], [ 120.777439, 22.2117461 ], [ 120.7762828, 22.2118735 ], [ 120.7743307, 22.212122 ], [ 120.7715734, 22.2125342 ], [ 120.7708884, 22.2123355 ], [ 120.7669492, 22.2110542 ], [ 120.7638325, 22.2100659 ], [ 120.7612553, 22.2092412 ], [ 120.7592152, 22.2086934 ], [ 120.7556911, 22.2075069 ], [ 120.7539441, 22.207832 ], [ 120.753376, 22.2079092 ], [ 120.7523798, 22.2074041 ], [ 120.7516236, 22.2069732 ], [ 120.747322, 22.2046164 ], [ 120.7453542, 22.2035307 ], [ 120.74433, 22.2029519 ], [ 120.7423482, 22.2029117 ], [ 120.7405854, 22.202728 ], [ 120.7397592, 22.2027013 ], [ 120.7374983, 22.2026405 ], [ 120.734418, 22.2036283 ], [ 120.7337159, 22.2036652 ], [ 120.7312548, 22.2022168 ], [ 120.7301705, 22.202151 ], [ 120.7295549, 22.2021298 ], [ 120.727619, 22.2026412 ], [ 120.7274024, 22.2029454 ], [ 120.7270617, 22.2033865 ], [ 120.7257417, 22.2045751 ], [ 120.7253974, 22.2049847 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469241", "power": "line", "line": "bay", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6091923, 22.4195349 ], [ 120.6096883, 22.419652 ], [ 120.6100701, 22.4196431 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469242", "power": "line", "line": "substation", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6081332, 22.4198593 ], [ 120.6084991, 22.4199574 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469243", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5921947, 22.4162221 ], [ 120.5949935, 22.4169435 ], [ 120.5978706, 22.4177323 ], [ 120.6006864, 22.4184651 ], [ 120.6035424, 22.4192703 ], [ 120.6064654, 22.4196605 ], [ 120.6071839, 22.4189411 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469244", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5792053, 22.4046955 ], [ 120.5801602, 22.4046658 ], [ 120.5809058, 22.4045318 ], [ 120.5815599, 22.4043252 ], [ 120.5822526, 22.4039752 ], [ 120.5828981, 22.4034607 ], [ 120.5842004, 22.401347 ], [ 120.5852133, 22.3989253 ], [ 120.5867614, 22.3968282 ], [ 120.5884361, 22.3965464 ], [ 120.5905511, 22.3962073 ], [ 120.5938765, 22.3956863 ], [ 120.5969193, 22.3951945 ], [ 120.5982715, 22.3975555 ], [ 120.599751, 22.3998508 ], [ 120.6008727, 22.4016258 ], [ 120.6022436, 22.4037785 ], [ 120.6039479, 22.4060966 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173469245", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6078704, 22.419117 ], [ 120.6074381, 22.4190067 ], [ 120.6064453, 22.4199921 ], [ 120.6062271, 22.4228466 ], [ 120.6062191, 22.4254353 ], [ 120.6061395, 22.4279832 ], [ 120.6057056, 22.4304525 ], [ 120.6053538, 22.4329445 ], [ 120.6049308, 22.4353143 ], [ 120.6045043, 22.4378249 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "173908767", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3188495, 23.0190666 ], [ 120.3230882, 23.023553 ], [ 120.3254851, 23.0262046 ], [ 120.3278694, 23.0287465 ], [ 120.3300837, 23.0311419 ], [ 120.3323883, 23.0336244 ], [ 120.3345568, 23.0360271 ], [ 120.3387018, 23.0404186 ], [ 120.3407191, 23.0425965 ], [ 120.3429421, 23.0450335 ], [ 120.3441219, 23.046302 ], [ 120.346466, 23.0488161 ], [ 120.3475278, 23.0499617 ], [ 120.3503256, 23.0530156 ], [ 120.3521037, 23.0549466 ], [ 120.3540627, 23.0558407 ], [ 120.3556185, 23.0565351 ], [ 120.356714, 23.0585869 ], [ 120.3580575, 23.0611076 ], [ 120.3591728, 23.0632433 ], [ 120.3603908, 23.0653813 ], [ 120.36119, 23.0686043 ], [ 120.3618484, 23.0716791 ], [ 120.3621614, 23.0752928 ], [ 120.363894, 23.0762841 ], [ 120.3657767, 23.0773407 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174026884", "name": "新化變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "alt_name": "新化D/S", "barrier": "fence", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2917479, 23.0582045 ], [ 120.2921735, 23.0571623 ], [ 120.2934276, 23.0579872 ], [ 120.2935294, 23.0580846 ], [ 120.2932671, 23.058025 ], [ 120.2917479, 23.0582045 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174028695", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2919959, 23.0580694 ], [ 120.2884528, 23.0580607 ], [ 120.285131, 23.0576999 ], [ 120.2822024, 23.0568718 ], [ 120.2787881, 23.0586477 ], [ 120.2758818, 23.061182 ], [ 120.2741081, 23.0614502 ], [ 120.2721872, 23.0616618 ], [ 120.2684602, 23.0615397 ], [ 120.2657941, 23.0611443 ], [ 120.2624897, 23.0607831 ], [ 120.2588338, 23.060507 ], [ 120.2550078, 23.060244 ], [ 120.2520253, 23.0597515 ], [ 120.2502397, 23.05996 ], [ 120.2467588, 23.0611329 ], [ 120.2428425, 23.0630092 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174173430", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.72504, 22.2057731 ], [ 120.7247934, 22.2061174 ], [ 120.7274332, 22.2084221 ], [ 120.7302606, 22.208766 ], [ 120.7338728, 22.2092182 ], [ 120.7367218, 22.2095913 ], [ 120.7417633, 22.2133825 ], [ 120.743214, 22.2144763 ], [ 120.7473767, 22.2149538 ], [ 120.7493526, 22.2151574 ], [ 120.7527927, 22.2155654 ], [ 120.7569331, 22.2160478 ], [ 120.7589784, 22.2162524 ], [ 120.7637183, 22.2168294 ], [ 120.7707596, 22.2176313 ], [ 120.7727876, 22.2178636 ], [ 120.7784107, 22.2184887 ], [ 120.7797781, 22.2186536 ], [ 120.7833826, 22.2190522 ], [ 120.7868378, 22.2194345 ], [ 120.7882925, 22.2195923 ], [ 120.7910731, 22.2222936 ], [ 120.7921105, 22.2232767 ], [ 120.7927266, 22.2240919 ], [ 120.7947624, 22.2267749 ], [ 120.7961391, 22.228587 ], [ 120.7982852, 22.2327767 ], [ 120.7998245, 22.2357989 ], [ 120.8015499, 22.2393542 ], [ 120.8047322, 22.2404526 ], [ 120.8063422, 22.2422233 ], [ 120.8106779, 22.2441829 ], [ 120.8167096, 22.2468967 ], [ 120.8186699, 22.2477787 ], [ 120.823937, 22.2501348 ], [ 120.8294403, 22.2525972 ], [ 120.8313712, 22.2534615 ], [ 120.8333908, 22.254365 ], [ 120.8359809, 22.2555066 ], [ 120.8382696, 22.2565535 ], [ 120.8420635, 22.2599433 ], [ 120.8448032, 22.2644154 ], [ 120.8485615, 22.2689533 ], [ 120.8512136, 22.2714887 ], [ 120.8529074, 22.2726125 ], [ 120.8569842, 22.2751753 ], [ 120.8609334, 22.2790035 ], [ 120.8628119, 22.2814591 ], [ 120.8643656, 22.2833035 ], [ 120.8676031, 22.2865255 ], [ 120.8689138, 22.287594 ], [ 120.8731174, 22.2911032 ], [ 120.8763473, 22.295567 ], [ 120.8772356, 22.2968039 ], [ 120.8792436, 22.2995853 ], [ 120.8808236, 22.3017703 ], [ 120.8813221, 22.3024384 ], [ 120.8820042, 22.3033952 ], [ 120.8838816, 22.3059749 ], [ 120.8851419, 22.3076911 ], [ 120.8878147, 22.3114501 ], [ 120.8873156, 22.3169739 ], [ 120.8872099, 22.3183701 ], [ 120.8868086, 22.3227417 ], [ 120.8866411, 22.3245697 ], [ 120.8862376, 22.3284601 ], [ 120.8859363, 22.3320478 ], [ 120.8854861, 22.3369865 ], [ 120.8851939, 22.3406953 ], [ 120.8866879, 22.3461689 ], [ 120.8861016, 22.3462846 ], [ 120.8842672, 22.3466576 ], [ 120.8838473, 22.3467796 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415337", "name": "峨眉超高壓變電所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "alt_name": "峨嵋超高壓變電所", "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9856894, 24.6913554 ], [ 120.9846349, 24.6924703 ], [ 120.9845777, 24.6928896 ], [ 120.9849531, 24.6931763 ], [ 120.9852036, 24.6936663 ], [ 120.9851028, 24.6939162 ], [ 120.9854847, 24.6949932 ], [ 120.985704, 24.6953129 ], [ 120.9871896, 24.6938163 ], [ 120.9875246, 24.6933512 ], [ 120.9874647, 24.6931418 ], [ 120.9875777, 24.6930419 ], [ 120.9877373, 24.693004 ], [ 120.9879178, 24.6927218 ], [ 120.9866379, 24.691838 ], [ 120.9856894, 24.6913554 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415338", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0101654, 24.6714202 ], [ 121.0110706, 24.6733223 ], [ 121.009803, 24.6756797 ], [ 121.0083286, 24.6791032 ], [ 121.0074306, 24.6806511 ], [ 121.0061448, 24.6838274 ], [ 121.0034433, 24.6852899 ], [ 121.0010537, 24.6867163 ], [ 120.9985996, 24.6880125 ], [ 120.9948208, 24.6898691 ], [ 120.9912964, 24.6922188 ], [ 120.9884557, 24.6932506 ], [ 120.9870172, 24.6936861 ], [ 120.9866604, 24.6933765 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415339", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9823059, 24.6946476 ], [ 120.9845092, 24.6924412 ], [ 120.9847573, 24.692633 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415340", "name": "峨眉~(義和)~后里線", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8507317, 24.3872434 ], [ 120.8485444, 24.3877585 ], [ 120.8471597, 24.3885795 ], [ 120.8472514, 24.3898607 ], [ 120.8464782, 24.3940876 ], [ 120.8457059, 24.3955701 ], [ 120.8461328, 24.397365 ], [ 120.8496735, 24.3996632 ], [ 120.8500428, 24.4014515 ], [ 120.8509575, 24.4054103 ], [ 120.8503249, 24.408953 ], [ 120.8501183, 24.4148708 ], [ 120.8502623, 24.4170603 ], [ 120.8503512, 24.4187661 ], [ 120.8504168, 24.4258087 ], [ 120.8504803, 24.4285319 ], [ 120.8521314, 24.4344851 ], [ 120.8527876, 24.4352868 ], [ 120.8550927, 24.4391507 ], [ 120.8552986, 24.4394997 ], [ 120.8560114, 24.4407078 ], [ 120.8582911, 24.4443711 ], [ 120.8602957, 24.4475487 ], [ 120.861889, 24.4498732 ], [ 120.8643682, 24.4533927 ], [ 120.8659288, 24.4562785 ], [ 120.8685304, 24.4592685 ], [ 120.8690584, 24.4616203 ], [ 120.8730891, 24.4678906 ], [ 120.8738021, 24.471885 ], [ 120.8744068, 24.4751456 ], [ 120.8753772, 24.4771616 ], [ 120.8769115, 24.4806526 ], [ 120.8781561, 24.4833751 ], [ 120.8825709, 24.4853312 ], [ 120.8852391, 24.4873815 ], [ 120.8890225, 24.4933446 ], [ 120.8917895, 24.4978445 ], [ 120.8931451, 24.5000759 ], [ 120.8958684, 24.5043265 ], [ 120.8969928, 24.5061568 ], [ 120.8988214, 24.5090618 ], [ 120.9001543, 24.5112181 ], [ 120.9025547, 24.5149961 ], [ 120.9050723, 24.5190607 ], [ 120.9063206, 24.5210971 ], [ 120.9080776, 24.5238714 ], [ 120.9108694, 24.5283556 ], [ 120.9118355, 24.5299804 ], [ 120.9133668, 24.5323495 ], [ 120.9153338, 24.5376915 ], [ 120.9168288, 24.5414623 ], [ 120.9188476, 24.54593 ], [ 120.9203323, 24.5493677 ], [ 120.9222215, 24.5532302 ], [ 120.924258, 24.5573907 ], [ 120.9260618, 24.5610416 ], [ 120.9270951, 24.5631715 ], [ 120.9289144, 24.56693 ], [ 120.9301108, 24.5686157 ], [ 120.9322334, 24.5717583 ], [ 120.9343449, 24.5746217 ], [ 120.9370375, 24.5784532 ], [ 120.9392799, 24.5816468 ], [ 120.9405617, 24.5834609 ], [ 120.9415961, 24.5848612 ], [ 120.943496, 24.5875511 ], [ 120.9461937, 24.5914119 ], [ 120.9481998, 24.5953872 ], [ 120.9502564, 24.5995114 ], [ 120.951414, 24.6034986 ], [ 120.9518418, 24.6047727 ], [ 120.9534122, 24.6095951 ], [ 120.9544978, 24.6131051 ], [ 120.9558013, 24.6176022 ], [ 120.9572707, 24.6181172 ], [ 120.9577372, 24.6206021 ], [ 120.9583263, 24.624702 ], [ 120.9587729, 24.6251145 ], [ 120.9592256, 24.625559 ], [ 120.9624425, 24.6286429 ], [ 120.9653955, 24.6311 ], [ 120.9668685, 24.6331893 ], [ 120.9704222, 24.6368348 ], [ 120.9724307, 24.6388672 ], [ 120.9737902, 24.6403111 ], [ 120.9756463, 24.6422152 ], [ 120.978602, 24.646821 ], [ 120.9818171, 24.6517496 ], [ 120.9835178, 24.6543417 ], [ 120.9872941, 24.6568561 ], [ 120.9913211, 24.6594979 ], [ 120.9924763, 24.6621828 ], [ 120.9938473, 24.6664799 ], [ 120.9944247, 24.6682585 ], [ 120.9957, 24.6722506 ], [ 120.9973028, 24.6771365 ], [ 120.9956926, 24.6802905 ], [ 120.9936258, 24.6843482 ], [ 120.9920568, 24.6873332 ], [ 120.9905121, 24.6904497 ], [ 120.9892187, 24.691807 ], [ 120.9873159, 24.6933279 ], [ 120.9869675, 24.6930373 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415341", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9507263, 24.6687586 ], [ 120.950217, 24.6692553 ], [ 120.9468486, 24.6698812 ], [ 120.9443818, 24.6719813 ], [ 120.9408896, 24.6721796 ], [ 120.9388814, 24.672089 ], [ 120.9361291, 24.6724383 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415342", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0210168, 24.6799302 ], [ 121.0189071, 24.6802378 ], [ 121.0171621, 24.6804923 ], [ 121.0151104, 24.6813816 ], [ 121.0132113, 24.6822286 ], [ 121.0103211, 24.6835506 ], [ 121.0087938, 24.6842647 ], [ 121.0059434, 24.6856051 ], [ 121.0040118, 24.6864804 ], [ 121.001771, 24.6874894 ], [ 120.9990715, 24.6887264 ], [ 120.9950242, 24.6906294 ], [ 120.9916699, 24.6925433 ], [ 120.9894264, 24.6938486 ], [ 120.9867075, 24.6940082 ], [ 120.9863503, 24.6936992 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415344", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9849919, 24.6919292 ], [ 120.9806478, 24.6930517 ], [ 120.976085, 24.694214 ], [ 120.9716301, 24.6959169 ], [ 120.9676486, 24.6974495 ], [ 120.9641971, 24.6987371 ], [ 120.9617369, 24.6996922 ], [ 120.9593606, 24.700589 ], [ 120.9583018, 24.7009886 ], [ 120.9569877, 24.7014846 ], [ 120.9547334, 24.7017239 ], [ 120.9521702, 24.7019822 ], [ 120.9484054, 24.7023886 ], [ 120.9446519, 24.7037683 ], [ 120.9403755, 24.7060843 ], [ 120.9377315, 24.7081555 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415345", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0255656, 24.7180716 ], [ 121.0244967, 24.7167979 ], [ 121.0226735, 24.7124143 ], [ 121.0193998, 24.7116054 ], [ 121.0178158, 24.7111891 ], [ 121.0158748, 24.710082 ], [ 121.0140902, 24.7079577 ], [ 121.0113268, 24.7065272 ], [ 121.0056164, 24.7030564 ], [ 121.0031702, 24.7020417 ], [ 121.0009096, 24.7002016 ], [ 120.998667, 24.6990524 ], [ 120.9955651, 24.6968485 ], [ 120.9932338, 24.6957893 ], [ 120.9918755, 24.6955363 ], [ 120.9863991, 24.6943483 ], [ 120.9860372, 24.6940247 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415346", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0074603, 24.7633126 ], [ 121.0088651, 24.764309 ], [ 121.0121642, 24.7663418 ], [ 121.0133908, 24.7663466 ], [ 121.0134935, 24.7663503 ], [ 121.013661, 24.7663501 ], [ 121.0138049, 24.7663494 ], [ 121.014534, 24.7663528 ], [ 121.0176163, 24.7663672 ], [ 121.0202299, 24.7670999 ], [ 121.0222406, 24.7651645 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415348", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9850312, 24.6923619 ], [ 120.9847614, 24.6921734 ], [ 120.9818159, 24.6932588 ], [ 120.9823059, 24.6946476 ], [ 120.9832442, 24.6968933 ], [ 120.9840672, 24.6989478 ], [ 120.9853883, 24.7019915 ], [ 120.9860518, 24.7036236 ], [ 120.9886821, 24.7080955 ], [ 120.9911186, 24.7122599 ], [ 120.9920014, 24.7135768 ], [ 120.9929229, 24.7187394 ], [ 120.9940451, 24.7226363 ], [ 120.9950883, 24.7264354 ], [ 120.9957114, 24.7286761 ], [ 120.9963678, 24.7310528 ], [ 120.9970799, 24.733619 ], [ 120.9979814, 24.7368183 ], [ 120.9992079, 24.7417572 ], [ 120.9999727, 24.743352 ], [ 121.0019624, 24.7482465 ], [ 121.0034051, 24.7518269 ], [ 121.0042677, 24.7546125 ], [ 121.0053424, 24.75826 ], [ 121.0059415, 24.7599742 ], [ 121.0067812, 24.7623649 ], [ 121.0074603, 24.7633126 ], [ 121.007605, 24.7660978 ], [ 121.0082095, 24.7686658 ], [ 121.0090943, 24.771822 ], [ 121.0095998, 24.77282 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415349", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9245807, 24.7148445 ], [ 120.9251977, 24.7155 ], [ 120.9277391, 24.7149356 ], [ 120.9303344, 24.7143228 ], [ 120.9313275, 24.7133809 ], [ 120.9319386, 24.712821 ], [ 120.9336689, 24.7112414 ], [ 120.9354458, 24.7096105 ], [ 120.9364752, 24.7090877 ], [ 120.9366872, 24.7089101 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415350", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9246922, 24.707403 ], [ 120.9254073, 24.7079147 ], [ 120.9269389, 24.7090568 ], [ 120.928709, 24.710353 ], [ 120.9306775, 24.7117711 ], [ 120.931376, 24.7122783 ], [ 120.9327354, 24.7113099 ], [ 120.9353075, 24.7095299 ], [ 120.9364136, 24.7089854 ], [ 120.9365848, 24.7087912 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174415352", "name": "南湖一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9356221, 24.7082032 ], [ 120.9356297, 24.7084701 ], [ 120.9358673, 24.7087641 ], [ 120.9363978, 24.7090844 ], [ 120.936489, 24.7091701 ], [ 120.936559, 24.7093778 ], [ 120.9367136, 24.7094955 ], [ 120.9368162, 24.7095308 ], [ 120.9378635, 24.7087599 ], [ 120.9379257, 24.7086028 ], [ 120.9375845, 24.7082017 ], [ 120.937628, 24.7079318 ], [ 120.9367951, 24.706886 ], [ 120.936574, 24.7070614 ], [ 120.9359999, 24.7073504 ], [ 120.9358275, 24.7074832 ], [ 120.9360678, 24.7078699 ], [ 120.9356221, 24.7082032 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174591273", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9317089, 24.706935 ], [ 120.9285179, 24.707734 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "174591276", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9364164, 24.7085575 ], [ 120.9361471, 24.7087276 ], [ 120.9358058, 24.7083315 ], [ 120.935013, 24.7073453 ], [ 120.9329355, 24.7059707 ], [ 120.93117, 24.7047008 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "175057288", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3104783, 22.962958 ], [ 120.3104939, 22.9627359 ], [ 120.3103681, 22.961224 ], [ 120.3113422, 22.9604156 ], [ 120.31152, 22.960268 ], [ 120.3136188, 22.959286 ], [ 120.3150821, 22.9589975 ], [ 120.3152634, 22.959607 ], [ 120.315368, 22.9600022 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "175057289", "name": "歸仁變電所", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "alt_name": "歸仁S/S", "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3108465, 22.9632814 ], [ 120.3107069, 22.9626393 ], [ 120.3102038, 22.9627947 ], [ 120.3102271, 22.9628846 ], [ 120.31007, 22.9629287 ], [ 120.3102349, 22.9634607 ], [ 120.3108465, 22.9632814 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "175314780", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9934203, 24.7733068 ], [ 120.9950102, 24.7750083 ], [ 120.99591, 24.7759452 ], [ 120.9968881, 24.7769068 ], [ 120.9975477, 24.7775798 ], [ 120.9992105, 24.77923 ], [ 121.0008764, 24.7808772 ], [ 121.0024995, 24.7824431 ], [ 121.0042954, 24.7842319 ], [ 121.0057153, 24.7856285 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "175419818", "power": "line", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2372646, 22.9611626 ], [ 120.2372128, 22.9600281 ], [ 120.2376123, 22.9596006 ], [ 120.2376491, 22.9595612 ], [ 120.2376961, 22.9595109 ], [ 120.2373416, 22.9574197 ], [ 120.2371044, 22.9564607 ], [ 120.238104, 22.9556531 ], [ 120.2388442, 22.9546213 ], [ 120.2397936, 22.9536123 ], [ 120.2407461, 22.9526288 ], [ 120.2416026, 22.9516864 ], [ 120.2423534, 22.9508684 ], [ 120.2433133, 22.9498437 ], [ 120.2436576, 22.9483911 ], [ 120.2443442, 22.9463763 ], [ 120.2450033, 22.9444178 ], [ 120.2453311, 22.9434894 ], [ 120.2456381, 22.942554 ], [ 120.2462245, 22.9408034 ], [ 120.247, 22.9385349 ], [ 120.2463921, 22.936537 ], [ 120.2451401, 22.934469 ], [ 120.2440872, 22.9327422 ], [ 120.2430247, 22.9309555 ], [ 120.2420812, 22.9293761 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "176682252", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3188495, 23.0190666 ], [ 120.3154984, 23.0153387 ], [ 120.3131204, 23.0128319 ], [ 120.3111352, 23.0107079 ], [ 120.3096784, 23.0088563 ], [ 120.3080767, 23.0092181 ], [ 120.3052613, 23.0079272 ], [ 120.3042097, 23.0074273 ], [ 120.3021582, 23.00637 ], [ 120.301077, 23.0057268 ], [ 120.2987711, 23.0046833 ], [ 120.2954715, 23.0031446 ], [ 120.2939089, 23.0023783 ], [ 120.29253, 23.0016654 ], [ 120.2897326, 23.0003414 ], [ 120.2883054, 22.9995899 ], [ 120.2869731, 22.9989569 ], [ 120.2850529, 22.9980697 ], [ 120.2823576, 22.9967743 ], [ 120.2810651, 22.9961446 ], [ 120.2799174, 22.9949943 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177085530", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3662592, 23.0790581 ], [ 120.3661212, 23.0792691 ], [ 120.3656679, 23.0811475 ], [ 120.3652266, 23.0836633 ], [ 120.3648286, 23.0860543 ], [ 120.3647599, 23.0898163 ], [ 120.3636352, 23.0911905 ], [ 120.3621275, 23.092828 ], [ 120.3603525, 23.0936666 ], [ 120.3585106, 23.0952325 ], [ 120.3566957, 23.0966617 ], [ 120.3557438, 23.0975952 ], [ 120.3550422, 23.0977971 ], [ 120.3545301, 23.0974971 ], [ 120.3536601, 23.0970344 ], [ 120.3529849, 23.0964545 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177085531", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3647562, 23.0781147 ], [ 120.3647128, 23.0793624 ], [ 120.3630839, 23.0794665 ], [ 120.3608066, 23.07897 ], [ 120.3568592, 23.0782329 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177085532", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3659284, 23.0789841 ], [ 120.3657118, 23.0795517 ], [ 120.364599, 23.0813637 ], [ 120.3635986, 23.0835337 ], [ 120.362126, 23.0844487 ], [ 120.3593834, 23.0855287 ], [ 120.3583551, 23.086736 ], [ 120.3560194, 23.089386 ], [ 120.3543117, 23.0912775 ], [ 120.3527419, 23.0930261 ], [ 120.3508836, 23.0950506 ], [ 120.3493311, 23.0967951 ], [ 120.3477602, 23.09864 ], [ 120.3462491, 23.1003599 ], [ 120.3442791, 23.102521 ], [ 120.3426162, 23.1044186 ], [ 120.3411155, 23.1060528 ], [ 120.336113, 23.1114567 ], [ 120.3343155, 23.1134172 ], [ 120.3312591, 23.1168865 ], [ 120.3296126, 23.1187931 ], [ 120.3290617, 23.1193777 ], [ 120.3283554, 23.1201052 ], [ 120.3274133, 23.121617 ], [ 120.3261237, 23.1235693 ], [ 120.3247064, 23.1257604 ], [ 120.3235717, 23.1280726 ], [ 120.32263, 23.1300038 ], [ 120.3207914, 23.1320642 ], [ 120.3188049, 23.1335851 ], [ 120.3170406, 23.1352288 ], [ 120.3154575, 23.1367886 ], [ 120.3137286, 23.1383144 ], [ 120.3122001, 23.1396988 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177085534", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3571019, 23.0805887 ], [ 120.3568592, 23.0782329 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177122330", "name": "山上一次變電所(P/S)", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "alt_name": "山上P/S", "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3647555, 23.0784922 ], [ 120.3652201, 23.0774822 ], [ 120.365375, 23.0774944 ], [ 120.3653709, 23.0774487 ], [ 120.3670857, 23.078446 ], [ 120.3670879, 23.0784987 ], [ 120.367075, 23.0785218 ], [ 120.3671625, 23.0785726 ], [ 120.3671857, 23.0785432 ], [ 120.3672964, 23.0786008 ], [ 120.3672741, 23.0786371 ], [ 120.3672673, 23.0786866 ], [ 120.3673976, 23.0787434 ], [ 120.3673435, 23.0789927 ], [ 120.3673581, 23.0790983 ], [ 120.3673617, 23.0792375 ], [ 120.3671597, 23.0792793 ], [ 120.3668212, 23.079264 ], [ 120.3668393, 23.0791729 ], [ 120.3665358, 23.0791738 ], [ 120.3665371, 23.0792318 ], [ 120.3664891, 23.0792426 ], [ 120.3664364, 23.0791158 ], [ 120.3663111, 23.079142 ], [ 120.3662705, 23.0791794 ], [ 120.3661052, 23.0791909 ], [ 120.3659486, 23.0792306 ], [ 120.3656962, 23.079217 ], [ 120.3654915, 23.0793001 ], [ 120.3655003, 23.0792048 ], [ 120.3655865, 23.0789741 ], [ 120.365328, 23.0789863 ], [ 120.3651617, 23.0789581 ], [ 120.3650875, 23.0790019 ], [ 120.3648048, 23.0790308 ], [ 120.3648006, 23.0784934 ], [ 120.3647555, 23.0784922 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177122333", "name": "變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "industrial" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.34185, 23.1108771 ], [ 120.3422134, 23.1110851 ], [ 120.3423621, 23.1108653 ], [ 120.3419987, 23.1106573 ], [ 120.34185, 23.1108771 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177210055", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0171621, 24.6804923 ], [ 121.0166814, 24.6791091 ], [ 121.0159973, 24.6783165 ], [ 121.013245, 24.6750095 ], [ 121.0101654, 24.6714202 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177213603", "name": "大武變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8833454, 22.3474764 ], [ 120.8838454, 22.347349 ], [ 120.883871, 22.3474119 ], [ 120.8842589, 22.3472513 ], [ 120.8839497, 22.3463537 ], [ 120.8839056, 22.3463505 ], [ 120.8838726, 22.3462182 ], [ 120.8833351, 22.3463163 ], [ 120.8833219, 22.3463597 ], [ 120.8832235, 22.3463183 ], [ 120.8829645, 22.3463695 ], [ 120.8829408, 22.346422 ], [ 120.8832951, 22.347242 ], [ 120.8832666, 22.347271 ], [ 120.8833454, 22.3474764 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177282177", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3586093, 22.9281613 ], [ 120.3596034, 22.9333981 ], [ 120.3598828, 22.9366377 ], [ 120.3600527, 22.9388409 ], [ 120.3604467, 22.9439842 ], [ 120.3608905, 22.9495769 ], [ 120.3611119, 22.9524449 ], [ 120.3614645, 22.9564142 ], [ 120.3631826, 22.9607699 ], [ 120.3645849, 22.9645896 ], [ 120.3646367, 22.9676021 ], [ 120.3646111, 22.9721762 ], [ 120.3644975, 22.9750108 ], [ 120.3644316, 22.979394 ], [ 120.3644026, 22.9824008 ], [ 120.3646297, 22.9840058 ], [ 120.3651868, 22.9877589 ], [ 120.3656784, 22.9910805 ], [ 120.365854, 22.993117 ], [ 120.3657574, 22.9942565 ], [ 120.365647, 22.9987011 ], [ 120.3655539, 23.0008497 ], [ 120.3655071, 23.0022399 ], [ 120.3653048, 23.0071364 ], [ 120.3650317, 23.0118902 ], [ 120.3649448, 23.0151127 ], [ 120.3647462, 23.0183351 ], [ 120.3645599, 23.0230771 ], [ 120.3644854, 23.0258651 ], [ 120.3643737, 23.0276932 ], [ 120.3642744, 23.0304469 ], [ 120.3641999, 23.0324235 ], [ 120.3640385, 23.035337 ], [ 120.3638895, 23.0391416 ], [ 120.3637405, 23.0424205 ], [ 120.3636274, 23.0466651 ], [ 120.3643365, 23.0522076 ], [ 120.3653526, 23.0597676 ], [ 120.3656063, 23.0618479 ], [ 120.3659994, 23.0649759 ], [ 120.3637792, 23.0676813 ], [ 120.3625386, 23.0697006 ], [ 120.3620205, 23.0714157 ], [ 120.3623397, 23.0732646 ], [ 120.3626327, 23.0751837 ], [ 120.364482, 23.0762797 ], [ 120.3662009, 23.0772921 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177379965", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3529849, 23.0964545 ], [ 120.3519332, 23.0956434 ], [ 120.3513483, 23.0951921 ], [ 120.3502906, 23.0943996 ], [ 120.34915, 23.0935056 ], [ 120.3480713, 23.0926907 ], [ 120.3467948, 23.0917501 ], [ 120.3460898, 23.0911645 ], [ 120.3449944, 23.0903036 ], [ 120.3438448, 23.0894469 ], [ 120.3428443, 23.0886964 ], [ 120.342207, 23.0881889 ], [ 120.3411298, 23.0874021 ], [ 120.3401724, 23.0866469 ], [ 120.3391521, 23.0858675 ], [ 120.3380584, 23.0849807 ], [ 120.3371228, 23.0842285 ], [ 120.3366118, 23.0839703 ], [ 120.3358799, 23.0840308 ], [ 120.3341135, 23.0836705 ], [ 120.3328381, 23.0837027 ], [ 120.3313512, 23.0837254 ], [ 120.3294482, 23.083745 ], [ 120.3288087, 23.0837433 ], [ 120.3270611, 23.0837959 ], [ 120.3247608, 23.0837706 ], [ 120.3236749, 23.0845159 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177571683", "name": "板橋~信南線", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 50, "other_tags": { "alt_name": "板橋~大豐線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4737682, 24.9868113 ], [ 121.4742937, 24.986702 ], [ 121.475698, 24.9848738 ], [ 121.4797227, 24.9835225 ], [ 121.4827487, 24.9831071 ], [ 121.4865988, 24.9839466 ], [ 121.4906887, 24.9848477 ], [ 121.4936486, 24.9855118 ], [ 121.4974614, 24.9863209 ], [ 121.4979214, 24.9864197 ], [ 121.5018891, 24.9872948 ], [ 121.5026983, 24.9874584 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177648036", "name": "嘉義~新營線(雙T山上)", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.366594, 23.0788884 ], [ 120.3662858, 23.0793654 ], [ 120.3673783, 23.080916 ], [ 120.3668239, 23.0835137 ], [ 120.3663938, 23.085238 ], [ 120.3659283, 23.0894186 ], [ 120.3659566, 23.0917137 ], [ 120.3660684, 23.0943044 ], [ 120.3661464, 23.0976558 ], [ 120.3662304, 23.1005783 ], [ 120.3663352, 23.1048685 ], [ 120.3663946, 23.1062266 ], [ 120.3664223, 23.1082691 ], [ 120.3664767, 23.1117869 ], [ 120.3666104, 23.1146147 ], [ 120.3666852, 23.1177129 ], [ 120.3650062, 23.1201177 ], [ 120.3640651, 23.1214602 ], [ 120.3622632, 23.1239386 ], [ 120.3613007, 23.1253352 ], [ 120.3589841, 23.1286339 ], [ 120.3571545, 23.1311379 ], [ 120.3560657, 23.135436 ], [ 120.3553143, 23.138735 ], [ 120.3546387, 23.1414622 ], [ 120.354221, 23.1430972 ], [ 120.3551188, 23.1463862 ], [ 120.3565304, 23.1467992 ], [ 120.3554821, 23.1476713 ], [ 120.3559119, 23.1493061 ], [ 120.356634, 23.1519348 ], [ 120.3573135, 23.154403 ], [ 120.3565602, 23.1572635 ], [ 120.3557776, 23.1603878 ], [ 120.3544472, 23.1660107 ], [ 120.3543753, 23.1683105 ], [ 120.3540269, 23.1696246 ], [ 120.3540442, 23.1709743 ], [ 120.3545645, 23.1735405 ], [ 120.3538637, 23.1744158 ], [ 120.3538051, 23.1782057 ], [ 120.3537704, 23.1806555 ], [ 120.3537403, 23.1828938 ], [ 120.3537065, 23.1855815 ], [ 120.3536593, 23.1886084 ], [ 120.353608, 23.1914369 ], [ 120.3535814, 23.1942019 ], [ 120.3535425, 23.1968719 ], [ 120.3534898, 23.1998206 ], [ 120.3534488, 23.2026146 ], [ 120.3534076, 23.2054239 ], [ 120.3533529, 23.2081611 ], [ 120.3539805, 23.2104585 ], [ 120.3547437, 23.2133409 ], [ 120.3552735, 23.2153641 ], [ 120.3562799, 23.2191374 ], [ 120.3569304, 23.2216371 ], [ 120.3575375, 23.2239539 ], [ 120.3581224, 23.2261506 ], [ 120.3597096, 23.2284273 ], [ 120.3613005, 23.2307088 ], [ 120.3622869, 23.2317888 ], [ 120.3634124, 23.2338082 ], [ 120.3648599, 23.2362464 ], [ 120.3660312, 23.2389022 ], [ 120.3675839, 23.2424849 ], [ 120.3685912, 23.244758 ], [ 120.3691981, 23.2462785 ], [ 120.3701029, 23.2485119 ], [ 120.3710033, 23.2506864 ], [ 120.3721363, 23.2534613 ], [ 120.3732703, 23.2562253 ], [ 120.3741291, 23.2583408 ], [ 120.3754128, 23.2611736 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177707621", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3506646, 24.9354905 ], [ 121.3510927, 24.9330486 ], [ 121.3518849, 24.9325748 ], [ 121.3525325, 24.9299343 ], [ 121.3531491, 24.9253355 ], [ 121.3507485, 24.9221326 ], [ 121.3494426, 24.9200625 ], [ 121.3494622, 24.9181472 ], [ 121.350883, 24.9147271 ], [ 121.3512638, 24.9131578 ], [ 121.3531136, 24.9103091 ], [ 121.3536505, 24.9090627 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "177707623", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.354538, 24.939219 ], [ 121.3546776, 24.9391048 ], [ 121.3555067, 24.9383381 ], [ 121.3577162, 24.9361476 ], [ 121.3567557, 24.9352023 ], [ 121.3570717, 24.9337275 ], [ 121.3573721, 24.9323623 ], [ 121.3575157, 24.9315632 ], [ 121.3585525, 24.9273575 ], [ 121.3591541, 24.9249571 ], [ 121.3592862, 24.9244246 ], [ 121.3596452, 24.9228475 ], [ 121.3597887, 24.9214455 ], [ 121.3599529, 24.9188064 ], [ 121.359969, 24.9181666 ], [ 121.3601349, 24.9142519 ], [ 121.3601977, 24.9138276 ], [ 121.3591939, 24.9120477 ], [ 121.358464, 24.9107805 ], [ 121.3572312, 24.9084686 ], [ 121.3560741, 24.9073293 ], [ 121.353931, 24.905313 ], [ 121.3524467, 24.9023026 ], [ 121.3515249, 24.9003534 ], [ 121.3518465, 24.9001452 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "178230344", "name": "新營~官田線;官田~隆田線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3223968, 23.2112863 ], [ 120.3223739, 23.2111683 ], [ 120.3217551, 23.2112652 ], [ 120.3211111, 23.2113663 ], [ 120.3204808, 23.2114717 ], [ 120.3197084, 23.2114738 ], [ 120.3189956, 23.2115601 ], [ 120.3182553, 23.2115193 ], [ 120.3155233, 23.2113232 ], [ 120.3130464, 23.2110908 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "178547507", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6276496, 24.1549034 ], [ 121.6276011, 24.1547532 ], [ 121.6262944, 24.1511797 ], [ 121.6268022, 24.1489503 ], [ 121.627182, 24.1473289 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179245764", "name": "隆田~麻豆線(單T接善化)", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3122001, 23.1396988 ], [ 120.3122241, 23.1406404 ], [ 120.3125521, 23.1414643 ], [ 120.3129721, 23.1425457 ], [ 120.313344, 23.1434615 ], [ 120.3127841, 23.1448113 ], [ 120.3117653, 23.1461208 ], [ 120.310426, 23.1472839 ], [ 120.3084934, 23.1495172 ], [ 120.3078658, 23.1508476 ], [ 120.308635, 23.1517483 ], [ 120.3106831, 23.1543018 ], [ 120.311555, 23.1553488 ], [ 120.3123517, 23.1563404 ], [ 120.312983, 23.1571801 ], [ 120.3139682, 23.1583589 ], [ 120.3146599, 23.1591882 ], [ 120.3154775, 23.1602075 ], [ 120.3171616, 23.1623938 ], [ 120.317133, 23.1633565 ], [ 120.3173994, 23.1643388 ], [ 120.3179286, 23.1682913 ], [ 120.3186763, 23.1706284 ], [ 120.3192485, 23.1718582 ], [ 120.3189957, 23.1732536 ], [ 120.3189862, 23.1738718 ], [ 120.3185061, 23.1745117 ], [ 120.3186981, 23.1749422 ], [ 120.3185936, 23.1761845 ], [ 120.3184057, 23.1774059 ], [ 120.3182099, 23.1786291 ], [ 120.3180104, 23.1799138 ], [ 120.3178097, 23.1811788 ], [ 120.3175826, 23.1826161 ], [ 120.31692, 23.1835839 ], [ 120.3163999, 23.184395 ], [ 120.3162418, 23.1846416 ], [ 120.3161893, 23.1849221 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179258505", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3171223, 23.1963274 ], [ 120.3172232, 23.1959564 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179533238", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9765446, 22.5999881 ], [ 120.9769855, 22.599654 ], [ 120.9782351, 22.5984443 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179686272", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0900276, 22.7833023 ], [ 121.0890388, 22.7830964 ], [ 121.0879691, 22.7839701 ], [ 121.0877978, 22.7867342 ], [ 121.0881934, 22.7889265 ], [ 121.0872367, 22.791546 ], [ 121.0864065, 22.7938293 ], [ 121.0857143, 22.7957541 ], [ 121.0848655, 22.7980518 ], [ 121.0839724, 22.8004703 ], [ 121.0832059, 22.8025385 ], [ 121.0819109, 22.8057284 ], [ 121.0826291, 22.8083371 ], [ 121.0833287, 22.8107333 ], [ 121.0839481, 22.8129395 ], [ 121.0846706, 22.8156658 ], [ 121.0853672, 22.8182824 ], [ 121.0862543, 22.8213565 ], [ 121.0868057, 22.8233336 ], [ 121.0875828, 22.825904 ], [ 121.0881887, 22.8281529 ], [ 121.0886886, 22.8304112 ], [ 121.0896767, 22.8324927 ], [ 121.0907557, 22.8344252 ], [ 121.0918891, 22.8368089 ], [ 121.0931062, 22.8392606 ], [ 121.0941406, 22.8416857 ], [ 121.0953295, 22.8441434 ], [ 121.0969962, 22.847592 ], [ 121.096894, 22.8492241 ], [ 121.0963872, 22.8517963 ], [ 121.0960789, 22.8540342 ], [ 121.0965732, 22.8572718 ], [ 121.0968881, 22.85995 ], [ 121.097107, 22.8617872 ], [ 121.0967671, 22.8661098 ], [ 121.096683, 22.868078 ], [ 121.0965142, 22.8722966 ], [ 121.0964518, 22.8748617 ], [ 121.0958466, 22.8809194 ], [ 121.0940618, 22.8836575 ], [ 121.0932874, 22.8848461 ], [ 121.0903074, 22.8893945 ], [ 121.0895219, 22.8913424 ], [ 121.0916119, 22.8958141 ], [ 121.094037, 22.8979743 ], [ 121.0961709, 22.8999147 ], [ 121.099244, 22.9025611 ], [ 121.1009622, 22.9039424 ], [ 121.1030248, 22.9059102 ], [ 121.105066, 22.9077191 ], [ 121.1069214, 22.9093342 ], [ 121.109505, 22.9112081 ], [ 121.1103145, 22.9117725 ], [ 121.1132495, 22.9139523 ], [ 121.1151171, 22.9178281 ], [ 121.1160684, 22.9198521 ], [ 121.1178217, 22.9234701 ], [ 121.1176434, 22.9263522 ], [ 121.1172497, 22.9316703 ], [ 121.1170275, 22.9341927 ], [ 121.1168643, 22.9366922 ], [ 121.1185081, 22.9397088 ], [ 121.1191147, 22.9409911 ], [ 121.1208542, 22.9441908 ], [ 121.122186, 22.9463445 ], [ 121.1224247, 22.9467194 ], [ 121.1237357, 22.9487781 ], [ 121.1259247, 22.9522712 ], [ 121.1268572, 22.9537698 ], [ 121.1264399, 22.9552394 ], [ 121.1255224, 22.9583627 ], [ 121.1264401, 22.960009 ], [ 121.1278641, 22.9626195 ], [ 121.1290651, 22.964821 ], [ 121.1311051, 22.9684117 ], [ 121.1332957, 22.9719092 ], [ 121.1347557, 22.9741802 ], [ 121.1351721, 22.9766631 ], [ 121.1356307, 22.9794381 ], [ 121.1363737, 22.9837922 ], [ 121.1369564, 22.9871884 ], [ 121.1380155, 22.990437 ], [ 121.1386733, 22.9924979 ], [ 121.1395421, 22.995212 ], [ 121.1404565, 22.998012 ], [ 121.1413433, 23.0007608 ], [ 121.1423186, 23.0030412 ], [ 121.1435454, 23.0059446 ], [ 121.1442926, 23.0082666 ], [ 121.1450968, 23.0108286 ], [ 121.1455618, 23.0122139 ], [ 121.145958, 23.0135382 ], [ 121.1467536, 23.0160768 ], [ 121.1475614, 23.0186409 ], [ 121.1484063, 23.0212963 ], [ 121.149243, 23.0239053 ], [ 121.1498841, 23.0260279 ], [ 121.1491047, 23.0305062 ], [ 121.1484493, 23.0342062 ], [ 121.1479558, 23.0370407 ], [ 121.1471548, 23.0415367 ], [ 121.1478851, 23.0431853 ], [ 121.1501781, 23.0441101 ], [ 121.1519933, 23.0448635 ], [ 121.1546395, 23.0459168 ], [ 121.1559563, 23.0483079 ], [ 121.1567927, 23.0533143 ], [ 121.1576988, 23.0586992 ], [ 121.159673, 23.0623555 ], [ 121.158436, 23.0676422 ], [ 121.1598245, 23.0729574 ], [ 121.1606768, 23.0763317 ], [ 121.1620853, 23.0784101 ], [ 121.1674942, 23.086103 ], [ 121.1694214, 23.0888524 ], [ 121.1718525, 23.092197 ], [ 121.1731008, 23.0938005 ], [ 121.1732495, 23.0957945 ], [ 121.1737604, 23.1020987 ], [ 121.1739028, 23.1034298 ], [ 121.1740396, 23.1048396 ], [ 121.1742936, 23.1073754 ], [ 121.1744904, 23.1138036 ], [ 121.174916, 23.1154257 ], [ 121.180221, 23.1189968 ], [ 121.1835716, 23.1212496 ], [ 121.1854455, 23.1225092 ], [ 121.1874267, 23.1238423 ], [ 121.1903471, 23.1256973 ], [ 121.1931368, 23.1275942 ], [ 121.1957432, 23.1292792 ], [ 121.1973839, 23.1310182 ], [ 121.1995741, 23.1328792 ], [ 121.2020895, 23.1348585 ], [ 121.2045104, 23.1352202 ], [ 121.2075093, 23.1372123 ], [ 121.2103865, 23.139188 ], [ 121.2112162, 23.1398688 ], [ 121.2135089, 23.1412954 ], [ 121.2157643, 23.1427843 ], [ 121.2179398, 23.1442319 ], [ 121.2201752, 23.1457384 ], [ 121.2226681, 23.147389 ], [ 121.2249151, 23.148894 ], [ 121.2275493, 23.1506339 ], [ 121.2298943, 23.1521982 ], [ 121.2314152, 23.1547295 ], [ 121.2328835, 23.1571915 ], [ 121.2358859, 23.1622343 ], [ 121.2384956, 23.1667667 ], [ 121.239847, 23.1690957 ], [ 121.241156, 23.1713663 ], [ 121.2426578, 23.1739724 ], [ 121.2441137, 23.1764876 ], [ 121.2454927, 23.1788123 ], [ 121.2468626, 23.1812979 ], [ 121.2482132, 23.183599 ], [ 121.2484704, 23.186332 ], [ 121.2487684, 23.1892219 ], [ 121.2490634, 23.1921736 ], [ 121.248395, 23.1975614 ], [ 121.2475412, 23.204561 ], [ 121.2473772, 23.205896 ], [ 121.2465155, 23.2128075 ], [ 121.2499628, 23.2190345 ], [ 121.2514645, 23.2202779 ], [ 121.2528083, 23.2213742 ], [ 121.2552882, 23.2234102 ], [ 121.2563431, 23.2242763 ], [ 121.2564057, 23.2243277 ], [ 121.2583872, 23.2259077 ], [ 121.2592636, 23.2279089 ], [ 121.2608368, 23.2314288 ], [ 121.2631848, 23.2363797 ], [ 121.2651967, 23.240621 ], [ 121.2675285, 23.2457861 ], [ 121.2694459, 23.2489359 ], [ 121.2708195, 23.2512192 ], [ 121.2729319, 23.2546732 ], [ 121.2759129, 23.2596181 ], [ 121.2769211, 23.2612768 ], [ 121.2784299, 23.2637483 ], [ 121.2793804, 23.2657094 ], [ 121.2816178, 23.2702842 ], [ 121.2809484, 23.2727441 ], [ 121.279645, 23.2776369 ], [ 121.2788785, 23.280521 ], [ 121.2780842, 23.2835137 ], [ 121.2777515, 23.284809 ], [ 121.2770202, 23.2875104 ], [ 121.2756171, 23.2927284 ], [ 121.2772896, 23.2976048 ], [ 121.2777204, 23.2989304 ], [ 121.2817563, 23.3007951 ], [ 121.2867962, 23.3031458 ], [ 121.2892783, 23.3042517 ], [ 121.2918756, 23.307606 ], [ 121.2935829, 23.3098324 ], [ 121.2953487, 23.3121456 ], [ 121.2972446, 23.3145977 ], [ 121.2990436, 23.3169491 ], [ 121.3005236, 23.3188648 ], [ 121.3021512, 23.3209301 ], [ 121.3026732, 23.3233363 ], [ 121.3033213, 23.3261281 ], [ 121.3039019, 23.3286797 ], [ 121.3048835, 23.3329141 ], [ 121.3052756, 23.3345945 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179686274", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0329364, 22.704281 ], [ 121.0356462, 22.7047245 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "179686275", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0903176, 22.7830843 ], [ 121.0883671, 22.7819689 ], [ 121.0856679, 22.7806568 ], [ 121.0831735, 22.7793203 ], [ 121.0808232, 22.7780648 ], [ 121.0786681, 22.7769213 ], [ 121.0762873, 22.7756747 ], [ 121.0737828, 22.7743734 ], [ 121.0714166, 22.7731061 ], [ 121.0690273, 22.771845 ], [ 121.0666155, 22.7705714 ], [ 121.0642588, 22.7693247 ], [ 121.0613229, 22.768893 ], [ 121.058397, 22.7684654 ], [ 121.0559542, 22.7681166 ], [ 121.0531749, 22.7671857 ], [ 121.0504216, 22.7663103 ], [ 121.0475687, 22.7653732 ], [ 121.0462442, 22.7635721 ], [ 121.0448414, 22.7617083 ], [ 121.0460858, 22.7573543 ], [ 121.0479617, 22.7525573 ], [ 121.0497356, 22.7479615 ], [ 121.0504096, 22.7462123 ], [ 121.0513684, 22.7437443 ], [ 121.0501532, 22.7416724 ], [ 121.0481745, 22.738213 ], [ 121.0461992, 22.7348057 ], [ 121.0443662, 22.7316268 ], [ 121.0418838, 22.7273746 ], [ 121.0395628, 22.7206746 ], [ 121.0383857, 22.717287 ], [ 121.0377434, 22.7154485 ], [ 121.0366699, 22.7121946 ], [ 121.0357693, 22.7096516 ], [ 121.0348165, 22.7070108 ], [ 121.0356462, 22.7047245 ], [ 121.0387971, 22.6990258 ], [ 121.0383481, 22.6965711 ], [ 121.0379895, 22.6946218 ], [ 121.0376434, 22.6925999 ], [ 121.0370375, 22.6891514 ], [ 121.0366136, 22.686752 ], [ 121.0361608, 22.6853886 ], [ 121.0354149, 22.6830787 ], [ 121.0337048, 22.680744 ], [ 121.0314575, 22.6778959 ], [ 121.0279638, 22.6745728 ], [ 121.0263302, 22.672967 ], [ 121.0244027, 22.6711448 ], [ 121.0223415, 22.6692094 ], [ 121.0204672, 22.6647622 ], [ 121.0180114, 22.6589092 ], [ 121.0174546, 22.6575659 ], [ 121.0166063, 22.6555756 ], [ 121.0158508, 22.6537479 ], [ 121.0134245, 22.6479611 ], [ 121.0129115, 22.6467013 ], [ 121.0123268, 22.6453208 ], [ 121.0114434, 22.6431739 ], [ 121.0103204, 22.6404804 ], [ 121.0093605, 22.6382865 ], [ 121.0088174, 22.6369398 ], [ 121.0079672, 22.6348667 ], [ 121.007236, 22.6331654 ], [ 121.0037434, 22.6293568 ], [ 121.0012988, 22.6267404 ], [ 121.00112, 22.6265474 ], [ 121.0001444, 22.6254944 ], [ 120.9971389, 22.6222699 ], [ 120.9946199, 22.6195177 ], [ 120.9932434, 22.6180917 ], [ 120.9921701, 22.6169359 ], [ 120.991139, 22.6158145 ], [ 120.9862793, 22.6105888 ], [ 120.9850705, 22.6092512 ], [ 120.9836288, 22.6076828 ], [ 120.9826497, 22.6066181 ], [ 120.9798611, 22.603643 ], [ 120.9777859, 22.6013371 ], [ 120.9765446, 22.5999881 ], [ 120.9755791, 22.5990138 ], [ 120.9745442, 22.5978875 ], [ 120.9708304, 22.5941154 ], [ 120.967747, 22.5905947 ], [ 120.9670645, 22.5881691 ], [ 120.9662404, 22.5852035 ], [ 120.9657696, 22.583456 ], [ 120.9647664, 22.579976 ], [ 120.9630458, 22.5737563 ], [ 120.962626, 22.5722139 ], [ 120.9612115, 22.5671917 ], [ 120.9609028, 22.5660563 ], [ 120.9604335, 22.5643832 ], [ 120.9598514, 22.5621376 ], [ 120.9593141, 22.5603374 ], [ 120.9583574, 22.5569219 ], [ 120.9577916, 22.5549636 ], [ 120.956126, 22.5488276 ], [ 120.9545369, 22.5430405 ], [ 120.954013, 22.5412891 ], [ 120.9531758, 22.5384011 ], [ 120.9525221, 22.5359307 ], [ 120.9498732, 22.526419 ], [ 120.9506494, 22.5240747 ], [ 120.9513136, 22.5221061 ], [ 120.9520806, 22.5198685 ], [ 120.9529577, 22.5172736 ], [ 120.9525706, 22.5159401 ], [ 120.9508239, 22.5101259 ], [ 120.9491686, 22.5046983 ], [ 120.9487522, 22.5032853 ], [ 120.9470572, 22.4976371 ], [ 120.9464851, 22.4957841 ], [ 120.9442966, 22.4884861 ], [ 120.9436823, 22.4864019 ], [ 120.9429602, 22.4840349 ], [ 120.9428376, 22.4836288 ], [ 120.9422178, 22.4815763 ], [ 120.9419317, 22.4806286 ], [ 120.9402766, 22.4751389 ], [ 120.9393944, 22.4720608 ], [ 120.9377098, 22.4666021 ], [ 120.9372694, 22.4651983 ], [ 120.9363364, 22.4619907 ], [ 120.9353678, 22.4587191 ], [ 120.9346538, 22.4562801 ], [ 120.9322687, 22.4496744 ], [ 120.9308449, 22.4456014 ], [ 120.9301688, 22.4442496 ], [ 120.9291554, 22.4422057 ], [ 120.9283638, 22.4406154 ], [ 120.9270611, 22.4379656 ], [ 120.9269998, 22.437841 ], [ 120.9261092, 22.4360278 ], [ 120.9254524, 22.4346849 ], [ 120.9223112, 22.4283976 ], [ 120.9192013, 22.422075 ], [ 120.9187262, 22.4211594 ], [ 120.9174872, 22.4187075 ], [ 120.9156618, 22.4150874 ], [ 120.9142499, 22.4099499 ], [ 120.9129804, 22.4055686 ], [ 120.9126865, 22.4042433 ], [ 120.9120687, 22.4020331 ], [ 120.9113223, 22.4000284 ], [ 120.9098722, 22.3961814 ], [ 120.9089068, 22.3936645 ], [ 120.9067852, 22.3879756 ], [ 120.9056313, 22.3848506 ], [ 120.9037955, 22.3799546 ], [ 120.902659, 22.3769682 ], [ 120.9014335, 22.3737405 ], [ 120.9003263, 22.3707662 ], [ 120.899599, 22.3687992 ], [ 120.8984308, 22.3657126 ], [ 120.8978993, 22.3642663 ], [ 120.8959478, 22.3590802 ], [ 120.8954949, 22.3584379 ], [ 120.8933305, 22.3553233 ], [ 120.8913925, 22.3525533 ], [ 120.8882247, 22.3480488 ], [ 120.8870275, 22.3464813 ], [ 120.8860106, 22.3466671 ], [ 120.8843867, 22.3470211 ], [ 120.8839595, 22.3471051 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180613699", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6321786, 25.0606476 ], [ 121.6345302, 25.0597806 ], [ 121.6347338, 25.0599377 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180625143", "name": "新營~白河線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3469247, 23.3609447 ], [ 120.3496737, 23.3602961 ], [ 120.3525342, 23.3596225 ], [ 120.3552869, 23.3589694 ], [ 120.3577747, 23.358382 ], [ 120.3605798, 23.3577355 ], [ 120.36313, 23.3571068 ], [ 120.3653767, 23.3565905 ], [ 120.3679635, 23.3559657 ], [ 120.3701145, 23.355469 ], [ 120.3724712, 23.3549041 ], [ 120.3750736, 23.3542935 ], [ 120.3773702, 23.3537481 ], [ 120.3797385, 23.3531935 ], [ 120.3828632, 23.352467 ], [ 120.3860836, 23.3516847 ], [ 120.3891797, 23.3509441 ], [ 120.3918781, 23.3503089 ], [ 120.3940124, 23.3503147 ], [ 120.3962739, 23.3503189 ], [ 120.3983152, 23.3503245 ], [ 120.4004875, 23.3503274 ], [ 120.402924, 23.3503075 ], [ 120.4049421, 23.3503336 ], [ 120.4071535, 23.3503649 ], [ 120.4096665, 23.349806 ], [ 120.4096664, 23.3494939 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180625144", "name": "新營~白河線(單分歧水上)", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3469247, 23.3609447 ], [ 120.3477619, 23.3623343 ], [ 120.3483973, 23.3635445 ], [ 120.3489128, 23.3644806 ], [ 120.3495595, 23.3657012 ], [ 120.3501022, 23.3667432 ], [ 120.3506245, 23.3677021 ], [ 120.3513537, 23.3690595 ], [ 120.3519237, 23.3702013 ], [ 120.3525117, 23.3713327 ], [ 120.3532047, 23.3725801 ], [ 120.3537704, 23.3736731 ], [ 120.35429, 23.3746587 ], [ 120.3550377, 23.3760559 ], [ 120.3556433, 23.3772293 ], [ 120.3563267, 23.3785305 ], [ 120.3569055, 23.3795538 ], [ 120.3574415, 23.3805968 ], [ 120.3580873, 23.3817652 ], [ 120.3588216, 23.3831328 ], [ 120.3594353, 23.3842716 ], [ 120.3600811, 23.3855162 ], [ 120.3612441, 23.3877472 ], [ 120.3618149, 23.3888097 ], [ 120.3624045, 23.3899584 ], [ 120.3629941, 23.3910061 ], [ 120.3636292, 23.3922187 ], [ 120.3641839, 23.3932566 ], [ 120.3648137, 23.394452 ], [ 120.3653979, 23.3955465 ], [ 120.3659901, 23.3966582 ], [ 120.3672496, 23.3990438 ], [ 120.3681527, 23.4007457 ], [ 120.3697633, 23.4039749 ], [ 120.3708459, 23.4057948 ], [ 120.3717142, 23.4074548 ], [ 120.37221, 23.408409 ], [ 120.372888, 23.4096559 ], [ 120.3729715, 23.4108635 ], [ 120.3731872, 23.4119832 ], [ 120.3744566, 23.4127296 ], [ 120.3755596, 23.41351 ], [ 120.3766852, 23.4142596 ], [ 120.3773134, 23.4147825 ], [ 120.378062, 23.4154125 ], [ 120.3791874, 23.4161595 ], [ 120.3800563, 23.4166743 ], [ 120.3810986, 23.4171598 ], [ 120.3822506, 23.4176453 ], [ 120.3836628, 23.4181682 ], [ 120.3844131, 23.4177119 ], [ 120.3853975, 23.4171191 ], [ 120.3863035, 23.4166092 ], [ 120.3867972, 23.4163104 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180625145", "name": "新東變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3362691, 23.3229347 ], [ 120.3367403, 23.3227765 ], [ 120.3365968, 23.3223825 ], [ 120.336126, 23.3225445 ], [ 120.3362691, 23.3229347 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180741899", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7253816, 25.0958007 ], [ 121.7247111, 25.0985046 ], [ 121.723802, 25.0993118 ], [ 121.7210975, 25.1017345 ], [ 121.720768, 25.1020335 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180741901", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7332278, 25.1025994 ], [ 121.7301802, 25.1009113 ], [ 121.7267502, 25.1008295 ], [ 121.7216065, 25.1021829 ], [ 121.7211328, 25.1025144 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180741902", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7357007, 25.1042469 ], [ 121.7341986, 25.1032438 ], [ 121.7332278, 25.1025994 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180741904", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7205991, 25.1018343 ], [ 121.7207255, 25.1014909 ], [ 121.7224377, 25.0987161 ], [ 121.722218, 25.0975111 ], [ 121.7205469, 25.0946863 ], [ 121.7200936, 25.0933976 ], [ 121.7187165, 25.0907432 ], [ 121.7177498, 25.0894859 ], [ 121.7150002, 25.0871747 ], [ 121.713509, 25.0858881 ], [ 121.7112947, 25.0840644 ], [ 121.7099348, 25.0834826 ], [ 121.7086156, 25.0841036 ], [ 121.7076918, 25.0855083 ], [ 121.7072903, 25.0869891 ], [ 121.7059606, 25.0879702 ], [ 121.7044961, 25.0895467 ], [ 121.7038819, 25.090307 ], [ 121.7031797, 25.0907494 ], [ 121.7022372, 25.0913532 ], [ 121.7009925, 25.0920979 ], [ 121.7005865, 25.0921838 ], [ 121.7000668, 25.092021 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180741906", "power": "line", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7332278, 25.1025994 ], [ 121.7338237, 25.1018552 ], [ 121.7375854, 25.0996786 ], [ 121.7377581, 25.0995786 ], [ 121.7378446, 25.0995286 ], [ 121.739336, 25.0998765 ], [ 121.7402786, 25.1000886 ], [ 121.7425311, 25.1005749 ], [ 121.7444542, 25.1010272 ], [ 121.7508919, 25.1033006 ], [ 121.7529731, 25.1038968 ], [ 121.7537287, 25.1041552 ], [ 121.7561564, 25.1049733 ], [ 121.757924, 25.1082055 ], [ 121.7571391, 25.1103488 ], [ 121.7548211, 25.111297 ], [ 121.7536444, 25.1109142 ], [ 121.7519026, 25.1110719 ], [ 121.7516798, 25.1124173 ], [ 121.7515788, 25.1130269 ], [ 121.7516654, 25.1148954 ], [ 121.7522976, 25.1170233 ], [ 121.7509699, 25.1185641 ], [ 121.7504973, 25.1207972 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180873985", "name": "瑞芳變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8206095, 25.1060969 ], [ 121.8210841, 25.1062291 ], [ 121.8211689, 25.1060783 ], [ 121.8213883, 25.1060401 ], [ 121.8214087, 25.1057969 ], [ 121.8215797, 25.1058303 ], [ 121.8215895, 25.1057629 ], [ 121.821596, 25.1057183 ], [ 121.8216552, 25.1056962 ], [ 121.8217383, 25.1053678 ], [ 121.8214245, 25.105316 ], [ 121.8213865, 25.1054767 ], [ 121.8208448, 25.105419 ], [ 121.8206095, 25.1060969 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "180873986", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7253816, 25.0958007 ], [ 121.7269086, 25.0900645 ], [ 121.7295246, 25.0891466 ], [ 121.7309378, 25.0893175 ], [ 121.7368304, 25.0901805 ], [ 121.7415997, 25.0916108 ], [ 121.7448391, 25.0925136 ], [ 121.7490639, 25.0936504 ], [ 121.752609, 25.0946253 ], [ 121.7563999, 25.0954362 ], [ 121.7600589, 25.0966988 ], [ 121.7629042, 25.0976338 ], [ 121.7683297, 25.0994241 ], [ 121.7713249, 25.1005496 ], [ 121.7746018, 25.1015497 ], [ 121.7786215, 25.1011694 ], [ 121.7818027, 25.1006832 ], [ 121.7865896, 25.101825 ], [ 121.7877656, 25.1021069 ], [ 121.7899382, 25.102633 ], [ 121.7904116, 25.1027366 ], [ 121.7923278, 25.102725 ], [ 121.7961746, 25.1027101 ], [ 121.8007546, 25.1026947 ], [ 121.8057453, 25.1028536 ], [ 121.8092516, 25.1029842 ], [ 121.8140802, 25.1031375 ], [ 121.8156744, 25.1031923 ], [ 121.8204144, 25.1056727 ], [ 121.8208895, 25.1057977 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "181339382", "name": "雙溪變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.8663758, 25.0422247 ], [ 121.8662641, 25.042425 ], [ 121.8662569, 25.042531 ], [ 121.8668479, 25.0424832 ], [ 121.8669197, 25.0420521 ], [ 121.8663235, 25.0420942 ], [ 121.8662732, 25.0421327 ], [ 121.8663758, 25.0422247 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "183356769", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7709891, 25.1541341 ], [ 121.7693929, 25.1560869 ], [ 121.767569, 25.1562286 ], [ 121.7651438, 25.1577332 ], [ 121.7639169, 25.157328 ], [ 121.7638277, 25.1573251 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "183356770", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.626578, 25.2158892 ], [ 121.6292623, 25.2132694 ], [ 121.6313885, 25.2128735 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "183535176", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2436576, 22.9483911 ], [ 120.2444438, 22.9492927 ], [ 120.2454929, 22.9488777 ], [ 120.2465869, 22.948375 ], [ 120.247666, 22.9479174 ], [ 120.2485505, 22.9471396 ], [ 120.249334, 22.9465212 ], [ 120.2502801, 22.9457426 ], [ 120.2509204, 22.945218 ], [ 120.2516347, 22.9446328 ], [ 120.2527112, 22.9437697 ], [ 120.2536771, 22.9429727 ], [ 120.254782, 22.9420627 ], [ 120.2559505, 22.9411819 ], [ 120.2561862, 22.9401889 ], [ 120.2577135, 22.9400732 ], [ 120.2583695, 22.9400601 ], [ 120.2595798, 22.9394877 ], [ 120.2605131, 22.939065 ], [ 120.2616172, 22.9395149 ], [ 120.2630454, 22.9400981 ], [ 120.263822, 22.9403853 ], [ 120.2645833, 22.94069 ], [ 120.2662168, 22.9413469 ], [ 120.2681059, 22.9421272 ], [ 120.269455, 22.9426529 ], [ 120.2702292, 22.9429649 ], [ 120.2705923, 22.943096 ], [ 120.2713538, 22.9441183 ], [ 120.27208, 22.9451509 ], [ 120.2728394, 22.9461878 ], [ 120.2735805, 22.9472189 ], [ 120.2738151, 22.9474877 ], [ 120.27434, 22.948246 ], [ 120.2745962, 22.9486977 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "184342816", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8627799, 24.4659282 ], [ 120.8628232, 24.4659966 ], [ 120.862024, 24.466091 ], [ 120.8621854, 24.4679964 ], [ 120.8599894, 24.4686243 ], [ 120.8560145, 24.4684774 ], [ 120.850944, 24.469727 ], [ 120.8478835, 24.4702731 ], [ 120.8463734, 24.4710346 ], [ 120.843465, 24.4737416 ], [ 120.8411056, 24.4759871 ], [ 120.8404613, 24.4805976 ], [ 120.8401604, 24.4827434 ], [ 120.8393387, 24.4884851 ], [ 120.8378954, 24.4936368 ], [ 120.8366459, 24.4968608 ], [ 120.8354488, 24.5000997 ], [ 120.8348692, 24.5026741 ], [ 120.8345486, 24.5050228 ], [ 120.8332328, 24.5066154 ], [ 120.8340864, 24.5086078 ], [ 120.8348474, 24.5105485 ], [ 120.835733, 24.5126944 ], [ 120.8365935, 24.5147716 ], [ 120.8374658, 24.5168935 ], [ 120.8383148, 24.5189663 ], [ 120.8392015, 24.5210785 ], [ 120.8400649, 24.5231933 ], [ 120.8409068, 24.525274 ], [ 120.8411873, 24.5269714 ], [ 120.8416152, 24.5296491 ], [ 120.8420785, 24.5325943 ], [ 120.8425598, 24.5355483 ], [ 120.8443994, 24.5379887 ], [ 120.8452899, 24.53924 ], [ 120.8459473, 24.5411874 ], [ 120.8463591, 24.5425477 ], [ 120.8473157, 24.5455783 ], [ 120.8484879, 24.5493156 ], [ 120.8489994, 24.5516356 ], [ 120.8509323, 24.556999 ], [ 120.8518872, 24.5605531 ], [ 120.8539711, 24.5666887 ], [ 120.8548057, 24.5693435 ], [ 120.8560962, 24.5735578 ], [ 120.8568996, 24.5763179 ], [ 120.8575476, 24.5781639 ], [ 120.8578168, 24.5789743 ], [ 120.8582995, 24.5802484 ], [ 120.8556747, 24.5806042 ], [ 120.8541351, 24.5820938 ], [ 120.852451, 24.583715 ], [ 120.8497336, 24.583358 ], [ 120.8476454, 24.5830642 ], [ 120.8426105, 24.5824136 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "184391011", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8196118, 24.4636637 ], [ 120.8181798, 24.4641615 ], [ 120.8175835, 24.4645161 ], [ 120.8169584, 24.467932 ], [ 120.8161015, 24.4705661 ], [ 120.8148529, 24.4720271 ], [ 120.8122443, 24.474556 ], [ 120.8113617, 24.4757399 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "184391013", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7379983, 24.2639694 ], [ 120.7398432, 24.2639694 ], [ 120.741317, 24.2653975 ], [ 120.7425207, 24.2672253 ], [ 120.7452536, 24.2682481 ], [ 120.748225, 24.2695577 ], [ 120.7489762, 24.2718914 ], [ 120.7497001, 24.274164 ], [ 120.7497385, 24.2742845 ], [ 120.7500349, 24.2756044 ], [ 120.7500652, 24.2759148 ], [ 120.7504842, 24.2802122 ], [ 120.7503357, 24.2819514 ], [ 120.7511935, 24.2873837 ], [ 120.751399, 24.2891611 ], [ 120.7517746, 24.2923205 ], [ 120.7521977, 24.2959329 ], [ 120.7524868, 24.2983802 ], [ 120.7530352, 24.3021097 ], [ 120.7534266, 24.304777 ], [ 120.7536642, 24.3067833 ], [ 120.7543855, 24.3084288 ], [ 120.7549657, 24.3099347 ], [ 120.7557348, 24.311978 ], [ 120.7566807, 24.3144922 ], [ 120.7580324, 24.3179767 ], [ 120.7584471, 24.3187605 ], [ 120.7588145, 24.3196606 ], [ 120.7595401, 24.3214377 ], [ 120.7600649, 24.3219182 ], [ 120.764308, 24.3301592 ], [ 120.7654902, 24.332105 ], [ 120.7662389, 24.3336367 ], [ 120.7670096, 24.3352417 ], [ 120.7714565, 24.3437014 ], [ 120.7724146, 24.345347 ], [ 120.7730962, 24.3465342 ], [ 120.7756445, 24.3510069 ], [ 120.776812, 24.3530296 ], [ 120.7780679, 24.355243 ], [ 120.7801043, 24.3587728 ], [ 120.7817019, 24.361551 ], [ 120.7828344, 24.3645681 ], [ 120.7842701, 24.3683782 ], [ 120.785265, 24.3710388 ], [ 120.786487, 24.3741723 ], [ 120.7874524, 24.3766871 ], [ 120.7891805, 24.3810393 ], [ 120.7905193, 24.3844316 ], [ 120.7918084, 24.3875293 ], [ 120.7929199, 24.39054 ], [ 120.7948759, 24.3941439 ], [ 120.797612, 24.3990706 ], [ 120.7989801, 24.4016204 ], [ 120.8002917, 24.4040098 ], [ 120.8015093, 24.4062873 ], [ 120.8025578, 24.4079876 ], [ 120.8037014, 24.409896 ], [ 120.8050653, 24.412108 ], [ 120.8060315, 24.4132872 ], [ 120.8063479, 24.4150915 ], [ 120.8070869, 24.4172791 ], [ 120.8078389, 24.4192218 ], [ 120.8090548, 24.4224908 ], [ 120.8101475, 24.4254937 ], [ 120.8106072, 24.4266578 ], [ 120.8114069, 24.430276 ], [ 120.8119158, 24.4325434 ], [ 120.8125124, 24.4351538 ], [ 120.8128653, 24.4367855 ], [ 120.8135837, 24.4400008 ], [ 120.8141049, 24.4422761 ], [ 120.8144243, 24.443805 ], [ 120.81481, 24.445494 ], [ 120.815509, 24.4486783 ], [ 120.816188, 24.4510434 ], [ 120.8169066, 24.4537471 ], [ 120.8173285, 24.4552715 ], [ 120.818171, 24.4583309 ], [ 120.8186213, 24.4598341 ], [ 120.8191072, 24.461682 ], [ 120.8196118, 24.4636637 ], [ 120.8209912, 24.4677098 ], [ 120.8221071, 24.4705674 ], [ 120.8229325, 24.4730673 ], [ 120.8237391, 24.4754945 ], [ 120.8245188, 24.4777817 ], [ 120.8253043, 24.4800722 ], [ 120.8260292, 24.4822803 ], [ 120.8267653, 24.4843727 ], [ 120.8274958, 24.4865244 ], [ 120.8281127, 24.4883276 ], [ 120.8289073, 24.4906857 ], [ 120.8296465, 24.492891 ], [ 120.8304625, 24.4953258 ], [ 120.8312228, 24.4976753 ], [ 120.8319842, 24.5001812 ], [ 120.8329595, 24.5027873 ], [ 120.8340351, 24.5049535 ], [ 120.8348738, 24.5066572 ], [ 120.835868, 24.5086046 ], [ 120.8371338, 24.510976 ], [ 120.8383809, 24.5134352 ], [ 120.8394042, 24.5162721 ], [ 120.8404824, 24.5191942 ], [ 120.8416567, 24.5224274 ], [ 120.8425353, 24.5247752 ], [ 120.8433442, 24.5270357 ], [ 120.8443709, 24.5298577 ], [ 120.8454428, 24.5323618 ], [ 120.8474934, 24.5371934 ], [ 120.848279, 24.5400559 ], [ 120.8499082, 24.5433846 ], [ 120.8515779, 24.5467468 ], [ 120.853, 24.5496496 ], [ 120.8545592, 24.5527581 ], [ 120.8554391, 24.554903 ], [ 120.8571624, 24.5590559 ], [ 120.8574752, 24.5598978 ], [ 120.8590509, 24.564138 ], [ 120.8598697, 24.5663692 ], [ 120.8603, 24.5674788 ], [ 120.8607116, 24.572292 ], [ 120.8610547, 24.5755665 ], [ 120.8620232, 24.5790919 ], [ 120.8621227, 24.5812789 ], [ 120.8632687, 24.5863567 ], [ 120.8631421, 24.589675 ], [ 120.8629591, 24.5932914 ], [ 120.8636817, 24.596309 ], [ 120.864224, 24.5985001 ], [ 120.8657705, 24.6028427 ], [ 120.8669465, 24.6059952 ], [ 120.8681027, 24.6090604 ], [ 120.8691207, 24.6120397 ], [ 120.8701061, 24.6146885 ], [ 120.8714955, 24.6180981 ], [ 120.8725114, 24.6206131 ], [ 120.8736224, 24.6233391 ], [ 120.8741684, 24.6246451 ], [ 120.8766361, 24.6283846 ], [ 120.8779552, 24.6303556 ], [ 120.87929, 24.6323251 ], [ 120.8807721, 24.6346256 ], [ 120.8842052, 24.6349058 ], [ 120.8871852, 24.6348243 ], [ 120.8894388, 24.635899 ], [ 120.89169, 24.6369476 ], [ 120.8951978, 24.6386371 ], [ 120.8964283, 24.6392044 ], [ 120.900024, 24.6408996 ], [ 120.902249, 24.6419672 ], [ 120.9037553, 24.6426759 ], [ 120.9064131, 24.6439356 ], [ 120.9113897, 24.6463244 ], [ 120.9165873, 24.6487689 ], [ 120.9228853, 24.6517612 ], [ 120.9265478, 24.6534984 ], [ 120.927447, 24.6552098 ], [ 120.9302113, 24.6604709 ], [ 120.9306225, 24.6612937 ], [ 120.932318, 24.6645942 ], [ 120.9332848, 24.6664514 ], [ 120.9347371, 24.6692607 ], [ 120.9361291, 24.6724383 ], [ 120.935252, 24.6776471 ], [ 120.934977, 24.6794355 ], [ 120.9346573, 24.6812296 ], [ 120.9343823, 24.6829616 ], [ 120.9337916, 24.6863301 ], [ 120.9342101, 24.6879785 ], [ 120.9350536, 24.6899785 ], [ 120.9362129, 24.6926524 ], [ 120.9383676, 24.6951153 ], [ 120.9397397, 24.6968495 ], [ 120.9399874, 24.6997155 ], [ 120.9401099, 24.7012376 ], [ 120.9395304, 24.7031492 ], [ 120.9388566, 24.7053736 ], [ 120.9371964, 24.7075168 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "184391015", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8366816, 24.5511012 ], [ 120.8395773, 24.5506927 ], [ 120.8433277, 24.5515714 ], [ 120.8457111, 24.5502566 ], [ 120.8484879, 24.5493156 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "186853807", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3873307, 24.9257177 ], [ 121.3882438, 24.9237649 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "186853808", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3876159, 24.923419 ], [ 121.3873307, 24.9257177 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "186853809", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3873307, 24.9257177 ], [ 121.3864958, 24.927716 ], [ 121.3853893, 24.9313096 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "187635868", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2515083, 22.9210169 ], [ 120.2516752, 22.9207557 ], [ 120.2499451, 22.9193781 ], [ 120.2489296, 22.9185662 ], [ 120.2482709, 22.9180396 ], [ 120.246711, 22.916768 ], [ 120.2450709, 22.9183359 ], [ 120.2436352, 22.9196793 ], [ 120.2421285, 22.9210825 ], [ 120.2404845, 22.9226093 ], [ 120.2389159, 22.9241038 ], [ 120.2398822, 22.9257356 ], [ 120.2408148, 22.9272974 ], [ 120.2414762, 22.9283865 ], [ 120.2420812, 22.9293761 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "187635895", "name": "保安變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "alt_name": "保安S/S", "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:wikipedia": "en:Taiwan Power Company", "operator:zh": "台灣電力公司", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.251034, 22.9211203 ], [ 120.2514405, 22.9206875 ], [ 120.2515483, 22.9209226 ], [ 120.2516963, 22.9210771 ], [ 120.2516989, 22.921317 ], [ 120.2517376, 22.9213903 ], [ 120.2517736, 22.9213845 ], [ 120.2515911, 22.9215682 ], [ 120.251034, 22.9211203 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "187899871", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7880165, 24.5158158 ], [ 120.7879347, 24.5152582 ], [ 120.7877792, 24.5146468 ], [ 120.7876826, 24.5141124 ], [ 120.787708, 24.5138183 ], [ 120.7891042, 24.51236 ], [ 120.7889335, 24.5089076 ], [ 120.7895596, 24.505016 ], [ 120.7884113, 24.5030812 ], [ 120.7889341, 24.4997034 ], [ 120.7898345, 24.4974266 ], [ 120.7899784, 24.4969594 ], [ 120.7901643, 24.4961832 ], [ 120.7910909, 24.4959891 ], [ 120.7940566, 24.4969252 ], [ 120.7976883, 24.4989344 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "188078518", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1018902, 22.7983839 ], [ 121.1032718, 22.8012974 ], [ 121.1047139, 22.8043485 ], [ 121.1056939, 22.8061906 ], [ 121.1066258, 22.8083148 ], [ 121.1078433, 22.8098483 ], [ 121.1086294, 22.8108777 ], [ 121.1086849, 22.8108854 ], [ 121.110885, 22.8111963 ], [ 121.1135774, 22.8115955 ], [ 121.1165321, 22.8120193 ], [ 121.1209156, 22.8107145 ], [ 121.1253492, 22.8106236 ], [ 121.1285187, 22.8091643 ], [ 121.1307516, 22.8081655 ], [ 121.1323083, 22.8074501 ], [ 121.1345269, 22.8080869 ], [ 121.1367005, 22.8091765 ], [ 121.1426457, 22.8115354 ], [ 121.1459346, 22.8128281 ], [ 121.1493018, 22.8141618 ], [ 121.150521, 22.8137196 ], [ 121.1518188, 22.8132438 ], [ 121.1559112, 22.8117527 ], [ 121.1604587, 22.8100823 ], [ 121.1623648, 22.8093739 ], [ 121.1662507, 22.8078377 ], [ 121.1689488, 22.8067779 ], [ 121.1715881, 22.8057186 ], [ 121.173814, 22.8046668 ], [ 121.1744764, 22.8046671 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "188078530", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0915568, 22.7840633 ], [ 121.0920911, 22.7847929 ], [ 121.0949068, 22.78452 ], [ 121.0977632, 22.7853559 ], [ 121.1004303, 22.7865637 ], [ 121.1033961, 22.7877523 ], [ 121.1046473, 22.7860994 ], [ 121.1064701, 22.7838939 ], [ 121.1082387, 22.7825862 ], [ 121.1100947, 22.7807899 ], [ 121.1111482, 22.7782102 ], [ 121.1139482, 22.7769589 ], [ 121.1172, 22.7772231 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "188335686", "power": "line", "voltage": "69000", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2751373, 22.9494484 ], [ 120.2761304, 22.9490206 ], [ 120.2773903, 22.9485873 ], [ 120.2784372, 22.9481604 ], [ 120.2795662, 22.9475926 ], [ 120.2806214, 22.947145 ], [ 120.2817002, 22.9475523 ], [ 120.282919, 22.9480443 ], [ 120.284165, 22.9486129 ], [ 120.2914882, 22.9517653 ], [ 120.292624, 22.9522566 ], [ 120.2936761, 22.9526926 ], [ 120.2943742, 22.953118 ], [ 120.2964338, 22.9536434 ], [ 120.2976991, 22.9540341 ], [ 120.2981154, 22.9541627 ], [ 120.298791, 22.9543144 ], [ 120.2995025, 22.9546107 ], [ 120.3012095, 22.9550497 ], [ 120.3022696, 22.9553737 ], [ 120.3036206, 22.9557745 ], [ 120.3050775, 22.9565117 ], [ 120.3060163, 22.9571193 ], [ 120.3070811, 22.9577318 ], [ 120.3081781, 22.9583542 ], [ 120.3091089, 22.9588753 ], [ 120.3095565, 22.9602649 ], [ 120.3098524, 22.9613865 ], [ 120.3102732, 22.9627011 ], [ 120.3103544, 22.9629919 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "188560474", "name": "新營~大寮線", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1924828, 23.3713258 ], [ 120.1926931, 23.3714926 ], [ 120.1948518, 23.3713048 ], [ 120.1980963, 23.3707921 ], [ 120.2017576, 23.3702686 ], [ 120.2040714, 23.3699024 ], [ 120.2070057, 23.3694657 ], [ 120.2096445, 23.3690941 ], [ 120.2120528, 23.3687279 ], [ 120.2144257, 23.368321 ], [ 120.2168917, 23.3677354 ], [ 120.218768, 23.3673048 ], [ 120.2213506, 23.3667217 ], [ 120.2237305, 23.3661731 ], [ 120.2289491, 23.3650155 ], [ 120.2311766, 23.3628825 ], [ 120.2333977, 23.360777 ], [ 120.2359861, 23.3601098 ], [ 120.2385845, 23.3596162 ], [ 120.2410236, 23.3590496 ], [ 120.2435125, 23.3584921 ], [ 120.2459615, 23.3579254 ], [ 120.2483013, 23.35734 ], [ 120.2508113, 23.3567382 ], [ 120.2536402, 23.3561147 ], [ 120.2559198, 23.3555996 ], [ 120.2577683, 23.3541086 ], [ 120.2594633, 23.3527531 ], [ 120.260918, 23.3515816 ], [ 120.264309, 23.3489361 ], [ 120.2667937, 23.3469884 ], [ 120.2687648, 23.3454164 ], [ 120.2711117, 23.3435952 ], [ 120.2733375, 23.3418122 ], [ 120.2755049, 23.3400983 ], [ 120.2775929, 23.3384495 ], [ 120.2798647, 23.3366589 ], [ 120.2811169, 23.3342515 ], [ 120.2824044, 23.3316675 ], [ 120.2838148, 23.3289623 ], [ 120.2850975, 23.3264154 ], [ 120.28619, 23.3242407 ], [ 120.2871852, 23.3223561 ], [ 120.2882748, 23.3202194 ], [ 120.2895819, 23.3176691 ], [ 120.2905884, 23.3156718 ], [ 120.2918725, 23.3131274 ], [ 120.2928247, 23.3115732 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "188706179", "name": "新營~太鐵線", "power": "line", "wires": "2", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2975598, 23.3122915 ], [ 120.2943792, 23.3152368 ], [ 120.292517, 23.3169507 ], [ 120.2910101, 23.3197183 ], [ 120.2888044, 23.3213925 ], [ 120.2876534, 23.3240722 ], [ 120.2869997, 23.3264252 ], [ 120.2857417, 23.3297555 ], [ 120.2850212, 23.3314332 ], [ 120.2832927, 23.3336044 ], [ 120.2828088, 23.3364871 ], [ 120.2832564, 23.3397196 ], [ 120.2838553, 23.3415635 ], [ 120.2840307, 23.3434629 ], [ 120.2854824, 23.34549 ], [ 120.287279, 23.3472339 ], [ 120.2894022, 23.3490222 ], [ 120.2914714, 23.3508161 ], [ 120.2941128, 23.3524433 ], [ 120.2962379, 23.3536439 ], [ 120.2985007, 23.3550183 ], [ 120.3006917, 23.356229 ], [ 120.3017699, 23.3585387 ], [ 120.30332, 23.361595 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "189054876", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1368634, 22.9753632 ], [ 121.1390822, 22.9740707 ], [ 121.1414025, 22.9727346 ], [ 121.1436215, 22.9715629 ], [ 121.1459999, 22.9703017 ], [ 121.1480725, 22.9692114 ], [ 121.1501596, 22.9681192 ], [ 121.1522478, 22.9670066 ], [ 121.1543643, 22.9659077 ], [ 121.1564421, 22.9648078 ], [ 121.1584767, 22.963597 ], [ 121.1607473, 22.9633441 ], [ 121.1625982, 22.9630045 ], [ 121.1670525, 22.9622149 ], [ 121.1714322, 22.9614371 ], [ 121.1761662, 22.9606004 ], [ 121.1777354, 22.9602926 ], [ 121.179714, 22.9595474 ], [ 121.1814449, 22.9588707 ], [ 121.1832338, 22.9581904 ], [ 121.1854526, 22.9574338 ], [ 121.1886207, 22.9563485 ], [ 121.1926541, 22.9554 ], [ 121.1981194, 22.9541372 ], [ 121.2018394, 22.9513067 ], [ 121.2051083, 22.9485797 ], [ 121.2090316, 22.9484209 ], [ 121.2129493, 22.9464478 ], [ 121.2171946, 22.9457677 ], [ 121.2222213, 22.9426117 ], [ 121.2247412, 22.9420265 ], [ 121.2275548, 22.9413727 ], [ 121.2295532, 22.9409247 ], [ 121.23245, 22.9402305 ], [ 121.2366278, 22.9392858 ], [ 121.2398434, 22.9355711 ], [ 121.2440487, 22.9306559 ], [ 121.2446011, 22.9299967 ], [ 121.2474055, 22.9283551 ], [ 121.250863, 22.9263445 ], [ 121.2530017, 22.9262275 ], [ 121.2541345, 22.9261483 ], [ 121.2563404, 22.9259967 ], [ 121.2609056, 22.9247812 ], [ 121.2629096, 22.9242474 ], [ 121.2657212, 22.9244231 ], [ 121.2662457, 22.9242829 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "192391804", "power": "line", "cables": "6", "voltage": "345000", "z_order": 50, "other_tags": { "circuits": "2", "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7414896, 24.3175463 ], [ 120.743593, 24.3187909 ], [ 120.74632, 24.3182431 ], [ 120.7520435, 24.3194127 ], [ 120.7534106, 24.3200237 ], [ 120.7561376, 24.3210824 ], [ 120.7568371, 24.3240958 ], [ 120.754164, 24.3268151 ], [ 120.749098, 24.3285116 ], [ 120.7454674, 24.3314413 ], [ 120.7432676, 24.3339429 ], [ 120.7415139, 24.3360473 ], [ 120.7398895, 24.3379529 ], [ 120.7377908, 24.340458 ], [ 120.7352119, 24.3433827 ], [ 120.7326959, 24.345519 ], [ 120.729719, 24.3474337 ], [ 120.7270995, 24.3487642 ], [ 120.7232778, 24.3502269 ], [ 120.7193916, 24.3515378 ], [ 120.7156156, 24.3525938 ], [ 120.7117751, 24.3534097 ], [ 120.7086176, 24.353912 ], [ 120.7037175, 24.3539806 ], [ 120.6988388, 24.3540761 ], [ 120.6920263, 24.3541277 ], [ 120.688361, 24.3545992 ], [ 120.6848356, 24.3551967 ], [ 120.6815839, 24.3536938 ], [ 120.6780347, 24.3521175 ], [ 120.6759531, 24.3512196 ], [ 120.6738458, 24.3502011 ], [ 120.6715043, 24.3491675 ], [ 120.6681998, 24.3476442 ], [ 120.6654626, 24.3464694 ], [ 120.6627649, 24.3452886 ], [ 120.6595668, 24.3439894 ], [ 120.6565657, 24.3426899 ], [ 120.6543029, 24.3416741 ], [ 120.6533028, 24.339415 ], [ 120.6525908, 24.3378677 ], [ 120.6519952, 24.3354772 ], [ 120.6489519, 24.3342088 ], [ 120.6472652, 24.3328025 ], [ 120.6441451, 24.3312368 ], [ 120.6412864, 24.3300188 ], [ 120.6393375, 24.3298977 ], [ 120.6355341, 24.3282442 ], [ 120.6333369, 24.3281949 ], [ 120.6308056, 24.3282052 ], [ 120.6284919, 24.3275138 ], [ 120.6238566, 24.3269226 ], [ 120.6225569, 24.3250086 ], [ 120.619336, 24.3246266 ], [ 120.6151789, 24.3197652 ], [ 120.6090846, 24.3127508 ], [ 120.6083688, 24.3093827 ], [ 120.6074816, 24.308126 ], [ 120.6052275, 24.3073822 ], [ 120.6038063, 24.3045201 ], [ 120.6032633, 24.3028867 ], [ 120.6036054, 24.299985 ], [ 120.6025276, 24.2983518 ], [ 120.601469, 24.2960036 ], [ 120.6001043, 24.2931032 ], [ 120.5978603, 24.2910934 ], [ 120.5971517, 24.2891441 ], [ 120.5965752, 24.2867377 ], [ 120.5946001, 24.2857971 ], [ 120.5943923, 24.2856982 ], [ 120.5919413, 24.2829921 ], [ 120.5898157, 24.2805604 ], [ 120.5890997, 24.277197 ], [ 120.5865986, 24.2756066 ], [ 120.5859015, 24.2728571 ], [ 120.5843956, 24.2697797 ], [ 120.5822991, 24.2672435 ], [ 120.5816141, 24.2650147 ], [ 120.5820271, 24.2630261 ], [ 120.5842704, 24.2611336 ], [ 120.5841127, 24.2586107 ], [ 120.5860933, 24.256148 ], [ 120.5852696, 24.2539164 ], [ 120.584971, 24.251817 ], [ 120.5856613, 24.2478832 ], [ 120.5872835, 24.2445845 ], [ 120.5882717, 24.2419751 ], [ 120.5885954, 24.2393517 ], [ 120.5883527, 24.2371942 ], [ 120.5873113, 24.2340318 ], [ 120.5875751, 24.230243 ], [ 120.586908, 24.2270888 ], [ 120.5864356, 24.2249088 ], [ 120.5863005, 24.2226435 ], [ 120.5856207, 24.220998 ], [ 120.5861619, 24.2194717 ], [ 120.585769, 24.216831 ], [ 120.5841959, 24.2133637 ], [ 120.5831049, 24.210391 ], [ 120.5822344, 24.2081971 ], [ 120.5807006, 24.2050132 ], [ 120.5799482, 24.2033764 ], [ 120.5782733, 24.200362 ], [ 120.5764379, 24.1972303 ], [ 120.5748716, 24.1950517 ], [ 120.5732662, 24.1928041 ], [ 120.569786, 24.1918862 ], [ 120.5669398, 24.1915818 ], [ 120.5647095, 24.1900759 ], [ 120.5628975, 24.1887569 ], [ 120.5593789, 24.1881879 ], [ 120.5560509, 24.1875313 ], [ 120.555267, 24.1856348 ], [ 120.5538913, 24.183997 ], [ 120.5521796, 24.1820336 ], [ 120.5508467, 24.1805135 ], [ 120.5490364, 24.1785425 ], [ 120.547837, 24.176307 ], [ 120.5469603, 24.1746388 ], [ 120.5440718, 24.1735374 ], [ 120.5411807, 24.1737199 ], [ 120.5383034, 24.1746338 ], [ 120.5358437, 24.1747492 ], [ 120.5328399, 24.1756591 ], [ 120.5315346, 24.1762776 ], [ 120.5290789, 24.1770333 ], [ 120.5255208, 24.1778173 ], [ 120.5237949, 24.1786172 ], [ 120.5221209, 24.1810001 ], [ 120.5206678, 24.1830653 ], [ 120.5203639, 24.1859926 ], [ 120.5199184, 24.188639 ], [ 120.5195892, 24.1913426 ], [ 120.5198843, 24.1936672 ], [ 120.5195485, 24.1963509 ], [ 120.5169484, 24.1985836 ], [ 120.5140544, 24.201102 ], [ 120.5114063, 24.2026611 ], [ 120.5093936, 24.2037883 ], [ 120.5075381, 24.2056895 ], [ 120.5056508, 24.2062686 ], [ 120.5034689, 24.2070617 ], [ 120.5006628, 24.2075717 ], [ 120.4960118, 24.2083117 ], [ 120.4937598, 24.2086765 ], [ 120.4915643, 24.2090363 ], [ 120.4895328, 24.2094128 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "192391805", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7654902, 24.332105 ], [ 120.7667691, 24.3315312 ], [ 120.7708008, 24.330875 ], [ 120.7728207, 24.3303826 ], [ 120.7763273, 24.3299808 ], [ 120.7801229, 24.3293905 ], [ 120.7852983, 24.3286196 ], [ 120.7870884, 24.3283416 ], [ 120.7946119, 24.326454 ], [ 120.7972838, 24.325774 ], [ 120.7992739, 24.3251714 ], [ 120.8025297, 24.3237321 ], [ 120.8052224, 24.3225443 ], [ 120.80745, 24.3205707 ], [ 120.8098168, 24.3184628 ], [ 120.8126113, 24.3158411 ], [ 120.8146809, 24.3139209 ], [ 120.8168308, 24.3119628 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "192391806", "name": "后里超高壓變電所(E/S)", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7393607, 24.3175491 ], [ 120.739769, 24.3179297 ], [ 120.7397217, 24.3179728 ], [ 120.7401604, 24.3184135 ], [ 120.7401709, 24.3184256 ], [ 120.7405391, 24.3185692 ], [ 120.7407873, 24.318784 ], [ 120.7413048, 24.3183391 ], [ 120.7411407, 24.3182027 ], [ 120.7414258, 24.3179656 ], [ 120.741753, 24.3177419 ], [ 120.7417895, 24.3175343 ], [ 120.7417694, 24.3174296 ], [ 120.7416698, 24.317139 ], [ 120.7415466, 24.3167475 ], [ 120.7414529, 24.3167773 ], [ 120.7413071, 24.3165072 ], [ 120.7403426, 24.3167318 ], [ 120.7398379, 24.3171418 ], [ 120.7396453, 24.3169423 ], [ 120.7394225, 24.3169538 ], [ 120.7393463, 24.3170411 ], [ 120.7393718, 24.3172281 ], [ 120.7395463, 24.3173946 ], [ 120.7393607, 24.3175491 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "192391808", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7584471, 24.3187605 ], [ 120.7560279, 24.3197693 ], [ 120.7535108, 24.3185061 ], [ 120.7519958, 24.3178909 ], [ 120.7498581, 24.3169299 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "193191983", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6708341, 24.4882984 ], [ 120.6702022, 24.4875726 ], [ 120.6711881, 24.4869055 ], [ 120.6723506, 24.4846355 ], [ 120.6726751, 24.48238 ], [ 120.6723228, 24.4788453 ], [ 120.6757838, 24.4760728 ], [ 120.6791993, 24.4737075 ], [ 120.6815316, 24.4721208 ], [ 120.6847813, 24.4698118 ], [ 120.6893172, 24.4686657 ], [ 120.6923767, 24.4674307 ], [ 120.6959091, 24.4658176 ], [ 120.6978479, 24.4640566 ], [ 120.6995983, 24.4624671 ], [ 120.7036055, 24.4588357 ], [ 120.7046747, 24.4578988 ], [ 120.7072461, 24.4554712 ], [ 120.7079285, 24.4537445 ], [ 120.7085212, 24.4516118 ], [ 120.7100262, 24.4494913 ], [ 120.7115454, 24.44741 ], [ 120.7134153, 24.4448457 ], [ 120.7149082, 24.4427958 ], [ 120.716713, 24.4409728 ], [ 120.7197212, 24.4379729 ], [ 120.7215679, 24.4360964 ], [ 120.7237001, 24.4340063 ], [ 120.7263242, 24.4313929 ], [ 120.7294809, 24.4281959 ], [ 120.7339278, 24.4259066 ], [ 120.736681, 24.4245052 ], [ 120.7407992, 24.4223961 ], [ 120.7427532, 24.4214125 ], [ 120.7450562, 24.4202417 ], [ 120.7476939, 24.418898 ], [ 120.748527, 24.4181787 ], [ 120.7500459, 24.4169033 ], [ 120.7522416, 24.4150577 ], [ 120.756134, 24.4117515 ], [ 120.7574497, 24.4106472 ], [ 120.7587819, 24.4097174 ], [ 120.7601128, 24.4087414 ], [ 120.761398, 24.4077272 ], [ 120.764434, 24.4058311 ], [ 120.7703819, 24.404982 ], [ 120.7743138, 24.4043777 ], [ 120.7809336, 24.4033854 ], [ 120.7854607, 24.4040257 ], [ 120.7890702, 24.404336 ], [ 120.7942683, 24.404773 ], [ 120.7976097, 24.4050586 ], [ 120.8002917, 24.4040098 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "193191984", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7060352, 24.5198776 ], [ 120.7096589, 24.5170077 ], [ 120.7123079, 24.5152442 ], [ 120.7154232, 24.5135586 ], [ 120.7176335, 24.5119877 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "193191985", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6705749, 24.4867136 ], [ 120.6710393, 24.4867537 ], [ 120.6717351, 24.4838162 ], [ 120.6713694, 24.479873 ], [ 120.6719427, 24.477734 ], [ 120.6727903, 24.4743847 ], [ 120.6732886, 24.4743531 ], [ 120.6740007, 24.4738615 ], [ 120.6749852, 24.4731569 ], [ 120.6753155, 24.4721656 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "193191986", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6715245, 24.4873079 ], [ 120.6745708, 24.4869005 ], [ 120.6766556, 24.4858541 ], [ 120.6787226, 24.4848694 ], [ 120.6821582, 24.4850204 ], [ 120.6849805, 24.4845898 ], [ 120.6860731, 24.4844038 ], [ 120.6874653, 24.4831204 ], [ 120.6888676, 24.4817567 ], [ 120.6896111, 24.4812484 ], [ 120.690505, 24.4803025 ], [ 120.6914631, 24.4794438 ], [ 120.6916784, 24.4783518 ], [ 120.6919778, 24.4773867 ], [ 120.6922337, 24.4764281 ], [ 120.6925362, 24.4752229 ], [ 120.6929192, 24.4738946 ], [ 120.6932527, 24.4727944 ], [ 120.6935635, 24.4713206 ], [ 120.6931589, 24.470322 ], [ 120.6939896, 24.4670278 ], [ 120.6937836, 24.4645351 ], [ 120.6937006, 24.4642055 ], [ 120.6934343, 24.4643288 ], [ 120.6932482, 24.4638188 ], [ 120.6930508, 24.4633753 ], [ 120.6931114, 24.4631001 ], [ 120.6929925, 24.4617097 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "194156100", "name": "新營一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2974115, 23.3026706 ], [ 120.2983858, 23.3007249 ], [ 120.2963664, 23.3000885 ], [ 120.2963196, 23.3002124 ], [ 120.2963597, 23.3003133 ], [ 120.2960261, 23.3011256 ], [ 120.2957576, 23.3018449 ], [ 120.2974115, 23.3026706 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "194264058", "name": "嘉義~新營線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.297981, 23.296451 ], [ 120.2983654, 23.2945363 ], [ 120.3008144, 23.2951165 ], [ 120.3033115, 23.2949341 ], [ 120.3055463, 23.2930348 ], [ 120.3075889, 23.2910559 ], [ 120.3096242, 23.2890914 ], [ 120.3115794, 23.2872339 ], [ 120.3146721, 23.2861761 ], [ 120.3178398, 23.2850795 ], [ 120.3212296, 23.2839115 ], [ 120.3243905, 23.2828125 ], [ 120.3270176, 23.2818979 ], [ 120.3298846, 23.2815432 ], [ 120.3327899, 23.2811644 ], [ 120.3344607, 23.279912 ], [ 120.3361277, 23.278668 ], [ 120.3391642, 23.2774914 ], [ 120.3420574, 23.2763969 ], [ 120.345274, 23.2751696 ], [ 120.3484564, 23.2739317 ], [ 120.3511584, 23.2728874 ], [ 120.3544944, 23.2715865 ], [ 120.3581505, 23.270188 ], [ 120.3614671, 23.2689089 ], [ 120.3649869, 23.2675325 ], [ 120.3680382, 23.2663905 ], [ 120.3708217, 23.2653167 ], [ 120.3735341, 23.2642751 ], [ 120.3752114, 23.2636396 ], [ 120.3754128, 23.2611736 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "197439901", "name": "銅門-花蓮線", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5306293, 23.9528158 ], [ 121.530408, 23.9533877 ], [ 121.5278689, 23.9551468 ], [ 121.5263266, 23.9561874 ], [ 121.5251231, 23.9570384 ], [ 121.5230664, 23.9584843 ], [ 121.5219408, 23.9590597 ], [ 121.5189909, 23.959692 ], [ 121.5170015, 23.9601181 ], [ 121.515975, 23.9603534 ], [ 121.5138282, 23.9607705 ], [ 121.5126557, 23.9610151 ], [ 121.5115427, 23.961279 ], [ 121.5088112, 23.9618031 ], [ 121.5066022, 23.9620205 ], [ 121.5039166, 23.9633253 ], [ 121.5008491, 23.9647864 ], [ 121.4952254, 23.9639434 ], [ 121.4917972, 23.9638137 ], [ 121.4909459, 23.9644595 ], [ 121.489019, 23.9663475 ], [ 121.4884642, 23.9664102 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "197439909", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5052421, 23.9326154 ], [ 121.505238, 23.9340986 ], [ 121.505227, 23.9350698 ], [ 121.5052019, 23.9362715 ], [ 121.5052111, 23.9379741 ], [ 121.5051879, 23.9390606 ], [ 121.505195, 23.9398741 ], [ 121.505179, 23.9412343 ], [ 121.5051804, 23.9422608 ], [ 121.5051643, 23.9434057 ], [ 121.5051617, 23.9445357 ], [ 121.5051335, 23.9457088 ], [ 121.5051335, 23.9466991 ], [ 121.5051246, 23.9478347 ], [ 121.5051047, 23.9503707 ], [ 121.5051263, 23.9514705 ], [ 121.5050904, 23.9521296 ], [ 121.5032213, 23.9534511 ], [ 121.5019435, 23.9542726 ], [ 121.5012242, 23.9555192 ], [ 121.4986497, 23.9569421 ], [ 121.4962932, 23.9590506 ], [ 121.494893, 23.9600035 ], [ 121.4939478, 23.9607962 ], [ 121.4935033, 23.9611689 ], [ 121.492509, 23.9620286 ], [ 121.4910747, 23.9628876 ], [ 121.4873898, 23.9637086 ], [ 121.4868043, 23.9640195 ], [ 121.487054, 23.9661721 ], [ 121.4881503, 23.9662914 ], [ 121.4886475, 23.9663263 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "198324718", "name": "頂湖超高壓變電所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3646083, 25.0351331 ], [ 121.3658692, 25.035624 ], [ 121.3654687, 25.0363581 ], [ 121.3653559, 25.0363564 ], [ 121.365304, 25.0364557 ], [ 121.3653706, 25.0365379 ], [ 121.3652052, 25.036846 ], [ 121.3651521, 25.0368671 ], [ 121.3651347, 25.0368964 ], [ 121.3651464, 25.0369556 ], [ 121.3650598, 25.0371074 ], [ 121.3646136, 25.0369687 ], [ 121.3616504, 25.0370339 ], [ 121.3614307, 25.0368777 ], [ 121.3613342, 25.03399 ], [ 121.3619328, 25.0340135 ], [ 121.3638243, 25.033928 ], [ 121.3642636, 25.0341257 ], [ 121.3646083, 25.0351331 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "198722711", "name": "中寮北~中港線(分歧霧峰)", "power": "line", "wires": "quad", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7709102, 23.8922048 ], [ 120.7700372, 23.8932733 ], [ 120.7691827, 23.8932853 ], [ 120.7679112, 23.8934286 ], [ 120.7668878, 23.8975593 ], [ 120.7661352, 23.9006456 ], [ 120.7646671, 23.9047129 ], [ 120.7630679, 23.9089242 ], [ 120.761868, 23.912492 ], [ 120.7601834, 23.9171479 ], [ 120.7593199, 23.9204488 ], [ 120.7588938, 23.922038 ], [ 120.7580135, 23.9256525 ], [ 120.7571177, 23.927991 ], [ 120.7562986, 23.9320071 ], [ 120.7539364, 23.9362189 ], [ 120.7533268, 23.9386099 ], [ 120.7536921, 23.9409121 ], [ 120.7545438, 23.9461783 ], [ 120.7548441, 23.9481916 ], [ 120.7556457, 23.9534783 ], [ 120.7559339, 23.9560087 ], [ 120.7563176, 23.959034 ], [ 120.7565628, 23.9611076 ], [ 120.7567424, 23.9624626 ], [ 120.7572488, 23.965184 ], [ 120.7578432, 23.9681217 ], [ 120.7582402, 23.9704874 ], [ 120.7587204, 23.9729693 ], [ 120.7580274, 23.9752791 ], [ 120.7572842, 23.9778611 ], [ 120.7568304, 23.9795359 ], [ 120.7576396, 23.9855746 ], [ 120.7565814, 23.9873982 ], [ 120.7544895, 23.9909092 ], [ 120.752246, 23.994757 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "198722716", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7603203, 23.9866645 ], [ 120.7587745, 23.9888148 ], [ 120.7576537, 23.9904311 ], [ 120.7554803, 23.9933158 ], [ 120.7531406, 23.9953763 ], [ 120.7511657, 23.9972221 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445365", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8560216, 23.8533043 ], [ 120.8540247, 23.8545087 ], [ 120.8510888, 23.8572884 ], [ 120.8501935, 23.8578675 ], [ 120.8478767, 23.8593662 ], [ 120.8460402, 23.8605541 ], [ 120.8414887, 23.8628113 ], [ 120.8357124, 23.8655298 ], [ 120.834689, 23.866435 ], [ 120.8336234, 23.8675498 ], [ 120.8283733, 23.8714196 ], [ 120.8252359, 23.8737989 ], [ 120.8236186, 23.875999 ], [ 120.8194396, 23.8770816 ], [ 120.8142599, 23.8750491 ], [ 120.811839, 23.8747948 ], [ 120.8107921, 23.8746848 ], [ 120.8074874, 23.875664 ], [ 120.80418, 23.8763853 ], [ 120.7995876, 23.8778101 ], [ 120.7962319, 23.8787311 ], [ 120.7926465, 23.8796555 ], [ 120.7904264, 23.8804136 ], [ 120.7874436, 23.8815272 ], [ 120.7861687, 23.8820046 ], [ 120.7843855, 23.8826722 ], [ 120.7794025, 23.88452 ], [ 120.7772542, 23.8853523 ], [ 120.7756616, 23.885922 ], [ 120.7738347, 23.8874842 ], [ 120.77106, 23.8907442 ], [ 120.7704972, 23.8913835 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445367", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7696027, 23.8910699 ], [ 120.769339, 23.8909257 ], [ 120.7690351, 23.8906595 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445371", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7027972, 24.0164363 ], [ 120.70269, 24.0137954 ], [ 120.7026169, 24.0123339 ], [ 120.7024486, 24.0095243 ], [ 120.7023014, 24.0064445 ], [ 120.7019864, 24.0008271 ], [ 120.7018286, 23.997975 ], [ 120.7018223, 23.9975237 ], [ 120.7021263, 23.9962829 ], [ 120.7040832, 23.9884404 ], [ 120.7047357, 23.9856074 ], [ 120.70578, 23.98205 ], [ 120.7064027, 23.9798936 ], [ 120.7067106, 23.9777531 ], [ 120.707041, 23.9768586 ], [ 120.7095351, 23.9701464 ], [ 120.7112913, 23.9644271 ], [ 120.7126876, 23.9581792 ], [ 120.7134161, 23.9548354 ], [ 120.714589, 23.9497794 ], [ 120.7143632, 23.9474191 ], [ 120.7141155, 23.9443884 ], [ 120.7137294, 23.940316 ], [ 120.7136571, 23.9391839 ], [ 120.7136381, 23.9388865 ], [ 120.7136127, 23.9384883 ], [ 120.7135578, 23.9378394 ], [ 120.7132526, 23.9342341 ], [ 120.7132111, 23.9337439 ], [ 120.7146608, 23.9310265 ], [ 120.7151344, 23.9301815 ], [ 120.7170795, 23.9265243 ], [ 120.7175822, 23.9256792 ], [ 120.7190174, 23.9230711 ], [ 120.7208715, 23.9197179 ], [ 120.7227474, 23.9163251 ], [ 120.7244011, 23.9140667 ], [ 120.7257998, 23.9121361 ], [ 120.7281311, 23.9089525 ], [ 120.729151, 23.9075902 ], [ 120.7312054, 23.9047854 ], [ 120.7321962, 23.9034158 ], [ 120.7343436, 23.9014622 ], [ 120.7370133, 23.899029 ], [ 120.7385274, 23.8976361 ], [ 120.7425877, 23.8962847 ], [ 120.7474467, 23.8946247 ], [ 120.749525, 23.8936347 ], [ 120.7514272, 23.8927306 ], [ 120.7550667, 23.8909743 ], [ 120.7570875, 23.8900108 ], [ 120.7606895, 23.8882661 ], [ 120.7638177, 23.8870381 ], [ 120.7659469, 23.886113 ], [ 120.7690475, 23.8846984 ], [ 120.7708518, 23.8838899 ], [ 120.7740215, 23.8824766 ], [ 120.7777302, 23.8807908 ], [ 120.7799795, 23.8797777 ], [ 120.7816537, 23.8780599 ], [ 120.7828509, 23.8768551 ], [ 120.7837471, 23.8748973 ], [ 120.7845724, 23.8732419 ], [ 120.7853779, 23.8716133 ], [ 120.7868041, 23.8692535 ], [ 120.7885022, 23.8664711 ], [ 120.7901346, 23.8638168 ], [ 120.7920523, 23.8606776 ], [ 120.7949039, 23.8560523 ], [ 120.7977319, 23.8514488 ], [ 120.7993703, 23.8497008 ], [ 120.8002558, 23.8487855 ], [ 120.8027018, 23.8462529 ], [ 120.8037326, 23.8451655 ], [ 120.8064779, 23.8426862 ], [ 120.8118689, 23.8377123 ], [ 120.8161367, 23.8356447 ], [ 120.819648, 23.8339258 ], [ 120.8244679, 23.8323456 ], [ 120.8255583, 23.8319576 ], [ 120.8340644, 23.8298885 ], [ 120.8375981, 23.8281708 ], [ 120.8398906, 23.8270565 ], [ 120.8414769, 23.8264478 ], [ 120.8445698, 23.825467 ], [ 120.8505004, 23.8233294 ], [ 120.8521432, 23.8228288 ], [ 120.8545846, 23.8213088 ], [ 120.8546451, 23.8212734 ], [ 120.8555766, 23.8207283 ], [ 120.8570078, 23.8192613 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445383", "name": "中寮南~龍崎南線;中寮南~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7699165, 23.890233 ], [ 120.7694685, 23.889956 ], [ 120.7706988, 23.8857245 ], [ 120.7714919, 23.8844759 ], [ 120.7726712, 23.8838251 ], [ 120.778171, 23.8811394 ], [ 120.7820881, 23.8792032 ], [ 120.7822459, 23.8737582 ], [ 120.7841353, 23.8677006 ], [ 120.7858304, 23.865397 ], [ 120.7881946, 23.8619151 ], [ 120.7901608, 23.858904 ], [ 120.7912578, 23.8566222 ], [ 120.7931805, 23.8531063 ], [ 120.7942412, 23.8519016 ], [ 120.7955725, 23.8495656 ], [ 120.797533, 23.8461658 ], [ 120.8003165, 23.8447183 ], [ 120.8021821, 23.8435493 ], [ 120.803375, 23.8427852 ], [ 120.8054383, 23.8414553 ], [ 120.8072117, 23.8398763 ], [ 120.80976, 23.8376074 ], [ 120.8107843, 23.8366689 ], [ 120.813585, 23.8341285 ], [ 120.8143396, 23.8299166 ], [ 120.8150063, 23.8268764 ], [ 120.8155074, 23.8242522 ], [ 120.8158015, 23.82279 ], [ 120.815848, 23.8225588 ], [ 120.8179903, 23.8167844 ], [ 120.8191527, 23.813677 ], [ 120.819851, 23.8085544 ], [ 120.8205078, 23.8035981 ], [ 120.8191036, 23.8010626 ], [ 120.8193076, 23.7995699 ], [ 120.8195804, 23.7977339 ], [ 120.8189409, 23.7946927 ], [ 120.8174282, 23.7926833 ], [ 120.8140207, 23.7892315 ], [ 120.8088146, 23.7865406 ], [ 120.8064206, 23.7858799 ], [ 120.7986752, 23.7817486 ], [ 120.7945158, 23.7805311 ], [ 120.7921372, 23.7802158 ], [ 120.7873274, 23.777249 ], [ 120.7805259, 23.7730574 ], [ 120.7774339, 23.7720031 ], [ 120.7733094, 23.773309 ], [ 120.7684736, 23.7769261 ], [ 120.7670098, 23.7793604 ], [ 120.762909, 23.7821424 ], [ 120.7600447, 23.7838404 ], [ 120.7542211, 23.7834451 ], [ 120.7497319, 23.780281 ], [ 120.744523, 23.7753915 ], [ 120.7408849, 23.7729152 ], [ 120.7332409, 23.7731732 ], [ 120.7287395, 23.7692702 ], [ 120.7296988, 23.7640172 ], [ 120.7315966, 23.7589067 ], [ 120.7334587, 23.7538624 ], [ 120.7312997, 23.7512631 ], [ 120.7302244, 23.748716 ], [ 120.7286527, 23.7462929 ], [ 120.7256651, 23.7436839 ], [ 120.7237146, 23.7428652 ], [ 120.7215631, 23.7361382 ], [ 120.720243, 23.7290775 ], [ 120.717386, 23.7246121 ], [ 120.7155754, 23.7171012 ], [ 120.7110457, 23.7141553 ], [ 120.7095399, 23.7130184 ], [ 120.7063093, 23.7054829 ], [ 120.7047422, 23.7041811 ], [ 120.7014533, 23.6999401 ], [ 120.6969829, 23.6942147 ], [ 120.6957153, 23.691411 ], [ 120.6917898, 23.6882113 ], [ 120.6903754, 23.6862376 ], [ 120.689224, 23.6807927 ], [ 120.68488, 23.6788913 ], [ 120.6834776, 23.6759038 ], [ 120.6813436, 23.6724188 ], [ 120.6807819, 23.6717109 ], [ 120.6785672, 23.669285 ], [ 120.6750972, 23.6648464 ], [ 120.6735423, 23.6629334 ], [ 120.6729082, 23.6599248 ], [ 120.6731782, 23.6573786 ], [ 120.6723804, 23.6555117 ], [ 120.6673994, 23.6507228 ], [ 120.663865, 23.6450118 ], [ 120.6615584, 23.642873 ], [ 120.6558308, 23.6390385 ], [ 120.6544308, 23.6382684 ], [ 120.6523117, 23.6371242 ], [ 120.6501419, 23.6355932 ], [ 120.6465269, 23.6312453 ], [ 120.6439669, 23.6279582 ], [ 120.641313, 23.6257619 ], [ 120.637715, 23.622092 ], [ 120.6362409, 23.6170037 ], [ 120.6354067, 23.6153864 ], [ 120.6320241, 23.609917 ], [ 120.6286415, 23.6046946 ], [ 120.6233846, 23.5993057 ], [ 120.6222294, 23.5988952 ], [ 120.6171211, 23.5969158 ], [ 120.609669, 23.5907454 ], [ 120.6083071, 23.5890306 ], [ 120.6057019, 23.5842775 ], [ 120.6052467, 23.5836187 ], [ 120.6037872, 23.5814646 ], [ 120.6020129, 23.5792558 ], [ 120.6002142, 23.5747487 ], [ 120.5986173, 23.5701683 ], [ 120.5950027, 23.5671408 ], [ 120.5950525, 23.5621834 ], [ 120.5938597, 23.5609971 ], [ 120.5909585, 23.5575483 ], [ 120.5897881, 23.5517089 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445387", "name": "天輪~龍崎線", "power": "cable", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2", "location": "ground" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7691917, 23.8895844 ], [ 120.7693294, 23.8895974 ], [ 120.769302, 23.8897204 ], [ 120.7693668, 23.8897593 ], [ 120.7697149, 23.8897852 ], [ 120.7698141, 23.8898166 ], [ 120.7709333, 23.8904754 ], [ 120.7712713, 23.8907104 ], [ 120.771759, 23.8912748 ], [ 120.7718177, 23.8912766 ], [ 120.7718541, 23.8912581 ], [ 120.7719047, 23.8911767 ], [ 120.7719692, 23.8912104 ], [ 120.7720246, 23.8912483 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199445394", "name": "中寮超高壓開閉所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.768196, 23.8934525 ], [ 120.7678141, 23.8932187 ], [ 120.7676122, 23.8934284 ], [ 120.7674343, 23.8933279 ], [ 120.7675484, 23.8928425 ], [ 120.7673848, 23.8925638 ], [ 120.7672375, 23.8924884 ], [ 120.7672419, 23.8924338 ], [ 120.7670518, 23.8923336 ], [ 120.7675645, 23.8916502 ], [ 120.767601, 23.8916476 ], [ 120.7675896, 23.891378 ], [ 120.767929, 23.8913667 ], [ 120.7679358, 23.8915115 ], [ 120.7679744, 23.8914687 ], [ 120.7682843, 23.8908494 ], [ 120.7682907, 23.8906928 ], [ 120.7688081, 23.8900583 ], [ 120.7688407, 23.8898054 ], [ 120.7694259, 23.8889382 ], [ 120.7699616, 23.889254 ], [ 120.7707521, 23.8897494 ], [ 120.7709633, 23.8898514 ], [ 120.7726782, 23.890802 ], [ 120.7727075, 23.8907589 ], [ 120.7728313, 23.8905831 ], [ 120.773007, 23.8906866 ], [ 120.7728981, 23.8908315 ], [ 120.7735317, 23.891182 ], [ 120.774019, 23.8918766 ], [ 120.7727819, 23.8936549 ], [ 120.7704369, 23.893295 ], [ 120.7702921, 23.8934816 ], [ 120.768956, 23.8931026 ], [ 120.7688279, 23.8932932 ], [ 120.7684354, 23.8933483 ], [ 120.768196, 23.8934525 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199638723", "name": "核三~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4976326, 22.8186099 ], [ 120.4975846, 22.8181167 ], [ 120.4965825, 22.8149934 ], [ 120.4973818, 22.8122684 ], [ 120.4982026, 22.8098553 ], [ 120.4993076, 22.8065274 ], [ 120.5017377, 22.8044208 ], [ 120.5031807, 22.8031697 ], [ 120.5038298, 22.8017257 ], [ 120.5054499, 22.7982541 ], [ 120.5071182, 22.7946143 ], [ 120.5087919, 22.7911475 ], [ 120.5104173, 22.7877993 ], [ 120.5119827, 22.7845521 ], [ 120.5148044, 22.783563 ], [ 120.5172827, 22.7826431 ], [ 120.5200947, 22.7816118 ], [ 120.5224551, 22.780771 ], [ 120.5253937, 22.7797744 ], [ 120.5285705, 22.7787728 ], [ 120.5314673, 22.7779023 ], [ 120.5345143, 22.7769428 ], [ 120.5369594, 22.7762034 ], [ 120.540104, 22.7752116 ], [ 120.543033, 22.774351 ], [ 120.5460575, 22.7733642 ], [ 120.5482569, 22.7725135 ], [ 120.5504895, 22.7716702 ], [ 120.5531385, 22.7706636 ], [ 120.5558207, 22.7696446 ], [ 120.5587185, 22.7684946 ], [ 120.5617645, 22.7673297 ], [ 120.5645325, 22.7662217 ], [ 120.5675698, 22.7650914 ], [ 120.5708196, 22.7638375 ], [ 120.5733205, 22.7628358 ], [ 120.5792632, 22.7605628 ], [ 120.5823003, 22.7593289 ], [ 120.5837218, 22.7564944 ], [ 120.5850468, 22.7540506 ], [ 120.5863021, 22.7516167 ], [ 120.5877666, 22.7487523 ], [ 120.5891828, 22.7460809 ], [ 120.5907385, 22.7430779 ], [ 120.5919348, 22.7408367 ], [ 120.5931471, 22.7385312 ], [ 120.5945204, 22.7358595 ], [ 120.5958991, 22.7332175 ], [ 120.5973475, 22.7304468 ], [ 120.5987207, 22.7276958 ], [ 120.6001477, 22.7250338 ], [ 120.6016873, 22.7221046 ], [ 120.6032751, 22.719774 ], [ 120.6052492, 22.7170871 ], [ 120.6073575, 22.7140934 ], [ 120.6090258, 22.7117825 ], [ 120.6109302, 22.7090806 ], [ 120.6127809, 22.7064776 ], [ 120.6144707, 22.7039686 ], [ 120.6158332, 22.7019298 ], [ 120.6175284, 22.6993712 ], [ 120.6192504, 22.6967631 ], [ 120.6208919, 22.6942836 ], [ 120.6226514, 22.6916309 ], [ 120.6243251, 22.6891167 ], [ 120.6255375, 22.6857214 ], [ 120.6263529, 22.6834447 ], [ 120.6274097, 22.6804849 ], [ 120.6283699, 22.6778566 ], [ 120.6292228, 22.6754956 ], [ 120.62874, 22.6724069 ], [ 120.6283323, 22.6694865 ], [ 120.6278495, 22.6661353 ], [ 120.6261973, 22.6639325 ], [ 120.6242768, 22.6614475 ], [ 120.6223564, 22.658903 ], [ 120.621836, 22.656106 ], [ 120.6212674, 22.653309 ], [ 120.6206237, 22.6502346 ], [ 120.6201731, 22.6477296 ], [ 120.6214884, 22.641409 ], [ 120.6223615, 22.6375997 ], [ 120.6229623, 22.6343022 ], [ 120.6237669, 22.6306184 ], [ 120.6242605, 22.6280833 ], [ 120.624754, 22.6257164 ], [ 120.6253441, 22.6229733 ], [ 120.6260307, 22.6197844 ], [ 120.626631, 22.6168256 ], [ 120.6265135, 22.6134955 ], [ 120.6263521, 22.6098532 ], [ 120.6262877, 22.6072979 ], [ 120.6260838, 22.5994459 ], [ 120.6264754, 22.5952288 ], [ 120.6266749, 22.5931218 ], [ 120.6271282, 22.590061 ], [ 120.6276047, 22.5868437 ], [ 120.6280455, 22.5838772 ], [ 120.6285201, 22.5806254 ], [ 120.6290619, 22.5771036 ], [ 120.629534, 22.5738294 ], [ 120.6304084, 22.5683805 ], [ 120.6308858, 22.5656412 ], [ 120.6316575, 22.5610908 ], [ 120.6321295, 22.5582423 ], [ 120.6324415, 22.5562981 ], [ 120.6332944, 22.5511111 ], [ 120.6337397, 22.5485844 ], [ 120.6341044, 22.5464788 ], [ 120.6347106, 22.5426936 ], [ 120.6351122, 22.5401195 ], [ 120.6356333, 22.5371791 ], [ 120.6363821, 22.532684 ], [ 120.636438, 22.5323481 ], [ 120.6372051, 22.5276558 ], [ 120.6383531, 22.5206491 ], [ 120.637189, 22.5154806 ], [ 120.6368135, 22.5130276 ], [ 120.6366043, 22.5114715 ], [ 120.6359874, 22.5076655 ], [ 120.6357674, 22.5035719 ], [ 120.6356226, 22.5010047 ], [ 120.6354616, 22.4975305 ], [ 120.6353436, 22.4952655 ], [ 120.63529, 22.4945766 ], [ 120.6349359, 22.4876277 ], [ 120.6346409, 22.4816401 ], [ 120.6345561, 22.4744581 ], [ 120.634462, 22.4705127 ], [ 120.63531, 22.4676384 ], [ 120.6362012, 22.4644759 ], [ 120.6371306, 22.4613264 ], [ 120.6375948, 22.4597111 ], [ 120.6381074, 22.4579832 ], [ 120.6395489, 22.4531551 ], [ 120.6410812, 22.4478586 ], [ 120.6415571, 22.4463077 ], [ 120.6419462, 22.4449297 ], [ 120.6428796, 22.4417425 ], [ 120.6439033, 22.4380336 ], [ 120.6454516, 22.4328705 ], [ 120.6459616, 22.4308648 ], [ 120.6475292, 22.4259326 ], [ 120.6484183, 22.4229806 ], [ 120.6498487, 22.4181085 ], [ 120.6512172, 22.4132701 ], [ 120.6514009, 22.4126261 ], [ 120.6523668, 22.4094476 ], [ 120.6531741, 22.4066565 ], [ 120.6548898, 22.4009507 ], [ 120.6554714, 22.3970052 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199653713", "name": "瀰力~旗山線", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4959192, 22.8201675 ], [ 120.4956276, 22.823196 ], [ 120.4953755, 22.8246447 ], [ 120.4943455, 22.8276113 ], [ 120.4934175, 22.8305185 ], [ 120.4926611, 22.8325407 ], [ 120.4945384, 22.8355124 ], [ 120.4947533, 22.8385277 ], [ 120.4950912, 22.8407427 ], [ 120.4955365, 22.843002 ], [ 120.4951883, 22.8456946 ], [ 120.4941793, 22.848964 ], [ 120.4942812, 22.8514357 ], [ 120.4945178, 22.8540836 ], [ 120.4942276, 22.855598 ], [ 120.4926558, 22.8584107 ], [ 120.4916044, 22.8597997 ], [ 120.4906661, 22.8616121 ], [ 120.4893781, 22.8636303 ], [ 120.4864956, 22.8634765 ], [ 120.4836629, 22.8630872 ], [ 120.4816094, 22.8650299 ], [ 120.4781397, 22.8653111 ], [ 120.4753341, 22.8652419 ], [ 120.4722834, 22.8671798 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199658263", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5830238, 22.5467815 ], [ 120.5827841, 22.5471719 ], [ 120.5803146, 22.5464915 ], [ 120.5780144, 22.545825 ], [ 120.576789, 22.5450423 ], [ 120.5776285, 22.5431863 ], [ 120.5801275, 22.5421513 ], [ 120.5828126, 22.5409582 ], [ 120.5854699, 22.5398055 ], [ 120.5881207, 22.5387013 ], [ 120.5907872, 22.5375243 ], [ 120.593515, 22.5363021 ], [ 120.5961195, 22.5351537 ], [ 120.5987401, 22.5340126 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199658264", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5578042, 22.5391019 ], [ 120.5597978, 22.5375502 ], [ 120.5626343, 22.5364251 ], [ 120.5642679, 22.5344461 ], [ 120.5682793, 22.5338885 ], [ 120.5715667, 22.5354347 ], [ 120.5742726, 22.5361322 ], [ 120.5776939, 22.539163 ], [ 120.5805346, 22.5416926 ], [ 120.58315, 22.5440621 ], [ 120.5844887, 22.5461983 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199658265", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5755216, 22.5446223 ], [ 120.5777717, 22.5461309 ], [ 120.580425, 22.5467304 ], [ 120.5828363, 22.5472755 ], [ 120.5831355, 22.5470241 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199658266", "operator": "台灣電力股份有限公司", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5832485, 22.5472187 ], [ 120.5828717, 22.5473925 ], [ 120.5802974, 22.5469687 ], [ 120.5773705, 22.5464681 ], [ 120.5755216, 22.5446223 ], [ 120.5735405, 22.5428523 ], [ 120.571465, 22.541498 ], [ 120.5694352, 22.5401907 ], [ 120.5675174, 22.5401498 ], [ 120.5657251, 22.5400959 ], [ 120.5640171, 22.539909 ], [ 120.5628602, 22.5398067 ], [ 120.5608916, 22.5397415 ], [ 120.5580693, 22.5396246 ], [ 120.5537644, 22.5395377 ], [ 120.5528791, 22.53949 ], [ 120.5519205, 22.5394712 ], [ 120.5507806, 22.5394153 ], [ 120.5496834, 22.5393622 ], [ 120.5490211, 22.5391369 ], [ 120.54841, 22.5388983 ], [ 120.5476875, 22.5386243 ], [ 120.5468623, 22.5383026 ], [ 120.5460065, 22.537988 ], [ 120.5450449, 22.5376227 ], [ 120.5440832, 22.5372647 ], [ 120.5429128, 22.5368298 ], [ 120.5423129, 22.5365944 ], [ 120.5416069, 22.5363298 ], [ 120.541016, 22.5361069 ], [ 120.5403183, 22.5358452 ], [ 120.5388625, 22.5352775 ], [ 120.5377948, 22.5352587 ], [ 120.537099, 22.5352754 ], [ 120.5368953, 22.5346583 ], [ 120.5367165, 22.5339368 ], [ 120.535851, 22.5340547 ], [ 120.5350822, 22.5341875 ], [ 120.5344069, 22.5338988 ], [ 120.5332107, 22.5340952 ], [ 120.5310314, 22.5342333 ], [ 120.5299589, 22.5341545 ], [ 120.5284919, 22.5340891 ], [ 120.5271506, 22.5340564 ], [ 120.5264657, 22.5340057 ], [ 120.5248943, 22.5340401 ], [ 120.5248253, 22.53345 ], [ 120.5246484, 22.5334337 ], [ 120.5242512, 22.5323695 ], [ 120.5237407, 22.5311438 ], [ 120.52292, 22.529417 ], [ 120.5230384, 22.5279316 ], [ 120.5231092, 22.5266436 ], [ 120.5231516, 22.5254961 ], [ 120.5232241, 22.5242634 ], [ 120.5233081, 22.5228541 ], [ 120.5233645, 22.5218517 ], [ 120.5233972, 22.5217458 ], [ 120.5230115, 22.5213637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199658618", "operator": "台灣電力股份有限公司", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5845868, 22.5465575 ], [ 120.5877827, 22.5451715 ], [ 120.5910439, 22.5437523 ], [ 120.5941128, 22.5424168 ], [ 120.5973684, 22.5409968 ], [ 120.6005323, 22.5396173 ], [ 120.6040954, 22.5380636 ], [ 120.6073537, 22.5366243 ], [ 120.6114017, 22.5348728 ], [ 120.6146799, 22.5334587 ], [ 120.6172334, 22.5305253 ], [ 120.6205856, 22.5266277 ], [ 120.6225871, 22.5242023 ], [ 120.6246043, 22.5218836 ], [ 120.6262148, 22.5200494 ], [ 120.6289665, 22.5163677 ], [ 120.6289557, 22.5137328 ], [ 120.6286478, 22.5107443 ], [ 120.6284725, 22.508613 ], [ 120.6284541, 22.5083127 ], [ 120.6278267, 22.502131 ], [ 120.6274443, 22.4983309 ], [ 120.6271178, 22.4951185 ], [ 120.626815, 22.4920199 ], [ 120.6261472, 22.4859602 ], [ 120.6256236, 22.4809554 ], [ 120.6248013, 22.4733669 ], [ 120.6245572, 22.4708902 ], [ 120.6243775, 22.4691928 ], [ 120.6239765, 22.4653964 ], [ 120.6232979, 22.4589492 ], [ 120.6217288, 22.4545221 ], [ 120.6203701, 22.4506928 ], [ 120.6193625, 22.4478308 ], [ 120.6200645, 22.4432354 ], [ 120.6202643, 22.4412769 ], [ 120.6167754, 22.4370124 ], [ 120.6167542, 22.4348717 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199663856", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3623487, 22.9146124 ], [ 120.3636684, 22.910511 ], [ 120.3646169, 22.9075398 ], [ 120.3646592, 22.9063226 ], [ 120.3646846, 22.9036632 ], [ 120.3679686, 22.8931198 ], [ 120.3686082, 22.8904028 ], [ 120.3686241, 22.8889903 ], [ 120.368629, 22.8885601 ], [ 120.3686823, 22.883854 ], [ 120.3687356, 22.8826326 ], [ 120.368185, 22.879113 ], [ 120.3675004, 22.8765071 ], [ 120.3675124, 22.8744073 ], [ 120.3680544, 22.871372 ], [ 120.368279, 22.868883 ], [ 120.3687133, 22.8643244 ], [ 120.3687912, 22.8633393 ], [ 120.3688657, 22.8619395 ], [ 120.3691146, 22.8600554 ], [ 120.3696135, 22.8553286 ], [ 120.3696674, 22.8542315 ], [ 120.3698555, 22.8506885 ], [ 120.3700939, 22.846447 ], [ 120.3712526, 22.8431793 ], [ 120.3722146, 22.8405168 ], [ 120.3728941, 22.8386356 ], [ 120.3740212, 22.8354537 ], [ 120.3734796, 22.8321559 ], [ 120.3729327, 22.827992 ], [ 120.3726162, 22.825599 ], [ 120.3722192, 22.8223604 ], [ 120.371833, 22.8199673 ], [ 120.3716399, 22.8184592 ], [ 120.3711785, 22.8151562 ], [ 120.370964, 22.8136678 ], [ 120.3704436, 22.8098949 ], [ 120.3707247, 22.8071208 ], [ 120.3709863, 22.8045388 ], [ 120.3712594, 22.8017263 ], [ 120.3716018, 22.7983197 ], [ 120.3718355, 22.79525 ], [ 120.3712199, 22.7925324 ], [ 120.3691848, 22.7841123 ], [ 120.3684742, 22.7814244 ], [ 120.367396, 22.7769884 ], [ 120.3676878, 22.7738977 ], [ 120.3679932, 22.7706462 ], [ 120.3683248, 22.7673373 ], [ 120.3685851, 22.7645551 ], [ 120.3688339, 22.7618641 ], [ 120.369131, 22.7588694 ], [ 120.3694373, 22.7561337 ], [ 120.3688661, 22.7521512 ], [ 120.3683801, 22.749135 ], [ 120.3678665, 22.7456089 ], [ 120.3673252, 22.7420807 ], [ 120.366853, 22.738975 ], [ 120.3663601, 22.7358247 ], [ 120.3658857, 22.7326931 ], [ 120.3653571, 22.7296312 ], [ 120.3649362, 22.7267499 ], [ 120.3644542, 22.7236449 ], [ 120.3659005, 22.720497 ], [ 120.3667329, 22.7190909 ], [ 120.369236, 22.714183 ], [ 120.369784, 22.7131102 ], [ 120.370693, 22.7117633 ], [ 120.3713521, 22.7108328 ], [ 120.3727397, 22.7088737 ], [ 120.3741799, 22.7066066 ], [ 120.3749475, 22.7050233 ], [ 120.3733684, 22.7039601 ], [ 120.3731293, 22.7028239 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199663860", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3625871, 22.9191049 ], [ 120.3625962, 22.9184903 ], [ 120.3625204, 22.9178389 ], [ 120.3623487, 22.9146124 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199663865", "name": "龍崎南~瀰力線;中寮南~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.368301, 22.926833 ], [ 120.3702148, 22.9245423 ], [ 120.3735711, 22.9232096 ], [ 120.3753306, 22.9217027 ], [ 120.3754111, 22.9186591 ], [ 120.3750195, 22.9159959 ], [ 120.3759212, 22.9115373 ], [ 120.3779377, 22.9098291 ], [ 120.3805722, 22.9098523 ], [ 120.3832007, 22.9098128 ], [ 120.3881569, 22.9092856 ], [ 120.3907324, 22.9085725 ], [ 120.3937039, 22.9082933 ], [ 120.3960861, 22.9079054 ], [ 120.3996297, 22.9076007 ], [ 120.4010308, 22.9048138 ], [ 120.4021795, 22.9026591 ], [ 120.4049884, 22.8992298 ], [ 120.4059083, 22.8963135 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199672423", "name": "中寮南~龍崎南線;中寮南~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3671916, 22.9296987 ], [ 120.3677175, 22.9317199 ], [ 120.3690984, 22.9347815 ], [ 120.3707203, 22.9383057 ], [ 120.3731779, 22.9423471 ], [ 120.374519, 22.9475975 ], [ 120.3759654, 22.9497183 ], [ 120.3775108, 22.9528521 ], [ 120.3775894, 22.9546599 ], [ 120.3804739, 22.9580155 ], [ 120.3821363, 22.9620388 ], [ 120.3835763, 22.9662835 ], [ 120.3847882, 22.9697043 ], [ 120.3856412, 22.97289 ], [ 120.3859201, 22.975284 ], [ 120.3863354, 22.9779682 ], [ 120.3865769, 22.9800672 ], [ 120.3868289, 22.9821745 ], [ 120.3875262, 22.9843196 ], [ 120.3886, 22.9855603 ], [ 120.3892502, 22.9909502 ], [ 120.3899002, 22.9940299 ], [ 120.3912572, 22.9962473 ], [ 120.3928719, 22.9975924 ], [ 120.394405, 23.0006453 ], [ 120.3964942, 23.0026307 ], [ 120.39843, 23.0044378 ], [ 120.3997404, 23.0078621 ], [ 120.3999461, 23.0112187 ], [ 120.4024301, 23.0135195 ], [ 120.4064211, 23.0155666 ], [ 120.4080913, 23.0174174 ], [ 120.4125986, 23.0196713 ], [ 120.4143616, 23.0232986 ], [ 120.4147175, 23.0259629 ], [ 120.4170666, 23.0289867 ], [ 120.4180215, 23.0310535 ], [ 120.418397, 23.0342935 ], [ 120.4219471, 23.0362029 ], [ 120.4246005, 23.0382349 ], [ 120.4280383, 23.0409606 ], [ 120.4305786, 23.0415609 ], [ 120.4337323, 23.0407115 ], [ 120.4361009, 23.0413314 ], [ 120.4376593, 23.044153 ], [ 120.4366458, 23.0465866 ], [ 120.437456, 23.0488715 ], [ 120.4357654, 23.0511101 ], [ 120.4363557, 23.0543969 ], [ 120.4350924, 23.0557922 ], [ 120.4333841, 23.056549 ], [ 120.4324277, 23.0577342 ], [ 120.4325066, 23.0601284 ], [ 120.4325145, 23.0628771 ], [ 120.4337474, 23.065578 ], [ 120.4371889, 23.0679086 ], [ 120.440201, 23.0687419 ], [ 120.4431908, 23.0681523 ], [ 120.4454283, 23.070506 ], [ 120.4473769, 23.0736877 ], [ 120.4501746, 23.0759955 ], [ 120.4521183, 23.0776668 ], [ 120.4538907, 23.0791747 ], [ 120.4566307, 23.0804561 ], [ 120.4580789, 23.08268 ], [ 120.4594235, 23.0844138 ], [ 120.4602982, 23.0866529 ], [ 120.4609359, 23.0883321 ], [ 120.4631654, 23.0912982 ], [ 120.4659809, 23.093398 ], [ 120.4694051, 23.0956234 ], [ 120.4712363, 23.0974268 ], [ 120.4743456, 23.0999362 ], [ 120.4765694, 23.1017962 ], [ 120.4798978, 23.1040923 ], [ 120.4832136, 23.1064064 ], [ 120.4844958, 23.1074246 ], [ 120.4867812, 23.1094817 ], [ 120.4919234, 23.1129509 ], [ 120.4950066, 23.1137262 ], [ 120.4979121, 23.1166842 ], [ 120.5006296, 23.1210191 ], [ 120.5017192, 23.1233702 ], [ 120.5034794, 23.1273592 ], [ 120.5054962, 23.131353 ], [ 120.5073402, 23.1349612 ], [ 120.5094095, 23.1392244 ], [ 120.5101605, 23.1443632 ], [ 120.5102001, 23.1462574 ], [ 120.5103744, 23.1500965 ], [ 120.5113727, 23.1553634 ], [ 120.5121657, 23.1620728 ], [ 120.512429, 23.1645091 ], [ 120.5129022, 23.1689084 ], [ 120.5131237, 23.1709678 ], [ 120.5146811, 23.176561 ], [ 120.5138856, 23.1817729 ], [ 120.5126755, 23.1842139 ], [ 120.5115775, 23.1867888 ], [ 120.5085665, 23.1921497 ], [ 120.5047416, 23.1954633 ], [ 120.5019468, 23.1973231 ], [ 120.5008149, 23.198546 ], [ 120.4982722, 23.200676 ], [ 120.4950481, 23.203229 ], [ 120.4933637, 23.2048768 ], [ 120.4899895, 23.207696 ], [ 120.486626, 23.211305 ], [ 120.4845875, 23.2135196 ], [ 120.4835522, 23.2145589 ], [ 120.4789978, 23.2197906 ], [ 120.4788101, 23.2217369 ], [ 120.4777962, 23.227273 ], [ 120.4775601, 23.2304525 ], [ 120.4771578, 23.2349728 ], [ 120.480591, 23.2400894 ], [ 120.4807949, 23.2432686 ], [ 120.477823, 23.2492582 ], [ 120.4786062, 23.2517167 ], [ 120.4810309, 23.2571973 ], [ 120.4822111, 23.2602727 ], [ 120.4862022, 23.2635057 ], [ 120.4862022, 23.265063 ], [ 120.4852152, 23.2688872 ], [ 120.4883694, 23.2747614 ], [ 120.4884231, 23.2784533 ], [ 120.4895282, 23.2808915 ], [ 120.490129, 23.282291 ], [ 120.4940665, 23.2894515 ], [ 120.4966521, 23.2937619 ], [ 120.4998059, 23.298359 ], [ 120.5026066, 23.3037991 ], [ 120.5068016, 23.3096855 ], [ 120.5073595, 23.3104935 ], [ 120.510149, 23.3152426 ], [ 120.5125844, 23.3185196 ], [ 120.5142367, 23.321495 ], [ 120.5157923, 23.3244053 ], [ 120.5186677, 23.3284052 ], [ 120.5210066, 23.3312227 ], [ 120.5268001, 23.3366006 ], [ 120.5306089, 23.3414936 ], [ 120.5345356, 23.3443503 ], [ 120.539546, 23.3472 ], [ 120.5413055, 23.3499778 ], [ 120.5427432, 23.3513371 ], [ 120.5457687, 23.3518296 ], [ 120.5498972, 23.354952 ], [ 120.5500603, 23.3575986 ], [ 120.5504465, 23.3618767 ], [ 120.5529785, 23.3658164 ], [ 120.552721, 23.372254 ], [ 120.5567336, 23.3760195 ], [ 120.5588364, 23.3798273 ], [ 120.5598879, 23.3858181 ], [ 120.5619156, 23.3894484 ], [ 120.5639426, 23.3938269 ], [ 120.5669513, 23.4006515 ], [ 120.5682828, 23.4050819 ], [ 120.5712308, 23.4079878 ], [ 120.5723762, 23.4089051 ], [ 120.5754018, 23.4117933 ], [ 120.5766463, 23.4126794 ], [ 120.5808949, 23.4162926 ], [ 120.5826974, 23.4185043 ], [ 120.5841887, 23.4205423 ], [ 120.5860555, 23.4214381 ], [ 120.5876344, 23.4257804 ], [ 120.5886841, 23.4276338 ], [ 120.5899608, 23.4305084 ], [ 120.5913341, 23.4339996 ], [ 120.5923426, 23.4361686 ], [ 120.5928576, 23.4372579 ], [ 120.5944884, 23.4412051 ], [ 120.5959904, 23.4462251 ], [ 120.5979697, 23.4500808 ], [ 120.5940056, 23.4555299 ], [ 120.5922804, 23.4578075 ], [ 120.5876112, 23.4646339 ], [ 120.5871713, 23.4661593 ], [ 120.5850792, 23.4717295 ], [ 120.5836201, 23.4742685 ], [ 120.5828798, 23.4776931 ], [ 120.5814421, 23.4795628 ], [ 120.5790517, 23.486937 ], [ 120.5815709, 23.4888125 ], [ 120.5820751, 23.4913118 ], [ 120.5843818, 23.4995277 ], [ 120.5843496, 23.5020464 ], [ 120.5843925, 23.5054113 ], [ 120.5840637, 23.5103444 ], [ 120.5841938, 23.5114518 ], [ 120.5856598, 23.5219997 ], [ 120.5860983, 23.5270796 ], [ 120.5863423, 23.5292808 ], [ 120.5869463, 23.5321222 ], [ 120.5879065, 23.5378 ], [ 120.5880646, 23.5401326 ], [ 120.588462, 23.5414659 ], [ 120.5887579, 23.5446423 ], [ 120.5889753, 23.5459126 ], [ 120.5903618, 23.5499652 ], [ 120.5897881, 23.5517089 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199672430", "name": "天輪~龍崎線", "power": "line", "wires": "double", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4267132, 23.0651289 ], [ 120.4271012, 23.0625515 ], [ 120.4273195, 23.0580576 ], [ 120.4260875, 23.0558084 ], [ 120.4246276, 23.0531262 ], [ 120.4234442, 23.050926 ], [ 120.4222801, 23.0488106 ], [ 120.4210191, 23.0463648 ], [ 120.4201945, 23.0442671 ], [ 120.4194185, 23.0423926 ], [ 120.4183959, 23.0397217 ], [ 120.4174152, 23.037308 ], [ 120.4159911, 23.0336623 ], [ 120.4143601, 23.0313183 ], [ 120.4129286, 23.0293588 ], [ 120.4118442, 23.0278351 ], [ 120.4104169, 23.025925 ], [ 120.4084668, 23.0222203 ], [ 120.4069458, 23.0189714 ], [ 120.4062828, 23.0178709 ], [ 120.4029686, 23.0160942 ], [ 120.4005862, 23.0148685 ], [ 120.3969179, 23.0129794 ], [ 120.3932058, 23.0111498 ], [ 120.3916671, 23.0096933 ], [ 120.3895391, 23.0079292 ], [ 120.3863175, 23.0028468 ], [ 120.384013, 22.9991719 ], [ 120.381866, 22.9948152 ], [ 120.3804462, 22.9918601 ], [ 120.3789303, 22.9890691 ], [ 120.3770028, 22.9851541 ], [ 120.3755878, 22.9814922 ], [ 120.3742169, 22.9779679 ], [ 120.373281, 22.9752851 ], [ 120.3729767, 22.9735141 ], [ 120.3727854, 22.972283 ], [ 120.3721261, 22.9687124 ], [ 120.3716938, 22.9662847 ], [ 120.3712092, 22.963793 ], [ 120.3707987, 22.9612183 ], [ 120.3703141, 22.9585087 ], [ 120.3699443, 22.9541745 ], [ 120.3693594, 22.9501177 ], [ 120.3683871, 22.9428674 ], [ 120.3680292, 22.9402041 ], [ 120.3676388, 22.9369522 ], [ 120.3673088, 22.9344065 ], [ 120.3666427, 22.9290742 ], [ 120.3664902, 22.9277734 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199672439", "name": "中寮南~龍崎南線;龍崎南~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.36744, 22.9270548 ], [ 120.3671738, 22.9262937 ], [ 120.3681826, 22.9235877 ], [ 120.3686278, 22.9226601 ], [ 120.3697416, 22.9204018 ], [ 120.3683556, 22.9183077 ], [ 120.3670751, 22.9180749 ], [ 120.3655683, 22.9186822 ], [ 120.3644462, 22.9192088 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199783876", "name": "中火南~中寮線(一進一出全興)", "power": "line", "wires": "quad", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7684183, 23.8915165 ], [ 120.7673281, 23.8931325 ], [ 120.766047, 23.8961925 ], [ 120.7637138, 23.8992889 ], [ 120.7608339, 23.9030764 ], [ 120.7596079, 23.9047377 ], [ 120.7543816, 23.9086056 ], [ 120.7530412, 23.9096783 ], [ 120.7513577, 23.9109548 ], [ 120.7486823, 23.9129981 ], [ 120.7450032, 23.9157446 ], [ 120.7418488, 23.9180758 ], [ 120.7369383, 23.9217552 ], [ 120.7343653, 23.9287808 ], [ 120.733608, 23.930852 ], [ 120.7317956, 23.9358843 ], [ 120.7309288, 23.9379737 ], [ 120.7304361, 23.9392511 ], [ 120.7285662, 23.9438114 ], [ 120.726579, 23.948702 ], [ 120.7255298, 23.9512978 ], [ 120.7244485, 23.9539529 ], [ 120.7228381, 23.9579813 ], [ 120.7200891, 23.9646829 ], [ 120.7189504, 23.9675153 ], [ 120.7186829, 23.9681835 ], [ 120.7186391, 23.9682928 ], [ 120.7173346, 23.9715512 ], [ 120.7160112, 23.9764922 ], [ 120.7134952, 23.9862391 ], [ 120.7127637, 23.9890684 ], [ 120.7108372, 23.9929341 ], [ 120.7084958, 23.9976575 ], [ 120.7076372, 23.9993528 ], [ 120.7065999, 24.0015127 ], [ 120.7044688, 24.0059178 ], [ 120.7026329, 24.0066466 ], [ 120.702055, 24.0070538 ], [ 120.6979761, 24.0099276 ], [ 120.6951609, 24.0110445 ], [ 120.6916652, 24.0124179 ], [ 120.688151, 24.0139226 ], [ 120.6835618, 24.0158726 ], [ 120.6804257, 24.0172779 ], [ 120.6763902, 24.0196588 ], [ 120.6731149, 24.0215741 ], [ 120.6696198, 24.0235804 ], [ 120.6665907, 24.0253643 ], [ 120.6641488, 24.0267816 ], [ 120.6608543, 24.0287255 ], [ 120.6587134, 24.0314594 ], [ 120.6564852, 24.0342111 ], [ 120.6537068, 24.0376453 ], [ 120.6513534, 24.0405551 ], [ 120.6495228, 24.0428 ], [ 120.647186, 24.0456957 ], [ 120.6448828, 24.0488201 ], [ 120.6427103, 24.0520195 ], [ 120.6398807, 24.0557574 ], [ 120.6376781, 24.0588526 ], [ 120.6357824, 24.0615033 ], [ 120.6334193, 24.0646527 ], [ 120.6310957, 24.0679042 ], [ 120.6285023, 24.0714861 ], [ 120.6263564, 24.0746714 ], [ 120.6246779, 24.0786017 ], [ 120.6233335, 24.0816816 ], [ 120.6221091, 24.0847529 ], [ 120.6207094, 24.08811 ], [ 120.619343, 24.0915716 ], [ 120.6150089, 24.0939753 ], [ 120.6118614, 24.0957531 ], [ 120.6078729, 24.0981861 ], [ 120.6012681, 24.0991386 ], [ 120.5971875, 24.0997144 ], [ 120.5932291, 24.1002876 ], [ 120.5894572, 24.1008388 ], [ 120.5853969, 24.1023033 ], [ 120.5822818, 24.103427 ], [ 120.5786921, 24.104717 ], [ 120.5751301, 24.1059887 ], [ 120.5714176, 24.1073052 ], [ 120.5682233, 24.1077511 ], [ 120.5650735, 24.1081777 ], [ 120.5617718, 24.1086499 ], [ 120.558064, 24.1096712 ], [ 120.5546554, 24.1106509 ], [ 120.5510784, 24.1116553 ], [ 120.5473043, 24.1127319 ], [ 120.5444264, 24.1145198 ], [ 120.5415986, 24.1171031 ], [ 120.5386629, 24.1198034 ], [ 120.5356378, 24.1223401 ], [ 120.5326507, 24.1248737 ], [ 120.5311847, 24.1266742 ], [ 120.5291597, 24.129144 ], [ 120.5272113, 24.1316 ], [ 120.526055, 24.1347526 ], [ 120.525117, 24.1373156 ], [ 120.5239657, 24.1405012 ], [ 120.5226854, 24.143882 ], [ 120.5214351, 24.1472769 ], [ 120.5200112, 24.1502669 ], [ 120.5185994, 24.1532097 ], [ 120.5179487, 24.1572825 ], [ 120.5157194, 24.1598556 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "199794806", "power": "line", "wires": "double", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7063515, 24.9354456 ], [ 121.7066224, 24.9363251 ], [ 121.7044923, 24.9389038 ], [ 121.7016409, 24.9416079 ], [ 121.6962987, 24.9421048 ], [ 121.6931584, 24.9403106 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "201258264", "name": "龍崎超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "alt_name": "龍崎E/S", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:wikipedia": "en:Taiwan Power Company", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3643763, 22.9211938 ], [ 120.3653875, 22.9212086 ], [ 120.3653888, 22.9195697 ], [ 120.3644701, 22.9195712 ], [ 120.3643452, 22.9195535 ], [ 120.364261, 22.9195485 ], [ 120.3642546, 22.9186132 ], [ 120.364092, 22.9184714 ], [ 120.3640924, 22.9184343 ], [ 120.3640946, 22.9182533 ], [ 120.3624666, 22.9182762 ], [ 120.3624558, 22.9182145 ], [ 120.3610558, 22.9182311 ], [ 120.3609195, 22.9183576 ], [ 120.3609083, 22.922207 ], [ 120.3609751, 22.9222931 ], [ 120.3641811, 22.9223083 ], [ 120.3641899, 22.9218654 ], [ 120.3642832, 22.9217323 ], [ 120.364269, 22.9211914 ], [ 120.3643763, 22.9211938 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "201818138", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8299602, 24.6032369 ], [ 120.8310633, 24.6029884 ], [ 120.8352037, 24.6035616 ], [ 120.8375028, 24.6039115 ], [ 120.8412866, 24.6049044 ], [ 120.8437375, 24.605628 ], [ 120.8468125, 24.60658 ], [ 120.8518949, 24.6080064 ], [ 120.8547136, 24.6087716 ], [ 120.8575509, 24.6095249 ], [ 120.8595155, 24.6100449 ], [ 120.8625564, 24.6106635 ], [ 120.8658968, 24.6114014 ], [ 120.8701098, 24.611711 ], [ 120.8744466, 24.6157072 ], [ 120.8802062, 24.6183825 ], [ 120.8824327, 24.6194278 ], [ 120.8851597, 24.6203445 ], [ 120.8854303, 24.6208884 ], [ 120.8867664, 24.6216298 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202162589", "power": "line", "wires": "2", "voltage": "161000", "z_order": 10, "other_tags": { "circuits": "2", "layer": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9857284, 24.6916292 ], [ 120.9854832, 24.6914401 ], [ 120.9803645, 24.6893298 ], [ 120.9761049, 24.6796636 ], [ 120.9746921, 24.6762662 ], [ 120.9735892, 24.6735938 ], [ 120.9719093, 24.6695535 ], [ 120.9714123, 24.6683581 ], [ 120.9708294, 24.6669499 ], [ 120.9691538, 24.6629017 ], [ 120.9677446, 24.6607099 ], [ 120.9665132, 24.658769 ], [ 120.9646773, 24.6560244 ], [ 120.9628222, 24.6532445 ], [ 120.9606306, 24.6499535 ], [ 120.9604636, 24.6483839 ], [ 120.9597574, 24.6411296 ], [ 120.9593287, 24.6364059 ], [ 120.9589598, 24.6334139 ], [ 120.958557, 24.6294401 ], [ 120.9576362, 24.6248979 ], [ 120.9568404, 24.6214406 ], [ 120.9560703, 24.6175282 ], [ 120.9554162, 24.6133555 ], [ 120.9548784, 24.6096239 ], [ 120.9542581, 24.6065935 ], [ 120.953891, 24.6047756 ], [ 120.952899, 24.6001617 ], [ 120.9524093, 24.5979505 ], [ 120.9519341, 24.5939002 ], [ 120.9518671, 24.5879826 ], [ 120.9507538, 24.5855506 ], [ 120.9498197, 24.5811021 ], [ 120.9471232, 24.5769636 ], [ 120.9456033, 24.574631 ], [ 120.9443631, 24.5727179 ], [ 120.9422277, 24.5694131 ], [ 120.9415256, 24.5683623 ], [ 120.9390276, 24.5645121 ], [ 120.9382664, 24.5633432 ], [ 120.93587, 24.5596937 ], [ 120.9329188, 24.5551186 ], [ 120.9318178, 24.5533937 ], [ 120.9306169, 24.5510261 ], [ 120.9294962, 24.5488976 ], [ 120.9279133, 24.5458183 ], [ 120.9271033, 24.5442472 ], [ 120.9266099, 24.5429149 ], [ 120.9247958, 24.5381649 ], [ 120.9225739, 24.5324945 ], [ 120.9218286, 24.5305666 ], [ 120.9205814, 24.5273343 ], [ 120.9200873, 24.5260544 ], [ 120.9195465, 24.524626 ], [ 120.9186708, 24.5223799 ], [ 120.9165527, 24.5168574 ], [ 120.9154716, 24.5140301 ], [ 120.9138647, 24.5099493 ], [ 120.9129856, 24.5065897 ], [ 120.9119348, 24.5024706 ], [ 120.9105338, 24.4970659 ], [ 120.9088057, 24.4945277 ], [ 120.906899, 24.4916208 ], [ 120.9043571, 24.4877621 ], [ 120.9036793, 24.4867513 ], [ 120.9008132, 24.482386 ], [ 120.8989132, 24.4795527 ], [ 120.8969137, 24.4765342 ], [ 120.8948321, 24.4729645 ], [ 120.8923185, 24.4686806 ], [ 120.890745, 24.4660226 ], [ 120.8885381, 24.4622489 ], [ 120.8871423, 24.4598387 ], [ 120.8855105, 24.4571345 ], [ 120.8834092, 24.4534322 ], [ 120.8796616, 24.4471027 ], [ 120.8780262, 24.4443663 ], [ 120.8770416, 24.4407502 ], [ 120.8763203, 24.438087 ], [ 120.875542, 24.435214 ], [ 120.8751296, 24.4337715 ], [ 120.8743141, 24.4308203 ], [ 120.873783, 24.4287917 ], [ 120.8740408, 24.4278817 ], [ 120.8750411, 24.4244117 ], [ 120.8739868, 24.4206596 ], [ 120.873489, 24.4187521 ], [ 120.8728437, 24.4163608 ], [ 120.872515, 24.4139833 ], [ 120.8721478, 24.4119956 ], [ 120.8720588, 24.4099539 ], [ 120.8714678, 24.4054824 ], [ 120.8711734, 24.4000084 ], [ 120.8710628, 24.3977484 ], [ 120.8709336, 24.3955634 ], [ 120.8707456, 24.3925543 ], [ 120.870631, 24.3905173 ], [ 120.8704956, 24.3880852 ], [ 120.8702406, 24.3838455 ], [ 120.8691123, 24.3797734 ], [ 120.8679596, 24.3755245 ], [ 120.868734, 24.3708427 ], [ 120.8691433, 24.3685594 ], [ 120.8698387, 24.3644053 ], [ 120.8712178, 24.360813 ], [ 120.8719146, 24.3589528 ], [ 120.8728066, 24.3566641 ], [ 120.8739439, 24.3537184 ], [ 120.8749854, 24.351009 ], [ 120.8764656, 24.3467318 ], [ 120.8772685, 24.3406193 ], [ 120.8776481, 24.3372499 ], [ 120.8780135, 24.3341461 ], [ 120.8784141, 24.3302701 ], [ 120.8787876, 24.3263252 ], [ 120.8789593, 24.3247685 ], [ 120.8801784, 24.3217859 ], [ 120.8822989, 24.3167687 ], [ 120.8834099, 24.3140314 ], [ 120.8843025, 24.3119777 ], [ 120.8852489, 24.3096429 ], [ 120.8859545, 24.3083378 ], [ 120.8863438, 24.3076714 ], [ 120.8883798, 24.3041716 ], [ 120.8887554, 24.3024331 ], [ 120.8873744, 24.2974622 ], [ 120.8900998, 24.2969836 ], [ 120.8927791, 24.297126 ], [ 120.8958908, 24.296264 ], [ 120.8996635, 24.2944945 ], [ 120.9035096, 24.2940752 ], [ 120.9039085, 24.2892536 ], [ 120.9040958, 24.2876865 ], [ 120.9045897, 24.2824708 ], [ 120.9052237, 24.2771963 ], [ 120.90537, 24.275709 ], [ 120.9055059, 24.2743334 ], [ 120.9060739, 24.2696149 ], [ 120.9065566, 24.2653254 ], [ 120.9067334, 24.2642419 ], [ 120.9071713, 24.2599649 ], [ 120.9075574, 24.2565127 ], [ 120.9045098, 24.2510027 ], [ 120.9032402, 24.2485566 ], [ 120.9041313, 24.2432016 ], [ 120.9048206, 24.2394842 ], [ 120.9056957, 24.2359772 ], [ 120.9045665, 24.230167 ], [ 120.9043227, 24.2285312 ], [ 120.9053516, 24.2265879 ], [ 120.907838, 24.2218062 ], [ 120.9095747, 24.2183654 ], [ 120.9116636, 24.2143618 ], [ 120.9120581, 24.2136026 ], [ 120.9134769, 24.2108604 ], [ 120.9153148, 24.2073478 ], [ 120.9177415, 24.2026901 ], [ 120.9185469, 24.2018374 ], [ 120.9233465, 24.1967127 ], [ 120.9268531, 24.1929788 ], [ 120.9296729, 24.1899243 ], [ 120.9309017, 24.1886371 ], [ 120.938559, 24.1804179 ], [ 120.9405592, 24.1791846 ], [ 120.9425497, 24.1779688 ], [ 120.9504664, 24.174594 ], [ 120.9576704, 24.1751543 ], [ 120.9594998, 24.1752692 ], [ 120.964913, 24.177234 ], [ 120.9694072, 24.1788525 ], [ 120.9738817, 24.1803999 ], [ 120.9774085, 24.1816906 ], [ 120.9786092, 24.1827776 ], [ 120.9798526, 24.183937 ], [ 120.9834041, 24.1873129 ], [ 120.9842803, 24.1881971 ], [ 120.9887125, 24.1907801 ], [ 120.9905501, 24.1918415 ], [ 120.9954157, 24.1949528 ], [ 120.9989335, 24.1981605 ], [ 120.999702, 24.1991619 ], [ 121.0037909, 24.2013463 ], [ 121.0072895, 24.20169 ], [ 121.0091496, 24.2017883 ], [ 121.0164347, 24.2047139 ], [ 121.0215361, 24.2067758 ], [ 121.0248026, 24.2094263 ], [ 121.0273618, 24.2112724 ], [ 121.0310067, 24.214315 ], [ 121.0316148, 24.2144841 ], [ 121.032722, 24.2147444 ], [ 121.0331779, 24.2138521 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202162590", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1648333, 24.2539529 ], [ 121.1654266, 24.2548775 ], [ 121.1659717, 24.2546034 ], [ 121.1657673, 24.2540991 ], [ 121.1655468, 24.2541758 ], [ 121.1652302, 24.2537263 ], [ 121.1648333, 24.2539529 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202162591", "name": "開關場(土石流淹沒)", "power": "substation", "z_order": 0, "other_tags": { "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0323684, 24.2134311 ], [ 121.0323487, 24.2138779 ], [ 121.0328507, 24.2140222 ], [ 121.0330367, 24.214306 ], [ 121.0344002, 24.2145558 ], [ 121.0344857, 24.2141592 ], [ 121.0340859, 24.2137231 ], [ 121.0334437, 24.2134298 ], [ 121.0323684, 24.2134311 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202375090", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3611545, 22.9193824 ], [ 120.3605128, 22.9194155 ], [ 120.3588825, 22.9198404 ], [ 120.3573479, 22.9183617 ], [ 120.3572445, 22.9167449 ], [ 120.3571615, 22.915736 ], [ 120.3569908, 22.9135127 ], [ 120.3568291, 22.9108948 ], [ 120.3556341, 22.9077114 ], [ 120.3548585, 22.9057279 ], [ 120.3538119, 22.9029352 ], [ 120.3523413, 22.8990514 ], [ 120.3520175, 22.8954883 ], [ 120.3516472, 22.8917299 ], [ 120.3513996, 22.8899614 ], [ 120.3508478, 22.8859464 ], [ 120.3504587, 22.8831372 ], [ 120.350196, 22.8813202 ], [ 120.3486914, 22.8793829 ], [ 120.3444836, 22.8757624 ], [ 120.3425652, 22.8732676 ], [ 120.3414737, 22.8704395 ], [ 120.3404321, 22.8677213 ], [ 120.3393584, 22.8649193 ], [ 120.3381693, 22.8617935 ], [ 120.3372013, 22.8592581 ], [ 120.3366768, 22.856046 ], [ 120.3361672, 22.8529257 ], [ 120.3356536, 22.8497801 ], [ 120.335135, 22.8466182 ], [ 120.3346229, 22.8434579 ], [ 120.3335117, 22.8405494 ], [ 120.3325215, 22.8378389 ], [ 120.3311983, 22.8342313 ], [ 120.3304349, 22.8318236 ], [ 120.3294955, 22.8286712 ], [ 120.3288658, 22.8265976 ], [ 120.3279857, 22.8237128 ], [ 120.3270973, 22.8207752 ], [ 120.3269043, 22.8179626 ], [ 120.3267219, 22.8151403 ], [ 120.3259967, 22.8139636 ], [ 120.3264996, 22.8119703 ], [ 120.3263587, 22.8090988 ], [ 120.3272608, 22.8072983 ], [ 120.3280888, 22.8055001 ], [ 120.3290364, 22.8034674 ], [ 120.3297643, 22.8018876 ], [ 120.3304392, 22.8004358 ], [ 120.3309465, 22.7994517 ], [ 120.3315883, 22.7981361 ], [ 120.3322103, 22.7968226 ], [ 120.3332117, 22.7945412 ], [ 120.3316921, 22.7922491 ], [ 120.3301549, 22.7898884 ], [ 120.3286654, 22.7893747 ], [ 120.3286422, 22.787587 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202375098", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3900469, 22.951243 ], [ 120.3892577, 22.9512522 ], [ 120.3865295, 22.9483468 ], [ 120.3861136, 22.9468246 ], [ 120.3849489, 22.9432251 ], [ 120.3817311, 22.9393511 ], [ 120.3788627, 22.9376967 ], [ 120.3763812, 22.9361109 ], [ 120.3719898, 22.9348998 ], [ 120.3706508, 22.9332202 ], [ 120.3680914, 22.930977 ], [ 120.3662728, 22.9305015 ], [ 120.3659401, 22.9298471 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202375101", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3611799, 22.9215298 ], [ 120.3605912, 22.9214869 ], [ 120.3587414, 22.9222112 ], [ 120.3581427, 22.9232181 ], [ 120.3583227, 22.9245151 ], [ 120.3589767, 22.9280874 ], [ 120.35994, 22.9334063 ], [ 120.3603601, 22.9365859 ], [ 120.360964, 22.940722 ], [ 120.3613264, 22.9436668 ], [ 120.3623225, 22.9475651 ], [ 120.3630682, 22.9504568 ], [ 120.363845, 22.9535211 ], [ 120.364354, 22.955577 ], [ 120.3653648, 22.9596084 ], [ 120.3668379, 22.9651012 ], [ 120.3672877, 22.9674426 ], [ 120.3685246, 22.9727525 ], [ 120.3689547, 22.9745279 ], [ 120.3694757, 22.9767962 ], [ 120.3701303, 22.9795186 ], [ 120.3707883, 22.9823235 ], [ 120.3712946, 22.9844779 ], [ 120.3717716, 22.9865274 ], [ 120.3727254, 22.9905425 ], [ 120.3732879, 22.9929516 ], [ 120.3738401, 22.995288 ], [ 120.3735789, 22.9970733 ], [ 120.3728803, 23.0016801 ], [ 120.3724012, 23.0046639 ], [ 120.3717018, 23.0085946 ], [ 120.3713108, 23.0111351 ], [ 120.3708523, 23.0138463 ], [ 120.3708511, 23.0138849 ], [ 120.3707192, 23.0180671 ], [ 120.3705714, 23.0218573 ], [ 120.370465, 23.0245871 ], [ 120.370146, 23.0271646 ], [ 120.3696733, 23.0316017 ], [ 120.3692479, 23.0357559 ], [ 120.3691652, 23.0378547 ], [ 120.3686382, 23.0456724 ], [ 120.3685179, 23.0477481 ], [ 120.3682757, 23.052236 ], [ 120.3682107, 23.0538824 ], [ 120.3678733, 23.0586637 ], [ 120.3675286, 23.066716 ], [ 120.3673416, 23.0694701 ], [ 120.3672372, 23.0709837 ], [ 120.3670342, 23.0737793 ], [ 120.366723, 23.0758112 ], [ 120.3664009, 23.0776665 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202586923", "name": "峨眉-中寮線;龍潭-中寮線", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2", "description": "峨眉-中寮線: 海/西邊; 龍潭-中寮線: 山/東邊;", "start_date": "1983-07" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0101654, 24.6714202 ], [ 121.0097, 24.6710157 ], [ 121.0088761, 24.6702996 ], [ 121.0084815, 24.6699566 ], [ 121.0071742, 24.668813 ], [ 121.0042349, 24.6664471 ], [ 121.0020627, 24.6646863 ], [ 120.9998214, 24.6628357 ], [ 120.9987582, 24.6619709 ], [ 120.9949159, 24.6601897 ], [ 120.9930337, 24.6595037 ], [ 120.9914126, 24.657233 ], [ 120.9889401, 24.6543296 ], [ 120.9866096, 24.6515616 ], [ 120.9856234, 24.6503756 ], [ 120.9839484, 24.6484293 ], [ 120.9820516, 24.6461778 ], [ 120.9812345, 24.6451898 ], [ 120.9770027, 24.6404974 ], [ 120.9751695, 24.637193 ], [ 120.9737652, 24.6345587 ], [ 120.9721809, 24.6315915 ], [ 120.9712667, 24.6298389 ], [ 120.969641, 24.6266677 ], [ 120.9689137, 24.6252695 ], [ 120.9678877, 24.6232277 ], [ 120.9659483, 24.6196065 ], [ 120.9648895, 24.6173733 ], [ 120.9628404, 24.6131395 ], [ 120.9617263, 24.6109465 ], [ 120.9598879, 24.6071446 ], [ 120.9597047, 24.6060275 ], [ 120.9591775, 24.6028287 ], [ 120.9586235, 24.5997678 ], [ 120.9583778, 24.5980394 ], [ 120.957563, 24.5935181 ], [ 120.9561267, 24.5901056 ], [ 120.9528279, 24.5839603 ], [ 120.9510032, 24.5805402 ], [ 120.9480156, 24.575013 ], [ 120.9471673, 24.5734595 ], [ 120.9463233, 24.5718095 ], [ 120.9432667, 24.567022 ], [ 120.9397326, 24.5614642 ], [ 120.9384569, 24.5595201 ], [ 120.9347738, 24.5525878 ], [ 120.9325033, 24.5483044 ], [ 120.9301462, 24.5439908 ], [ 120.92791, 24.5387376 ], [ 120.9269817, 24.5365164 ], [ 120.9246621, 24.5310427 ], [ 120.9217607, 24.5268082 ], [ 120.9207242, 24.5246704 ], [ 120.9199508, 24.5229812 ], [ 120.9158316, 24.5208314 ], [ 120.9087801, 24.5183778 ], [ 120.9071822, 24.5167364 ], [ 120.905563, 24.515091 ], [ 120.9029454, 24.5113696 ], [ 120.9010263, 24.5087311 ], [ 120.8998345, 24.5055767 ], [ 120.8985322, 24.5021365 ], [ 120.8972397, 24.498556 ], [ 120.8964451, 24.4963268 ], [ 120.8958409, 24.4946428 ], [ 120.8933384, 24.4906267 ], [ 120.8915038, 24.4874509 ], [ 120.8885378, 24.4826295 ], [ 120.8869532, 24.4800152 ], [ 120.8847508, 24.4770584 ], [ 120.8819641, 24.4733424 ], [ 120.8798796, 24.4705807 ], [ 120.8753893, 24.4645783 ], [ 120.870938, 24.4598605 ], [ 120.8697118, 24.458356 ], [ 120.8677427, 24.4559037 ], [ 120.8656642, 24.453294 ], [ 120.8626908, 24.4495181 ], [ 120.8617986, 24.4477299 ], [ 120.860755, 24.4456622 ], [ 120.8596607, 24.4435078 ], [ 120.857455, 24.439089 ], [ 120.8563247, 24.4368728 ], [ 120.8549467, 24.4339995 ], [ 120.8541211, 24.4301566 ], [ 120.8530458, 24.4243266 ], [ 120.8518964, 24.4186004 ], [ 120.852053, 24.4155454 ], [ 120.8522055, 24.4128623 ], [ 120.8523385, 24.4097253 ], [ 120.8524905, 24.4071731 ], [ 120.8525744, 24.4052625 ], [ 120.8527898, 24.3994186 ], [ 120.8528821, 24.3960507 ], [ 120.8529661, 24.3944915 ], [ 120.8527261, 24.391434 ], [ 120.852527, 24.3882667 ], [ 120.8523779, 24.3858567 ], [ 120.8540171, 24.3802838 ], [ 120.8558921, 24.3736371 ], [ 120.8575154, 24.3678617 ], [ 120.8582526, 24.3653816 ], [ 120.8588951, 24.3600447 ], [ 120.8595586, 24.3549955 ], [ 120.859922, 24.3519587 ], [ 120.859764, 24.3495934 ], [ 120.8593322, 24.3443614 ], [ 120.8591479, 24.3419193 ], [ 120.858853, 24.3373611 ], [ 120.8585107, 24.3339016 ], [ 120.8580157, 24.3278892 ], [ 120.8579209, 24.3268384 ], [ 120.8575517, 24.3215711 ], [ 120.8572977, 24.3187011 ], [ 120.8568761, 24.3144515 ], [ 120.8566881, 24.3125744 ], [ 120.8559592, 24.3057367 ], [ 120.8558169, 24.304658 ], [ 120.8553953, 24.2996533 ], [ 120.853622, 24.2932863 ], [ 120.8528229, 24.2901244 ], [ 120.852124, 24.2874415 ], [ 120.8503605, 24.2808902 ], [ 120.8508992, 24.277629 ], [ 120.8511767, 24.2761758 ], [ 120.8520591, 24.27142 ], [ 120.8524839, 24.2690616 ], [ 120.853157, 24.2654916 ], [ 120.8536529, 24.2626759 ], [ 120.8547676, 24.2566047 ], [ 120.8561574, 24.2490118 ], [ 120.8572217, 24.2432071 ], [ 120.8574332, 24.2419132 ], [ 120.8580342, 24.2385181 ], [ 120.8588558, 24.2342394 ], [ 120.8596813, 24.2298417 ], [ 120.8611586, 24.2254683 ], [ 120.8623296, 24.2221601 ], [ 120.8648393, 24.2164586 ], [ 120.8665638, 24.212594 ], [ 120.8671824, 24.2111745 ], [ 120.8694113, 24.2062145 ], [ 120.8697641, 24.2011241 ], [ 120.8700263, 24.1978615 ], [ 120.8702424, 24.1946719 ], [ 120.8705315, 24.1927005 ], [ 120.8710656, 24.1873743 ], [ 120.8724266, 24.1822381 ], [ 120.8731379, 24.1795241 ], [ 120.8734578, 24.1782714 ], [ 120.8739843, 24.1762098 ], [ 120.8742571, 24.173958 ], [ 120.8751418, 24.1646719 ], [ 120.8754469, 24.1614688 ], [ 120.8750975, 24.158045 ], [ 120.8749328, 24.1568503 ], [ 120.8761325, 24.1528813 ], [ 120.8767757, 24.1489633 ], [ 120.8768247, 24.1486646 ], [ 120.8768405, 24.1485676 ], [ 120.8778847, 24.1421751 ], [ 120.8782652, 24.1400752 ], [ 120.8785572, 24.1383707 ], [ 120.8789871, 24.136272 ], [ 120.8801393, 24.1316037 ], [ 120.8807732, 24.1289857 ], [ 120.8815047, 24.1270951 ], [ 120.8833197, 24.1204084 ], [ 120.8849895, 24.1144109 ], [ 120.8862352, 24.1096357 ], [ 120.8857017, 24.1081685 ], [ 120.8842697, 24.103934 ], [ 120.8830125, 24.1003856 ], [ 120.8812837, 24.0951531 ], [ 120.8797802, 24.090792 ], [ 120.8782905, 24.086548 ], [ 120.8774635, 24.0841617 ], [ 120.8763768, 24.0810259 ], [ 120.8752692, 24.0774368 ], [ 120.874388, 24.0752334 ], [ 120.8730198, 24.0718208 ], [ 120.8711096, 24.0670031 ], [ 120.8694742, 24.0632249 ], [ 120.8685219, 24.0609535 ], [ 120.8660252, 24.0570324 ], [ 120.8641926, 24.0546489 ], [ 120.8606146, 24.0527258 ], [ 120.8598893, 24.0522534 ], [ 120.8575478, 24.0506233 ], [ 120.8544002, 24.048401 ], [ 120.8538012, 24.0479781 ], [ 120.8534273, 24.0477281 ], [ 120.8502488, 24.0456034 ], [ 120.8473897, 24.0437304 ], [ 120.8453764, 24.0427803 ], [ 120.8432786, 24.0417297 ], [ 120.8389051, 24.0379542 ], [ 120.8340782, 24.0346945 ], [ 120.8320302, 24.0336015 ], [ 120.8307116, 24.0329866 ], [ 120.8269391, 24.031053 ], [ 120.8249002, 24.030036 ], [ 120.8217787, 24.0284675 ], [ 120.8199199, 24.0275226 ], [ 120.8159301, 24.0254947 ], [ 120.8124259, 24.0237516 ], [ 120.8104278, 24.0227491 ], [ 120.8074934, 24.0187697 ], [ 120.8073211, 24.0142829 ], [ 120.8066275, 24.0124461 ], [ 120.8060461, 24.0096309 ], [ 120.8055473, 24.0075062 ], [ 120.8041639, 24.0053686 ], [ 120.8031566, 24.0038222 ], [ 120.8023449, 24.0014022 ], [ 120.8018176, 23.9998814 ], [ 120.8016511, 23.9957065 ], [ 120.8017068, 23.9926416 ], [ 120.8016133, 23.986212 ], [ 120.8016447, 23.9833791 ], [ 120.8016711, 23.9810056 ], [ 120.7996808, 23.9780608 ], [ 120.7975876, 23.9749636 ], [ 120.7960905, 23.972688 ], [ 120.7951275, 23.9712223 ], [ 120.793577, 23.9688091 ], [ 120.7918086, 23.9660991 ], [ 120.7910889, 23.9649961 ], [ 120.7882723, 23.9608689 ], [ 120.7872904, 23.9594397 ], [ 120.7862215, 23.9563727 ], [ 120.7846135, 23.9517102 ], [ 120.7838303, 23.9492249 ], [ 120.7835342, 23.9483603 ], [ 120.7829823, 23.9467487 ], [ 120.7827504, 23.9432577 ], [ 120.7810742, 23.9370838 ], [ 120.7800923, 23.9334212 ], [ 120.7795784, 23.9309115 ], [ 120.7788084, 23.9271929 ], [ 120.7784881, 23.9256018 ], [ 120.7778314, 23.9224617 ], [ 120.7774076, 23.919335 ], [ 120.7767386, 23.9147977 ], [ 120.775225, 23.910293 ], [ 120.7739056, 23.9062859 ], [ 120.7727171, 23.9040391 ], [ 120.7719894, 23.9025728 ], [ 120.7694134, 23.8975425 ], [ 120.769236, 23.8943559 ], [ 120.7691827, 23.8932853 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202586925", "name": "天輪-上城線;天輪-翁子線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9234831, 24.185165 ], [ 120.9222515, 24.1868933 ], [ 120.9184633, 24.188974 ], [ 120.9180377, 24.1892077 ], [ 120.9111544, 24.1880573 ], [ 120.9016343, 24.1842721 ], [ 120.8907849, 24.1814115 ], [ 120.8879314, 24.1805402 ], [ 120.8842242, 24.1797141 ], [ 120.8787584, 24.1782785 ], [ 120.8733087, 24.1768325 ], [ 120.8714251, 24.1762425 ], [ 120.8698566, 24.1758092 ], [ 120.8676687, 24.175347 ], [ 120.8621148, 24.1738711 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202586928", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0327747, 24.2137877 ], [ 121.0323186, 24.2144227 ], [ 121.0317582, 24.2142772 ], [ 121.0289961, 24.2109726 ], [ 121.029254, 24.2094114 ], [ 121.022973, 24.2051508 ], [ 121.0220828, 24.2047411 ], [ 121.0164764, 24.2022062 ], [ 121.0095043, 24.1990482 ], [ 121.0009821, 24.1929871 ], [ 120.996211, 24.1895708 ], [ 120.9951846, 24.1886805 ], [ 120.9902632, 24.1842488 ], [ 120.9869879, 24.1812778 ], [ 120.9812253, 24.1792573 ], [ 120.9763052, 24.1774103 ], [ 120.9737796, 24.1764468 ], [ 120.9700678, 24.1750561 ], [ 120.9688556, 24.1746684 ], [ 120.966842, 24.1739411 ], [ 120.9603239, 24.1715553 ], [ 120.9528777, 24.1716787 ], [ 120.9513827, 24.171661 ], [ 120.9503566, 24.1716716 ], [ 120.9473033, 24.173166 ], [ 120.9399053, 24.1767884 ], [ 120.9359479, 24.1788013 ], [ 120.9339615, 24.1797699 ], [ 120.9264961, 24.1834832 ], [ 120.9259115, 24.1837708 ], [ 120.9248805, 24.1842586 ], [ 120.9236191, 24.1850008 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202586930", "name": "馬鞍-上城線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.841057, 24.172759 ], [ 120.8409018, 24.1735339 ], [ 120.8392123, 24.1784448 ], [ 120.8398786, 24.181336 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "202586932", "name": "馬鞍-上城線;天輪-上城線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8621148, 24.1738711 ], [ 120.860775, 24.1772333 ], [ 120.8587629, 24.1817593 ], [ 120.8609137, 24.1855575 ], [ 120.8619553, 24.187397 ], [ 120.8628223, 24.1925178 ], [ 120.8589459, 24.1954038 ], [ 120.8560023, 24.1998021 ], [ 120.8549101, 24.2015372 ], [ 120.8532994, 24.2033052 ], [ 120.850966, 24.2051348 ], [ 120.8494, 24.2098098 ], [ 120.846197, 24.2142173 ], [ 120.8424336, 24.2188176 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "203290490", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0328471, 24.213659 ], [ 121.0327383, 24.2135158 ], [ 121.0302933, 24.2084251 ], [ 121.0235874, 24.2029673 ], [ 121.020418, 24.2006867 ], [ 121.0165168, 24.1980517 ], [ 121.011871, 24.19503 ], [ 121.0072043, 24.1932244 ], [ 121.0063083, 24.1928956 ], [ 121.0023803, 24.1913712 ], [ 121.0003982, 24.1896682 ], [ 120.9987409, 24.1881795 ], [ 120.994768, 24.184626 ], [ 120.9931862, 24.1831738 ], [ 120.9891416, 24.1794414 ], [ 120.9886093, 24.179106 ], [ 120.9841394, 24.1763272 ], [ 120.9804492, 24.17406 ], [ 120.9793184, 24.1733598 ], [ 120.9778133, 24.1724197 ], [ 120.972661, 24.1716829 ], [ 120.9677506, 24.1709643 ], [ 120.9655912, 24.1707016 ], [ 120.9605093, 24.1699318 ], [ 120.9594456, 24.1697993 ], [ 120.9515563, 24.1690993 ], [ 120.9499289, 24.1695507 ], [ 120.945416, 24.1707789 ], [ 120.9437346, 24.1712004 ], [ 120.9366756, 24.1731494 ], [ 120.9328066, 24.1742865 ], [ 120.9282457, 24.1794171 ], [ 120.9244669, 24.1802093 ], [ 120.9220042, 24.1812891 ], [ 120.9225589, 24.1837888 ], [ 120.9230151, 24.1843295 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "203692582", "name": "天輪~龍崎線", "power": "line", "wires": "double", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4267132, 23.0651289 ], [ 120.4291311, 23.0669653 ], [ 120.4309271, 23.0683603 ], [ 120.4321725, 23.0693382 ], [ 120.4345781, 23.0712426 ], [ 120.4359301, 23.0728038 ], [ 120.437394, 23.0745366 ], [ 120.439296, 23.0767154 ], [ 120.4414892, 23.0794997 ], [ 120.4445142, 23.0824084 ], [ 120.4476812, 23.0847254 ], [ 120.451505, 23.0875466 ], [ 120.453905, 23.0893039 ], [ 120.4552483, 23.0903292 ], [ 120.4579221, 23.0931947 ], [ 120.4606837, 23.0960461 ], [ 120.463027, 23.0986007 ], [ 120.4674873, 23.1032292 ], [ 120.4689394, 23.1044292 ], [ 120.471354, 23.1064112 ], [ 120.4739462, 23.1083723 ], [ 120.4761968, 23.1101573 ], [ 120.4783517, 23.111892 ], [ 120.480666, 23.113595 ], [ 120.4828533, 23.1151426 ], [ 120.4847688, 23.1164427 ], [ 120.4884728, 23.1189669 ], [ 120.4915385, 23.1210654 ], [ 120.4935982, 23.1224679 ], [ 120.4959947, 23.1248766 ], [ 120.4971501, 23.128213 ], [ 120.4986674, 23.1320402 ], [ 120.5003296, 23.1365041 ], [ 120.5009291, 23.1383204 ], [ 120.5022169, 23.1417369 ], [ 120.5043173, 23.1472729 ], [ 120.5048341, 23.1486392 ], [ 120.5057579, 23.1512816 ], [ 120.5053664, 23.1531137 ], [ 120.5045484, 23.1575939 ], [ 120.5026577, 23.1642927 ], [ 120.5019656, 23.1666751 ], [ 120.5005186, 23.1716556 ], [ 120.4990768, 23.176618 ], [ 120.4978832, 23.1811767 ], [ 120.4968926, 23.1844798 ], [ 120.4963758, 23.1861086 ], [ 120.490703, 23.1959323 ], [ 120.4881791, 23.2003982 ], [ 120.4862059, 23.2039927 ], [ 120.4847165, 23.206479 ], [ 120.4828522, 23.2081981 ], [ 120.4800814, 23.2109252 ], [ 120.4773187, 23.2214015 ], [ 120.4768198, 23.2230283 ], [ 120.4769539, 23.2256805 ], [ 120.4761814, 23.2290967 ], [ 120.4755723, 23.2314353 ], [ 120.4734276, 23.2363242 ], [ 120.4724939, 23.2385247 ], [ 120.4693717, 23.2465575 ], [ 120.4677408, 23.249092 ], [ 120.4664131, 23.2512756 ], [ 120.4646853, 23.2541219 ], [ 120.4622541, 23.2580377 ], [ 120.4610962, 23.2599871 ], [ 120.4598897, 23.2620424 ], [ 120.4581437, 23.2649943 ], [ 120.4557914, 23.2691715 ], [ 120.4542939, 23.2719841 ], [ 120.4512687, 23.2773584 ], [ 120.4498076, 23.2800316 ], [ 120.4476385, 23.2840916 ], [ 120.4470712, 23.2896497 ], [ 120.4469669, 23.2907277 ], [ 120.446743, 23.2945727 ], [ 120.4468629, 23.298675 ], [ 120.446723, 23.3044619 ], [ 120.4467683, 23.308233 ], [ 120.4463969, 23.3115413 ], [ 120.4456974, 23.3178546 ], [ 120.4454043, 23.3225213 ], [ 120.4463783, 23.3278544 ], [ 120.4480526, 23.3298705 ], [ 120.4508659, 23.3332828 ], [ 120.4523182, 23.3349045 ], [ 120.4559128, 23.3389889 ], [ 120.457697, 23.341017 ], [ 120.4590331, 23.3420332 ], [ 120.46355, 23.3445096 ], [ 120.4707029, 23.3446754 ], [ 120.4735258, 23.3472483 ], [ 120.4754991, 23.3489538 ], [ 120.480132, 23.353105 ], [ 120.4831167, 23.3558378 ], [ 120.4862156, 23.3586085 ], [ 120.4884467, 23.360691 ], [ 120.4895335, 23.367176 ], [ 120.4902157, 23.3712783 ], [ 120.4906351, 23.3731047 ], [ 120.4912642, 23.3759688 ], [ 120.4921328, 23.3796766 ], [ 120.4930027, 23.3835994 ], [ 120.4942194, 23.3867445 ], [ 120.4955666, 23.3902028 ], [ 120.4964209, 23.3924179 ], [ 120.4981825, 23.395934 ], [ 120.4995095, 23.3985448 ], [ 120.4998659, 23.400375 ], [ 120.500282, 23.4025051 ], [ 120.4983535, 23.4068253 ], [ 120.4984241, 23.4088671 ], [ 120.4986001, 23.4138285 ], [ 120.4981996, 23.419017 ], [ 120.4979491, 23.422054 ], [ 120.4976719, 23.4253095 ], [ 120.4974016, 23.4286152 ], [ 120.4972563, 23.4323289 ], [ 120.4979806, 23.4353635 ], [ 120.4988607, 23.4387068 ], [ 120.4997013, 23.4419742 ], [ 120.5001165, 23.4437087 ], [ 120.5010003, 23.4486312 ], [ 120.5018133, 23.4533714 ], [ 120.5022216, 23.4557194 ], [ 120.5028227, 23.4593008 ], [ 120.5031554, 23.4611602 ], [ 120.5037743, 23.4646501 ], [ 120.5043518, 23.4669961 ], [ 120.5049334, 23.4694824 ], [ 120.5056169, 23.4725339 ], [ 120.5066065, 23.4766401 ], [ 120.5074732, 23.4796796 ], [ 120.5080252, 23.4826485 ], [ 120.5084512, 23.4844068 ], [ 120.5092116, 23.4874904 ], [ 120.5104996, 23.4898807 ], [ 120.5126722, 23.4936837 ], [ 120.5139302, 23.4958773 ], [ 120.5144395, 23.4968361 ], [ 120.5147164, 23.4996831 ], [ 120.5156318, 23.5017307 ], [ 120.5160492, 23.5040832 ], [ 120.5165737, 23.5070108 ], [ 120.5182809, 23.5123497 ], [ 120.5195573, 23.5154488 ], [ 120.5200329, 23.5163982 ], [ 120.5183393, 23.5209238 ], [ 120.5168006, 23.5253982 ], [ 120.5161357, 23.5273141 ], [ 120.5150092, 23.5305958 ], [ 120.5141007, 23.5332419 ], [ 120.5156958, 23.538883 ], [ 120.5169392, 23.5432954 ], [ 120.5184826, 23.5454389 ], [ 120.5203897, 23.5481345 ], [ 120.5232955, 23.5521986 ], [ 120.5259081, 23.556031 ], [ 120.5289839, 23.5606162 ], [ 120.5309175, 23.5628715 ], [ 120.5338733, 23.5665125 ], [ 120.5359304, 23.5691697 ], [ 120.5388295, 23.5726699 ], [ 120.541511, 23.5760717 ], [ 120.5430213, 23.5786425 ], [ 120.5443919, 23.5810345 ], [ 120.545639, 23.5832109 ], [ 120.5468683, 23.5853561 ], [ 120.5487173, 23.5885828 ], [ 120.5510936, 23.5927295 ], [ 120.5531975, 23.5963144 ], [ 120.5549649, 23.5994391 ], [ 120.5562452, 23.6017027 ], [ 120.5577207, 23.6042837 ], [ 120.5605042, 23.6090976 ], [ 120.5617526, 23.6112653 ], [ 120.5630953, 23.6136014 ], [ 120.564627, 23.6162845 ], [ 120.565986, 23.6186476 ], [ 120.5674204, 23.6211489 ], [ 120.5691648, 23.6241926 ], [ 120.5724142, 23.6298278 ], [ 120.5743895, 23.6333101 ], [ 120.5754437, 23.635105 ], [ 120.578213, 23.6399325 ], [ 120.5805873, 23.6426916 ], [ 120.5816519, 23.6440307 ], [ 120.5847744, 23.6475063 ], [ 120.5880763, 23.6513462 ], [ 120.5915642, 23.6554077 ], [ 120.5946175, 23.6589459 ], [ 120.5982151, 23.6630004 ], [ 120.6010714, 23.6663544 ], [ 120.6031666, 23.6687889 ], [ 120.6049843, 23.6709017 ], [ 120.6069929, 23.6732078 ], [ 120.6091175, 23.6756779 ], [ 120.6112375, 23.6781129 ], [ 120.6130251, 23.6802254 ], [ 120.6155571, 23.6831628 ], [ 120.6181721, 23.6861758 ], [ 120.6197088, 23.6879378 ], [ 120.6205383, 23.6885183 ], [ 120.6257464, 23.6922693 ], [ 120.6281319, 23.6939876 ], [ 120.6317011, 23.696519 ], [ 120.6332122, 23.6976497 ], [ 120.6350822, 23.6990595 ], [ 120.6387966, 23.7021767 ], [ 120.6427735, 23.7056742 ], [ 120.6453794, 23.7071398 ], [ 120.64879, 23.7090736 ], [ 120.6518836, 23.7108534 ], [ 120.6530128, 23.7136492 ], [ 120.654126, 23.7164582 ], [ 120.6555823, 23.7179042 ], [ 120.6579566, 23.7202406 ], [ 120.6615404, 23.723914 ], [ 120.6654409, 23.7276392 ], [ 120.6686581, 23.7308194 ], [ 120.6708991, 23.7330288 ], [ 120.6736471, 23.7357604 ], [ 120.6761209, 23.7383122 ], [ 120.6779808, 23.7399965 ], [ 120.6797311, 23.7415269 ], [ 120.6825439, 23.7439965 ], [ 120.6856371, 23.7466319 ], [ 120.6884156, 23.7490151 ], [ 120.6911259, 23.7514479 ], [ 120.6931759, 23.7532467 ], [ 120.6955653, 23.7553393 ], [ 120.6976539, 23.7571455 ], [ 120.6994618, 23.7587243 ], [ 120.7002824, 23.7614995 ], [ 120.7010856, 23.7642262 ], [ 120.7018347, 23.7667297 ], [ 120.7028056, 23.7700966 ], [ 120.7035452, 23.7726265 ], [ 120.7055051, 23.7746184 ], [ 120.70748, 23.7765656 ], [ 120.7114832, 23.7807217 ], [ 120.7161529, 23.785456 ], [ 120.7174249, 23.7867337 ], [ 120.7214027, 23.7907866 ], [ 120.7247103, 23.7934217 ], [ 120.7257583, 23.7942507 ], [ 120.7294455, 23.7980904 ], [ 120.733749, 23.8025415 ], [ 120.7356364, 23.8045926 ], [ 120.7375563, 23.8065437 ], [ 120.738892, 23.8079277 ], [ 120.740943, 23.8100525 ], [ 120.7425782, 23.8117216 ], [ 120.7460314, 23.8129131 ], [ 120.7492988, 23.8140217 ], [ 120.7526206, 23.8151436 ], [ 120.7556647, 23.8162013 ], [ 120.7616716, 23.8216881 ], [ 120.7628597, 23.8236062 ], [ 120.7644053, 23.8253628 ], [ 120.7665145, 23.8268196 ], [ 120.7693459, 23.8287968 ], [ 120.772559, 23.829813 ], [ 120.7744787, 23.832504 ], [ 120.7752976, 23.8376075 ], [ 120.7756573, 23.8399985 ], [ 120.776439, 23.8447161 ], [ 120.7770478, 23.8501081 ], [ 120.7772728, 23.8522499 ], [ 120.7773374, 23.8546951 ], [ 120.7768717, 23.8592091 ], [ 120.7764466, 23.8633327 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204177836", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8057536, 24.5668225 ], [ 120.8070877, 24.5695534 ], [ 120.8081697, 24.5728264 ], [ 120.8099443, 24.5752276 ], [ 120.8107013, 24.5760444 ], [ 120.8116557, 24.5766751 ], [ 120.8136684, 24.5779336 ], [ 120.8161691, 24.5795589 ], [ 120.8182038, 24.5809526 ], [ 120.8189088, 24.5833462 ], [ 120.8187757, 24.5852891 ], [ 120.8191697, 24.5872511 ], [ 120.8194011, 24.588829 ], [ 120.8196577, 24.5907219 ], [ 120.8204662, 24.5922238 ], [ 120.8222571, 24.5932591 ], [ 120.821998, 24.5932924 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204177837", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.821143, 24.5934606 ], [ 120.8200597, 24.5919244 ], [ 120.8187479, 24.59064 ], [ 120.8166005, 24.5885136 ], [ 120.8141463, 24.58623 ], [ 120.8120012, 24.584696 ], [ 120.8111392, 24.5830367 ], [ 120.8090662, 24.5796891 ], [ 120.807407, 24.5770415 ], [ 120.8058737, 24.5745464 ], [ 120.804271, 24.5719944 ], [ 120.8029218, 24.569846 ], [ 120.8000518, 24.5651003 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204313653", "name": "天輪~龍潭線", "power": "line", "wires": "double", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9248805, 24.1842586 ], [ 120.925928, 24.1862828 ], [ 120.9222614, 24.1901055 ], [ 120.9172005, 24.1953477 ], [ 120.9131618, 24.1995635 ], [ 120.9080708, 24.204851 ], [ 120.9070039, 24.2065809 ], [ 120.904198, 24.2110787 ], [ 120.9005121, 24.2169887 ], [ 120.8993921, 24.2188514 ], [ 120.8977272, 24.2216686 ], [ 120.8966402, 24.2235144 ], [ 120.8943355, 24.2274203 ], [ 120.8912178, 24.2333093 ], [ 120.8878135, 24.2397002 ], [ 120.8862873, 24.2425573 ], [ 120.8837861, 24.2472195 ], [ 120.8828562, 24.2497822 ], [ 120.8822838, 24.2510834 ], [ 120.8804738, 24.2558638 ], [ 120.8795898, 24.2582465 ], [ 120.877663, 24.263332 ], [ 120.8766874, 24.2659403 ], [ 120.8758574, 24.2680089 ], [ 120.8736907, 24.2729715 ], [ 120.8711118, 24.2788269 ], [ 120.8691758, 24.2832402 ], [ 120.8677721, 24.2867988 ], [ 120.8658117, 24.2930875 ], [ 120.8638581, 24.2997305 ], [ 120.8644581, 24.3018085 ], [ 120.8652986, 24.3044296 ], [ 120.8667091, 24.3090878 ], [ 120.8677238, 24.3132148 ], [ 120.8687778, 24.3174986 ], [ 120.8694939, 24.3203946 ], [ 120.8691453, 24.3239145 ], [ 120.8689477, 24.3261006 ], [ 120.8687562, 24.3279196 ], [ 120.8683488, 24.3312815 ], [ 120.86804, 24.3338682 ], [ 120.8674127, 24.3412645 ], [ 120.8672554, 24.3431291 ], [ 120.8673726, 24.3482152 ], [ 120.8674969, 24.3543521 ], [ 120.8675822, 24.357092 ], [ 120.8676741, 24.3601311 ], [ 120.867389, 24.3628509 ], [ 120.8669173, 24.3674349 ], [ 120.8664874, 24.3717577 ], [ 120.8661028, 24.3759751 ], [ 120.8656856, 24.3795393 ], [ 120.8654046, 24.3820891 ], [ 120.8649391, 24.3862049 ], [ 120.8645814, 24.3913243 ], [ 120.8644472, 24.3941099 ], [ 120.8624612, 24.3997473 ], [ 120.8608299, 24.4044487 ], [ 120.860239, 24.4061957 ], [ 120.8597648, 24.4098521 ], [ 120.859396, 24.4128144 ], [ 120.8587283, 24.4173398 ], [ 120.8582167, 24.4212874 ], [ 120.8584394, 24.4235376 ], [ 120.8599426, 24.4287458 ], [ 120.8627234, 24.4319347 ], [ 120.8639443, 24.4333289 ], [ 120.8671565, 24.4370574 ], [ 120.8731989, 24.4375313 ], [ 120.8748836, 24.4376478 ], [ 120.8780949, 24.4387242 ], [ 120.8822663, 24.4399059 ], [ 120.8881122, 24.4410433 ], [ 120.8896607, 24.4425411 ], [ 120.8940351, 24.4467381 ], [ 120.895615, 24.4508863 ], [ 120.8973878, 24.4550577 ], [ 120.8988233, 24.4562532 ], [ 120.8994433, 24.4567696 ], [ 120.902053, 24.4589429 ], [ 120.905166, 24.4615188 ], [ 120.9079019, 24.4639108 ], [ 120.9095638, 24.465417 ], [ 120.9105319, 24.4689897 ], [ 120.9151396, 24.4745478 ], [ 120.9163861, 24.4760384 ], [ 120.9192148, 24.4794789 ], [ 120.9212, 24.4818858 ], [ 120.9279916, 24.4860121 ], [ 120.9300476, 24.4874251 ], [ 120.9322612, 24.4886023 ], [ 120.9369318, 24.4922906 ], [ 120.9405942, 24.494661 ], [ 120.9427505, 24.4960641 ], [ 120.9459415, 24.498116 ], [ 120.9488633, 24.5008626 ], [ 120.9518124, 24.5036841 ], [ 120.9542137, 24.5059837 ], [ 120.9571949, 24.513235 ], [ 120.9579343, 24.5151729 ], [ 120.9596951, 24.5198962 ], [ 120.9613428, 24.5222292 ], [ 120.9647444, 24.5269008 ], [ 120.9663205, 24.5286703 ], [ 120.9680868, 24.5308094 ], [ 120.96958, 24.5326844 ], [ 120.9717523, 24.53642 ], [ 120.9726171, 24.5378982 ], [ 120.974337, 24.5407996 ], [ 120.9765975, 24.5446871 ], [ 120.9780252, 24.5476218 ], [ 120.9797883, 24.5513753 ], [ 120.9817267, 24.5555319 ], [ 120.9841413, 24.5598885 ], [ 120.9853097, 24.5619753 ], [ 120.9885984, 24.5686587 ], [ 120.9909022, 24.5730649 ], [ 120.9923738, 24.5760066 ], [ 120.9945894, 24.5802766 ], [ 120.9961021, 24.5815185 ], [ 120.9982671, 24.5832719 ], [ 121.0014129, 24.5858196 ], [ 121.0053607, 24.5889515 ], [ 121.0094166, 24.5925489 ], [ 121.0132282, 24.5958516 ], [ 121.0176311, 24.5996949 ], [ 121.0192952, 24.6011296 ], [ 121.0218089, 24.6027031 ], [ 121.0250255, 24.604809 ], [ 121.0313622, 24.6089215 ], [ 121.0362929, 24.6141301 ], [ 121.0400769, 24.6181356 ], [ 121.0417292, 24.6198539 ], [ 121.0457916, 24.6241709 ], [ 121.048179, 24.6264306 ], [ 121.0507526, 24.62883 ], [ 121.054504, 24.6323654 ], [ 121.0556632, 24.6334788 ], [ 121.0593028, 24.6369017 ], [ 121.0628023, 24.6394055 ], [ 121.0673397, 24.6426028 ], [ 121.0704674, 24.6447787 ], [ 121.0723635, 24.6461357 ], [ 121.074742, 24.6482878 ], [ 121.0799787, 24.6530084 ], [ 121.0812709, 24.6542197 ], [ 121.0861747, 24.6576274 ], [ 121.0880849, 24.6587497 ], [ 121.0912883, 24.6617345 ], [ 121.0936681, 24.6639097 ], [ 121.095221, 24.6653475 ], [ 121.0984289, 24.6672247 ], [ 121.1003328, 24.6683995 ], [ 121.1068292, 24.6735089 ], [ 121.1093768, 24.6746112 ], [ 121.1102505, 24.6766694 ], [ 121.1109361, 24.6785501 ], [ 121.1110831, 24.6789533 ], [ 121.1115408, 24.680407 ], [ 121.112368, 24.6830338 ], [ 121.1136294, 24.6867417 ], [ 121.1136436, 24.6867835 ], [ 121.114596, 24.6895434 ], [ 121.1170727, 24.6965703 ], [ 121.1191674, 24.702437 ], [ 121.1201932, 24.7053495 ], [ 121.1215461, 24.7091856 ], [ 121.1225986, 24.7120942 ], [ 121.1239701, 24.7160148 ], [ 121.1241529, 24.7189358 ], [ 121.1264027, 24.7214633 ], [ 121.1283435, 24.7235994 ], [ 121.1308929, 24.7264623 ], [ 121.1325334, 24.7282421 ], [ 121.1357291, 24.7318672 ], [ 121.1361745, 24.7323706 ], [ 121.138918, 24.735472 ], [ 121.1411135, 24.7379103 ], [ 121.1442081, 24.7414104 ], [ 121.1474798, 24.743341 ], [ 121.1497975, 24.7447026 ], [ 121.1528465, 24.7458668 ], [ 121.1567853, 24.7473379 ], [ 121.1611566, 24.7490158 ], [ 121.162691, 24.7495887 ], [ 121.1660944, 24.7508863 ], [ 121.1668323, 24.7511786 ], [ 121.1676423, 24.7514994 ], [ 121.1713485, 24.7534269 ], [ 121.1761108, 24.7559117 ], [ 121.1778834, 24.7568305 ], [ 121.1833816, 24.759707 ], [ 121.1850726, 24.7604891 ], [ 121.1882962, 24.7618669 ], [ 121.1915201, 24.7643666 ], [ 121.1935755, 24.7657601 ], [ 121.1949231, 24.7666718 ], [ 121.1978918, 24.7686499 ], [ 121.1999093, 24.7707857 ], [ 121.2022121, 24.772849 ], [ 121.2025553, 24.7748985 ], [ 121.2020412, 24.7793004 ], [ 121.2019038, 24.7807522 ], [ 121.2012921, 24.7862882 ], [ 121.2010429, 24.7887678 ], [ 121.2006268, 24.7924076 ], [ 121.2004266, 24.7940698 ], [ 121.200023, 24.8004038 ], [ 121.1999649, 24.8032895 ], [ 121.199871, 24.805337 ], [ 121.1994397, 24.8076826 ], [ 121.1981748, 24.8123824 ], [ 121.1964433, 24.8134641 ], [ 121.1968448, 24.8154587 ], [ 121.196729, 24.8165222 ], [ 121.1959181, 24.8188744 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204313654", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8224933, 24.3063661 ], [ 120.8237608, 24.3050625 ], [ 120.8255256, 24.3035772 ], [ 120.8278308, 24.3014107 ], [ 120.8307029, 24.3001048 ], [ 120.8327076, 24.2987448 ], [ 120.8336847, 24.2970799 ], [ 120.8357879, 24.295538 ], [ 120.8378381, 24.2939076 ], [ 120.8402948, 24.2922518 ], [ 120.8425015, 24.291451 ], [ 120.8453849, 24.2901898 ], [ 120.8480396, 24.2898289 ], [ 120.850806, 24.2895248 ], [ 120.853749, 24.2899796 ], [ 120.8572354, 24.2901659 ], [ 120.8603062, 24.2910235 ], [ 120.8623803, 24.2921294 ], [ 120.8645487, 24.2926541 ], [ 120.8664314, 24.2937555 ], [ 120.868916, 24.2956052 ], [ 120.8705974, 24.2968815 ], [ 120.8735678, 24.2993137 ], [ 120.8775329, 24.3012581 ], [ 120.8807354, 24.3056069 ], [ 120.8859545, 24.3083378 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204725656", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8764656, 24.3467318 ], [ 120.8776825, 24.3469111 ], [ 120.8800197, 24.3480501 ], [ 120.8814766, 24.3496406 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "204725657", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8810058, 24.3501153 ], [ 120.8812387, 24.3502698 ], [ 120.8815418, 24.3502261 ], [ 120.881725, 24.3501013 ], [ 120.8816822, 24.349861 ], [ 120.8816223, 24.3498235 ], [ 120.8809356, 24.3499296 ], [ 120.8809167, 24.3499593 ], [ 120.8809424, 24.3501044 ], [ 120.8810058, 24.3501153 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "205022431", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3085358, 22.594161 ], [ 120.308836, 22.5933731 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "205022440", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.297919, 22.6016195 ], [ 120.2985571, 22.6018481 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "208040867", "name": "南工一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3741845, 22.5429296 ], [ 120.3732155, 22.5442934 ], [ 120.3731472, 22.5443893 ], [ 120.3710807, 22.5427324 ], [ 120.3718978, 22.5415603 ], [ 120.371964, 22.5415104 ], [ 120.3720461, 22.5414709 ], [ 120.3721304, 22.5414443 ], [ 120.3722104, 22.5414261 ], [ 120.3722976, 22.5414546 ], [ 120.374133, 22.5428343 ], [ 120.3741067, 22.5428681 ], [ 120.3741845, 22.5429296 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "208892631", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.26774, 24.947742 ], [ 121.2693636, 24.94835 ], [ 121.27358, 24.9496438 ], [ 121.2754683, 24.9502469 ], [ 121.2767772, 24.9506554 ], [ 121.2790528, 24.9513252 ], [ 121.2812358, 24.9531792 ], [ 121.2828384, 24.9545175 ], [ 121.2851464, 24.9565011 ], [ 121.2879507, 24.9562246 ], [ 121.2903271, 24.9559814 ], [ 121.2921738, 24.9549545 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "208965151", "name": "五甲超高壓變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3294131, 22.590844 ], [ 120.3312266, 22.5921421 ], [ 120.3314019, 22.5919163 ], [ 120.3325202, 22.590479 ], [ 120.3316433, 22.5898808 ], [ 120.3314682, 22.5900953 ], [ 120.3306306, 22.5895198 ], [ 120.330027, 22.590257 ], [ 120.3299253, 22.5901919 ], [ 120.3294131, 22.590844 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "209867312", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1071969, 24.2471658 ], [ 121.1077551, 24.24711 ], [ 121.1077742, 24.2466707 ], [ 121.1079119, 24.2466324 ], [ 121.1078851, 24.2459526 ], [ 121.1072887, 24.2460328 ], [ 121.107304, 24.2467614 ], [ 121.1071702, 24.2467962 ], [ 121.1071969, 24.2471658 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "211600238", "name": "岡工變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "addr:city": "高雄市", "addr:country": "TW", "addr:district": "岡山區", "addr:housenumber": "11", "addr:postcode": "820110", "addr:street": "本工西一路", "alt_name": "岡工一次配電變電所;岡工D/S", "barrier": "fence", "location": "indoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2702283, 22.8145894 ], [ 120.2706013, 22.8150793 ], [ 120.2711731, 22.8146961 ], [ 120.2708224, 22.8142346 ], [ 120.2702283, 22.8145894 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "212768743", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5426594, 24.9981352 ], [ 121.5424047, 24.9982184 ], [ 121.5423664, 24.9982809 ], [ 121.5416187, 24.9985471 ], [ 121.5415003, 24.9984962 ], [ 121.5413828, 24.9985418 ], [ 121.5413355, 24.9986675 ], [ 121.540664, 24.9989259 ], [ 121.5406212, 24.9989639 ], [ 121.540302, 24.9996892 ], [ 121.5403334, 24.9997479 ], [ 121.5408002, 24.9998986 ], [ 121.5408432, 24.9998973 ], [ 121.5409559, 24.9998497 ], [ 121.5410433, 24.9998127 ], [ 121.5410733, 24.9998333 ], [ 121.542877, 24.9990868 ], [ 121.5429267, 24.9990662 ], [ 121.5431655, 24.9989672 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "213916350", "name": "深坑~動物園線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 50, "other_tags": { "alt_name": "深坑~政大線", "demolished:name": "七張~深坑線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6182375, 25.004177 ], [ 121.6179946, 25.0046722 ], [ 121.6165578, 25.0045195 ], [ 121.6146405, 25.0037079 ], [ 121.6133674, 25.0033476 ], [ 121.6107313, 25.002558 ], [ 121.6097074, 25.0015913 ], [ 121.6094496, 25.0001028 ], [ 121.6055939, 24.9976984 ], [ 121.6013736, 24.9950493 ], [ 121.5985182, 24.9932446 ], [ 121.5919946, 24.9915022 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "216625865", "name": "仁武超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "fence", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3731227, 22.7010259 ], [ 120.3732023, 22.7012907 ], [ 120.3732656, 22.701322 ], [ 120.3735055, 22.7023004 ], [ 120.3731039, 22.703609 ], [ 120.3727443, 22.7035614 ], [ 120.3712618, 22.7038918 ], [ 120.3709125, 22.7026468 ], [ 120.3705086, 22.7027337 ], [ 120.37035, 22.7022037 ], [ 120.3699476, 22.7023133 ], [ 120.3697655, 22.7020815 ], [ 120.3696734, 22.7018234 ], [ 120.3710574, 22.7014865 ], [ 120.3712875, 22.7016112 ], [ 120.3714195, 22.7015797 ], [ 120.371549, 22.7013747 ], [ 120.3731227, 22.7010259 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "216625866", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.367337, 22.6993563 ], [ 120.3674597, 22.6995689 ], [ 120.3674948, 22.6997722 ], [ 120.3673445, 22.7002181 ], [ 120.3676776, 22.7003867 ], [ 120.3677427, 22.7006062 ], [ 120.3678229, 22.7007679 ], [ 120.3679706, 22.7008673 ], [ 120.3680783, 22.7008719 ], [ 120.3682136, 22.7008165 ], [ 120.3682561, 22.7008072 ], [ 120.3685617, 22.7008858 ], [ 120.3687345, 22.7011607 ], [ 120.3688196, 22.7013016 ], [ 120.3688271, 22.7015488 ], [ 120.3728266, 22.700664 ], [ 120.3728291, 22.7003706 ], [ 120.3724935, 22.6998115 ], [ 120.3719651, 22.6995735 ], [ 120.3717372, 22.698982 ], [ 120.3715769, 22.6987949 ], [ 120.3711082, 22.6986498 ], [ 120.371065, 22.699021 ], [ 120.3708957, 22.699153 ], [ 120.3703322, 22.7000818 ], [ 120.3703197, 22.7002504 ], [ 120.3701294, 22.7001742 ], [ 120.370182, 22.699183 ], [ 120.3697512, 22.6988734 ], [ 120.3693856, 22.698848 ], [ 120.3693205, 22.6989612 ], [ 120.3691051, 22.6991183 ], [ 120.3689599, 22.6990051 ], [ 120.3689498, 22.6989127 ], [ 120.3688096, 22.6987602 ], [ 120.368747, 22.6984899 ], [ 120.3680959, 22.6989982 ], [ 120.3677427, 22.6992038 ], [ 120.367337, 22.6993563 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "216625869", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4099558, 22.5711047 ], [ 120.4104025, 22.5711849 ], [ 120.4115591, 22.5715763 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "217823407", "name": "天輪-霧峰線", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2", "start_date": "1980-04" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9228434, 24.1845913 ], [ 120.9224, 24.1839715 ], [ 120.9195645, 24.1824858 ], [ 120.9179574, 24.1820005 ], [ 120.9172214, 24.1817883 ], [ 120.9099212, 24.1809707 ], [ 120.9034989, 24.1776485 ], [ 120.9023634, 24.1758428 ], [ 120.8989785, 24.1703769 ], [ 120.8967521, 24.1676318 ], [ 120.8926957, 24.1627093 ], [ 120.8904191, 24.1599266 ], [ 120.8894456, 24.1587569 ], [ 120.8865089, 24.157539 ], [ 120.880377, 24.1549403 ], [ 120.8764512, 24.1533032 ], [ 120.8746434, 24.1526865 ], [ 120.8678974, 24.1514278 ], [ 120.8670952, 24.1512781 ], [ 120.8635107, 24.1516501 ], [ 120.8567353, 24.1523387 ], [ 120.8539688, 24.1521842 ], [ 120.8479126, 24.1529457 ], [ 120.8454574, 24.1533103 ], [ 120.8422039, 24.1538096 ], [ 120.836812, 24.1538365 ], [ 120.8332342, 24.153917 ], [ 120.8281039, 24.1539793 ], [ 120.8225111, 24.1540514 ], [ 120.8178293, 24.1507055 ], [ 120.8159472, 24.1492774 ], [ 120.8105483, 24.1453629 ], [ 120.8084377, 24.1438295 ], [ 120.8049536, 24.1412773 ], [ 120.8013904, 24.139258 ], [ 120.798545, 24.1365237 ], [ 120.7937062, 24.1317284 ], [ 120.7898742, 24.1279548 ], [ 120.7851325, 24.1232647 ], [ 120.7840531, 24.1221416 ], [ 120.7811491, 24.1191251 ], [ 120.7792022, 24.1171101 ], [ 120.7764702, 24.1143041 ], [ 120.7724241, 24.1117096 ], [ 120.770676, 24.1105895 ], [ 120.7638221, 24.1065083 ], [ 120.7605452, 24.1045423 ], [ 120.7577465, 24.102534 ], [ 120.7530987, 24.0991644 ], [ 120.7518081, 24.0982241 ], [ 120.7509894, 24.0976129 ], [ 120.7480648, 24.0945647 ], [ 120.7449348, 24.0912382 ], [ 120.7416915, 24.0877718 ], [ 120.7406999, 24.0866893 ], [ 120.7334554, 24.082657 ], [ 120.7312431, 24.0813831 ], [ 120.729613, 24.079983 ], [ 120.7251947, 24.0761138 ], [ 120.7220717, 24.0735023 ], [ 120.7141438, 24.0717463 ], [ 120.7116999, 24.0711255 ], [ 120.7085777, 24.071421 ], [ 120.7080343, 24.0715421 ], [ 120.7068992, 24.0717769 ], [ 120.7065959, 24.0718263 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "218206673", "power": "line", "line": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4355276, 24.1328231 ], [ 120.4358073, 24.132635 ], [ 120.4364625, 24.1319834 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "218206674", "power": "line", "line": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4353898, 24.1326415 ], [ 120.435671, 24.132447 ], [ 120.4364625, 24.1319834 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "218206675", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4364625, 24.1319834 ], [ 120.4389281, 24.1303853 ], [ 120.4384952, 24.1279962 ], [ 120.4382501, 24.1264344 ], [ 120.438131, 24.1232691 ], [ 120.4375117, 24.1204623 ], [ 120.4367553, 24.1177217 ], [ 120.4360474, 24.1150158 ], [ 120.4353699, 24.1121967 ], [ 120.4346795, 24.1094308 ], [ 120.4340268, 24.1066805 ], [ 120.4333491, 24.1039133 ], [ 120.4325862, 24.1005628 ], [ 120.4317131, 24.0972557 ], [ 120.431477, 24.0960238 ], [ 120.4335863, 24.0951291 ], [ 120.434844, 24.0929266 ], [ 120.4344315, 24.0894288 ], [ 120.4317469, 24.0879667 ], [ 120.4284357, 24.0858351 ], [ 120.4252326, 24.0844241 ], [ 120.423504, 24.0848124 ], [ 120.4207573, 24.0825452 ], [ 120.4188242, 24.0809382 ], [ 120.4163162, 24.0813568 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "219071460", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7353057, 22.0126862 ], [ 120.7336151, 22.0139093 ], [ 120.7319655, 22.0131369 ], [ 120.7304988, 22.0142526 ], [ 120.7302424, 22.0143326 ], [ 120.7292275, 22.0146491 ], [ 120.7288545, 22.0147654 ], [ 120.7288479, 22.0147728 ], [ 120.7273334, 22.0164806 ], [ 120.7259697, 22.018679 ], [ 120.7253108, 22.0208396 ], [ 120.7246225, 22.0220122 ], [ 120.7244953, 22.0226895 ], [ 120.7238896, 22.0246604 ], [ 120.7215514, 22.0258732 ], [ 120.7209225, 22.0286278 ], [ 120.7205466, 22.0312526 ], [ 120.7194662, 22.0328713 ], [ 120.7205221, 22.034718 ], [ 120.7214841, 22.0363734 ], [ 120.721307, 22.0375989 ], [ 120.7197991, 22.0401072 ], [ 120.7190727, 22.0425226 ], [ 120.7191846, 22.0439288 ], [ 120.7183354, 22.046591 ], [ 120.7178998, 22.049132 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "219490783", "name": "楓港一次變電所", "operator": "台灣電力公司", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7251382, 22.2064393 ], [ 120.7251407, 22.2060259 ], [ 120.726004, 22.204932 ], [ 120.7252079, 22.2043975 ], [ 120.7250596, 22.2045933 ], [ 120.724851, 22.2045872 ], [ 120.7244393, 22.2048748 ], [ 120.7242109, 22.2051917 ], [ 120.7244212, 22.2055956 ], [ 120.7245032, 22.2058704 ], [ 120.7244549, 22.2059045 ], [ 120.7245328, 22.2061152 ], [ 120.7249309, 22.2062791 ], [ 120.7251382, 22.2064393 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220004545", "name": "大鵬超高壓變電所", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6062314, 22.4197419 ], [ 120.6118596, 22.421142 ], [ 120.6120233, 22.4208515 ], [ 120.6099141, 22.4162349 ], [ 120.6098505, 22.416163 ], [ 120.6087156, 22.4158777 ], [ 120.6062314, 22.4197419 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220004546", "operator": "台灣電力股份有限公司", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6120174, 22.4211006 ], [ 120.6130485, 22.421451 ], [ 120.6129367, 22.4242529 ], [ 120.6128573, 22.4266883 ], [ 120.6123246, 22.4300922 ], [ 120.6118911, 22.4329247 ], [ 120.6113754, 22.4362942 ], [ 120.6116371, 22.4389199 ], [ 120.6119437, 22.4419088 ], [ 120.6134694, 22.4474892 ], [ 120.6128135, 22.4512863 ], [ 120.6125766, 22.4543349 ], [ 120.6118698, 22.4575762 ], [ 120.611447, 22.4602154 ], [ 120.610887, 22.4634505 ], [ 120.6103283, 22.4664443 ], [ 120.6118194, 22.4681709 ], [ 120.6148386, 22.4716341 ], [ 120.6169955, 22.4741378 ], [ 120.6194924, 22.4770283 ], [ 120.6195721, 22.4777192 ], [ 120.6201562, 22.484171 ], [ 120.6203083, 22.4856795 ], [ 120.6204651, 22.4872608 ], [ 120.6215154, 22.4912599 ], [ 120.6226627, 22.4959938 ], [ 120.6237958, 22.4987154 ], [ 120.6247351, 22.5009848 ], [ 120.6255746, 22.5029893 ], [ 120.625424, 22.5047155 ], [ 120.6251498, 22.5076877 ], [ 120.6248844, 22.5107697 ], [ 120.6220792, 22.5141133 ], [ 120.6196617, 22.5169973 ], [ 120.6183187, 22.5186062 ], [ 120.6163118, 22.5209766 ], [ 120.613901, 22.523856 ], [ 120.6122219, 22.5258834 ], [ 120.610611, 22.5277945 ], [ 120.6090086, 22.5297463 ], [ 120.6065901, 22.5308383 ], [ 120.6041435, 22.5319104 ], [ 120.6014237, 22.5328424 ], [ 120.5987401, 22.5340126 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220090271", "name": "高雄超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2921207, 22.6474073 ], [ 120.2923599, 22.6473994 ], [ 120.2924203, 22.6477848 ], [ 120.2940322, 22.6476571 ], [ 120.294188, 22.6476448 ], [ 120.2942447, 22.647291 ], [ 120.2943455, 22.6471398 ], [ 120.2942831, 22.6463065 ], [ 120.2941586, 22.6462262 ], [ 120.2921564, 22.6463533 ], [ 120.2921102, 22.6464022 ], [ 120.2921207, 22.6474073 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220116886", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.57574, 22.4621443 ], [ 120.5717021, 22.4622266 ], [ 120.5680472, 22.4622689 ], [ 120.5635396, 22.4623771 ], [ 120.5590772, 22.4624673 ], [ 120.5548205, 22.4625408 ], [ 120.5510138, 22.4627843 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220263839", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6045043, 22.4378249 ], [ 120.6047813, 22.4400937 ], [ 120.6050401, 22.4428257 ], [ 120.6052222, 22.4454796 ], [ 120.6055056, 22.4484592 ], [ 120.6031863, 22.4501136 ], [ 120.6012098, 22.4515715 ], [ 120.5991551, 22.4535319 ], [ 120.5953697, 22.4570329 ], [ 120.5933977, 22.4590243 ], [ 120.5899602, 22.4601508 ], [ 120.5865071, 22.4610676 ], [ 120.5798948, 22.462069 ], [ 120.57574, 22.4621443 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636543", "name": "全興~南投線", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6393102, 23.8806274 ], [ 120.6423611, 23.8817202 ], [ 120.6436435, 23.8856764 ], [ 120.6444195, 23.8877893 ], [ 120.6462946, 23.8893601 ], [ 120.6471049, 23.8902613 ], [ 120.6491169, 23.8924516 ], [ 120.6501595, 23.8935955 ], [ 120.6518042, 23.8958413 ], [ 120.6539346, 23.8977341 ], [ 120.6552335, 23.8995408 ], [ 120.6568588, 23.9038189 ], [ 120.6571036, 23.9052961 ], [ 120.6571174, 23.9053791 ], [ 120.657237, 23.9061841 ], [ 120.6577194, 23.9094301 ], [ 120.657029, 23.9110215 ], [ 120.655521, 23.9137182 ], [ 120.6537493, 23.9152929 ], [ 120.6522339, 23.9188358 ], [ 120.6503808, 23.9226047 ], [ 120.6493327, 23.9247864 ], [ 120.6477654, 23.9281698 ], [ 120.6468535, 23.9299862 ], [ 120.6451272, 23.9335737 ], [ 120.6442878, 23.9353554 ], [ 120.6430964, 23.9379308 ], [ 120.6419045, 23.9400705 ], [ 120.6407189, 23.9424925 ], [ 120.6392866, 23.9455322 ], [ 120.6388307, 23.9476453 ], [ 120.6378677, 23.9507976 ], [ 120.6372361, 23.9530797 ], [ 120.636824, 23.9547111 ], [ 120.6361543, 23.956916 ], [ 120.6351761, 23.9601557 ], [ 120.6344137, 23.9625708 ], [ 120.6337321, 23.9649165 ], [ 120.6330677, 23.9672038 ], [ 120.6324019, 23.9692332 ], [ 120.6319376, 23.9709673 ], [ 120.6306187, 23.9728972 ], [ 120.6281471, 23.9762856 ], [ 120.6263701, 23.978668 ], [ 120.6245559, 23.9812587 ], [ 120.6230175, 23.983468 ], [ 120.6215654, 23.9851691 ], [ 120.6201111, 23.9868389 ], [ 120.6187397, 23.9898948 ], [ 120.6180115, 23.9921262 ], [ 120.6163702, 23.9934441 ], [ 120.6155914, 23.995747 ], [ 120.6144698, 23.9978112 ], [ 120.6134149, 23.9998027 ], [ 120.6119825, 24.0023719 ], [ 120.6101252, 24.0058477 ], [ 120.6092655, 24.0076277 ], [ 120.6078995, 24.0105837 ], [ 120.607041, 24.0128847 ], [ 120.6064678, 24.0146752 ], [ 120.6058322, 24.0164082 ], [ 120.6049901, 24.0187398 ], [ 120.6042293, 24.0208539 ], [ 120.6033305, 24.0233574 ], [ 120.6031208, 24.0273055 ], [ 120.6029418, 24.0304877 ], [ 120.6027974, 24.0332324 ], [ 120.6026973, 24.0348504 ], [ 120.6025923, 24.0369379 ], [ 120.6016685, 24.0392164 ], [ 120.6005835, 24.0419059 ], [ 120.599589, 24.0444205 ], [ 120.5984741, 24.0481387 ], [ 120.5973745, 24.0518316 ], [ 120.5978043, 24.0550142 ], [ 120.5980441, 24.0559389 ], [ 120.5999307, 24.0596757 ], [ 120.6025874, 24.0604595 ], [ 120.603581, 24.0625247 ], [ 120.6043096, 24.0655291 ], [ 120.6053, 24.069843 ], [ 120.6064492, 24.0731589 ], [ 120.6086567, 24.0770892 ], [ 120.6094625, 24.0787635 ], [ 120.610258, 24.0804267 ], [ 120.6111345, 24.0819657 ], [ 120.612335, 24.0842105 ], [ 120.6131161, 24.0868464 ], [ 120.611955, 24.0889938 ], [ 120.6097064, 24.091717 ], [ 120.6074256, 24.0945446 ], [ 120.6042156, 24.0964049 ], [ 120.6011262, 24.0981968 ], [ 120.5970379, 24.0988029 ], [ 120.593097, 24.0993681 ], [ 120.5891683, 24.0998861 ], [ 120.5850586, 24.1015254 ], [ 120.5817388, 24.1028676 ], [ 120.578017, 24.1043302 ], [ 120.5745874, 24.1055767 ], [ 120.5712942, 24.1067361 ], [ 120.5671085, 24.1070139 ], [ 120.5640268, 24.1072231 ], [ 120.5606628, 24.1074344 ], [ 120.5572238, 24.1076451 ], [ 120.5540275, 24.108902 ], [ 120.5502206, 24.1103864 ], [ 120.5466025, 24.1117939 ], [ 120.5438645, 24.1140419 ], [ 120.5409212, 24.1164484 ], [ 120.5378598, 24.1189828 ], [ 120.5349943, 24.1213729 ], [ 120.5318691, 24.1240125 ], [ 120.5304384, 24.1259438 ], [ 120.5284647, 24.1286137 ], [ 120.5264998, 24.1313079 ], [ 120.5253049, 24.1345193 ], [ 120.5242797, 24.1372972 ], [ 120.5233904, 24.1397129 ], [ 120.5231, 24.1405019 ], [ 120.521995, 24.1433927 ], [ 120.5208119, 24.1464925 ], [ 120.5197381, 24.1493509 ], [ 120.5175212, 24.1518911 ], [ 120.5168545, 24.1547994 ], [ 120.5161603, 24.1575243 ], [ 120.5155633, 24.1594785 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636549", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6545148, 23.8564847 ], [ 120.652209, 23.8554255 ], [ 120.649639, 23.8542679 ], [ 120.6471843, 23.853142 ], [ 120.6442424, 23.851835 ], [ 120.6423857, 23.8509835 ], [ 120.6401551, 23.8499747 ], [ 120.6376391, 23.8488444 ], [ 120.6350378, 23.8476938 ], [ 120.6342976, 23.8456312 ], [ 120.6336227, 23.8436664 ], [ 120.6310302, 23.8428147 ], [ 120.6287581, 23.8411926 ], [ 120.6267627, 23.8407966 ], [ 120.6230098, 23.8399934 ], [ 120.6212537, 23.8378438 ], [ 120.6198488, 23.8361185 ], [ 120.618047, 23.8348941 ], [ 120.6148, 23.8326785 ], [ 120.6137392, 23.8319857 ], [ 120.6121234, 23.829972 ], [ 120.6096246, 23.8268953 ], [ 120.6061078, 23.8255041 ], [ 120.604538, 23.8241887 ], [ 120.6028118, 23.8227077 ], [ 120.6013755, 23.8215025 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636558", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6358912, 23.8809419 ], [ 120.635392, 23.8810134 ], [ 120.635525, 23.8818252 ], [ 120.6356489, 23.8826331 ], [ 120.6401517, 23.8854528 ], [ 120.6423236, 23.8867955 ], [ 120.6435618, 23.8884514 ], [ 120.6451409, 23.8906036 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636561", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6392414, 23.8799552 ], [ 120.6422098, 23.8809005 ], [ 120.6454554, 23.8813414 ], [ 120.6486088, 23.8817824 ], [ 120.6514101, 23.8821238 ], [ 120.6548425, 23.8825809 ], [ 120.6583694, 23.8830875 ], [ 120.6635178, 23.8837851 ], [ 120.666236, 23.8834077 ], [ 120.6693045, 23.8830205 ], [ 120.6720163, 23.8833638 ], [ 120.6748022, 23.8836446 ], [ 120.677377, 23.8838523 ], [ 120.6857274, 23.8848317 ], [ 120.6888197, 23.8851356 ], [ 120.6922016, 23.8854538 ], [ 120.6959188, 23.8858667 ], [ 120.7017111, 23.88653 ], [ 120.7046023, 23.8868001 ], [ 120.7075417, 23.8870961 ], [ 120.7101721, 23.8874477 ], [ 120.7131855, 23.8877826 ], [ 120.716646, 23.8881046 ], [ 120.7196272, 23.8887176 ], [ 120.7247374, 23.8898818 ], [ 120.7277767, 23.8903454 ], [ 120.7310118, 23.8918806 ], [ 120.7359674, 23.8947344 ], [ 120.738097, 23.8973045 ], [ 120.7385274, 23.8976361 ], [ 120.739547, 23.8982355 ], [ 120.743049, 23.8987971 ], [ 120.7465932, 23.8994018 ], [ 120.7514245, 23.8959474 ], [ 120.7547521, 23.8938825 ], [ 120.7572599, 23.893135 ], [ 120.7592412, 23.8929387 ], [ 120.7623691, 23.8926287 ], [ 120.7643158, 23.8924355 ], [ 120.767425, 23.892501 ], [ 120.7682038, 23.8913495 ], [ 120.7690351, 23.8906595 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636566", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6290459, 23.8814794 ], [ 120.6266409, 23.8798842 ], [ 120.6248973, 23.8771014 ], [ 120.6243869, 23.8726982 ], [ 120.6242142, 23.871208 ], [ 120.6236282, 23.8681081 ], [ 120.6230986, 23.8641486 ], [ 120.6234417, 23.8607171 ], [ 120.6245071, 23.8579948 ], [ 120.6255562, 23.8549972 ], [ 120.6244195, 23.8524226 ], [ 120.6230478, 23.8481433 ], [ 120.6186546, 23.8445016 ], [ 120.6127714, 23.8418627 ], [ 120.6106465, 23.8409337 ], [ 120.608972, 23.8401835 ], [ 120.6035152, 23.8376995 ], [ 120.6018153, 23.8367044 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220636569", "power": "line", "wires": "double", "cables": "6", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6750083, 23.8921159 ], [ 120.6709367, 23.8910074 ], [ 120.6679165, 23.8903257 ], [ 120.6651002, 23.8896635 ], [ 120.6619754, 23.8886997 ], [ 120.6588059, 23.8889138 ], [ 120.6559977, 23.8877027 ], [ 120.6532265, 23.888563 ], [ 120.649672, 23.887158 ], [ 120.6468131, 23.8866099 ], [ 120.6440103, 23.8856175 ], [ 120.6417077, 23.8838124 ], [ 120.6399924, 23.8827933 ], [ 120.6391261, 23.8811522 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220838568", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4502518, 22.6345763 ], [ 120.450921, 22.6329111 ], [ 120.4536208, 22.633458 ], [ 120.4563659, 22.6340496 ], [ 120.458649, 22.6345124 ], [ 120.4586578, 22.6355774 ], [ 120.458467, 22.6373606 ], [ 120.4580948, 22.6389344 ], [ 120.4579494, 22.6413715 ], [ 120.4577963, 22.6433904 ], [ 120.4584798, 22.6455066 ], [ 120.45937, 22.6476699 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "220838569", "name": "加一變電所(D/S)", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "barrier": "fence", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.449517, 22.6344691 ], [ 120.4493632, 22.6349877 ], [ 120.450141, 22.6351844 ], [ 120.4502964, 22.6346836 ], [ 120.4503499, 22.6346971 ], [ 120.4504061, 22.6345076 ], [ 120.4501515, 22.6344433 ], [ 120.4500991, 22.6346198 ], [ 120.4498723, 22.6345625 ], [ 120.4499286, 22.6343729 ], [ 120.4496688, 22.6343073 ], [ 120.4496135, 22.6344934 ], [ 120.449517, 22.6344691 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221382190", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1960125, 22.8611028 ], [ 120.1961211, 22.8606975 ], [ 120.196634, 22.8606028 ], [ 120.1972789, 22.8604547 ], [ 120.1978865, 22.8603152 ], [ 120.198494, 22.8601705 ], [ 120.1991128, 22.8600327 ], [ 120.1997148, 22.8598948 ], [ 120.2003354, 22.8597536 ], [ 120.2009336, 22.8596175 ], [ 120.2013991, 22.8594263 ], [ 120.2015057, 22.8590973 ], [ 120.2017118, 22.858498 ], [ 120.2019513, 22.8579099 ], [ 120.2021697, 22.8572874 ], [ 120.2023315, 22.8567762 ], [ 120.2025036, 22.8562626 ], [ 120.202668, 22.8556969 ], [ 120.2023454, 22.8552462 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221382193", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2467765, 22.8386532 ], [ 120.2447058, 22.8384666 ], [ 120.2420525, 22.838856 ], [ 120.239258, 22.8392875 ], [ 120.2363456, 22.8397162 ], [ 120.2331872, 22.8401902 ], [ 120.2295513, 22.8407279 ], [ 120.2262826, 22.8412208 ], [ 120.2226468, 22.8417483 ], [ 120.2225933, 22.8417561 ], [ 120.2196288, 22.8422002 ], [ 120.2194588, 22.8422255 ], [ 120.2175261, 22.8425129 ], [ 120.2174244, 22.842528 ], [ 120.2139349, 22.843047 ], [ 120.2106796, 22.8434858 ], [ 120.2079969, 22.843911 ], [ 120.2052043, 22.8461032 ], [ 120.20433, 22.8486269 ], [ 120.2034633, 22.8512853 ], [ 120.2010823, 22.853471 ], [ 120.2009471, 22.8538899 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221382194", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2020887, 22.8541986 ], [ 120.2022414, 22.8537093 ], [ 120.2037841, 22.8513737 ], [ 120.2046381, 22.8487047 ], [ 120.2054344, 22.8464126 ], [ 120.2079594, 22.8454675 ], [ 120.2108698, 22.845018 ], [ 120.2135275, 22.8445942 ], [ 120.216721, 22.8440972 ], [ 120.220561, 22.8435066 ], [ 120.224558, 22.8428968 ], [ 120.2271179, 22.8424991 ], [ 120.2290632, 22.8421972 ], [ 120.2295423, 22.8421229 ], [ 120.2326393, 22.843106 ], [ 120.2339887, 22.8465513 ], [ 120.2351374, 22.8495026 ], [ 120.2345127, 22.8525075 ], [ 120.2338611, 22.8554595 ], [ 120.2331822, 22.8584251 ], [ 120.2325101, 22.861581 ], [ 120.2318856, 22.8644134 ], [ 120.2311785, 22.8677162 ], [ 120.2304267, 22.8711627 ], [ 120.2298071, 22.8740041 ], [ 120.2292268, 22.8766207 ], [ 120.2286399, 22.8792611 ], [ 120.2280788, 22.8818091 ], [ 120.227519, 22.8844794 ], [ 120.2277563, 22.887819 ], [ 120.2280091, 22.8912787 ], [ 120.2280312, 22.8915817 ], [ 120.2281442, 22.8929711 ], [ 120.2283283, 22.8952359 ], [ 120.2304267, 22.8973178 ], [ 120.2329866, 22.8997208 ], [ 120.2355905, 22.8997983 ], [ 120.2380246, 22.899865 ], [ 120.2410694, 22.8999717 ], [ 120.2438728, 22.9000646 ], [ 120.2458612, 22.898315 ], [ 120.2484255, 22.8960534 ], [ 120.2506819, 22.894063 ], [ 120.2532652, 22.8930868 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221638645", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7355741, 25.1602945 ], [ 121.7355209, 25.1600296 ], [ 121.7356213, 25.1599868 ], [ 121.7360173, 25.1601687 ], [ 121.7364193, 25.1600884 ], [ 121.7366867, 25.1600162 ], [ 121.7358873, 25.1591566 ], [ 121.7354157, 25.1594941 ], [ 121.7344143, 25.1588043 ], [ 121.7343297, 25.1585451 ], [ 121.7346469, 25.157976 ], [ 121.7348553, 25.1581213 ], [ 121.7350808, 25.1580061 ], [ 121.7348628, 25.1578421 ], [ 121.7348163, 25.1576036 ], [ 121.7348188, 25.1574005 ], [ 121.7349435, 25.1573991 ], [ 121.7350765, 25.1572234 ], [ 121.7350119, 25.1569383 ], [ 121.7349664, 25.1567101 ], [ 121.7354163, 25.156564 ], [ 121.7353366, 25.1558435 ], [ 121.7348531, 25.1551532 ], [ 121.7352469, 25.1544948 ], [ 121.7352748, 25.1541625 ], [ 121.7350338, 25.1540376 ], [ 121.7349422, 25.1536038 ], [ 121.7351533, 25.1533833 ], [ 121.7353182, 25.1532004 ], [ 121.7356132, 25.153079 ], [ 121.7358555, 25.1535233 ], [ 121.7360819, 25.1533363 ], [ 121.736929, 25.1540015 ], [ 121.7375677, 25.1532741 ], [ 121.7380482, 25.1531263 ], [ 121.7382782, 25.1533389 ], [ 121.738296, 25.1535292 ], [ 121.7402617, 25.1549954 ], [ 121.7429205, 25.1558263 ], [ 121.7430285, 25.1564068 ], [ 121.74295, 25.1570218 ], [ 121.7426099, 25.1571279 ], [ 121.7421819, 25.1571005 ], [ 121.7390552, 25.1594586 ], [ 121.7392705, 25.159715 ], [ 121.7390013, 25.1599524 ], [ 121.7384104, 25.1605039 ], [ 121.7385518, 25.1606515 ], [ 121.7383948, 25.1607655 ], [ 121.7382607, 25.1607642 ], [ 121.7381068, 25.1607545 ], [ 121.7379203, 25.1607785 ], [ 121.7377281, 25.1607052 ], [ 121.7371342, 25.1601434 ], [ 121.7366504, 25.1603068 ], [ 121.7361436, 25.160364 ], [ 121.7355741, 25.1602945 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221639524", "name": "天外天垃圾焚化廠", "operator": "信鼎技術服務股份有限公司", "power": "generator", "z_order": 0, "other_tags": { "alt_name": "天外天垃圾資源回收廠", "full_name": "基隆市天外天垃圾資源回收(焚化)廠", "generator:method": "combustion", "generator:output:electricity": "15.8 MW", "generator:source": "waste", "short_name": "天外天焚化廠", "website": "http://www.glp.sesc.com.tw/" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7751745, 25.1234035 ], [ 121.7752772, 25.1234048 ], [ 121.7759166, 25.1232316 ], [ 121.7763731, 25.1232178 ], [ 121.7764895, 25.123165 ], [ 121.7766177, 25.1230356 ], [ 121.7766599, 25.1228546 ], [ 121.7765654, 25.1225188 ], [ 121.7766804, 25.1223492 ], [ 121.775671, 25.1219727 ], [ 121.7755268, 25.1219348 ], [ 121.775328, 25.1219428 ], [ 121.7752083, 25.1219897 ], [ 121.7748882, 25.1220513 ], [ 121.7744123, 25.1223471 ], [ 121.7745479, 25.1228095 ], [ 121.7748116, 25.1233756 ], [ 121.7749068, 25.1233829 ], [ 121.7751745, 25.1234035 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "221835950", "name": "新高港超高壓變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4104358, 22.5714692 ], [ 120.4091562, 22.5755401 ], [ 120.4083991, 22.5760764 ], [ 120.4069583, 22.5747256 ], [ 120.407645, 22.5715333 ], [ 120.4081351, 22.5715364 ], [ 120.4083168, 22.5716366 ], [ 120.4083698, 22.5715361 ], [ 120.4085608, 22.5715328 ], [ 120.4085585, 22.5714582 ], [ 120.4104358, 22.5714692 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "222090846", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.362029, 22.9192144 ], [ 120.3610993, 22.9190823 ], [ 120.3592373, 22.919148 ], [ 120.3565945, 22.9160421 ], [ 120.3558255, 22.9140573 ], [ 120.3540129, 22.9119595 ], [ 120.3516949, 22.9093747 ], [ 120.3507905, 22.9083072 ], [ 120.349817, 22.9072559 ], [ 120.3476527, 22.9047803 ], [ 120.3478922, 22.9014411 ], [ 120.3481129, 22.8980115 ], [ 120.3474063, 22.8950441 ], [ 120.3467107, 22.8918477 ], [ 120.3459672, 22.8888532 ], [ 120.3454194, 22.8870575 ], [ 120.3447548, 22.8851864 ], [ 120.3439189, 22.8828114 ], [ 120.3429354, 22.8801162 ], [ 120.3407211, 22.8784352 ], [ 120.3385584, 22.8767991 ], [ 120.3358034, 22.8747347 ], [ 120.3331859, 22.872721 ], [ 120.3305898, 22.870744 ], [ 120.3277314, 22.868589 ], [ 120.3252298, 22.8666862 ], [ 120.3231499, 22.8650959 ], [ 120.3201346, 22.8628104 ], [ 120.3181599, 22.8612877 ], [ 120.3147319, 22.8598533 ], [ 120.3114953, 22.8584786 ], [ 120.3087709, 22.8573712 ], [ 120.305875, 22.8560843 ], [ 120.3048188, 22.8556629 ], [ 120.3022461, 22.8545528 ], [ 120.3012892, 22.8541846 ], [ 120.2989354, 22.8531579 ], [ 120.2954675, 22.8517451 ], [ 120.2929054, 22.8506604 ], [ 120.2897646, 22.8493272 ], [ 120.2866154, 22.8479499 ], [ 120.2838341, 22.8467486 ], [ 120.2806343, 22.8460936 ], [ 120.2778868, 22.8455293 ], [ 120.274968, 22.8449079 ], [ 120.2719423, 22.8442658 ], [ 120.2694364, 22.8437403 ], [ 120.2667613, 22.843163 ], [ 120.2659096, 22.8429823 ], [ 120.2638508, 22.8425456 ], [ 120.2608637, 22.8419025 ], [ 120.2572422, 22.8411143 ], [ 120.2538707, 22.8404156 ], [ 120.2502539, 22.8396431 ], [ 120.247119, 22.8388291 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "222513701", "name": "汐止~蘭雅分歧~蘭雅線", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6410613, 25.0811782 ], [ 121.6397349, 25.0799679 ], [ 121.6365041, 25.0773393 ], [ 121.630537, 25.0765646 ], [ 121.6261272, 25.0760438 ], [ 121.6229261, 25.0770517 ], [ 121.6213524, 25.0775237 ], [ 121.6181987, 25.0795202 ], [ 121.6128312, 25.0829231 ], [ 121.6096328, 25.0846505 ], [ 121.607258, 25.0858949 ], [ 121.6034204, 25.087955 ], [ 121.6006088, 25.0894471 ], [ 121.598027, 25.0908331 ], [ 121.5949768, 25.0948551 ], [ 121.5923517, 25.098378 ], [ 121.5902421, 25.0992303 ], [ 121.5845132, 25.0993093 ], [ 121.5832941, 25.0993344 ], [ 121.582426, 25.0992713 ], [ 121.5760234, 25.099763 ], [ 121.5749886, 25.1000523 ], [ 121.5735904, 25.1004284 ], [ 121.5720387, 25.1008821 ], [ 121.5686518, 25.1018378 ], [ 121.5651465, 25.1028207 ], [ 121.5640488, 25.1031402 ], [ 121.5608071, 25.1040417 ], [ 121.5542308, 25.1060128 ], [ 121.5482783, 25.1048685 ], [ 121.5474457, 25.1044901 ], [ 121.5448291, 25.0995014 ], [ 121.5426457, 25.0990558 ], [ 121.5397737, 25.0995802 ], [ 121.5354605, 25.1005327 ], [ 121.5324473, 25.1011685 ], [ 121.5300627, 25.1003118 ], [ 121.5271011, 25.1007415 ], [ 121.5239394, 25.0998728 ], [ 121.5218018, 25.099064 ], [ 121.5192913, 25.0999585 ], [ 121.5166407, 25.0998037 ], [ 121.5139804, 25.0992253 ], [ 121.5128175, 25.0975449 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "223727288", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1959301, 23.806761 ], [ 120.1955549, 23.8071921 ], [ 120.192904, 23.8094059 ], [ 120.192584, 23.812668 ], [ 120.196016, 23.8145245 ], [ 120.1993252, 23.8163794 ], [ 120.2026852, 23.8182343 ], [ 120.2061392, 23.8200957 ], [ 120.2099119, 23.8194697 ], [ 120.2137569, 23.8186814 ], [ 120.2176117, 23.8179434 ], [ 120.2214978, 23.8172174 ], [ 120.2264182, 23.8175842 ], [ 120.2299989, 23.8168954 ], [ 120.2326621, 23.8160568 ], [ 120.2348952, 23.8162334 ], [ 120.2376864, 23.8184191 ], [ 120.2414781, 23.8209902 ], [ 120.2436133, 23.8208168 ], [ 120.2473607, 23.8199443 ], [ 120.2498509, 23.8194154 ], [ 120.2521891, 23.8188318 ], [ 120.2549415, 23.8181766 ], [ 120.2575483, 23.8176003 ], [ 120.2604463, 23.8169475 ], [ 120.2633495, 23.8163783 ], [ 120.2658994, 23.814966 ], [ 120.268905, 23.8143828 ], [ 120.2726019, 23.8137036 ], [ 120.2759352, 23.8128534 ], [ 120.2789232, 23.8135779 ], [ 120.2816888, 23.8132715 ], [ 120.2845781, 23.8127914 ], [ 120.2869284, 23.8120606 ], [ 120.2901797, 23.8109692 ], [ 120.2924736, 23.8100838 ], [ 120.2946907, 23.8092195 ], [ 120.297425, 23.8081397 ], [ 120.3001797, 23.8071232 ], [ 120.3031466, 23.8069476 ], [ 120.3060581, 23.8068707 ], [ 120.3077736, 23.8087968 ], [ 120.3102495, 23.8101532 ], [ 120.3139634, 23.8102161 ], [ 120.3172455, 23.8108348 ], [ 120.3202831, 23.8103979 ], [ 120.3231564, 23.8107265 ], [ 120.3260908, 23.8114361 ], [ 120.3290282, 23.8115513 ], [ 120.3319641, 23.8112784 ], [ 120.334959, 23.8109857 ], [ 120.3378007, 23.8102639 ], [ 120.3422552, 23.8106805 ], [ 120.3464003, 23.8117134 ], [ 120.3504809, 23.8135265 ], [ 120.3540816, 23.8146553 ], [ 120.3575027, 23.8162542 ], [ 120.3598306, 23.8177264 ], [ 120.3629249, 23.8186757 ], [ 120.3671623, 23.8179557 ], [ 120.3715029, 23.8179982 ], [ 120.3755032, 23.8185776 ], [ 120.3758399, 23.8214603 ], [ 120.3759734, 23.8236955 ], [ 120.3763876, 23.8263294 ], [ 120.3769502, 23.8298525 ], [ 120.3774849, 23.8325853 ], [ 120.3781155, 23.8349518 ], [ 120.378542, 23.8375332 ], [ 120.3789439, 23.8398502 ], [ 120.3804233, 23.8423188 ], [ 120.3834791, 23.8417078 ], [ 120.3872872, 23.8403811 ], [ 120.3897885, 23.8398461 ], [ 120.3938192, 23.8386743 ], [ 120.3975582, 23.8378138 ], [ 120.4006955, 23.8382126 ], [ 120.4044346, 23.8383687 ], [ 120.4051586, 23.8382944 ], [ 120.4068847, 23.8381086 ], [ 120.410773, 23.8387458 ], [ 120.413235, 23.8391684 ], [ 120.4158932, 23.8395773 ], [ 120.4178399, 23.8408935 ], [ 120.4200689, 23.8425686 ], [ 120.422618, 23.8411737 ], [ 120.4258794, 23.8393882 ], [ 120.428716, 23.8394071 ], [ 120.4307814, 23.8392937 ], [ 120.4334373, 23.8367322 ], [ 120.4351526, 23.8351443 ], [ 120.4359747, 23.8343822 ], [ 120.4372497, 23.8332002 ], [ 120.4391522, 23.831586 ], [ 120.4421776, 23.829493 ], [ 120.4445682, 23.82806 ], [ 120.4474736, 23.8286645 ], [ 120.449261, 23.8293358 ], [ 120.4517913, 23.8295435 ], [ 120.4540237, 23.8294936 ], [ 120.4569373, 23.827734 ], [ 120.4586087, 23.8244697 ], [ 120.4615496, 23.8235001 ], [ 120.4646129, 23.8236597 ], [ 120.4666533, 23.8238236 ], [ 120.4688752, 23.8242412 ], [ 120.4707488, 23.8230965 ], [ 120.4738849, 23.8220479 ], [ 120.4765787, 23.8197364 ], [ 120.478536, 23.8192056 ], [ 120.4813852, 23.8180301 ], [ 120.4847289, 23.8167555 ], [ 120.4866233, 23.8161069 ], [ 120.4888209, 23.8151827 ], [ 120.490739, 23.8137054 ], [ 120.4935727, 23.8133667 ], [ 120.4958708, 23.8126389 ], [ 120.499055, 23.812502 ], [ 120.5025681, 23.8130677 ], [ 120.5082985, 23.8119543 ], [ 120.5107633, 23.8110281 ], [ 120.5144521, 23.8097765 ], [ 120.5183714, 23.8091974 ], [ 120.5228202, 23.80986 ], [ 120.5258734, 23.8102962 ], [ 120.5282144, 23.8140136 ], [ 120.533148, 23.8154761 ], [ 120.5368232, 23.8159851 ], [ 120.5407964, 23.8167494 ], [ 120.5445559, 23.8162384 ], [ 120.5487179, 23.8165447 ], [ 120.5533434, 23.8176884 ], [ 120.557229, 23.8168071 ], [ 120.5593528, 23.814823 ], [ 120.5619231, 23.8123911 ], [ 120.565672, 23.8125956 ], [ 120.5694509, 23.8121346 ], [ 120.5728815, 23.8126596 ], [ 120.5769357, 23.813105 ], [ 120.5801822, 23.8133961 ], [ 120.5832075, 23.8137725 ], [ 120.5868043, 23.8156534 ], [ 120.5904567, 23.8164432 ], [ 120.5930478, 23.8123799 ], [ 120.5949825, 23.8092884 ], [ 120.5991323, 23.8068598 ], [ 120.6031524, 23.8042554 ], [ 120.6073449, 23.8017865 ], [ 120.6113936, 23.7990256 ], [ 120.6155501, 23.7964775 ], [ 120.6203409, 23.795311 ], [ 120.6249899, 23.7939449 ], [ 120.6293197, 23.792487 ], [ 120.6323592, 23.7916598 ], [ 120.6367549, 23.7904297 ], [ 120.6388709, 23.7888399 ], [ 120.642966, 23.7892889 ], [ 120.6448279, 23.7907244 ], [ 120.6472146, 23.7921283 ], [ 120.64955, 23.7932902 ], [ 120.6523354, 23.7957753 ], [ 120.6545671, 23.7969309 ], [ 120.6576515, 23.7980436 ], [ 120.6605244, 23.8006274 ], [ 120.6625441, 23.8016998 ], [ 120.6649044, 23.8029539 ], [ 120.6674766, 23.8045613 ], [ 120.6695849, 23.8061858 ], [ 120.6718218, 23.8079527 ], [ 120.6736457, 23.8105195 ], [ 120.6752658, 23.8129341 ], [ 120.6777978, 23.8143377 ], [ 120.6797113, 23.81636 ], [ 120.6816427, 23.8180628 ], [ 120.6841469, 23.8202379 ], [ 120.6865116, 23.8217265 ], [ 120.6880789, 23.8232876 ], [ 120.6912084, 23.8247917 ], [ 120.6935184, 23.8251035 ], [ 120.6960441, 23.8264291 ], [ 120.6985962, 23.8283854 ], [ 120.7011509, 23.8281763 ], [ 120.7039905, 23.8302699 ], [ 120.706528, 23.8314511 ], [ 120.7086055, 23.8339948 ], [ 120.7112209, 23.8364461 ], [ 120.7157971, 23.8353896 ], [ 120.7186649, 23.8365924 ], [ 120.7212169, 23.8370436 ], [ 120.7224051, 23.8390983 ], [ 120.7271258, 23.841454 ], [ 120.7287905, 23.8446657 ], [ 120.7335054, 23.8479815 ], [ 120.7376523, 23.8512765 ], [ 120.7387966, 23.8536317 ], [ 120.7401448, 23.854632 ], [ 120.7427532, 23.8582673 ], [ 120.7434809, 23.8593873 ], [ 120.74507, 23.8618332 ], [ 120.746143, 23.8629507 ], [ 120.7464518, 23.8632722 ], [ 120.7481313, 23.866833 ], [ 120.7516996, 23.869187 ], [ 120.7535785, 23.8720414 ], [ 120.7536507, 23.8722588 ], [ 120.7543947, 23.8744983 ], [ 120.7547744, 23.8752168 ], [ 120.7561544, 23.8778283 ], [ 120.7565048, 23.8780784 ], [ 120.7593977, 23.8801433 ], [ 120.7597129, 23.8806705 ], [ 120.7611659, 23.8831009 ], [ 120.7630025, 23.8855117 ], [ 120.7634938, 23.8882354 ], [ 120.7640886, 23.8909397 ], [ 120.7673326, 23.8921882 ], [ 120.7679106, 23.8925157 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "224728945", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4059571, 22.5710384 ], [ 120.4059576, 22.5712364 ], [ 120.4056564, 22.5727059 ], [ 120.4033556, 22.5767978 ], [ 120.4022412, 22.578793 ], [ 120.3997894, 22.5798437 ], [ 120.3966887, 22.581173 ], [ 120.3927677, 22.5819603 ], [ 120.3904296, 22.5822858 ], [ 120.3886655, 22.582588 ], [ 120.3860676, 22.5828137 ], [ 120.382597, 22.5830348 ], [ 120.3784455, 22.5833835 ], [ 120.3704602, 22.584271 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "224790730", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5894766, 24.3031356 ], [ 120.5895492, 24.3028223 ], [ 120.5905236, 24.3010115 ], [ 120.5930151, 24.3000613 ], [ 120.5951773, 24.2981423 ], [ 120.5944034, 24.2947279 ], [ 120.5932393, 24.2933288 ], [ 120.5936016, 24.2907766 ], [ 120.595149, 24.2875912 ], [ 120.5952217, 24.2854088 ], [ 120.5971527, 24.2834058 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "225470940", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8591463, 23.8460492 ], [ 120.8560216, 23.8533043 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "225470941", "name": "明潭發電廠鉅工分廠", "operator": "台灣電力公司", "power": "plant", "z_order": 0, "other_tags": { "barrier": "wall", "plant:output:electricity": "43.5 MW", "plant:source": "hydro", "start_date": "1937", "wikidata": "Q15902781", "wikipedia": "zh:明潭發電廠鉅工分廠" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8575869, 23.8200705 ], [ 120.8581697, 23.8198699 ], [ 120.8581412, 23.8195527 ], [ 120.8582263, 23.8195241 ], [ 120.8581223, 23.8192651 ], [ 120.8579964, 23.8193074 ], [ 120.8577901, 23.8187937 ], [ 120.8579321, 23.8187465 ], [ 120.8577561, 23.818336 ], [ 120.857396, 23.8180224 ], [ 120.8573782, 23.8177956 ], [ 120.8571813, 23.8172771 ], [ 120.8571339, 23.8171309 ], [ 120.8570356, 23.8170508 ], [ 120.8569838, 23.8169469 ], [ 120.8570629, 23.8167278 ], [ 120.8571401, 23.8167081 ], [ 120.856561, 23.8160649 ], [ 120.8564656, 23.8161273 ], [ 120.8569527, 23.8166317 ], [ 120.8569668, 23.8167289 ], [ 120.8557527, 23.8162203 ], [ 120.8555815, 23.8162166 ], [ 120.8554859, 23.8163339 ], [ 120.8567918, 23.817784 ], [ 120.857018, 23.8178439 ], [ 120.8570625, 23.8181173 ], [ 120.8568486, 23.8181038 ], [ 120.8568361, 23.8181981 ], [ 120.8570443, 23.818718 ], [ 120.8574037, 23.8196128 ], [ 120.8575869, 23.8200705 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "225470942", "name": "水里變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8551261, 23.8153809 ], [ 120.855485, 23.8157913 ], [ 120.8559229, 23.8154265 ], [ 120.855375, 23.814886 ], [ 120.8551261, 23.8153809 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "225470946", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8591463, 23.8460492 ], [ 120.8576873, 23.8421231 ], [ 120.8583902, 23.839721 ], [ 120.8599044, 23.8378177 ], [ 120.8605617, 23.8369915 ], [ 120.8648768, 23.8359884 ], [ 120.8674296, 23.8356717 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "225470947", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7700664, 23.8906711 ], [ 120.7704655, 23.8909767 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "226887747", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6359119, 23.8810702 ], [ 120.6354988, 23.8811125 ], [ 120.6356121, 23.8818096 ], [ 120.6357082, 23.8824308 ], [ 120.6401946, 23.8852028 ], [ 120.6423587, 23.88654 ], [ 120.6440332, 23.8880893 ], [ 120.6454758, 23.8894173 ], [ 120.6454771, 23.8906751 ], [ 120.6454758, 23.8927437 ], [ 120.6466841, 23.8947583 ], [ 120.6478434, 23.8966624 ], [ 120.6497605, 23.8998666 ], [ 120.6508426, 23.9017158 ], [ 120.651898, 23.9033535 ], [ 120.6534049, 23.9058189 ], [ 120.6553048, 23.9089185 ], [ 120.6564152, 23.9107747 ], [ 120.6578603, 23.9118932 ], [ 120.6599047, 23.9133614 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "226900667", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7060005, 24.0710822 ], [ 120.7060125, 24.070937 ], [ 120.7059024, 24.0688072 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "226900668", "name": "峨眉-中寮南線;龍潭-中寮南線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7206594, 24.051353 ], [ 120.7276588, 24.0489186 ], [ 120.7318947, 24.049189 ], [ 120.734415, 24.0493314 ], [ 120.7387954, 24.0495927 ], [ 120.7427087, 24.0499245 ], [ 120.7469191, 24.0516896 ], [ 120.7510139, 24.0515801 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "226900669", "name": "峨眉-中寮南線;龍潭-中寮南線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7062757, 24.0710565 ], [ 120.7063189, 24.0709174 ], [ 120.7068944, 24.069228 ], [ 120.7088624, 24.0676263 ], [ 120.7123259, 24.0664983 ], [ 120.7150462, 24.0638899 ], [ 120.7156268, 24.0618213 ], [ 120.7163298, 24.0593168 ], [ 120.7178526, 24.0526595 ], [ 120.7206594, 24.051353 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "227046723", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2123944, 25.0844902 ], [ 121.2115476, 25.0838576 ], [ 121.2107701, 25.0832768 ], [ 121.2099914, 25.0827207 ], [ 121.2091469, 25.0820864 ], [ 121.2082698, 25.0814824 ], [ 121.2073716, 25.0808713 ], [ 121.2067025, 25.0805037 ], [ 121.205702, 25.0800178 ], [ 121.2045779, 25.0794818 ], [ 121.2034832, 25.0789416 ], [ 121.2021526, 25.0782534 ], [ 121.2008781, 25.0778066 ], [ 121.2000385, 25.0761078 ], [ 121.1995611, 25.0738301 ], [ 121.1986381, 25.0726296 ], [ 121.1985018, 25.0725572 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "227046725", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1980641, 25.0724764 ], [ 121.1984774, 25.0728486 ], [ 121.1986059, 25.0724885 ], [ 121.1983641, 25.0722798 ], [ 121.1982748, 25.0722836 ], [ 121.1980641, 25.0724764 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "227949043", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7089198, 24.0902884 ], [ 120.7100335, 24.0916955 ], [ 120.7110906, 24.0930135 ], [ 120.7123977, 24.0946715 ], [ 120.7146255, 24.0955525 ], [ 120.7163924, 24.0962406 ], [ 120.7192204, 24.0972769 ], [ 120.7208827, 24.0978987 ], [ 120.7230597, 24.0987693 ], [ 120.7261267, 24.0996292 ], [ 120.7290742, 24.1004544 ], [ 120.7323667, 24.1017327 ], [ 120.7346342, 24.1027023 ], [ 120.7361789, 24.1033209 ], [ 120.7397549, 24.1047103 ], [ 120.7435154, 24.1062751 ], [ 120.7441591, 24.1080364 ], [ 120.7451289, 24.1106863 ], [ 120.7456434, 24.1144799 ], [ 120.7462706, 24.1188931 ], [ 120.7466476, 24.121394 ], [ 120.7466276, 24.1241091 ], [ 120.7462888, 24.1273037 ], [ 120.7464698, 24.1317974 ], [ 120.7464011, 24.1348571 ], [ 120.7469092, 24.1377269 ], [ 120.7447361, 24.140374 ], [ 120.7428714, 24.145005 ], [ 120.7442021, 24.1490223 ], [ 120.745625, 24.1531368 ], [ 120.7471236, 24.1575404 ], [ 120.7458689, 24.1603263 ], [ 120.7427612, 24.1598454 ], [ 120.7386551, 24.1603653 ], [ 120.736933, 24.1597588 ], [ 120.730077, 24.160051 ], [ 120.7290691, 24.1599362 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "228072484", "name": "蘆洲~灰磘線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "9", "voltage": "69000", "z_order": 0, "other_tags": { "alt_name": "社子~灰磘線", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4833231, 25.0959394 ], [ 121.4805834, 25.0970251 ], [ 121.4774407, 25.0975023 ], [ 121.474429, 25.0981833 ], [ 121.4714268, 25.0988654 ], [ 121.468401, 25.09955 ], [ 121.4653758, 25.1002263 ], [ 121.4623401, 25.100913 ], [ 121.4608117, 25.0986003 ], [ 121.4594526, 25.0965552 ], [ 121.4581434, 25.0945873 ], [ 121.4590922, 25.0941343 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "228075930", "name": "灰磘~獅頭線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4589565, 25.093932 ], [ 121.4578765, 25.0945163 ], [ 121.4568598, 25.0976217 ], [ 121.4559379, 25.1004477 ], [ 121.4550116, 25.1033481 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "229845237", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7271451, 24.322962 ], [ 120.7270674, 24.3227323 ], [ 120.7273195, 24.3226296 ], [ 120.7279278, 24.322528 ], [ 120.7281132, 24.323211 ], [ 120.7282602, 24.3232711 ], [ 120.7288435, 24.3233343 ], [ 120.7302215, 24.3248922 ], [ 120.7312358, 24.3263135 ], [ 120.7316409, 24.326889 ], [ 120.7322182, 24.3277144 ], [ 120.7326297, 24.3282696 ], [ 120.7337684, 24.3298449 ], [ 120.7344319, 24.3307924 ], [ 120.735156, 24.3317834 ], [ 120.7357779, 24.3326524 ], [ 120.7373313, 24.3347857 ], [ 120.7378991, 24.3356198 ], [ 120.7385952, 24.3365695 ], [ 120.7399819, 24.337757 ], [ 120.7430999, 24.3404338 ], [ 120.745575, 24.3425921 ], [ 120.7461175, 24.3433774 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "230412452", "name": "中寮南~龍崎南線", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3671916, 22.9296987 ], [ 120.36744, 22.9270548 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "231262543", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1294859, 25.0214374 ], [ 121.1288174, 25.0231504 ], [ 121.1280269, 25.0251681 ], [ 121.1273167, 25.0270014 ], [ 121.126846, 25.0295473 ], [ 121.1263342, 25.0322492 ], [ 121.1258171, 25.0349688 ], [ 121.1253691, 25.0375047 ], [ 121.1264024, 25.0394496 ], [ 121.1271053, 25.0407563 ], [ 121.1293445, 25.0424325 ], [ 121.1309457, 25.0436144 ], [ 121.1328691, 25.0450564 ], [ 121.1344863, 25.0462528 ], [ 121.1363714, 25.0479837 ], [ 121.1378644, 25.0502177 ], [ 121.1362355, 25.0512847 ], [ 121.1340454, 25.0525918 ], [ 121.1344993, 25.0548622 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "232402356", "name": "反應爐", "power": "generator", "z_order": 0, "other_tags": { "generator:method": "fission", "generator:source": "nuclear" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.751063, 21.9576275 ], [ 120.751427, 21.9578722 ], [ 120.751353, 21.9579669 ], [ 120.7518593, 21.9583073 ], [ 120.7521206, 21.9579729 ], [ 120.7522439, 21.9578203 ], [ 120.752549, 21.9580322 ], [ 120.7526905, 21.9578496 ], [ 120.7524173, 21.9576674 ], [ 120.7523281, 21.9577815 ], [ 120.7522194, 21.9577083 ], [ 120.7521803, 21.9577213 ], [ 120.7521393, 21.9577269 ], [ 120.7520959, 21.9577245 ], [ 120.7520539, 21.9577139 ], [ 120.7520181, 21.9576972 ], [ 120.7519863, 21.9576744 ], [ 120.75196, 21.9576465 ], [ 120.7519399, 21.9576145 ], [ 120.7519266, 21.9575794 ], [ 120.7519209, 21.9575425 ], [ 120.7519224, 21.9575084 ], [ 120.7518048, 21.9574297 ], [ 120.7516324, 21.9576502 ], [ 120.7512475, 21.9573914 ], [ 120.751063, 21.9576275 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "232410751", "name": "反應爐", "power": "generator", "z_order": 0, "other_tags": { "generator:method": "fission", "generator:source": "nuclear" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7502699, 21.9586154 ], [ 120.7506262, 21.9588607 ], [ 120.7505634, 21.9589391 ], [ 120.7510696, 21.9592829 ], [ 120.7513339, 21.9589509 ], [ 120.7514585, 21.9587944 ], [ 120.7517576, 21.958996 ], [ 120.7519, 21.9588003 ], [ 120.7516053, 21.9585973 ], [ 120.7515008, 21.9587279 ], [ 120.7514285, 21.958686 ], [ 120.7513899, 21.9586991 ], [ 120.7513492, 21.9587049 ], [ 120.7512794, 21.9586974 ], [ 120.7512362, 21.9586804 ], [ 120.7511981, 21.958655 ], [ 120.751169, 21.9586247 ], [ 120.7511474, 21.9585894 ], [ 120.7511353, 21.9585555 ], [ 120.7511302, 21.9585202 ], [ 120.7511349, 21.9584706 ], [ 120.7509963, 21.9583805 ], [ 120.7508106, 21.9586126 ], [ 120.7504635, 21.9583736 ], [ 120.7503088, 21.9585637 ], [ 120.750288, 21.9585901 ], [ 120.7502699, 21.9586154 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "234566713", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2061315, 24.0411095 ], [ 121.2077051, 24.0416542 ], [ 121.2086679, 24.04196 ], [ 121.2089933, 24.0420459 ], [ 121.2095898, 24.0422513 ], [ 121.211006, 24.0427217 ], [ 121.2116615, 24.042949 ], [ 121.2183335, 24.0451492 ], [ 121.2189155, 24.0453403 ], [ 121.2194841, 24.0453134 ], [ 121.2220746, 24.045292 ], [ 121.2243539, 24.0452488 ], [ 121.2251279, 24.0452339 ], [ 121.2252971, 24.0452597 ], [ 121.2256553, 24.0453076 ], [ 121.2264546, 24.0454292 ], [ 121.2336989, 24.0462898 ], [ 121.2343424, 24.0466791 ], [ 121.2362814, 24.0469684 ], [ 121.2366935, 24.0470218 ], [ 121.2386104, 24.0472051 ], [ 121.245093, 24.0478893 ], [ 121.2473853, 24.0480923 ], [ 121.2495507, 24.0460017 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "234566715", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4074014, 24.0135209 ], [ 121.4063057, 24.013361 ], [ 121.4060471, 24.013443 ], [ 121.4007753, 24.0142507 ], [ 121.3985903, 24.0154916 ], [ 121.397934, 24.0157774 ], [ 121.3926971, 24.0182904 ], [ 121.3890595, 24.0200293 ], [ 121.3872331, 24.0212072 ], [ 121.3853725, 24.0218013 ], [ 121.384483, 24.0229966 ], [ 121.3797066, 24.0245449 ], [ 121.3786835, 24.0250214 ], [ 121.3779779, 24.0253496 ], [ 121.3733915, 24.0251824 ], [ 121.3719399, 24.0251228 ], [ 121.369975, 24.0250396 ], [ 121.362376, 24.0237619 ], [ 121.3492975, 24.0255107 ], [ 121.3437879, 24.0262508 ], [ 121.3427661, 24.028031 ], [ 121.3420468, 24.0288736 ], [ 121.3399554, 24.0296688 ], [ 121.3396603, 24.0301535 ], [ 121.3351275, 24.0280482 ], [ 121.3308484, 24.0271439 ], [ 121.3298261, 24.0268978 ], [ 121.3280207, 24.0264156 ], [ 121.325071, 24.0263455 ], [ 121.3208464, 24.0254194 ], [ 121.3135275, 24.0230963 ], [ 121.3068851, 24.0215574 ], [ 121.3056821, 24.0212667 ], [ 121.3049357, 24.0211006 ], [ 121.3037989, 24.0209914 ], [ 121.2795371, 24.0192362 ], [ 121.2783972, 24.0199114 ], [ 121.2768568, 24.0208159 ], [ 121.276352, 24.0211001 ], [ 121.2704703, 24.0245523 ], [ 121.2679337, 24.0260727 ], [ 121.2672467, 24.0265162 ], [ 121.2606941, 24.0297368 ], [ 121.258969, 24.031217 ], [ 121.257804, 24.0319434 ], [ 121.2558961, 24.0331075 ], [ 121.2547481, 24.0337595 ], [ 121.2534791, 24.0344976 ], [ 121.252146, 24.0352833 ], [ 121.2507688, 24.0364555 ], [ 121.248036, 24.0376495 ], [ 121.2456594, 24.0390268 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "234566717", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2767897, 24.0409728 ], [ 121.2774807, 24.0389067 ], [ 121.2781686, 24.0381096 ], [ 121.2780944, 24.0368177 ], [ 121.2790438, 24.0353816 ], [ 121.2788941, 24.0344556 ], [ 121.279503, 24.0324885 ], [ 121.2798838, 24.0313666 ], [ 121.2801891, 24.0303739 ], [ 121.2802856, 24.030042 ], [ 121.2804639, 24.0295107 ], [ 121.2809832, 24.0292415 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "238424685", "name": "茄荖變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6532752, 24.0014304 ], [ 120.6537371, 24.0016104 ], [ 120.6540317, 24.0009122 ], [ 120.6540181, 24.0008932 ], [ 120.6539474, 24.000872 ], [ 120.6538542, 24.0008217 ], [ 120.6536152, 24.0007036 ], [ 120.6532752, 24.0014304 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "239333745", "power": "line", "voltage": "161000;69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2686208, 23.5623994 ], [ 120.2658873, 23.5621459 ], [ 120.2636415, 23.5623997 ], [ 120.2611978, 23.5626293 ], [ 120.2583587, 23.5628871 ], [ 120.2560689, 23.5631077 ], [ 120.251739, 23.5635438 ], [ 120.2492533, 23.5637468 ], [ 120.24688, 23.5640046 ], [ 120.2446404, 23.56422 ], [ 120.2422741, 23.5644356 ], [ 120.2398756, 23.5646637 ], [ 120.2381395, 23.5648369 ], [ 120.2366341, 23.5659556 ], [ 120.2364914, 23.5660616 ], [ 120.2346751, 23.5673724 ], [ 120.2334182, 23.5693181 ], [ 120.2317976, 23.5714273 ], [ 120.2304088, 23.5732723 ], [ 120.2289892, 23.5750487 ], [ 120.2276871, 23.5767904 ], [ 120.2265796, 23.5782849 ], [ 120.225408, 23.5797552 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240132009", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3033235, 22.6103453 ], [ 120.3039782, 22.6105546 ], [ 120.3042256, 22.6098951 ], [ 120.3035709, 22.6096858 ], [ 120.3033235, 22.6103453 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240515847", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2856551, 22.6356258 ], [ 120.2856847, 22.6352427 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240766711", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7401084, 24.5664712 ], [ 120.7410771, 24.5632159 ], [ 120.7439036, 24.5609438 ], [ 120.747205, 24.5604658 ], [ 120.7536587, 24.5605389 ], [ 120.7567163, 24.5606961 ], [ 120.7596017, 24.562295 ], [ 120.7604596, 24.5629742 ], [ 120.7610815, 24.5635646 ], [ 120.7634639, 24.5649167 ], [ 120.7672927, 24.5668958 ], [ 120.7716984, 24.569152 ], [ 120.7786586, 24.5691361 ], [ 120.7807158, 24.5678065 ], [ 120.7815121, 24.5637835 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240766712", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8221395, 24.5939732 ], [ 120.8216491, 24.5940654 ], [ 120.8218136, 24.5947946 ], [ 120.8205682, 24.5949542 ], [ 120.820683, 24.5963316 ], [ 120.8183025, 24.5968801 ], [ 120.8167635, 24.5972752 ], [ 120.8147947, 24.5977469 ], [ 120.8137744, 24.5979914 ], [ 120.810052, 24.5983286 ], [ 120.8081494, 24.59754 ], [ 120.8064996, 24.5962846 ], [ 120.8031214, 24.5936732 ], [ 120.801336, 24.5919117 ], [ 120.7991062, 24.5908014 ], [ 120.8011296, 24.5874222 ], [ 120.8019268, 24.5859574 ], [ 120.8026175, 24.5836318 ], [ 120.802735, 24.5821452 ], [ 120.7991468, 24.5790244 ], [ 120.796091, 24.577096 ], [ 120.7942383, 24.5760462 ], [ 120.7930795, 24.5735837 ], [ 120.7905232, 24.5705669 ], [ 120.7879861, 24.5677205 ], [ 120.7871992, 24.5655174 ], [ 120.7832455, 24.5641817 ], [ 120.7815121, 24.5637835 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240766713", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7622208, 24.5566414 ], [ 120.7628088, 24.5601737 ], [ 120.7604596, 24.5629742 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240820708", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7401084, 24.5664712 ], [ 120.7381575, 24.5657103 ], [ 120.7354205, 24.5649977 ], [ 120.735159, 24.5665055 ], [ 120.7349005, 24.5677651 ], [ 120.7364471, 24.5690538 ], [ 120.7366061, 24.5719483 ], [ 120.7371267, 24.5740299 ], [ 120.7342254, 24.575429 ], [ 120.732521, 24.5785928 ], [ 120.7303671, 24.5807889 ], [ 120.7288698, 24.5826861 ], [ 120.7272497, 24.5837671 ], [ 120.723988, 24.5859763 ], [ 120.7224032, 24.5872715 ], [ 120.7201521, 24.5883769 ], [ 120.7199985, 24.5884499 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "240858363", "name": "中寮南~瀰力線;龍崎北~瀰力線", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4059083, 22.8963135 ], [ 120.4074281, 22.8956742 ], [ 120.411087, 22.8942267 ], [ 120.4159954, 22.892393 ], [ 120.4197212, 22.8908931 ], [ 120.4218508, 22.8899541 ], [ 120.426336, 22.8880102 ], [ 120.4281452, 22.8870423 ], [ 120.4360987, 22.8825901 ], [ 120.4410984, 22.8799509 ], [ 120.4428579, 22.8789624 ], [ 120.4469027, 22.8768174 ], [ 120.4498102, 22.8755719 ], [ 120.4539145, 22.8737269 ], [ 120.456189, 22.872768 ], [ 120.4589619, 22.8714795 ], [ 120.4641332, 22.8693 ], [ 120.4671426, 22.8679654 ], [ 120.470034, 22.8666553 ], [ 120.472448, 22.8655679 ], [ 120.4770834, 22.8634894 ], [ 120.4812097, 22.8616269 ], [ 120.4852427, 22.8597436 ], [ 120.4870017, 22.8568536 ], [ 120.4885901, 22.8541578 ], [ 120.4901029, 22.8515279 ], [ 120.4902257, 22.8484598 ], [ 120.4903115, 22.8450635 ], [ 120.4904617, 22.8416129 ], [ 120.4905535, 22.8384372 ], [ 120.4906709, 22.8355219 ], [ 120.4908157, 22.832249 ], [ 120.4913629, 22.8307262 ], [ 120.4919369, 22.8288968 ], [ 120.4928703, 22.825861 ], [ 120.4936213, 22.8236756 ], [ 120.4946942, 22.8207634 ], [ 120.4958673, 22.8190169 ], [ 120.4963924, 22.8189938 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "241557943", "name": "隆田~麻豆線", "power": "line", "wires": "single", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3085641, 23.1915166 ], [ 120.3068125, 23.1897209 ], [ 120.3044663, 23.1868122 ], [ 120.3023508, 23.1850171 ], [ 120.3004432, 23.182952 ], [ 120.2990082, 23.1814826 ], [ 120.2976281, 23.1799497 ], [ 120.2939147, 23.1793064 ], [ 120.2904814, 23.1787195 ], [ 120.2869409, 23.1780661 ], [ 120.2845216, 23.1776617 ], [ 120.2832234, 23.1774645 ], [ 120.2793235, 23.1767544 ], [ 120.2754986, 23.1760858 ], [ 120.2721378, 23.1755042 ], [ 120.2686448, 23.1748749 ], [ 120.265344, 23.1743009 ], [ 120.2611647, 23.1741634 ], [ 120.2576403, 23.1740599 ], [ 120.2543902, 23.173969 ], [ 120.2515455, 23.1738117 ], [ 120.2492704, 23.1725907 ], [ 120.248369, 23.1740583 ], [ 120.2480498, 23.1765765 ], [ 120.2480051, 23.1770034 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "242129891", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8000518, 24.5651003 ], [ 120.7982171, 24.5613167 ], [ 120.7964169, 24.5574895 ], [ 120.7952373, 24.5551821 ], [ 120.7934624, 24.5535982 ], [ 120.7912456, 24.5517575 ], [ 120.7871935, 24.5483336 ], [ 120.7841057, 24.5457809 ], [ 120.782797, 24.5446909 ], [ 120.7801795, 24.5425469 ], [ 120.7775991, 24.5407192 ], [ 120.774846, 24.5387212 ], [ 120.7725253, 24.5371117 ], [ 120.7686431, 24.5343284 ], [ 120.7668961, 24.5331134 ], [ 120.765281, 24.5319631 ], [ 120.7615853, 24.5295109 ], [ 120.7570302, 24.5265629 ], [ 120.7538624, 24.5244611 ], [ 120.750986, 24.5225877 ], [ 120.746295, 24.5195431 ], [ 120.7446998, 24.5191261 ], [ 120.7384176, 24.5172182 ], [ 120.7336831, 24.5158566 ], [ 120.7304069, 24.5149179 ], [ 120.7277471, 24.5141273 ], [ 120.7258913, 24.513593 ], [ 120.7234879, 24.5129659 ], [ 120.7209281, 24.5122649 ], [ 120.719089, 24.5116057 ], [ 120.7176335, 24.5119877 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "242967583", "power": "generator", "z_order": 0, "other_tags": { "generator:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2268957, 22.8658592 ], [ 120.227052, 22.8662681 ], [ 120.2283867, 22.8662697 ], [ 120.2283776, 22.8659346 ], [ 120.2281874, 22.864792 ], [ 120.2271366, 22.8647702 ], [ 120.2268957, 22.8658592 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "248187966", "power": "line", "wires": "single", "cables": "6", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8697762, 23.8523753 ], [ 120.8690223, 23.8512166 ], [ 120.8673222, 23.848158 ], [ 120.8660229, 23.8452654 ], [ 120.8654853, 23.8441049 ], [ 120.8636507, 23.8398389 ], [ 120.8634198, 23.8393428 ], [ 120.8617522, 23.8366114 ], [ 120.8618622, 23.8357796 ], [ 120.8614241, 23.834744 ], [ 120.8605138, 23.833272 ], [ 120.8604456, 23.8331618 ], [ 120.8588398, 23.8305096 ], [ 120.8558443, 23.8274584 ], [ 120.8557816, 23.8250302 ], [ 120.8556523, 23.82202 ], [ 120.8572107, 23.8194653 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "248559513", "name": "福德變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8626309, 24.4655282 ], [ 120.8626508, 24.4656906 ], [ 120.8626246, 24.4657896 ], [ 120.8626275, 24.4660236 ], [ 120.8627932, 24.465969 ], [ 120.8629213, 24.4659563 ], [ 120.8629974, 24.4659739 ], [ 120.862959, 24.465447 ], [ 120.8626309, 24.4655282 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "250094332", "name": "和睦變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4814904, 23.4512114 ], [ 120.4817193, 23.4513612 ], [ 120.4818624, 23.4513713 ], [ 120.4819378, 23.4516721 ], [ 120.4816436, 23.4517124 ], [ 120.4813259, 23.4516692 ], [ 120.4811959, 23.4516492 ], [ 120.4812286, 23.4514532 ], [ 120.4813045, 23.4513439 ], [ 120.4812918, 23.4512408 ], [ 120.4814904, 23.4512114 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "252629849", "name": "路園變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2995889, 22.8816359 ], [ 120.3017616, 22.8814553 ], [ 120.3018002, 22.8820324 ], [ 120.3019527, 22.8825849 ], [ 120.3018704, 22.8832275 ], [ 120.3000569, 22.8836269 ], [ 120.2999967, 22.8836735 ], [ 120.2997679, 22.8837467 ], [ 120.2997384, 22.8833988 ], [ 120.2996508, 22.8823656 ], [ 120.2995889, 22.8816359 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "255871346", "name": "台東一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0901107, 22.7843315 ], [ 121.0899334, 22.7844262 ], [ 121.0897648, 22.784486 ], [ 121.0897278, 22.7844676 ], [ 121.0889147, 22.783478 ], [ 121.088854, 22.7834041 ], [ 121.0890384, 22.7832827 ], [ 121.0888677, 22.7831106 ], [ 121.0891582, 22.7827341 ], [ 121.0892758, 22.7828286 ], [ 121.0897938, 22.7824409 ], [ 121.0897773, 22.7824076 ], [ 121.090163, 22.7819722 ], [ 121.0909193, 22.7824269 ], [ 121.0918765, 22.783591 ], [ 121.0919163, 22.7835959 ], [ 121.0919707, 22.7837857 ], [ 121.0905622, 22.7848573 ], [ 121.0901713, 22.7844219 ], [ 121.0901107, 22.7843315 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "256835088", "name": "變電站", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5242691, 22.7084255 ], [ 120.5242236, 22.7083959 ], [ 120.5241747, 22.7084653 ], [ 120.5242214, 22.7084933 ], [ 120.5242691, 22.7084255 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "256957946", "name": "變電站", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5236476, 22.7084614 ], [ 120.5236043, 22.7084337 ], [ 120.5236857, 22.7083276 ], [ 120.5237245, 22.7083553 ], [ 120.5236476, 22.7084614 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "257245133", "name": "民族二次變電所", "operator": "台灣電力公司", "power": "substation", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:wikipedia": "en:Taiwan Power Company", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3151999, 22.6688828 ], [ 120.3152473, 22.6688133 ], [ 120.3156013, 22.6687516 ], [ 120.3156348, 22.6690911 ], [ 120.3156766, 22.6692969 ], [ 120.315317, 22.6692892 ], [ 120.3151999, 22.6688828 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "257258966", "power": "line", "wires": "double;single", "cables": "12", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0057153, 24.7856285 ], [ 121.0078732, 24.7875617 ], [ 121.008632, 24.7884244 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "258339600", "operator": "台灣電力公司", "power": "line", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3807215, 25.0152551 ], [ 121.3850697, 25.0155782 ], [ 121.3911289, 25.0120567 ], [ 121.3959672, 25.0097458 ], [ 121.397261, 25.0093614 ], [ 121.3974996, 25.0092906 ], [ 121.3978031, 25.0092004 ], [ 121.3982302, 25.0090735 ], [ 121.4012728, 25.0080781 ], [ 121.4039066, 25.0089615 ], [ 121.4086028, 25.0117811 ], [ 121.4104524, 25.0118576 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "259526607", "name": "員林變電所(D/S)", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5692973, 23.9690011 ], [ 120.5693884, 23.9681788 ], [ 120.5699099, 23.968245 ], [ 120.5698111, 23.9690611 ], [ 120.5692973, 23.9690011 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "262497216", "name": "竹崎~奮起線;奮起~嘉埔線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5963557, 23.4412725 ], [ 120.5957046, 23.435589 ], [ 120.5952965, 23.4342105 ], [ 120.5950905, 23.4296243 ], [ 120.5933036, 23.4270394 ], [ 120.5931445, 23.423994 ], [ 120.5916848, 23.4182074 ], [ 120.5886344, 23.4141157 ], [ 120.5850903, 23.4085886 ], [ 120.5833856, 23.4036023 ], [ 120.583408, 23.3995783 ], [ 120.5844221, 23.3977231 ], [ 120.5838378, 23.3941747 ], [ 120.582268, 23.3898672 ], [ 120.5805903, 23.385162 ], [ 120.5782741, 23.3813859 ], [ 120.5775374, 23.3802113 ], [ 120.5791588, 23.3738555 ], [ 120.5799769, 23.3674945 ], [ 120.5781273, 23.3619895 ], [ 120.5777683, 23.3594894 ], [ 120.5769522, 23.3538383 ], [ 120.5762478, 23.3521239 ], [ 120.5795868, 23.3474551 ], [ 120.5809342, 23.3447124 ], [ 120.5809967, 23.3432411 ], [ 120.5842432, 23.3369792 ], [ 120.5849676, 23.3357875 ], [ 120.5853382, 23.3351045 ], [ 120.5880331, 23.330587 ], [ 120.5884644, 23.3287423 ], [ 120.5888464, 23.3275546 ], [ 120.5893623, 23.3258731 ], [ 120.5903236, 23.3249162 ], [ 120.5924206, 23.3228228 ], [ 120.5947779, 23.3205 ], [ 120.5967714, 23.3197725 ], [ 120.5993556, 23.3188574 ], [ 120.6050655, 23.316755 ], [ 120.6068248, 23.316132 ], [ 120.6085271, 23.314433 ], [ 120.6090035, 23.3125091 ], [ 120.6057132, 23.305987 ], [ 120.6039161, 23.3017923 ], [ 120.5992861, 23.2960286 ], [ 120.5954462, 23.2945256 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "262501191", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1961778, 24.8200766 ], [ 121.196325, 24.8201005 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "262837692", "name": "大南發電廠", "power": "generator", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0281727, 22.7661029 ], [ 121.02771, 22.7658933 ], [ 121.0279461, 22.7654502 ], [ 121.0284088, 22.7656598 ], [ 121.0281727, 22.7661029 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "264105237", "name": "農十六變電站", "power": "substation", "z_order": 0, "other_tags": { "location": "indoor" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2999307, 22.6569838 ], [ 120.2999236, 22.6566046 ], [ 120.2998596, 22.6565565 ], [ 120.2990316, 22.6565695 ], [ 120.2990396, 22.6569979 ], [ 120.2999307, 22.6569838 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "265742072", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4816385, 23.4514961 ], [ 120.482119, 23.4515065 ], [ 120.4824914, 23.4532763 ], [ 120.4808643, 23.4545246 ], [ 120.4792343, 23.4558026 ], [ 120.4775208, 23.4571245 ], [ 120.4758993, 23.4597163 ], [ 120.4735977, 23.4634182 ], [ 120.4727733, 23.4652481 ], [ 120.4720904, 23.4672825 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "269788992", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5107429, 25.0402598 ], [ 121.5107652, 25.0402579 ], [ 121.5107911, 25.040256 ], [ 121.5108513, 25.0407515 ], [ 121.5104536, 25.0407919 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "271107180", "name": "東勢變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "addr:city": "臺中市", "addr:country": "TW", "addr:district": "東勢區", "addr:housenumber": "88-1", "addr:postcode": "42343", "addr:street": "中新街西新巷", "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8315583, 24.2578364 ], [ 120.8314636, 24.2582379 ], [ 120.8312983, 24.2582055 ], [ 120.831082, 24.2581631 ], [ 120.8311082, 24.2580519 ], [ 120.8311555, 24.2580612 ], [ 120.8312766, 24.2580849 ], [ 120.8313349, 24.2578377 ], [ 120.831345, 24.2577946 ], [ 120.8315583, 24.2578364 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "274895608", "name": "和仁變電所", "power": "substation", "z_order": 0, "other_tags": { "barrier": "wall" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7449641, 24.317254 ], [ 121.7443806, 24.3166401 ], [ 121.7438995, 24.3163979 ], [ 121.7438866, 24.3162946 ], [ 121.7443724, 24.3155385 ], [ 121.7448682, 24.3158085 ], [ 121.7451906, 24.315645 ], [ 121.7459528, 24.3167459 ], [ 121.7449641, 24.317254 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "275691172", "name": "黎明變電所(D/S)", "power": "substation", "voltage": "161000", "z_order": 0, "other_tags": { "addr:city": "臺中市", "addr:country": "TW", "addr:district": "西屯區", "addr:housenumber": "198", "addr:street": "朝貴路", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6342812, 24.1676826 ], [ 120.6344383, 24.1681245 ], [ 120.6350004, 24.1679737 ], [ 120.6348658, 24.1675391 ], [ 120.6342812, 24.1676826 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243846", "name": "中寮北~嘉民線", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7681225, 23.892187 ], [ 120.7675603, 23.8918954 ], [ 120.7648297, 23.8902957 ], [ 120.7646643, 23.8901988 ], [ 120.763836, 23.8875403 ], [ 120.7637337, 23.8852349 ], [ 120.7626268, 23.8836655 ], [ 120.7608505, 23.8813241 ], [ 120.7586004, 23.8771883 ], [ 120.7570382, 23.8745002 ], [ 120.7555298, 23.8716684 ], [ 120.7543721, 23.8697963 ], [ 120.753428, 23.8678515 ], [ 120.751563, 23.8644665 ], [ 120.7514796, 23.8643151 ], [ 120.7507986, 23.8630791 ], [ 120.7499122, 23.8614572 ], [ 120.7493818, 23.8604867 ], [ 120.7477032, 23.8575046 ], [ 120.7464996, 23.8552999 ], [ 120.7438662, 23.8505254 ], [ 120.7435323, 23.8499365 ], [ 120.7408935, 23.8452831 ], [ 120.7395219, 23.8428941 ], [ 120.7386858, 23.8412856 ], [ 120.7371372, 23.8383155 ], [ 120.7361434, 23.8358998 ], [ 120.7348423, 23.8326819 ], [ 120.7332917, 23.8282866 ], [ 120.7319956, 23.8246529 ], [ 120.730812, 23.8216282 ], [ 120.7298136, 23.8188784 ], [ 120.7287391, 23.8159516 ], [ 120.7279306, 23.8136759 ], [ 120.7268112, 23.8105656 ], [ 120.7256469, 23.8072877 ], [ 120.7236845, 23.8020594 ], [ 120.7208994, 23.8002798 ], [ 120.7177624, 23.7983687 ], [ 120.7152347, 23.7968285 ], [ 120.714078, 23.7962142 ], [ 120.7113077, 23.7943999 ], [ 120.7086326, 23.7927934 ], [ 120.7062414, 23.7913699 ], [ 120.7048831, 23.7905581 ], [ 120.7035232, 23.7896829 ], [ 120.7012977, 23.7883744 ], [ 120.6981046, 23.7869574 ], [ 120.6953431, 23.7856825 ], [ 120.6925067, 23.7844403 ], [ 120.6897307, 23.7831814 ], [ 120.6869536, 23.7819206 ], [ 120.6843944, 23.7807531 ], [ 120.6812526, 23.7794398 ], [ 120.6768066, 23.777313 ], [ 120.6720272, 23.7772621 ], [ 120.6686582, 23.7766832 ], [ 120.6657017, 23.7750132 ], [ 120.6619916, 23.7727799 ], [ 120.6589555, 23.7709531 ], [ 120.6554601, 23.770145 ], [ 120.6498939, 23.7687833 ], [ 120.6422581, 23.766902 ], [ 120.6403466, 23.7664279 ], [ 120.6366653, 23.7655344 ], [ 120.6307343, 23.7641019 ], [ 120.6285415, 23.7635746 ], [ 120.6243573, 23.7615875 ], [ 120.6212336, 23.7600874 ], [ 120.6207191, 23.7563226 ], [ 120.6195581, 23.7479979 ], [ 120.6191069, 23.7449921 ], [ 120.6171543, 23.7395992 ], [ 120.6164602, 23.7378437 ], [ 120.6144719, 23.7329504 ], [ 120.6133593, 23.7301945 ], [ 120.6102915, 23.7236664 ], [ 120.6109304, 23.7193449 ], [ 120.6115372, 23.715439 ], [ 120.6117899, 23.7133972 ], [ 120.6119384, 23.7093121 ], [ 120.6120425, 23.7072536 ], [ 120.6120869, 23.7050838 ], [ 120.612218, 23.7020912 ], [ 120.6123125, 23.6980463 ], [ 120.6117885, 23.6956653 ], [ 120.6112774, 23.6922181 ], [ 120.6112037, 23.6892707 ], [ 120.6111893, 23.6859675 ], [ 120.6111195, 23.6830597 ], [ 120.6089758, 23.6802845 ], [ 120.6071834, 23.6778771 ], [ 120.605087, 23.6751199 ], [ 120.6029386, 23.6723495 ], [ 120.6007637, 23.6694769 ], [ 120.5978534, 23.6656963 ], [ 120.5965902, 23.6641076 ], [ 120.5928822, 23.6592207 ], [ 120.5903906, 23.6559391 ], [ 120.5878745, 23.6526032 ], [ 120.5863737, 23.6512003 ], [ 120.5827099, 23.6476229 ], [ 120.5796749, 23.6448617 ], [ 120.5764544, 23.6417819 ], [ 120.5673152, 23.6329232 ], [ 120.5652183, 23.6309052 ], [ 120.5631505, 23.6288614 ], [ 120.5616104, 23.6260777 ], [ 120.5604535, 23.6236991 ], [ 120.5591489, 23.6211714 ], [ 120.5578385, 23.6187397 ], [ 120.5563053, 23.6157191 ], [ 120.5549968, 23.6132101 ], [ 120.5536787, 23.6107589 ], [ 120.5512906, 23.606013 ], [ 120.5497914, 23.6030335 ], [ 120.5482104, 23.6000311 ], [ 120.546999, 23.5976716 ], [ 120.5443961, 23.5926887 ], [ 120.5431606, 23.5917181 ], [ 120.5419872, 23.5907963 ], [ 120.5359995, 23.5833218 ], [ 120.5316934, 23.5771834 ], [ 120.5279409, 23.5731126 ], [ 120.5265921, 23.5706812 ], [ 120.5247189, 23.5672515 ], [ 120.5230273, 23.5647716 ], [ 120.5202769, 23.5633704 ], [ 120.5181523, 23.5623093 ], [ 120.5142805, 23.5605385 ], [ 120.5120947, 23.5595509 ], [ 120.5079359, 23.5582891 ], [ 120.5053839, 23.5575049 ], [ 120.5023903, 23.5559237 ], [ 120.4991712, 23.5550875 ], [ 120.497836, 23.5547304 ], [ 120.4931097, 23.5534495 ], [ 120.4905687, 23.5527573 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243849", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4891008, 24.2083852 ], [ 120.4886439, 24.2086798 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243856", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4891008, 24.2083852 ], [ 120.4885894, 24.2084955 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243864", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4895328, 24.2094128 ], [ 120.4890648, 24.2097026 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243870", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4895328, 24.2094128 ], [ 120.4890046, 24.2095275 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243878", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4367073, 24.1333324 ], [ 120.4362113, 24.133757 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243889", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4367073, 24.1333324 ], [ 120.4361142, 24.1336016 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243895", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4892468, 24.2087254 ], [ 120.4887928, 24.2090174 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243898", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4892468, 24.2087254 ], [ 120.4887188, 24.2088496 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243904", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4893949, 24.2090672 ], [ 120.4888567, 24.2091785 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243909", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4893949, 24.2090672 ], [ 120.4889414, 24.2093354 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243913", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5153308, 24.1601254 ], [ 120.514744, 24.1601383 ], [ 120.514493, 24.1599047 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243918", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5157194, 24.1598556 ], [ 120.5148449, 24.1598064 ], [ 120.5145295, 24.1597275 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243921", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5157194, 24.1598556 ], [ 120.5147885, 24.1596305 ], [ 120.5145328, 24.159626 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243927", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5153308, 24.1601254 ], [ 120.5147958, 24.1599591 ], [ 120.5145112, 24.1598229 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243931", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3620344, 22.921394 ], [ 120.362446, 22.9212926 ], [ 120.3637446, 22.9212859 ], [ 120.3645377, 22.9213766 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243934", "power": "line", "wires": "double", "cables": "6", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7691917, 23.8895844 ], [ 120.7686563, 23.8888964 ], [ 120.7676411, 23.8899699 ], [ 120.7677125, 23.891489 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243937", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.362029, 22.9192144 ], [ 120.3624503, 22.9193248 ], [ 120.3637403, 22.9193385 ], [ 120.3644462, 22.9192088 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243940", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3620344, 22.921394 ], [ 120.3624363, 22.9215165 ], [ 120.3626117, 22.9215128 ], [ 120.3635825, 22.9214923 ], [ 120.3645377, 22.9213766 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243943", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3644462, 22.9192088 ], [ 120.3637435, 22.9191069 ], [ 120.3635741, 22.9191066 ], [ 120.3625871, 22.9191049 ], [ 120.3624487, 22.9191046 ], [ 120.362029, 22.9192144 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243947", "name": "中火南~全興線(一進一出彰濱)", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4945969, 24.1901868 ], [ 120.493755, 24.1931506 ], [ 120.4926264, 24.1970834 ], [ 120.4912805, 24.2019691 ], [ 120.4909755, 24.2033315 ], [ 120.4902012, 24.2067024 ], [ 120.4891008, 24.2083852 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283243950", "name": "天輪~龍崎線", "power": "line", "wires": "quad", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3664902, 22.9277734 ], [ 120.3657922, 22.9255714 ], [ 120.3644376, 22.9218563 ], [ 120.3644455, 22.9208461 ], [ 120.3645298, 22.9197329 ], [ 120.3624321, 22.9197417 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283253402", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9236191, 24.1850008 ], [ 120.9232759, 24.184676 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283253405", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9234831, 24.185165 ], [ 120.9231036, 24.1849503 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283253408", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9236191, 24.1850008 ], [ 120.9232291, 24.1847642 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283253411", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9234831, 24.185165 ], [ 120.9231618, 24.1848632 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762800", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7486899, 21.9595382 ], [ 120.7490942, 21.9591873 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762801", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3662009, 23.0772921 ], [ 120.3659039, 23.0778802 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762802", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3731293, 22.7028239 ], [ 120.3727346, 22.7029489 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762803", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3664009, 23.0776665 ], [ 120.3662141, 23.0780564 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762804", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3646014, 23.0783059 ], [ 120.3649858, 23.0785535 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762805", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7490051, 21.9597575 ], [ 120.749253, 21.959288 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762806", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3649012, 23.0779172 ], [ 120.3653078, 23.0780723 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762807", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3731293, 22.7028239 ], [ 120.3727295, 22.7028351 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762808", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3657767, 23.0773407 ], [ 120.3654501, 23.0776317 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762809", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3728749, 22.7019048 ], [ 120.3724651, 22.7019577 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762811", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7490051, 21.9597575 ], [ 120.7494163, 21.9593985 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762813", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3664009, 23.0776665 ], [ 120.3661085, 23.0779995 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762814", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3662009, 23.0772921 ], [ 120.3657952, 23.0778129 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762815", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6252255, 25.0015553 ], [ 121.624687, 25.0025148 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762816", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3649012, 23.0779172 ], [ 120.3652442, 23.0781577 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762817", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3657767, 23.0773407 ], [ 120.3655617, 23.0776876 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762818", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3646014, 23.0783059 ], [ 120.3650494, 23.0784476 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762819", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7486899, 21.9595382 ], [ 120.7489401, 21.959081 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762820", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3728749, 22.7019048 ], [ 120.3724329, 22.7018053 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762821", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6243321, 25.0011691 ], [ 121.6242592, 25.0014986 ], [ 121.6238793, 25.002129 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762822", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6243321, 25.0011691 ], [ 121.6240424, 25.0013946 ], [ 121.6236861, 25.0020368 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762823", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6237537, 25.0008653 ], [ 121.623623, 25.0012266 ], [ 121.6232695, 25.0018377 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762826", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3898901, 22.9515407 ], [ 120.390196, 22.9515437 ], [ 120.3902018, 22.9510322 ], [ 120.3898958, 22.9510293 ], [ 120.3898901, 22.9515407 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762828", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6963876, 24.9957564 ], [ 121.6983863, 24.9972165 ], [ 121.69941, 24.9987647 ], [ 121.6998809, 24.9996166 ], [ 121.6995048, 25.0005416 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762829", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6229537, 25.0012296 ], [ 121.6230737, 25.0012995 ], [ 121.6232508, 25.0009604 ], [ 121.6236651, 25.0008429 ], [ 121.6252255, 25.0015553 ], [ 121.6253826, 25.001627 ], [ 121.6248507, 25.002593 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283762830", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6237537, 25.0008653 ], [ 121.6234596, 25.0011522 ], [ 121.6231105, 25.0017618 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770246", "name": "德基-天輪線", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0334246, 24.2135258 ], [ 121.0381857, 24.214012 ], [ 121.0406114, 24.2140741 ], [ 121.0424114, 24.2149454 ], [ 121.0442602, 24.2158384 ], [ 121.0469537, 24.2170831 ], [ 121.0487896, 24.2192434 ], [ 121.0505501, 24.2201972 ], [ 121.052861, 24.2208458 ], [ 121.0557682, 24.2227162 ], [ 121.0602264, 24.2247494 ], [ 121.0660611, 24.2251303 ], [ 121.0708725, 24.224644 ], [ 121.0760915, 24.2259723 ], [ 121.0834688, 24.228136 ], [ 121.0847641, 24.2285264 ], [ 121.0939042, 24.2326749 ], [ 121.103099, 24.2374335 ], [ 121.1041647, 24.2379558 ], [ 121.1067022, 24.238427 ], [ 121.1105404, 24.2385888 ], [ 121.1155233, 24.2374809 ], [ 121.1169201, 24.2363037 ], [ 121.1180212, 24.2358469 ], [ 121.1249372, 24.2363965 ], [ 121.127323, 24.2391253 ], [ 121.1282864, 24.2408117 ], [ 121.1299796, 24.2430374 ], [ 121.1311354, 24.2470628 ], [ 121.1329619, 24.249028 ], [ 121.1357315, 24.2489403 ], [ 121.1406612, 24.2485428 ], [ 121.14473, 24.2480336 ], [ 121.1494219, 24.2486363 ], [ 121.1516818, 24.2483766 ], [ 121.1602194, 24.2505117 ], [ 121.1647207, 24.2541895 ], [ 121.1651235, 24.2540637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770250", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9377315, 24.7081555 ], [ 120.9374099, 24.7083163 ], [ 120.9371359, 24.7084998 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770256", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.937977, 24.708427 ], [ 120.9376976, 24.7086993 ], [ 120.9374436, 24.7088605 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770264", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9371964, 24.7075168 ], [ 120.9368825, 24.7076738 ], [ 120.9366193, 24.7078393 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770272", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9371964, 24.7075168 ], [ 120.9369572, 24.7077743 ], [ 120.9366948, 24.7079389 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770279", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.937977, 24.708427 ], [ 120.9376318, 24.7085977 ], [ 120.9373716, 24.7087743 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770286", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9377315, 24.7081555 ], [ 120.9374864, 24.7084122 ], [ 120.93722, 24.7085957 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770293", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9237622, 24.1831255 ], [ 120.9237144, 24.1831019 ], [ 120.9236042, 24.1830388 ], [ 120.9230386, 24.1828228 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770302", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9236921, 24.1832566 ], [ 120.9236401, 24.1832332 ], [ 120.9235188, 24.1831663 ], [ 120.9230386, 24.1828228 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770308", "power": "line", "wires": "double", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9248805, 24.1842586 ], [ 120.923912, 24.1832099 ], [ 120.9238604, 24.1831882 ], [ 120.9238405, 24.183219 ], [ 120.9237381, 24.1831685 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770318", "power": "line", "wires": "double", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9248805, 24.1842586 ], [ 120.9238175, 24.1833694 ], [ 120.923769, 24.1833437 ], [ 120.9237522, 24.1833708 ], [ 120.9236595, 24.1833191 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283770326", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0334828, 24.2138715 ], [ 121.0330901, 24.2148044 ], [ 121.0336461, 24.2150914 ], [ 121.0377757, 24.2141557 ], [ 121.0394647, 24.2143058 ], [ 121.041957, 24.2155316 ], [ 121.0432828, 24.2166892 ], [ 121.0456506, 24.2181916 ], [ 121.0482877, 24.2200705 ], [ 121.0495929, 24.2205656 ], [ 121.0511367, 24.2211304 ], [ 121.0534721, 24.2219625 ], [ 121.0600993, 24.2251886 ], [ 121.0665365, 24.2269675 ], [ 121.0713981, 24.2262062 ], [ 121.076167, 24.2270961 ], [ 121.0831, 24.2302104 ], [ 121.083992, 24.230625 ], [ 121.0842147, 24.2307324 ], [ 121.085362, 24.2312858 ], [ 121.0914146, 24.233961 ], [ 121.096403, 24.2396814 ], [ 121.100485, 24.2439228 ], [ 121.1048521, 24.2460275 ], [ 121.1075368, 24.2457685 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779880", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6410299, 25.0826467 ], [ 121.6412121, 25.0826874 ], [ 121.6415082, 25.0827536 ], [ 121.6416912, 25.0827944 ], [ 121.6419832, 25.0828597 ], [ 121.6418682, 25.0832869 ], [ 121.6417686, 25.0836573 ], [ 121.6416724, 25.0840109 ], [ 121.6413728, 25.0839408 ], [ 121.6412085, 25.0839023 ], [ 121.6409032, 25.0838309 ], [ 121.6407218, 25.0837885 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779885", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6419478, 25.0817083 ], [ 121.6419798, 25.0813637 ], [ 121.6418435, 25.0816911 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779886", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.642299, 25.0817708 ], [ 121.6423131, 25.0814506 ], [ 121.6421779, 25.0817479 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779887", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6409078, 25.0814803 ], [ 121.6410613, 25.0811782 ], [ 121.6410321, 25.0815051 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779888", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6407113, 25.0841711 ], [ 121.6407218, 25.0837885 ], [ 121.6410299, 25.0826467 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779889", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6407113, 25.0841711 ], [ 121.6409032, 25.0838309 ], [ 121.6412121, 25.0826874 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779890", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4745556, 24.9855416 ], [ 121.4742759, 24.9859926 ], [ 121.4737752, 24.986303 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779891", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6417167, 25.0816475 ], [ 121.6417399, 25.0813193 ], [ 121.6416088, 25.0816213 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779892", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6413673, 25.0815762 ], [ 121.6414099, 25.0812358 ], [ 121.6412794, 25.0815581 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779893", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6426178, 25.0836127 ], [ 121.6419464, 25.0836882 ], [ 121.6417686, 25.0836573 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779894", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.474165, 24.9851231 ], [ 121.4737649, 24.9852959 ], [ 121.4732823, 24.985584 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779895", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6412, 25.0842823 ], [ 121.6413728, 25.0839408 ], [ 121.6415761, 25.0832183 ], [ 121.6416912, 25.0827944 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779896", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6412, 25.0842823 ], [ 121.6412085, 25.0839023 ], [ 121.6413978, 25.0831765 ], [ 121.6415082, 25.0827536 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779897", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6426178, 25.0836127 ], [ 121.6420425, 25.0833251 ], [ 121.6418682, 25.0832869 ], [ 121.6415761, 25.0832183 ], [ 121.6413978, 25.0831765 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283779898", "operator": "台灣電力公司", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.474165, 24.9851231 ], [ 121.4739035, 24.9854897 ], [ 121.473423, 24.9857693 ], [ 121.4736542, 24.9860939 ], [ 121.4741584, 24.9857897 ], [ 121.4745556, 24.9855416 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "283896350", "name": "翁子-東勢線", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7363186, 24.2641027 ], [ 120.7341358, 24.2646958 ], [ 120.7335044, 24.2672638 ], [ 120.7344125, 24.2699838 ], [ 120.7363907, 24.2714182 ], [ 120.7373962, 24.2721473 ], [ 120.7382787, 24.2727743 ], [ 120.7398246, 24.273365 ], [ 120.7410926, 24.2745919 ], [ 120.7426221, 24.2778992 ], [ 120.7433823, 24.2845371 ], [ 120.7435162, 24.2855612 ], [ 120.7426508, 24.2871607 ], [ 120.741704, 24.2890976 ], [ 120.7424067, 24.2906729 ], [ 120.7450506, 24.291873 ], [ 120.7467217, 24.2931873 ], [ 120.7486471, 24.2935296 ], [ 120.7526172, 24.2942383 ], [ 120.7537746, 24.2939985 ], [ 120.7550287, 24.2937355 ], [ 120.7584117, 24.2930259 ], [ 120.7598688, 24.2927146 ], [ 120.7638597, 24.2918751 ], [ 120.7660431, 24.2915285 ], [ 120.7720349, 24.2905602 ], [ 120.7748244, 24.2903325 ], [ 120.7805642, 24.2908315 ], [ 120.783504, 24.2909155 ], [ 120.7865756, 24.2910216 ], [ 120.7935624, 24.2912473 ], [ 120.7994912, 24.2906493 ], [ 120.8027645, 24.2903264 ], [ 120.8053794, 24.2900615 ], [ 120.808602, 24.2890049 ], [ 120.812193, 24.2878237 ], [ 120.8165868, 24.2863736 ], [ 120.8191964, 24.2855132 ], [ 120.822768, 24.2843627 ], [ 120.8253964, 24.2824452 ], [ 120.827867, 24.2806419 ], [ 120.831085, 24.2782784 ], [ 120.8329349, 24.276919 ], [ 120.8356735, 24.2730486 ], [ 120.8373163, 24.2707278 ], [ 120.8382299, 24.2694321 ], [ 120.8385657, 24.2658051 ], [ 120.8377654, 24.2635656 ], [ 120.8373177, 24.262316 ], [ 120.8333675, 24.2595505 ], [ 120.8313644, 24.2582191 ], [ 120.8313949, 24.2580787 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284163714", "name": "岡山一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "alt_name": "岡山變電所;岡山P/S", "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3266001, 22.789023 ], [ 120.3272918, 22.7890271 ], [ 120.3273261, 22.788989 ], [ 120.3273216, 22.7887682 ], [ 120.3273218, 22.7885105 ], [ 120.3273704, 22.7885127 ], [ 120.3274144, 22.7885131 ], [ 120.327418, 22.7887679 ], [ 120.3274192, 22.788997 ], [ 120.3274706, 22.78903 ], [ 120.3288392, 22.7889953 ], [ 120.3287783, 22.7887901 ], [ 120.3288004, 22.7887597 ], [ 120.3286518, 22.7863092 ], [ 120.3277936, 22.7863998 ], [ 120.3274305, 22.7864045 ], [ 120.3274285, 22.7864778 ], [ 120.3271345, 22.7865321 ], [ 120.3271343, 22.7864746 ], [ 120.3265954, 22.7865527 ], [ 120.3265758, 22.7889929 ], [ 120.3266001, 22.789023 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182343", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.343186, 22.7679159 ], [ 120.342631, 22.7703597 ], [ 120.3421313, 22.7723917 ], [ 120.3415922, 22.7744756 ], [ 120.340895, 22.7775103 ], [ 120.3393416, 22.7806751 ], [ 120.3377587, 22.7825037 ], [ 120.3356804, 22.78352 ], [ 120.3332773, 22.7846684 ], [ 120.3310327, 22.7857293 ], [ 120.3285461, 22.7868933 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182344", "name": "嘉民~雲林線", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4879044, 23.553338 ], [ 120.4875424, 23.5533451 ], [ 120.4875357, 23.5547554 ], [ 120.4896871, 23.5562556 ], [ 120.4924555, 23.5570915 ], [ 120.4948243, 23.5578172 ], [ 120.4997689, 23.5593102 ], [ 120.5022586, 23.5603614 ], [ 120.5043771, 23.5607069 ], [ 120.5066992, 23.5618547 ], [ 120.50705, 23.5642852 ], [ 120.5075051, 23.5660259 ], [ 120.5081092, 23.5685169 ], [ 120.5085182, 23.570335 ], [ 120.5091137, 23.5715125 ], [ 120.510436, 23.5740299 ], [ 120.5116349, 23.57624 ], [ 120.5127883, 23.5784402 ], [ 120.5132899, 23.5809722 ], [ 120.5138397, 23.5837032 ], [ 120.5143145, 23.586004 ], [ 120.5155376, 23.5870168 ], [ 120.5171155, 23.5883004 ], [ 120.5191978, 23.5905896 ], [ 120.5208811, 23.5933648 ], [ 120.5217298, 23.5956072 ], [ 120.5233979, 23.5978554 ], [ 120.52271, 23.5991223 ], [ 120.5216926, 23.600163 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182345", "name": "嘉民~北港線;嘉民-台嘉線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4687896, 23.5691777 ], [ 120.4721326, 23.5684601 ], [ 120.4766462, 23.5675778 ], [ 120.4796506, 23.5670962 ], [ 120.4814138, 23.5655932 ], [ 120.4820615, 23.5630571 ], [ 120.4852856, 23.5616881 ], [ 120.4869398, 23.5593858 ], [ 120.487367, 23.5579285 ], [ 120.4872818, 23.5547403 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182346", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3286422, 22.787587 ], [ 120.3280594, 22.7876151 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182347", "power": "cable", "voltage": "161000", "z_order": -10, "other_tags": { "layer": "-1", "location": "underground" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2289388, 23.0507108 ], [ 120.2425422, 23.0627436 ], [ 120.2428425, 23.0630092 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182348", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3285461, 22.7868933 ], [ 120.3280391, 22.7869353 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182349", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3286399, 22.7872373 ], [ 120.3280406, 22.787274 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182350", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.269572, 23.5660874 ], [ 120.2699692, 23.5659372 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182351", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3286399, 22.7872373 ], [ 120.3280406, 22.7871598 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182352", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3285461, 22.7868933 ], [ 120.3280391, 22.7868184 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182353", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3286422, 22.787587 ], [ 120.3280571, 22.787507 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182354", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.269572, 23.5660874 ], [ 120.2699916, 23.5660761 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182355", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2722669, 23.0586452 ], [ 120.2700921, 23.0585543 ], [ 120.2674278, 23.0585142 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182356", "power": "line", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3462503, 22.760178 ], [ 120.3493481, 22.7604129 ], [ 120.3500967, 22.7587083 ], [ 120.3513971, 22.7560121 ], [ 120.3522055, 22.7542628 ], [ 120.3530406, 22.7526063 ], [ 120.3541687, 22.750138 ], [ 120.355571, 22.7472032 ], [ 120.3565561, 22.7450957 ], [ 120.3573225, 22.7434397 ], [ 120.3582679, 22.741594 ], [ 120.3584541, 22.7391143 ], [ 120.3586545, 22.7365787 ], [ 120.358863, 22.7344085 ], [ 120.3593465, 22.7296796 ], [ 120.3595845, 22.7270448 ], [ 120.3599844, 22.722243 ], [ 120.3601849, 22.7201528 ], [ 120.3604666, 22.7172808 ], [ 120.3607749, 22.7140036 ], [ 120.3608671, 22.7130088 ], [ 120.3614867, 22.7063632 ], [ 120.3605297, 22.70423 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182357", "name": "嘉民~台嘉線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4687896, 23.5691777 ], [ 120.4666562, 23.5697271 ], [ 120.4635246, 23.571462 ], [ 120.4601394, 23.5733379 ], [ 120.4571168, 23.5750258 ], [ 120.4538227, 23.576834 ], [ 120.4511395, 23.5782357 ], [ 120.4480083, 23.5787748 ], [ 120.4446509, 23.5793595 ], [ 120.4412844, 23.5799401 ], [ 120.4389632, 23.5804792 ], [ 120.4359443, 23.580961 ], [ 120.4331804, 23.5814164 ], [ 120.4303977, 23.5818933 ], [ 120.4278864, 23.5823537 ], [ 120.4249588, 23.582872 ], [ 120.4224702, 23.5832494 ], [ 120.4192032, 23.5838009 ], [ 120.4172259, 23.5843193 ], [ 120.4157032, 23.582807 ], [ 120.4138914, 23.5810371 ], [ 120.4117893, 23.5789814 ], [ 120.4098582, 23.5770921 ], [ 120.4076666, 23.5749443 ], [ 120.4054208, 23.5727368 ], [ 120.403411, 23.5707604 ], [ 120.4012954, 23.5695149 ], [ 120.3988625, 23.5682793 ], [ 120.3962939, 23.5664148 ], [ 120.3940861, 23.5652438 ], [ 120.3918078, 23.5639336 ], [ 120.3909588, 23.5614848 ], [ 120.3901088, 23.5589374 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182358", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2698415, 23.565613 ], [ 120.2694769, 23.5657632 ], [ 120.268684, 23.5676745 ], [ 120.269621, 23.5695951 ], [ 120.2701204, 23.5720843 ], [ 120.2705786, 23.5744578 ], [ 120.2710163, 23.5766568 ], [ 120.2715362, 23.5791506 ], [ 120.2720279, 23.5815122 ], [ 120.2724758, 23.5837535 ], [ 120.2728826, 23.585813 ], [ 120.2748544, 23.5874456 ], [ 120.273001, 23.5906445 ], [ 120.2707305, 23.5909701 ], [ 120.2684086, 23.5928715 ], [ 120.2661639, 23.5962708 ], [ 120.264228, 23.5989436 ], [ 120.2621429, 23.6014983 ], [ 120.260619, 23.6037132 ], [ 120.259198, 23.6067255 ], [ 120.2578543, 23.6101504 ], [ 120.2564179, 23.612712 ], [ 120.2549222, 23.6159811 ], [ 120.2534266, 23.6190991 ], [ 120.2521575, 23.6220898 ], [ 120.2507726, 23.6248233 ], [ 120.249138, 23.6271228 ], [ 120.2487467, 23.6295071 ], [ 120.2471661, 23.6318537 ], [ 120.2446073, 23.6349124 ], [ 120.2427333, 23.6390842 ], [ 120.2421298, 23.643271 ], [ 120.2408662, 23.6464999 ], [ 120.239871, 23.6483711 ], [ 120.239216, 23.6513537 ], [ 120.2375399, 23.6533449 ], [ 120.2347568, 23.6544338 ], [ 120.2322778, 23.655521 ], [ 120.2264413, 23.6577894 ], [ 120.2228541, 23.6576777 ], [ 120.2200758, 23.6575534 ], [ 120.2173113, 23.6578426 ], [ 120.2140953, 23.6581826 ], [ 120.2106244, 23.659096 ], [ 120.207173, 23.660083 ], [ 120.2042783, 23.6607046 ], [ 120.2018604, 23.6622124 ], [ 120.1989707, 23.6642824 ], [ 120.1961165, 23.6664986 ], [ 120.1936021, 23.6682609 ], [ 120.1906951, 23.6690592 ], [ 120.1888935, 23.6710127 ], [ 120.1854212, 23.6747793 ], [ 120.183071, 23.6766231 ], [ 120.1847107, 23.6804078 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182359", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5047282, 23.5329369 ], [ 120.503423, 23.5340405 ], [ 120.5007693, 23.5363292 ], [ 120.4973224, 23.5393047 ], [ 120.4933243, 23.541482 ], [ 120.491153, 23.5426659 ], [ 120.4894638, 23.5448751 ], [ 120.4884287, 23.5471925 ], [ 120.4880796, 23.5490417 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284182360", "name": "嘉民~北港線", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4687896, 23.5691777 ], [ 120.4663054, 23.570241 ], [ 120.465057, 23.5716793 ], [ 120.4612605, 23.573432 ], [ 120.4588, 23.5746691 ], [ 120.4564426, 23.5772113 ], [ 120.4536963, 23.5789414 ], [ 120.4506612, 23.5794058 ], [ 120.4475944, 23.5799331 ], [ 120.4445224, 23.5804749 ], [ 120.4415612, 23.5809829 ], [ 120.4382815, 23.5813333 ], [ 120.4350879, 23.5816808 ], [ 120.4316782, 23.582138 ], [ 120.4286043, 23.5826603 ], [ 120.4253625, 23.5832688 ], [ 120.4228959, 23.5835518 ], [ 120.4199136, 23.5840746 ], [ 120.4164024, 23.585298 ], [ 120.4139228, 23.5862932 ], [ 120.4108538, 23.5877008 ], [ 120.4086369, 23.5887208 ], [ 120.405927, 23.589968 ], [ 120.403317, 23.5911793 ], [ 120.4006585, 23.5924015 ], [ 120.3979547, 23.5936404 ], [ 120.3955805, 23.5947463 ], [ 120.3931247, 23.5958577 ], [ 120.390064, 23.5957441 ], [ 120.3863591, 23.5956027 ], [ 120.3831079, 23.595478 ], [ 120.379586, 23.5953242 ], [ 120.376592, 23.5951876 ], [ 120.3738439, 23.5950484 ], [ 120.3707152, 23.594921 ], [ 120.3672956, 23.594774 ], [ 120.3641305, 23.5946427 ], [ 120.3607451, 23.5944762 ], [ 120.3567511, 23.5957417 ], [ 120.3530488, 23.5968642 ], [ 120.3501385, 23.597779 ], [ 120.3475215, 23.5981684 ], [ 120.3443418, 23.5986554 ], [ 120.341131, 23.599151 ], [ 120.338287, 23.5995726 ], [ 120.3352037, 23.600034 ], [ 120.3318748, 23.5997919 ], [ 120.3263065, 23.5993732 ], [ 120.3227623, 23.5991032 ], [ 120.3193014, 23.5988386 ], [ 120.3133119, 23.5984 ], [ 120.3102286, 23.5981579 ], [ 120.3068469, 23.5978873 ], [ 120.3043635, 23.5972094 ], [ 120.3014449, 23.5964176 ], [ 120.2985449, 23.5956172 ], [ 120.2956529, 23.5948237 ], [ 120.2924349, 23.5939571 ], [ 120.2896656, 23.5931957 ], [ 120.2863007, 23.5922572 ], [ 120.2841469, 23.5911866 ], [ 120.28199, 23.5900567 ], [ 120.279601, 23.58881 ], [ 120.2752075, 23.586538 ], [ 120.2730383, 23.585408 ], [ 120.2725553, 23.5830868 ], [ 120.2721551, 23.5809526 ], [ 120.2717318, 23.5789267 ], [ 120.2713006, 23.5767061 ], [ 120.2707208, 23.5743976 ], [ 120.2703551, 23.5722165 ], [ 120.2699989, 23.5702446 ], [ 120.2697521, 23.5682245 ], [ 120.2696021, 23.5664445 ], [ 120.269572, 23.5660874 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266770", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7378921, 24.2633263 ], [ 120.7370999, 24.2634739 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266773", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7379983, 24.2639694 ], [ 120.7372078, 24.2637946 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266777", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7375495, 24.2630203 ], [ 120.7370212, 24.2632764 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266778", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7375495, 24.2630203 ], [ 120.7369593, 24.2631337 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266779", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7379983, 24.2639694 ], [ 120.7372562, 24.2639082 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266780", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7340185, 24.2646195 ], [ 120.7362352, 24.2638872 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266781", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.706403, 24.072965 ], [ 120.7062448, 24.0722645 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266782", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.706403, 24.072965 ], [ 120.7063631, 24.0722505 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266783", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7378921, 24.2633263 ], [ 120.7371345, 24.2635924 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266784", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7364989, 24.2639244 ], [ 120.7362972, 24.2639871 ], [ 120.7341358, 24.2646958 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266785", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7087034, 24.0904041 ], [ 120.7087594, 24.0909016 ], [ 120.7090466, 24.0928472 ], [ 120.7092009, 24.0939149 ], [ 120.7093692, 24.095118 ], [ 120.7096027, 24.096204 ], [ 120.709629, 24.0972382 ], [ 120.7098771, 24.0988897 ], [ 120.7101798, 24.1008996 ], [ 120.7104367, 24.102676 ], [ 120.7107461, 24.1048095 ], [ 120.7110979, 24.1068842 ], [ 120.7113822, 24.1090073 ], [ 120.7116194, 24.1108534 ], [ 120.7120441, 24.1135159 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266786", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7375495, 24.2630203 ], [ 120.7392791, 24.2633466 ], [ 120.7397943, 24.2634687 ], [ 120.74227, 24.2639315 ], [ 120.7445342, 24.2638977 ], [ 120.7461604, 24.2632219 ], [ 120.7450715, 24.2610479 ], [ 120.7441448, 24.2591391 ], [ 120.7429984, 24.2569253 ], [ 120.7415577, 24.2546274 ], [ 120.7402401, 24.2528542 ], [ 120.739428, 24.2511325 ], [ 120.7383084, 24.2486907 ], [ 120.7370505, 24.2458591 ], [ 120.7360951, 24.2438542 ], [ 120.7350348, 24.2415868 ], [ 120.7340222, 24.2395117 ], [ 120.7337781, 24.2390116 ], [ 120.7327246, 24.2365072 ], [ 120.7323646, 24.2323468 ], [ 120.7321901, 24.2302247 ], [ 120.7319762, 24.2276998 ], [ 120.7317386, 24.2247627 ], [ 120.7316074, 24.2231466 ], [ 120.7315377, 24.2222845 ], [ 120.7314273, 24.2209201 ], [ 120.7312672, 24.2188964 ], [ 120.7306668, 24.2156235 ], [ 120.7302377, 24.2132022 ], [ 120.7297921, 24.2107055 ], [ 120.7292906, 24.2080699 ], [ 120.7275912, 24.2068911 ], [ 120.7255447, 24.2054358 ], [ 120.7232923, 24.2049769 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266787", "name": "翁子一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7364861, 24.2643405 ], [ 120.7364147, 24.2641399 ], [ 120.7362399, 24.2641395 ], [ 120.7359627, 24.2634067 ], [ 120.7361193, 24.2633666 ], [ 120.7357902, 24.2625189 ], [ 120.7361418, 24.2622179 ], [ 120.7368498, 24.2619896 ], [ 120.7370682, 24.2625181 ], [ 120.7369274, 24.2626156 ], [ 120.7370224, 24.262884 ], [ 120.7370383, 24.2629286 ], [ 120.7371269, 24.2629174 ], [ 120.737504, 24.2639648 ], [ 120.7374866, 24.2640189 ], [ 120.7364861, 24.2643405 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284266788", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7467217, 24.2931873 ], [ 120.7458089, 24.2941304 ], [ 120.742869, 24.2941742 ], [ 120.7420336, 24.2958547 ], [ 120.7411695, 24.2969643 ], [ 120.7402078, 24.2984545 ], [ 120.7390159, 24.3005534 ], [ 120.7381978, 24.3018519 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286380", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177599, 24.0493957 ], [ 120.5172902, 24.0494526 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286381", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5175539, 24.050181 ], [ 120.5171868, 24.0502397 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286383", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177697, 24.0497513 ], [ 120.5172655, 24.0496695 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286385", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177697, 24.0497513 ], [ 120.5172509, 24.0497981 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286386", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5175539, 24.050181 ], [ 120.5172032, 24.0501336 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286387", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177599, 24.0493957 ], [ 120.5173109, 24.0493279 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284286388", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5177599, 24.0493957 ], [ 120.520337, 24.0484622 ], [ 120.5229838, 24.0475347 ], [ 120.5252026, 24.0467266 ], [ 120.5279989, 24.045741 ], [ 120.5288422, 24.0436257 ], [ 120.5295777, 24.0417908 ], [ 120.5303358, 24.039913 ], [ 120.5311609, 24.0377905 ], [ 120.5333557, 24.0377482 ], [ 120.5351094, 24.037707 ], [ 120.5375377, 24.0379533 ], [ 120.5394618, 24.0375629 ], [ 120.541597, 24.0370881 ], [ 120.5437701, 24.0366166 ], [ 120.5457897, 24.0371972 ], [ 120.5479364, 24.0378208 ], [ 120.5502095, 24.0381942 ], [ 120.5533846, 24.0381418 ], [ 120.5561565, 24.0360582 ], [ 120.5589726, 24.03372 ], [ 120.5631967, 24.0303031 ], [ 120.5649797, 24.0288865 ], [ 120.566724, 24.0272708 ], [ 120.5683334, 24.0261707 ], [ 120.571728, 24.0234758 ], [ 120.5742032, 24.0214683 ], [ 120.5767698, 24.0194056 ], [ 120.5805617, 24.0163912 ], [ 120.5824891, 24.0148858 ], [ 120.5853849, 24.0127426 ], [ 120.5888955, 24.009742 ], [ 120.5932226, 24.0060746 ], [ 120.5955893, 24.0025354 ], [ 120.5979592, 23.9989846 ], [ 120.5990139, 23.9974585 ], [ 120.6016435, 23.9934962 ], [ 120.6035872, 23.9906065 ], [ 120.6069505, 23.9855572 ], [ 120.6074476, 23.9848254 ], [ 120.6089172, 23.9822583 ], [ 120.6098064, 23.9810081 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305595", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1925122, 24.8189098 ], [ 121.1929688, 24.8189088 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305596", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1925577, 24.8186206 ], [ 121.1929792, 24.8185854 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305597", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1925122, 24.8189098 ], [ 121.1929643, 24.8190304 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305598", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2877636, 24.9135526 ], [ 121.2876695, 24.9140367 ], [ 121.2876569, 24.914239 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305599", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1925577, 24.8186206 ], [ 121.1929621, 24.818698 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305600", "name": "板橋~城中線", "operator": "台灣電力公司", "power": "cable", "voltage": "161000;69000", "z_order": -10, "other_tags": { "alt_name": "板橋~萬華線;埔墘~萬華線", "layer": "-1", "location": "underground", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4889523, 25.0267296 ], [ 121.4890327, 25.0266925 ], [ 121.489077, 25.0266925 ], [ 121.4891715, 25.0267266 ], [ 121.4892339, 25.0267255 ], [ 121.4892697, 25.0267085 ], [ 121.4892981, 25.0266695 ], [ 121.4903405, 25.0246038 ], [ 121.4909295, 25.0230542 ], [ 121.4914749, 25.0218395 ], [ 121.492459, 25.0196233 ], [ 121.4935886, 25.0172708 ], [ 121.4938892, 25.0169435 ], [ 121.4940831, 25.0167612 ], [ 121.4943885, 25.0165503 ], [ 121.4947109, 25.0163921 ], [ 121.4950624, 25.0162603 ], [ 121.4951811, 25.016201 ], [ 121.495249, 25.0161307 ], [ 121.4952582, 25.0160617 ], [ 121.4951933, 25.0128616 ], [ 121.4951999, 25.0128292 ], [ 121.4952163, 25.0128084 ], [ 121.4952442, 25.0127985 ], [ 121.4958356, 25.0128029 ], [ 121.4958593, 25.012793 ], [ 121.4958768, 25.0127655 ], [ 121.4961216, 25.0119771 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305602", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1882545, 24.8196806 ], [ 121.1882735, 24.8200316 ], [ 121.1892849, 24.8197047 ], [ 121.1902066, 24.8201515 ], [ 121.1925577, 24.8186206 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305604", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1950487, 24.8173662 ], [ 121.1950725, 24.8172341 ], [ 121.1951937, 24.8172433 ], [ 121.1952015, 24.8171747 ], [ 121.1951373, 24.8167487 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305612", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1956105, 24.8176136 ], [ 121.1959712, 24.8180696 ], [ 121.1955573, 24.8168048 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305617", "name": "台北~信南線", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 50, "other_tags": { "alt_name": "台北~大豐線", "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5275819, 24.9894595 ], [ 121.529856, 24.9922164 ], [ 121.5323128, 24.9952032 ], [ 121.5319349, 24.9969008 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305619", "power": "cable", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.194567, 24.8174652 ], [ 121.1945608, 24.8175065 ], [ 121.1942913, 24.8174802 ], [ 121.1942648, 24.8176597 ], [ 121.1942333, 24.8176585 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305621", "power": "cable", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1947308, 24.8174822 ], [ 121.1947143, 24.8175933 ], [ 121.1943163, 24.817559 ], [ 121.1942559, 24.8179065 ], [ 121.1941929, 24.817902 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305626", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6231105, 25.0017618 ], [ 121.6232695, 25.0018377 ], [ 121.6236861, 25.0020368 ], [ 121.6238793, 25.002129 ], [ 121.624687, 25.0025148 ], [ 121.6248507, 25.002593 ], [ 121.6253041, 25.0028096 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305627", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6232695, 25.0018377 ], [ 121.6230542, 25.0022396 ], [ 121.6231955, 25.0026357 ], [ 121.6239822, 25.0030116 ], [ 121.6239897, 25.0030369 ], [ 121.6253734, 25.0037111 ], [ 121.6254608, 25.0035796 ], [ 121.6255755, 25.003552 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305628", "operator": "台灣電力公司", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6231105, 25.0017618 ], [ 121.6229495, 25.0020582 ], [ 121.6231586, 25.0026649 ], [ 121.6239595, 25.0030487 ], [ 121.6239661, 25.0030689 ], [ 121.6255139, 25.0038281 ], [ 121.6256191, 25.0036649 ], [ 121.6255755, 25.003552 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284305629", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0961203, 24.8927276 ], [ 121.0986484, 24.8933279 ], [ 121.1018025, 24.889377 ], [ 121.1050015, 24.8882017 ], [ 121.1073306, 24.887913 ], [ 121.1083186, 24.8857537 ], [ 121.111437, 24.8843784 ], [ 121.1144355, 24.8824151 ], [ 121.1171055, 24.8815256 ], [ 121.1195766, 24.8808143 ], [ 121.121623, 24.8792647 ], [ 121.123403, 24.8762565 ], [ 121.1245148, 24.8744704 ], [ 121.1281839, 24.8733 ], [ 121.1295385, 24.8713923 ], [ 121.1306028, 24.8687823 ], [ 121.132671, 24.8636444 ], [ 121.1340812, 24.8617797 ], [ 121.1364665, 24.8591174 ], [ 121.1372187, 24.8580335 ], [ 121.1383429, 24.856951 ], [ 121.1401494, 24.8551115 ], [ 121.1413983, 24.8524307 ], [ 121.1424284, 24.8500815 ], [ 121.1432067, 24.84823 ], [ 121.1451318, 24.8455972 ], [ 121.1476547, 24.8409557 ], [ 121.150548, 24.8393896 ], [ 121.1535198, 24.8392497 ], [ 121.1577547, 24.8368361 ], [ 121.1599925, 24.8364692 ], [ 121.1625424, 24.8352598 ], [ 121.1644846, 24.8348307 ], [ 121.166154, 24.8327379 ], [ 121.1696362, 24.8315647 ], [ 121.171646, 24.8312096 ], [ 121.1738734, 24.829934 ], [ 121.1764936, 24.8285914 ], [ 121.1801576, 24.8271053 ], [ 121.1831267, 24.8253891 ], [ 121.1851636, 24.8243083 ], [ 121.1873675, 24.8219954 ], [ 121.1890939, 24.8195887 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284485330", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4390846, 23.7081876 ], [ 120.440946, 23.7083743 ], [ 120.4433072, 23.7077064 ], [ 120.4446263, 23.7059711 ], [ 120.4458511, 23.7038574 ], [ 120.4473091, 23.701385 ], [ 120.4492075, 23.6981462 ], [ 120.4509299, 23.6951946 ], [ 120.452115, 23.6931279 ], [ 120.4533008, 23.6908213 ], [ 120.4540493, 23.6883332 ], [ 120.4549084, 23.6857428 ], [ 120.4556887, 23.6832588 ], [ 120.454633, 23.6810835 ], [ 120.4536305, 23.6789835 ], [ 120.4524659, 23.6766089 ], [ 120.4513866, 23.6742434 ], [ 120.451996, 23.672096 ], [ 120.4527061, 23.6699526 ], [ 120.453377, 23.6677539 ], [ 120.4556493, 23.6657862 ], [ 120.4573647, 23.6643115 ], [ 120.4591837, 23.6627654 ], [ 120.4615461, 23.6614532 ], [ 120.4627249, 23.6590436 ], [ 120.4633286, 23.6576259 ], [ 120.463963, 23.6559078 ], [ 120.4645594, 23.6537037 ], [ 120.465245, 23.6513372 ], [ 120.4659125, 23.6487697 ], [ 120.4667273, 23.6461234 ], [ 120.4671242, 23.6436483 ], [ 120.4670767, 23.6432011 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488529", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4459416, 22.5523363 ], [ 120.4435193, 22.5531192 ], [ 120.4395605, 22.5544282 ], [ 120.4366099, 22.5555357 ], [ 120.4328188, 22.5570225 ], [ 120.4297397, 22.5581541 ], [ 120.4281436, 22.5587492 ], [ 120.4256212, 22.5596803 ], [ 120.4236612, 22.560977 ], [ 120.421621, 22.5621082 ], [ 120.4196811, 22.5650099 ], [ 120.418603, 22.566645 ], [ 120.4173087, 22.5685473 ], [ 120.4161978, 22.5712731 ], [ 120.4147603, 22.5728857 ], [ 120.4122313, 22.5731203 ], [ 120.4112155, 22.5733915 ], [ 120.4099085, 22.5726857 ], [ 120.409874, 22.5720664 ], [ 120.4084188, 22.5717896 ], [ 120.4076999, 22.5713783 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488531", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5846629, 22.5468699 ], [ 120.5843099, 22.5471047 ], [ 120.5841811, 22.5471685 ], [ 120.5840723, 22.5472174 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488532", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5845868, 22.5465575 ], [ 120.5841527, 22.5468166 ], [ 120.5840291, 22.5468701 ], [ 120.5839174, 22.5469185 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488533", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5848747, 22.5471373 ], [ 120.584442, 22.547287 ], [ 120.5842759, 22.5473545 ], [ 120.5841686, 22.5473983 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488534", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5846629, 22.5468699 ], [ 120.584283, 22.5470039 ], [ 120.5841295, 22.5470671 ], [ 120.5840192, 22.5471131 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488535", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5848747, 22.5471373 ], [ 120.5844834, 22.5473814 ], [ 120.584322, 22.547445 ], [ 120.5842153, 22.5474874 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488536", "power": "line", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5845868, 22.5465575 ], [ 120.5841044, 22.5467133 ], [ 120.5839799, 22.5467734 ], [ 120.5838688, 22.5468259 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488537", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3704602, 22.584271 ], [ 120.3691117, 22.584406 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488538", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5848747, 22.5471373 ], [ 120.5857722, 22.5496495 ], [ 120.5867166, 22.5523806 ], [ 120.5847514, 22.5537029 ], [ 120.5822989, 22.5553815 ], [ 120.5793668, 22.5569822 ], [ 120.5770878, 22.5582694 ], [ 120.5744538, 22.5597398 ], [ 120.5719589, 22.5611308 ], [ 120.569713, 22.5623739 ], [ 120.5672555, 22.5637538 ], [ 120.5649249, 22.5650373 ], [ 120.5616374, 22.5655365 ], [ 120.5591105, 22.5659307 ], [ 120.5564016, 22.5663575 ], [ 120.5534619, 22.5668087 ], [ 120.5509149, 22.5671997 ], [ 120.5473545, 22.5677425 ], [ 120.5444673, 22.5681962 ], [ 120.5410135, 22.5687196 ], [ 120.5375106, 22.5692713 ], [ 120.5355559, 22.5696763 ], [ 120.5320864, 22.5704033 ], [ 120.5304525, 22.5707579 ], [ 120.528663, 22.5699187 ], [ 120.5249341, 22.5705347 ], [ 120.5232191, 22.5701686 ], [ 120.5205753, 22.5684251 ], [ 120.5181389, 22.5667893 ], [ 120.5161193, 22.5654463 ], [ 120.5132923, 22.5635613 ], [ 120.5108476, 22.5619262 ], [ 120.5084499, 22.5608127 ], [ 120.5057594, 22.5595589 ], [ 120.5033175, 22.5584275 ], [ 120.5006201, 22.5571788 ], [ 120.4980856, 22.5560028 ], [ 120.4953357, 22.5548612 ], [ 120.4929435, 22.5539173 ], [ 120.4902627, 22.5527961 ], [ 120.4876785, 22.5517272 ], [ 120.484883, 22.5505703 ], [ 120.4825544, 22.5495919 ], [ 120.4799398, 22.5492386 ], [ 120.4772079, 22.5488763 ], [ 120.4744069, 22.5484719 ], [ 120.4712882, 22.5480395 ], [ 120.46456, 22.5471117 ], [ 120.462615, 22.5475693 ], [ 120.4598329, 22.5482401 ], [ 120.4570415, 22.5489081 ], [ 120.4538993, 22.5496528 ], [ 120.4510235, 22.5503011 ], [ 120.4484417, 22.5512525 ], [ 120.4459416, 22.5523363 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284488539", "name": "屏東一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5825812, 22.546632 ], [ 120.5840168, 22.5459704 ], [ 120.5841067, 22.5461349 ], [ 120.5841957, 22.5461435 ], [ 120.5850666, 22.5478655 ], [ 120.5840541, 22.5484254 ], [ 120.5835921, 22.5479093 ], [ 120.5834073, 22.5478565 ], [ 120.5830981, 22.5475287 ], [ 120.5825812, 22.546632 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562444", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6719813, 24.487822 ], [ 120.6714931, 24.4880483 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562445", "power": "cable", "cables": "6", "voltage": "161000", "z_order": -10, "other_tags": { "circuits": "2", "layer": "-1", "location": "underground" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4326384, 23.7233369 ], [ 121.4308649, 23.7225569 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562446", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6708341, 24.4882984 ], [ 120.6710197, 24.4886152 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562447", "power": "line", "line": "substation", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4327197, 23.7225454 ], [ 121.4324337, 23.7223594 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562448", "power": "line", "line": "substation", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4327197, 23.7225454 ], [ 121.4323734, 23.7224867 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562449", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6719813, 24.487822 ], [ 120.6715634, 24.4881396 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562451", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6708341, 24.4882984 ], [ 120.6711049, 24.4885486 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562452", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6715245, 24.4873079 ], [ 120.6710689, 24.487581 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562453", "power": "line", "line": "substation", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1", "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4302803, 23.7212449 ], [ 121.4309085, 23.7213693 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562454", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.671018, 24.4881578 ], [ 120.671304, 24.4884246 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562455", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.671018, 24.4881578 ], [ 120.6712045, 24.4884811 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562456", "power": "line", "line": "substation", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1", "frequency": "60" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4302803, 23.7212449 ], [ 121.4308473, 23.7215151 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562457", "power": "line", "line": "busbar", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2", "location": "underground" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4308649, 23.7225569 ], [ 121.4306066, 23.72246 ], [ 121.431285, 23.7209433 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562458", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0900276, 22.7833023 ], [ 121.0901369, 22.7836281 ], [ 121.090307, 22.783802 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562459", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0903176, 22.7830843 ], [ 121.0905681, 22.7832764 ], [ 121.0907205, 22.7834833 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562460", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0903176, 22.7830843 ], [ 121.0904485, 22.7834037 ], [ 121.0905885, 22.783591 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562461", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0900276, 22.7833023 ], [ 121.090148, 22.7835244 ], [ 121.0904045, 22.7837232 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284562462", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0902653, 22.7838296 ], [ 121.090307, 22.783802 ], [ 121.0904045, 22.7837232 ], [ 121.0905885, 22.783591 ], [ 121.0907205, 22.7834833 ], [ 121.0912357, 22.7830975 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567885", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7361193, 24.2635528 ], [ 120.7342338, 24.2638037 ], [ 120.7327691, 24.2630273 ], [ 120.7314719, 24.2619289 ], [ 120.731126, 24.2616713 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567886", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7360629, 24.2634327 ], [ 120.7362854, 24.2633924 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567887", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7395058, 24.3170955 ], [ 120.7359523, 24.3174218 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567888", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7363186, 24.2641027 ], [ 120.7365535, 24.2640643 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567889", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7361852, 24.2637789 ], [ 120.7364135, 24.263729 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567890", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7361193, 24.2635528 ], [ 120.7363156, 24.2634637 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567891", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7338391, 24.2644888 ], [ 120.7361852, 24.2637789 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567892", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7361193, 24.2635528 ], [ 120.7363365, 24.2635268 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567893", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7362352, 24.2638872 ], [ 120.7364624, 24.2638405 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567894", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7362352, 24.2638872 ], [ 120.7364372, 24.2637882 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567895", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7361852, 24.2637789 ], [ 120.736391, 24.2636589 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567896", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7363186, 24.2641027 ], [ 120.7365294, 24.2640107 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567897", "power": "line", "cables": "3", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7360629, 24.2634327 ], [ 120.7362627, 24.2633321 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284567898", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7270376, 24.2605268 ], [ 120.7281359, 24.2618242 ], [ 120.7300356, 24.263144 ], [ 120.7330055, 24.2632823 ], [ 120.7360629, 24.2634327 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775538", "power": "line", "line": "bay", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7634854, 24.6588805 ], [ 121.7637365, 24.6587491 ], [ 121.7640361, 24.658672 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775539", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8585953, 23.8192317 ], [ 120.858022, 23.8195008 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775540", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7085009, 24.6447049 ], [ 121.7090367, 24.6446351 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775541", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8570078, 23.8192613 ], [ 120.8575194, 23.8190275 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775542", "operator": "台灣電力公司", "power": "line", "wires": "double", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6321786, 25.0606476 ], [ 121.6343561, 25.0599675 ], [ 121.6348921, 25.0604261 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775543", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7083809, 24.6442769 ], [ 121.7088952, 24.6440504 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775544", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8572107, 23.8194653 ], [ 120.8576028, 23.8192691 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775545", "power": "line", "line": "bay", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7633847, 24.6585369 ], [ 121.7636521, 24.6585306 ], [ 121.7639956, 24.6584483 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775546", "power": "line", "line": "bay", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7633847, 24.6585369 ], [ 121.7636301, 24.6584121 ], [ 121.7639582, 24.6583234 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775547", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7109819, 24.6426508 ], [ 121.7104295, 24.6430054 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775548", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7083809, 24.6442769 ], [ 121.7089238, 24.6442086 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775549", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8570078, 23.8192613 ], [ 120.8575541, 23.8191323 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775550", "power": "line", "line": "substation", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7109819, 24.6426508 ], [ 121.7103707, 24.6427683 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775552", "power": "line", "line": "bay", "wires": "double", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7634854, 24.6588805 ], [ 121.7637374, 24.6588648 ], [ 121.7640672, 24.6587803 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775554", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8572107, 23.8194653 ], [ 120.8576572, 23.8193652 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775555", "power": "line", "line": "substation", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7085009, 24.6447049 ], [ 121.7089956, 24.6444716 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775556", "power": "line", "line": "substation", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8585953, 23.8192317 ], [ 120.8579741, 23.8193922 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775557", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7186175, 25.102665 ], [ 121.7194333, 25.1021311 ], [ 121.7195132, 25.1020838 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775558", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7195132, 25.1020838 ], [ 121.7195948, 25.1021998 ], [ 121.7200387, 25.1028165 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775559", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7186175, 25.102665 ], [ 121.719524, 25.1022378 ], [ 121.7195948, 25.1021998 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775560", "name": "鉅工電廠~斗工線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8585953, 23.8192317 ], [ 120.8594115, 23.8186706 ], [ 120.8601975, 23.8181393 ], [ 120.8611072, 23.8145849 ], [ 120.8611261, 23.8108835 ], [ 120.860579, 23.8103446 ], [ 120.8559126, 23.8057029 ], [ 120.8541892, 23.803928 ], [ 120.8521022, 23.8039137 ], [ 120.850154, 23.8036695 ], [ 120.842954, 23.801035 ], [ 120.8377066, 23.7990736 ], [ 120.8314734, 23.7964844 ], [ 120.8275372, 23.7948995 ], [ 120.8238427, 23.7936645 ], [ 120.8204533, 23.7932832 ], [ 120.8166386, 23.7928512 ], [ 120.8143223, 23.7926518 ], [ 120.8064867, 23.7918328 ], [ 120.7970374, 23.7912007 ], [ 120.7903433, 23.7903424 ], [ 120.788806, 23.7901357 ], [ 120.7873081, 23.7900638 ], [ 120.7736662, 23.7884863 ], [ 120.771519, 23.7882577 ], [ 120.7695125, 23.7881697 ], [ 120.7648031, 23.7876737 ], [ 120.7588279, 23.7871503 ], [ 120.7544794, 23.7865472 ], [ 120.7524744, 23.7863508 ], [ 120.7457523, 23.7856068 ], [ 120.7416488, 23.7847657 ], [ 120.7359605, 23.7800075 ], [ 120.73226, 23.7766303 ], [ 120.7309782, 23.775425 ], [ 120.7278014, 23.7724485 ], [ 120.7245793, 23.769659 ], [ 120.7223267, 23.7674151 ], [ 120.7174585, 23.7629637 ], [ 120.7154631, 23.7610888 ], [ 120.7116002, 23.7576734 ], [ 120.7073157, 23.7536801 ], [ 120.7045687, 23.7508813 ], [ 120.7012124, 23.7480871 ], [ 120.6968759, 23.7439802 ], [ 120.693748, 23.7410542 ], [ 120.6922544, 23.7397637 ], [ 120.689515, 23.7371751 ], [ 120.6866726, 23.7345494 ], [ 120.6846993, 23.7328545 ], [ 120.683751, 23.7318802 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775561", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7027972, 24.0164363 ], [ 120.7037108, 24.0229132 ], [ 120.7040368, 24.025117 ], [ 120.7041056, 24.0255821 ], [ 120.7048865, 24.0309212 ], [ 120.7051965, 24.0332598 ], [ 120.7056052, 24.0362372 ], [ 120.7058326, 24.0393546 ], [ 120.7061924, 24.0446833 ], [ 120.7062895, 24.0465576 ], [ 120.7064662, 24.051453 ], [ 120.7066277, 24.0532619 ], [ 120.7069323, 24.0565621 ], [ 120.7074524, 24.0589924 ], [ 120.7083848, 24.0640348 ], [ 120.709219, 24.067897 ], [ 120.7084632, 24.0689035 ], [ 120.7068627, 24.071208 ], [ 120.7064967, 24.0712508 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284775562", "name": "中寮南~龍崎南線(一進一出嘉民)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4905186, 23.5523317 ], [ 120.4931381, 23.5525909 ], [ 120.4968326, 23.5512735 ], [ 120.5001634, 23.5504886 ], [ 120.5026983, 23.5499205 ], [ 120.5070274, 23.5482026 ], [ 120.5100755, 23.5469852 ], [ 120.5115319, 23.5464041 ], [ 120.5156188, 23.5448662 ], [ 120.5183834, 23.5444513 ], [ 120.5208924, 23.5451029 ], [ 120.5236995, 23.5455058 ], [ 120.5268661, 23.5460405 ], [ 120.5300913, 23.5465262 ], [ 120.5326003, 23.5469819 ], [ 120.5349444, 23.5469293 ], [ 120.539057, 23.5467683 ], [ 120.5428725, 23.5464016 ], [ 120.5510805, 23.545313 ], [ 120.5533622, 23.5449121 ], [ 120.5559477, 23.5449988 ], [ 120.5677387, 23.5480872 ], [ 120.5702247, 23.5488752 ], [ 120.5727513, 23.5496153 ], [ 120.5750514, 23.550217 ], [ 120.5792915, 23.5511009 ], [ 120.5817011, 23.5520139 ], [ 120.5845761, 23.5515771 ], [ 120.5873238, 23.552187 ], [ 120.5882109, 23.5520402 ], [ 120.5897881, 23.5517089 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789631", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.327674, 22.7865269 ], [ 120.3276748, 22.7865867 ], [ 120.3276763, 22.7867028 ], [ 120.327678, 22.7868305 ], [ 120.3276794, 22.7869374 ], [ 120.3276825, 22.7871722 ], [ 120.3276839, 22.7872772 ], [ 120.3276871, 22.7875176 ], [ 120.3276885, 22.7876206 ], [ 120.3276947, 22.7880958 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789632", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuit": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3566046, 22.6897181 ], [ 120.3555568, 22.6899692 ], [ 120.3536968, 22.6904148 ], [ 120.3513063, 22.691129 ], [ 120.350122, 22.6914576 ], [ 120.3485701, 22.6918882 ], [ 120.3467615, 22.6925041 ], [ 120.3450915, 22.6930374 ], [ 120.3426827, 22.6938222 ], [ 120.3410397, 22.6943598 ], [ 120.3385574, 22.6951712 ], [ 120.3363423, 22.6953558 ], [ 120.3344801, 22.6954014 ], [ 120.3320053, 22.6955537 ], [ 120.3300215, 22.6956098 ], [ 120.3280205, 22.6957116 ], [ 120.326422, 22.6967329 ], [ 120.3260091, 22.6969197 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789633", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3259398, 22.7866653 ], [ 120.325523, 22.7888379 ], [ 120.3248886, 22.7916005 ], [ 120.3242028, 22.7947481 ], [ 120.3236355, 22.7973739 ], [ 120.3227993, 22.7995024 ], [ 120.3213197, 22.8028817 ], [ 120.3195602, 22.8068899 ], [ 120.3197955, 22.8080896 ], [ 120.3196886, 22.8086101 ], [ 120.3182778, 22.8097961 ], [ 120.3179418, 22.8105473 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789635", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3274946, 22.7867082 ], [ 120.3276763, 22.7867028 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789636", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280571, 22.787507 ], [ 120.3276871, 22.7875176 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789637", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280391, 22.7869353 ], [ 120.3276794, 22.7869374 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789638", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280406, 22.787274 ], [ 120.3276839, 22.7872772 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789639", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3268521, 22.7866981 ], [ 120.3274873, 22.7865895 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789640", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280406, 22.7871598 ], [ 120.3276825, 22.7871722 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789641", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280594, 22.7876151 ], [ 120.3276885, 22.7876206 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789642", "power": "line", "line": "bay", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3268521, 22.7866981 ], [ 120.3274946, 22.7867082 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789645", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3274873, 22.7865895 ], [ 120.3276748, 22.7865867 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789649", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280391, 22.7868184 ], [ 120.327678, 22.7868305 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789653", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4072062, 22.5710504 ], [ 120.4071932, 22.5713645 ], [ 120.4071847, 22.5730536 ], [ 120.4062909, 22.577403 ], [ 120.4060388, 22.5788103 ], [ 120.4057399, 22.5801958 ], [ 120.4045336, 22.582992 ], [ 120.4020629, 22.5840335 ], [ 120.3983398, 22.5856178 ], [ 120.396306, 22.5878938 ], [ 120.3949371, 22.5894123 ], [ 120.395061, 22.5910603 ], [ 120.3968952, 22.5924577 ], [ 120.3980013, 22.5932152 ], [ 120.4000163, 22.5962403 ], [ 120.4023259, 22.6017754 ], [ 120.4014088, 22.6034981 ], [ 120.3999688, 22.6062295 ], [ 120.3985026, 22.6089874 ], [ 120.3970086, 22.6117936 ], [ 120.3957183, 22.6142408 ], [ 120.3972296, 22.6150023 ], [ 120.396211, 22.6168627 ], [ 120.395138, 22.618639 ], [ 120.3940558, 22.62038 ], [ 120.3929094, 22.6222188 ], [ 120.3920087, 22.6237282 ], [ 120.3910055, 22.6253652 ], [ 120.3899637, 22.6269854 ], [ 120.3891625, 22.6265878 ], [ 120.3866292, 22.6313899 ], [ 120.3851723, 22.634139 ], [ 120.3835101, 22.637267 ], [ 120.382177, 22.6397824 ], [ 120.3811026, 22.6417811 ], [ 120.3795867, 22.64453 ], [ 120.3780426, 22.6473022 ], [ 120.3765295, 22.6500172 ], [ 120.3751972, 22.6523813 ], [ 120.3735356, 22.6553317 ], [ 120.3720207, 22.6580961 ], [ 120.3704937, 22.6608021 ], [ 120.3690998, 22.6633056 ], [ 120.3680431, 22.6652021 ], [ 120.3659434, 22.668866 ], [ 120.3647344, 22.6710887 ], [ 120.3645181, 22.673175 ], [ 120.3642485, 22.6758395 ], [ 120.3640135, 22.6786674 ], [ 120.3637577, 22.681334 ], [ 120.363497, 22.6840517 ], [ 120.3632931, 22.6863725 ], [ 120.3631903, 22.6875426 ], [ 120.3610503, 22.6881842 ], [ 120.357287, 22.6891475 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789655", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3185229, 22.8118139 ], [ 120.3175825, 22.8127544 ], [ 120.3172808, 22.813523 ], [ 120.3170241, 22.8143826 ], [ 120.3166655, 22.8153323 ], [ 120.3157691, 22.8170166 ], [ 120.3154102, 22.818366 ], [ 120.3150682, 22.8183833 ], [ 120.3151276, 22.8191439 ], [ 120.3150262, 22.8195023 ], [ 120.3145331, 22.820452 ], [ 120.3142246, 22.8214365 ], [ 120.314281, 22.8221932 ], [ 120.3137109, 22.8222979 ], [ 120.3133195, 22.8234437 ], [ 120.3131447, 22.8236423 ], [ 120.3131683, 22.8239896 ], [ 120.3126374, 22.8249432 ], [ 120.3116083, 22.8263992 ], [ 120.3104672, 22.8265824 ], [ 120.3097294, 22.8268534 ], [ 120.3090291, 22.8270432 ], [ 120.3088144, 22.8275493 ], [ 120.3081275, 22.8283591 ], [ 120.3074214, 22.8294871 ], [ 120.3067746, 22.8304957 ], [ 120.3063005, 22.8312002 ], [ 120.3058592, 22.8318227 ], [ 120.3055326, 22.832784 ], [ 120.305173, 22.833817 ], [ 120.3047943, 22.8349573 ], [ 120.304505, 22.8357155 ], [ 120.3043523, 22.8362267 ], [ 120.3039937, 22.8371057 ], [ 120.3031773, 22.8392965 ], [ 120.3028575, 22.8401683 ], [ 120.302528, 22.8411341 ], [ 120.302191, 22.8419976 ], [ 120.3015457, 22.8436812 ], [ 120.3008851, 22.8457473 ], [ 120.3001478, 22.8477347 ], [ 120.299714, 22.8489575 ], [ 120.2991335, 22.8497746 ], [ 120.2980811, 22.8504001 ], [ 120.2970526, 22.8510548 ], [ 120.2959813, 22.8517116 ], [ 120.2950972, 22.8522354 ], [ 120.294195, 22.8527882 ], [ 120.2932973, 22.8533494 ], [ 120.2921876, 22.8540124 ], [ 120.2903111, 22.8551742 ], [ 120.2892458, 22.8553827 ], [ 120.2888614, 22.8559084 ], [ 120.2889399, 22.8568608 ], [ 120.2882705, 22.8568303 ], [ 120.2879704, 22.8572415 ], [ 120.287384, 22.8581267 ], [ 120.2868134, 22.8589539 ], [ 120.2862743, 22.8597416 ], [ 120.2855752, 22.8607599 ], [ 120.2849932, 22.8616557 ], [ 120.284567, 22.8622355 ], [ 120.2841926, 22.862886 ], [ 120.2839106, 22.8632871 ], [ 120.2835475, 22.863842 ], [ 120.2831472, 22.8643966 ], [ 120.282396, 22.8657573 ], [ 120.2817086, 22.8668036 ], [ 120.2811791, 22.8677059 ], [ 120.2807581, 22.8683789 ], [ 120.2799998, 22.8694585 ], [ 120.2791428, 22.8708854 ], [ 120.2782808, 22.8715156 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789659", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3257096, 22.696328 ], [ 120.3251422, 22.6948735 ], [ 120.3244853, 22.6932393 ], [ 120.3227967, 22.6917915 ], [ 120.3205316, 22.6898431 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789661", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3264333, 22.7020898 ], [ 120.3270975, 22.7027164 ], [ 120.3276918, 22.7043722 ], [ 120.3287463, 22.7073627 ], [ 120.3292408, 22.7094024 ], [ 120.3297692, 22.711621 ], [ 120.3303126, 22.7145068 ], [ 120.3309146, 22.7175544 ], [ 120.3314283, 22.7201567 ], [ 120.3320129, 22.7221693 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789662", "name": "社武一次變電所", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3249923, 22.6967247 ], [ 120.3257005, 22.696087 ], [ 120.3259544, 22.6963568 ], [ 120.3260445, 22.696286 ], [ 120.3268054, 22.6969772 ], [ 120.3266945, 22.6972602 ], [ 120.3269852, 22.6974349 ], [ 120.3270187, 22.6979781 ], [ 120.3269134, 22.6979732 ], [ 120.3267058, 22.6979914 ], [ 120.3249923, 22.6967247 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284789664", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.356147, 22.6518513 ], [ 120.3562382, 22.6518016 ], [ 120.3560815, 22.6514828 ], [ 120.3558158, 22.6510935 ], [ 120.3561394, 22.6509175 ], [ 120.3565609, 22.6508285 ], [ 120.3570331, 22.6507024 ], [ 120.3573978, 22.6505902 ], [ 120.3577236, 22.6504865 ], [ 120.358123, 22.6503595 ], [ 120.3583956, 22.6506085 ], [ 120.3586464, 22.6508393 ], [ 120.3596079, 22.6528385 ], [ 120.3601386, 22.6536823 ], [ 120.3603617, 22.6543586 ], [ 120.3605896, 22.6544254 ], [ 120.3612131, 22.6544129 ], [ 120.3615721, 22.6545357 ], [ 120.3620156, 22.6547992 ], [ 120.3624675, 22.6549543 ], [ 120.362739, 22.6550714 ], [ 120.363071, 22.6552145 ], [ 120.3633314, 22.6553268 ], [ 120.3636044, 22.6554445 ], [ 120.3640401, 22.6556074 ], [ 120.3641947, 22.6556664 ], [ 120.3643966, 22.6558628 ], [ 120.365073, 22.6556151 ], [ 120.3675223, 22.6567288 ], [ 120.3696994, 22.6577993 ], [ 120.3689832, 22.6597844 ], [ 120.3681354, 22.6621119 ], [ 120.3672716, 22.6644385 ], [ 120.3664344, 22.6666937 ], [ 120.3656349, 22.6688485 ], [ 120.3644258, 22.6701443 ], [ 120.3628736, 22.6715301 ], [ 120.3617555, 22.6732826 ], [ 120.3612026, 22.675224 ], [ 120.3603916, 22.6773109 ], [ 120.3594986, 22.679973 ], [ 120.358661, 22.6824796 ], [ 120.3594265, 22.6842555 ], [ 120.3602392, 22.6861651 ], [ 120.3610503, 22.6881842 ], [ 120.3617026, 22.6897035 ], [ 120.36277, 22.69217 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284790677", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3620953, 22.7005558 ], [ 120.3641758, 22.6997269 ], [ 120.3654854, 22.6991584 ], [ 120.3675355, 22.6993812 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836234", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3618766, 25.0346953 ], [ 121.3619564, 25.0346941 ], [ 121.362413, 25.0346868 ], [ 121.3625984, 25.0346839 ], [ 121.3628725, 25.0346795 ], [ 121.3630534, 25.0346766 ], [ 121.3633276, 25.0346723 ], [ 121.363521, 25.0346692 ], [ 121.3637789, 25.0346651 ], [ 121.3639591, 25.0346623 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836235", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3639579, 25.0351452 ], [ 121.363773, 25.0351489 ], [ 121.3635323, 25.0351537 ], [ 121.363324, 25.0351579 ], [ 121.3630556, 25.0351633 ], [ 121.3628711, 25.035167 ], [ 121.3626116, 25.0351722 ], [ 121.3624179, 25.0351761 ], [ 121.3619739, 25.035185 ], [ 121.3618966, 25.0351866 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836237", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3614353, 25.0361274 ], [ 121.3618733, 25.036116 ], [ 121.3622292, 25.0361068 ], [ 121.3625783, 25.0360977 ], [ 121.3628201, 25.0360914 ], [ 121.3635237, 25.0360732 ], [ 121.3638828, 25.0360639 ], [ 121.3642389, 25.0360546 ], [ 121.3645982, 25.0360453 ], [ 121.3647106, 25.0360424 ], [ 121.3648282, 25.0360393 ], [ 121.3649457, 25.0360363 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836238", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3659041, 25.0341492 ], [ 121.3648731, 25.035393 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836239", "name": "頂埔~樹德線豐林分歧線", "operator": "台灣電力公司", "power": "line", "wires": "single", "cables": "3", "voltage": "161000", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4207782, 24.9992456 ], [ 121.4213255, 24.9988069 ], [ 121.4209686, 24.9978579 ], [ 121.4192991, 24.9962896 ], [ 121.4162917, 24.9953032 ], [ 121.4130123, 24.9944054 ], [ 121.4107151, 24.9937569 ], [ 121.4098953, 24.9939113 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836240", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3622045, 25.0354743 ], [ 121.3624156, 25.0349455 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836242", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3635268, 25.0349188 ], [ 121.3635162, 25.0354343 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836243", "operator": "台灣電力公司", "power": "line", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4104524, 25.0118576 ], [ 121.4123767, 25.0123781 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836244", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3619659, 25.0349609 ], [ 121.3618525, 25.035485 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836245", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3625714, 25.0354631 ], [ 121.3626054, 25.0349441 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836247", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3406258, 25.0420047 ], [ 121.3410591, 25.0421019 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836250", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3637759, 25.0349149 ], [ 121.3638643, 25.0354237 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836252", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3642265, 25.0354127 ], [ 121.3639585, 25.0349029 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836254", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3406258, 25.0420047 ], [ 121.3410479, 25.0422629 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836255", "operator": "台灣電力公司", "power": "line", "z_order": 50, "other_tags": { "layer": "5", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4104524, 25.0118576 ], [ 121.4123637, 25.0125455 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836258", "power": "line", "line": "bay", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3628718, 25.0349326 ], [ 121.3629207, 25.0354525 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836263", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3659041, 25.0341492 ], [ 121.3646209, 25.0354007 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836269", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3642389, 25.0360546 ], [ 121.3642387, 25.0357435 ], [ 121.3642265, 25.0354127 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836274", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3646209, 25.0354007 ], [ 121.3645943, 25.035733 ], [ 121.3645982, 25.0360453 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836279", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3635162, 25.0354343 ], [ 121.3635204, 25.0357847 ], [ 121.3635237, 25.0360732 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836284", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3648731, 25.035393 ], [ 121.3649535, 25.0357272 ], [ 121.3649457, 25.0360363 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836289", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3622292, 25.0361068 ], [ 121.3622183, 25.0358198 ], [ 121.3622045, 25.0354743 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836292", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3625783, 25.0360977 ], [ 121.3625752, 25.0358133 ], [ 121.3625714, 25.0354631 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836293", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3629207, 25.0354525 ], [ 121.3628113, 25.0358064 ], [ 121.3628201, 25.0360914 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836294", "power": "line", "line": "busbar", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3619564, 25.0346941 ], [ 121.3619659, 25.0349609 ], [ 121.3619739, 25.035185 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836295", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3648731, 25.035393 ], [ 121.364832, 25.0357307 ], [ 121.3648282, 25.0360393 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836296", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3638643, 25.0354237 ], [ 121.363881, 25.0357724 ], [ 121.3638828, 25.0360639 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836297", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3646209, 25.0354007 ], [ 121.3647157, 25.0357354 ], [ 121.3647106, 25.0360424 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836298", "power": "line", "line": "busbar", "cables": "3", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3618525, 25.035485 ], [ 121.361856, 25.0357999 ], [ 121.3618733, 25.036116 ], [ 121.3618807, 25.0365522 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836307", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3633954, 25.0340261 ], [ 121.3633288, 25.0344396 ], [ 121.3633276, 25.0346723 ], [ 121.363324, 25.0351579 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836311", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3629506, 25.0340584 ], [ 121.363052, 25.034419 ], [ 121.3630534, 25.0346766 ], [ 121.3630556, 25.0351633 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836315", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3624744, 25.0340918 ], [ 121.3625862, 25.0344299 ], [ 121.3625984, 25.0346839 ], [ 121.3626054, 25.0349441 ], [ 121.3626116, 25.0351722 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836318", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3633954, 25.0340261 ], [ 121.3635157, 25.0344366 ], [ 121.363521, 25.0346692 ], [ 121.3635268, 25.0349188 ], [ 121.3635323, 25.0351537 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836323", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3629506, 25.0340584 ], [ 121.362873, 25.034419 ], [ 121.3628725, 25.0346795 ], [ 121.3628718, 25.0349326 ], [ 121.3628711, 25.035167 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836324", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3638509, 25.0340461 ], [ 121.363782, 25.0343949 ], [ 121.3637789, 25.0346651 ], [ 121.3637759, 25.0349149 ], [ 121.363773, 25.0351489 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836325", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3624744, 25.0340918 ], [ 121.3624048, 25.0344303 ], [ 121.362413, 25.0346868 ], [ 121.3624156, 25.0349455 ], [ 121.3624179, 25.0351761 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836326", "power": "line", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.3638509, 25.0340461 ], [ 121.3639598, 25.0343985 ], [ 121.3639591, 25.0346623 ], [ 121.3639585, 25.0349029 ], [ 121.3639579, 25.0351452 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836327", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4045749, 25.0792954 ], [ 121.407467, 25.0777284 ], [ 121.409892, 25.0774574 ], [ 121.4139558, 25.0768235 ], [ 121.4167896, 25.0767308 ], [ 121.4199538, 25.0763913 ], [ 121.420891, 25.0763359 ], [ 121.4212768, 25.0770628 ], [ 121.4208906, 25.0777898 ], [ 121.4205043, 25.0785168 ], [ 121.4205128, 25.0803872 ], [ 121.4208675, 25.0809997 ], [ 121.4227335, 25.0839204 ], [ 121.423419, 25.0849762 ], [ 121.4238259, 25.0856515 ], [ 121.4250594, 25.0876982 ], [ 121.4253848, 25.0882962 ], [ 121.425541, 25.0887098 ], [ 121.426332, 25.0903623 ], [ 121.4313523, 25.0931189 ], [ 121.4341305, 25.0922215 ], [ 121.4367227, 25.0913685 ], [ 121.4375132, 25.0903596 ], [ 121.4379512, 25.0898299 ], [ 121.4377466, 25.0895969 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836328", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1950445, 24.8203739 ], [ 121.1951344, 24.820052 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836329", "power": "line", "wires": "quad", "cables": "3", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1950445, 24.8203739 ], [ 121.1949488, 24.8200304 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "284836330", "name": "樹德~福營~宏安線", "operator": "台灣電力公司", "power": "cable", "voltage": "161000", "z_order": -10, "other_tags": { "layer": "-1", "location": "underground", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.4180562, 25.0096038 ], [ 121.4184536, 25.0095665 ], [ 121.4192569, 25.0107612 ], [ 121.4192945, 25.0108159 ], [ 121.4193468, 25.0108597 ], [ 121.4194407, 25.0109046 ], [ 121.4240018, 25.0128394 ], [ 121.4240903, 25.0128905 ], [ 121.4241573, 25.0129537 ], [ 121.4242163, 25.0130436 ], [ 121.4242592, 25.0131579 ], [ 121.4242807, 25.0132709 ], [ 121.4242914, 25.0134155 ], [ 121.424278, 25.0135808 ], [ 121.4241439, 25.0140839 ], [ 121.4239293, 25.0141228 ], [ 121.4239374, 25.0140949 ], [ 121.4239334, 25.0140791 ], [ 121.4238971, 25.0140645 ], [ 121.4236718, 25.0140317 ], [ 121.4236437, 25.0140353 ], [ 121.4236249, 25.014056 ], [ 121.4236182, 25.0140973 ], [ 121.423468, 25.0151364 ], [ 121.4234358, 25.0154524 ], [ 121.4234063, 25.0160114 ], [ 121.4233915, 25.0165145 ], [ 121.4233822, 25.0166494 ], [ 121.4233594, 25.0167369 ], [ 121.4233097, 25.0168111 ], [ 121.4232454, 25.0168451 ], [ 121.422607, 25.0170736 ], [ 121.4223388, 25.0171927 ], [ 121.4221752, 25.0172826 ], [ 121.4218882, 25.0175208 ], [ 121.4207885, 25.0183909 ], [ 121.4203218, 25.0188552 ], [ 121.4202735, 25.018877 ], [ 121.4202172, 25.0188795 ], [ 121.4200938, 25.0188673 ], [ 121.4191604, 25.0188066 ], [ 121.4190638, 25.0188163 ], [ 121.4189672, 25.018843 ], [ 121.4188895, 25.0189038 ], [ 121.4188412, 25.0189888 ], [ 121.4188224, 25.0190763 ], [ 121.4187902, 25.0194822 ], [ 121.418817, 25.0196767 ], [ 121.4196753, 25.0233273 ], [ 121.4203942, 25.0256508 ], [ 121.4204639, 25.0258452 ], [ 121.4206141, 25.0260834 ], [ 121.4208502, 25.0263556 ], [ 121.4255762, 25.0286936 ], [ 121.4256191, 25.0287519 ], [ 121.4256164, 25.0288443 ], [ 121.4255836, 25.028954 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "285578610", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.620589, 23.9079663 ], [ 120.6202743, 23.9103152 ], [ 120.6200249, 23.9122651 ], [ 120.6197004, 23.9145353 ], [ 120.6194127, 23.9167806 ], [ 120.6190785, 23.9192848 ], [ 120.6187948, 23.9214388 ], [ 120.61846, 23.9239234 ], [ 120.6181801, 23.9259869 ], [ 120.6178451, 23.9286045 ], [ 120.6174601, 23.9314724 ], [ 120.617145, 23.9339402 ], [ 120.6173918, 23.9370404 ], [ 120.6175685, 23.9392652 ], [ 120.6177805, 23.9416604 ], [ 120.6180733, 23.9481165 ], [ 120.6180743, 23.9487549 ], [ 120.6180778, 23.951128 ], [ 120.6180911, 23.9558125 ], [ 120.6183267, 23.9587987 ], [ 120.6185504, 23.9614243 ], [ 120.6187039, 23.9634753 ], [ 120.618826, 23.9674181 ], [ 120.6173181, 23.9712452 ], [ 120.6145981, 23.974525 ], [ 120.6128889, 23.9766033 ], [ 120.6111087, 23.9791263 ], [ 120.6098064, 23.9810081 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "285616686", "name": "霧峰超高壓變電所(E/S)", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:wikipedia": "en:Taiwan Power Company", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7052751, 24.0724374 ], [ 120.7067434, 24.0722617 ], [ 120.7064967, 24.0706404 ], [ 120.7056795, 24.0707786 ], [ 120.7057314, 24.0711849 ], [ 120.7052356, 24.071243 ], [ 120.7052488, 24.0713687 ], [ 120.7051268, 24.0713919 ], [ 120.7052751, 24.0724374 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "286017460", "name": "汐止~陽明分歧~陽明線", "operator": "台灣電力公司", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.5282321, 25.1370161 ], [ 121.5288069, 25.137178 ], [ 121.529968, 25.1358386 ], [ 121.5348633, 25.1333939 ], [ 121.5369, 25.1320509 ], [ 121.5397231, 25.1287356 ], [ 121.5402839, 25.1275768 ], [ 121.5404306, 25.1267658 ], [ 121.5406506, 25.1255491 ], [ 121.5406386, 25.1231608 ], [ 121.5405242, 25.121597 ], [ 121.539942, 25.1186305 ], [ 121.5397195, 25.1174966 ], [ 121.5396237, 25.1153275 ], [ 121.5394678, 25.1143037 ], [ 121.5414924, 25.1099179 ], [ 121.5446481, 25.1079696 ], [ 121.5470616, 25.1066016 ], [ 121.5482783, 25.1048685 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "286017461", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2428252, 24.8136413 ], [ 121.2428744, 24.813299 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "286017462", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2428252, 24.8136413 ], [ 121.2430027, 24.8133124 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "287280871", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0101303, 24.8115803 ], [ 121.0097915, 24.8135804 ], [ 121.0092427, 24.8171882 ], [ 121.008602, 24.8191806 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "287280872", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.008602, 24.8191806 ], [ 121.0058866, 24.8208417 ], [ 121.0028924, 24.821374 ], [ 120.9999477, 24.8199948 ], [ 120.998168, 24.8191725 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "287991347", "name": "沼氣發電站", "power": "generator", "z_order": 0, "other_tags": { "generator:source": "gas" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.303328, 22.7310502 ], [ 120.3032691, 22.7305183 ], [ 120.3035166, 22.730495 ], [ 120.3035755, 22.7310268 ], [ 120.303328, 22.7310502 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "291119255", "operator": "蟠桃一次變電所", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9016171, 24.6979988 ], [ 120.9021149, 24.6977649 ], [ 120.9025097, 24.6985135 ], [ 120.9020462, 24.6987397 ], [ 120.9016171, 24.6979988 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "291138112", "name": "南投~彰林線", "power": "line", "wires": "quad", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4556991, 23.9280935 ], [ 120.4584703, 23.9273458 ], [ 120.4605005, 23.9289927 ], [ 120.463908, 23.9299227 ], [ 120.4659249, 23.930002 ], [ 120.4681074, 23.9292968 ], [ 120.4700907, 23.9277827 ], [ 120.4717738, 23.9255918 ], [ 120.47348, 23.9233828 ], [ 120.4758565, 23.9209706 ], [ 120.4760929, 23.9195703 ], [ 120.475469, 23.9161752 ], [ 120.4731664, 23.9136696 ], [ 120.4739224, 23.9112138 ], [ 120.4782939, 23.9100944 ], [ 120.4805759, 23.9072154 ], [ 120.4814887, 23.9057332 ], [ 120.483639, 23.9025919 ], [ 120.4859189, 23.901364 ], [ 120.4873821, 23.900495 ], [ 120.4900304, 23.8992729 ], [ 120.4923714, 23.8974789 ], [ 120.4955326, 23.8968928 ], [ 120.4978612, 23.8960238 ], [ 120.5009057, 23.8937817 ], [ 120.5036875, 23.8937036 ], [ 120.5067777, 23.893158 ], [ 120.5106329, 23.8927861 ], [ 120.5136804, 23.8905194 ], [ 120.5167132, 23.8886774 ], [ 120.5186925, 23.8886777 ], [ 120.5196192, 23.8857188 ], [ 120.5221243, 23.8834644 ], [ 120.5267945, 23.8819007 ], [ 120.528451, 23.8835359 ], [ 120.5317161, 23.8829964 ], [ 120.533761, 23.884454 ], [ 120.5375979, 23.8848092 ], [ 120.5396281, 23.884578 ], [ 120.5419405, 23.8834488 ], [ 120.5449345, 23.883375 ], [ 120.5470123, 23.8832812 ], [ 120.5509665, 23.8811836 ], [ 120.5549059, 23.8798499 ], [ 120.5577314, 23.8798231 ], [ 120.5603232, 23.8786707 ], [ 120.5632834, 23.8773846 ], [ 120.5652231, 23.8775423 ], [ 120.5703051, 23.8795194 ], [ 120.5727258, 23.8805243 ], [ 120.5753975, 23.8826022 ], [ 120.5792221, 23.8840087 ], [ 120.5815606, 23.883631 ], [ 120.5861704, 23.8834128 ], [ 120.5886678, 23.8831137 ], [ 120.5908751, 23.882554 ], [ 120.5932849, 23.8850792 ], [ 120.5964081, 23.8876175 ], [ 120.5984709, 23.8895432 ], [ 120.6023127, 23.8921392 ], [ 120.6045933, 23.8912166 ], [ 120.6056774, 23.8917647 ], [ 120.6076307, 23.8935853 ], [ 120.609876, 23.8939285 ], [ 120.6146232, 23.8942913 ], [ 120.6188511, 23.8949453 ], [ 120.6208684, 23.8954183 ], [ 120.6241211, 23.8917377 ], [ 120.6257292, 23.8892481 ], [ 120.6292901, 23.8854305 ], [ 120.6334876, 23.8848142 ], [ 120.6374422, 23.8843021 ], [ 120.6385006, 23.8823984 ], [ 120.6384134, 23.8815892 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "291138113", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4676682, 23.90718 ], [ 120.4697114, 23.9060348 ], [ 120.4711378, 23.9051201 ], [ 120.4733564, 23.9034343 ], [ 120.4755799, 23.9017933 ], [ 120.4782076, 23.9015625 ], [ 120.4807949, 23.9011515 ], [ 120.4839735, 23.9006601 ], [ 120.4861568, 23.9004999 ], [ 120.4867005, 23.8981322 ], [ 120.4873954, 23.8962915 ], [ 120.4882507, 23.894726 ], [ 120.4883959, 23.8922472 ], [ 120.4889318, 23.8899669 ], [ 120.4896724, 23.8883377 ], [ 120.4890754, 23.8834368 ], [ 120.489267, 23.880741 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "295778367", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2748544, 23.5874456 ], [ 120.2772086, 23.5886608 ], [ 120.2793821, 23.5898004 ], [ 120.2821039, 23.5913212 ], [ 120.2844865, 23.5926311 ], [ 120.2868972, 23.5939539 ], [ 120.289154, 23.5955807 ], [ 120.2911414, 23.5970788 ], [ 120.2933672, 23.5987485 ], [ 120.2950859, 23.6000201 ], [ 120.2970258, 23.6014322 ], [ 120.2988961, 23.602861 ], [ 120.3007302, 23.6041881 ], [ 120.3027179, 23.6056632 ], [ 120.3045503, 23.6070577 ], [ 120.3063465, 23.6084095 ], [ 120.3082152, 23.6097708 ], [ 120.310001, 23.611483 ], [ 120.3115487, 23.6130529 ], [ 120.314287, 23.6142529 ], [ 120.316399, 23.6153058 ], [ 120.3183556, 23.6162544 ], [ 120.3228646, 23.618454 ], [ 120.3249884, 23.6194713 ], [ 120.3278335, 23.6208666 ], [ 120.3316124, 23.6226811 ], [ 120.3343613, 23.6240158 ], [ 120.3373517, 23.6254813 ], [ 120.3402432, 23.626883 ], [ 120.3423808, 23.6272787 ], [ 120.3464881, 23.628011 ], [ 120.3495757, 23.6285162 ], [ 120.352488, 23.6289933 ], [ 120.3560496, 23.6295977 ], [ 120.3588583, 23.6300784 ], [ 120.3614133, 23.6310885 ], [ 120.3647014, 23.6323717 ], [ 120.3679159, 23.6336291 ], [ 120.3705445, 23.6346708 ], [ 120.3742975, 23.6361308 ], [ 120.3776249, 23.6374419 ], [ 120.381457, 23.639121 ], [ 120.3854255, 23.6405192 ], [ 120.3884665, 23.6416898 ], [ 120.3915082, 23.6428781 ], [ 120.3951281, 23.6442905 ], [ 120.3984573, 23.6447528 ], [ 120.4024435, 23.6460122 ], [ 120.4042266, 23.6478575 ], [ 120.4076079, 23.649203 ], [ 120.4109391, 23.65053 ], [ 120.4141009, 23.6517535 ], [ 120.4163434, 23.6526524 ], [ 120.4183151, 23.653382 ], [ 120.4207582, 23.6535675 ], [ 120.4233797, 23.6537624 ], [ 120.4266784, 23.6540694 ], [ 120.4301131, 23.6542517 ], [ 120.4323469, 23.6544309 ], [ 120.4346683, 23.6546182 ], [ 120.4369953, 23.6548021 ], [ 120.4401319, 23.6550115 ], [ 120.4437683, 23.6552891 ], [ 120.4472811, 23.6555489 ], [ 120.4501811, 23.6557622 ], [ 120.4538818, 23.6560494 ], [ 120.457599, 23.6563469 ], [ 120.4603663, 23.6565519 ], [ 120.4634628, 23.6567788 ], [ 120.4662321, 23.6569846 ], [ 120.4695506, 23.6572304 ], [ 120.4728503, 23.65742 ], [ 120.4750699, 23.6572114 ], [ 120.4780041, 23.656955 ], [ 120.4811355, 23.6577852 ], [ 120.4841237, 23.6585834 ], [ 120.4908154, 23.6603324 ], [ 120.4939844, 23.6611738 ], [ 120.4963513, 23.6624789 ], [ 120.4980734, 23.6633963 ], [ 120.5004127, 23.6646808 ], [ 120.5007753, 23.6665652 ], [ 120.501043, 23.6680808 ], [ 120.501442, 23.6702787 ], [ 120.5019605, 23.6731461 ], [ 120.5025011, 23.6758357 ], [ 120.5029505, 23.6783989 ], [ 120.5034081, 23.6806665 ], [ 120.5038535, 23.6832072 ], [ 120.5042662, 23.6853736 ], [ 120.5045603, 23.6869788 ], [ 120.506594, 23.6875066 ], [ 120.5085499, 23.6880543 ], [ 120.5104708, 23.6885624 ], [ 120.5137999, 23.6887304 ], [ 120.5182282, 23.6889553 ], [ 120.5201508, 23.6890462 ], [ 120.5201211, 23.6894763 ], [ 120.5197949, 23.6894667 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296405583", "name": "北港~嘉太線(二進二出新港)", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.279161, 23.5625058 ], [ 120.2808737, 23.5605049 ], [ 120.2806207, 23.5582406 ], [ 120.2802767, 23.5554215 ], [ 120.283317, 23.5536292 ], [ 120.2853288, 23.5540188 ], [ 120.2875348, 23.553785 ], [ 120.2904764, 23.5530941 ], [ 120.2939696, 23.5520994 ], [ 120.2958128, 23.551559 ], [ 120.298412, 23.5508749 ], [ 120.3004735, 23.5503382 ], [ 120.3026839, 23.5497432 ], [ 120.3048198, 23.5491692 ], [ 120.3062927, 23.5469629 ], [ 120.3076514, 23.5448981 ], [ 120.3089483, 23.5429165 ], [ 120.3103075, 23.5408684 ], [ 120.311915, 23.5384687 ], [ 120.3145631, 23.5388391 ], [ 120.3171138, 23.5392347 ], [ 120.3205722, 23.5395922 ], [ 120.323043, 23.5400289 ], [ 120.3252611, 23.5394639 ], [ 120.327382, 23.5389125 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296405584", "name": "北港~嘉太線(二進二出新港)", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3280087, 23.538753 ], [ 120.3284355, 23.5386513 ], [ 120.3311485, 23.5379755 ], [ 120.3336275, 23.5373157 ], [ 120.3362243, 23.5366527 ], [ 120.3388489, 23.5360014 ], [ 120.3415385, 23.5352996 ], [ 120.3442066, 23.5346223 ], [ 120.3465657, 23.5340298 ], [ 120.3489807, 23.533375 ], [ 120.3513235, 23.5328119 ], [ 120.3529965, 23.5323457 ], [ 120.3557793, 23.5316524 ], [ 120.3563713, 23.529242 ], [ 120.3568493, 23.5268571 ], [ 120.3573097, 23.5246207 ], [ 120.3577905, 23.5223427 ], [ 120.3582685, 23.5198888 ], [ 120.3587666, 23.5175571 ], [ 120.3593835, 23.5153213 ], [ 120.3606599, 23.5123631 ], [ 120.3611971, 23.5108387 ], [ 120.3613888, 23.510531 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296422425", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2707358, 23.5648544 ], [ 120.2710998, 23.5647824 ], [ 120.2710796, 23.5646486 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296422426", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2697521, 23.5682245 ], [ 120.2710929, 23.5668788 ], [ 120.2713568, 23.5657976 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296422427", "name": "北港~雲港線", "power": "line", "wires": "1", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.279161, 23.5625058 ], [ 120.2807572, 23.5635515 ], [ 120.2827106, 23.5647641 ], [ 120.2837427, 23.5663021 ], [ 120.2861763, 23.5692007 ], [ 120.2864886, 23.5713579 ], [ 120.2867314, 23.5731908 ], [ 120.2869185, 23.5751173 ], [ 120.2881689, 23.5750807 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "296426235", "name": "北港一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2696838, 23.5669218 ], [ 120.270971, 23.5667898 ], [ 120.2708509, 23.5662399 ], [ 120.2715209, 23.5661643 ], [ 120.271039, 23.5642458 ], [ 120.2708548, 23.5643088 ], [ 120.2708254, 23.5643605 ], [ 120.2707079, 23.5644066 ], [ 120.2706261, 23.5643719 ], [ 120.2703476, 23.5643901 ], [ 120.2698068, 23.5643493 ], [ 120.2695028, 23.564283 ], [ 120.2689923, 23.564118 ], [ 120.2696838, 23.5669218 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297131829", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3476655, 23.9227767 ], [ 120.3476422, 23.922233 ], [ 120.3477333, 23.9213463 ], [ 120.3475163, 23.9204965 ], [ 120.3472539, 23.9196565 ], [ 120.3469999, 23.9188123 ], [ 120.346727, 23.9179544 ], [ 120.3472699, 23.9176629 ], [ 120.3479105, 23.9174951 ], [ 120.3481944, 23.9174238 ], [ 120.3483953, 23.9173781 ], [ 120.3489287, 23.917246 ], [ 120.3497089, 23.9170617 ], [ 120.3505078, 23.9168967 ], [ 120.3512766, 23.9167191 ], [ 120.3520153, 23.9165465 ], [ 120.3527677, 23.9163515 ], [ 120.3535201, 23.9161764 ], [ 120.3541888, 23.9159457 ], [ 120.3565859, 23.9151087 ], [ 120.3586116, 23.9144071 ], [ 120.3605666, 23.9137931 ], [ 120.3625867, 23.9131581 ], [ 120.3640258, 23.9121009 ], [ 120.3655075, 23.9109822 ], [ 120.3672823, 23.9096218 ], [ 120.368992, 23.9083324 ], [ 120.3705168, 23.907192 ], [ 120.372516, 23.9060978 ], [ 120.3752587, 23.9058797 ], [ 120.3772016, 23.9060796 ], [ 120.3804768, 23.907253 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297131830", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3804768, 23.907253 ], [ 120.3829443, 23.9079929 ], [ 120.3857266, 23.9088047 ], [ 120.3879193, 23.9095224 ], [ 120.3905181, 23.9103767 ], [ 120.3927923, 23.9110782 ], [ 120.3949644, 23.911774 ], [ 120.3970035, 23.9125519 ], [ 120.3991508, 23.9132958 ], [ 120.4017284, 23.9126703 ], [ 120.4042664, 23.9140179 ], [ 120.4067277, 23.9152912 ], [ 120.4091711, 23.9165481 ], [ 120.4110662, 23.9175336 ], [ 120.4131732, 23.9185972 ], [ 120.4152914, 23.9197038 ], [ 120.4174174, 23.9207687 ], [ 120.4188782, 23.9220117 ], [ 120.4200444, 23.9235878 ], [ 120.4220802, 23.9259541 ], [ 120.4243763, 23.9284298 ], [ 120.4257803, 23.9310289 ], [ 120.4280267, 23.9333454 ], [ 120.430654, 23.9329107 ], [ 120.4345364, 23.9322668 ], [ 120.4377476, 23.9321929 ], [ 120.4421602, 23.931889 ], [ 120.4453825, 23.9318276 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297132877", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3752587, 23.9058797 ], [ 120.37603, 23.9040524 ], [ 120.3757664, 23.9021567 ], [ 120.3744029, 23.9006752 ], [ 120.3739563, 23.9006871 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297173079", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.402984, 23.970764 ], [ 120.4029343, 23.9698891 ], [ 120.4024801, 23.9672082 ], [ 120.4011244, 23.9645835 ], [ 120.4005365, 23.9626735 ], [ 120.4002901, 23.960354 ], [ 120.4021468, 23.9581359 ], [ 120.4030035, 23.9559151 ], [ 120.4029595, 23.9531632 ], [ 120.4051897, 23.9517313 ], [ 120.4075311, 23.9500223 ], [ 120.4100538, 23.9483275 ], [ 120.4119031, 23.9464102 ], [ 120.4135211, 23.9440934 ], [ 120.4150595, 23.9419744 ], [ 120.4175389, 23.9403868 ], [ 120.4203015, 23.9395193 ], [ 120.423063, 23.9386227 ], [ 120.4254238, 23.9361907 ], [ 120.4278559, 23.9336056 ], [ 120.4306721, 23.9331901 ], [ 120.4345442, 23.9325107 ], [ 120.4380108, 23.9324863 ], [ 120.4421666, 23.932112 ], [ 120.4456619, 23.9320695 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297174250", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3812937, 23.959395 ], [ 120.3806913, 23.959508 ], [ 120.3801027, 23.9595713 ], [ 120.3800007, 23.9595823 ], [ 120.3792328, 23.9596649 ], [ 120.3772002, 23.9601085 ], [ 120.3754452, 23.9604887 ], [ 120.3747922, 23.9606301 ], [ 120.3728956, 23.9610689 ], [ 120.3708548, 23.9614985 ], [ 120.3682921, 23.9620671 ], [ 120.3664954, 23.9624745 ], [ 120.36452, 23.9629137 ], [ 120.3625871, 23.9633349 ], [ 120.3617921, 23.9614831 ], [ 120.3610082, 23.9596691 ], [ 120.3601886, 23.9577086 ], [ 120.3590795, 23.9550889 ], [ 120.3589484, 23.9524091 ], [ 120.3588218, 23.9496887 ], [ 120.3586856, 23.9474519 ], [ 120.3585816, 23.9452346 ], [ 120.3584589, 23.9429271 ], [ 120.3583671, 23.9409219 ], [ 120.3582601, 23.9388344 ], [ 120.3581749, 23.9369256 ], [ 120.3580694, 23.9347229 ], [ 120.3579823, 23.9328782 ], [ 120.3561594, 23.9315204 ], [ 120.3543582, 23.9301173 ], [ 120.3522683, 23.9285125 ], [ 120.3501387, 23.9268758 ], [ 120.347845, 23.9251123 ], [ 120.3476655, 23.9227767 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297174251", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4512161, 23.9983994 ], [ 120.4537357, 23.9995858 ], [ 120.4543055, 24.0014671 ], [ 120.454893, 24.0034168 ], [ 120.4555613, 24.0056359 ], [ 120.4560726, 24.0073372 ], [ 120.4568988, 24.0100171 ], [ 120.4575229, 24.0120498 ], [ 120.4583075, 24.0146628 ], [ 120.458977, 24.017019 ], [ 120.4595391, 24.0189269 ], [ 120.4603125, 24.0204907 ], [ 120.4611356, 24.0222036 ], [ 120.4623369, 24.024454 ], [ 120.463462, 24.0267722 ], [ 120.4645422, 24.028961 ], [ 120.4655909, 24.031114 ], [ 120.4667115, 24.0333806 ], [ 120.467701, 24.0354005 ], [ 120.4688297, 24.0375899 ], [ 120.4700301, 24.0399076 ], [ 120.4711435, 24.0420572 ], [ 120.4721866, 24.043823 ], [ 120.4731925, 24.0454239 ], [ 120.4750585, 24.0462623 ], [ 120.476876, 24.046528 ], [ 120.4789544, 24.0470834 ], [ 120.4817195, 24.0470576 ], [ 120.4841854, 24.0466608 ], [ 120.4855559, 24.0464453 ], [ 120.4873539, 24.0461639 ], [ 120.4898832, 24.0457816 ], [ 120.4921431, 24.0454328 ], [ 120.4944276, 24.0450818 ], [ 120.4963835, 24.0447899 ], [ 120.498487, 24.044467 ], [ 120.5006342, 24.0441399 ], [ 120.5030154, 24.0437701 ], [ 120.5045713, 24.0448773 ], [ 120.5059986, 24.0459275 ], [ 120.5061141, 24.0460129 ], [ 120.5084296, 24.047725 ], [ 120.5106636, 24.0479635 ], [ 120.5126848, 24.0482531 ], [ 120.5147672, 24.0485448 ], [ 120.5158041, 24.0494605 ], [ 120.5162646, 24.049539 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297174252", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3813253, 23.9595042 ], [ 120.3807156, 23.9596288 ], [ 120.3793567, 23.9600034 ], [ 120.3798696, 23.9614688 ], [ 120.3801532, 23.9622788 ], [ 120.3809354, 23.9645765 ], [ 120.3816816, 23.9667325 ], [ 120.3834151, 23.9678658 ], [ 120.3854549, 23.969182 ], [ 120.3874931, 23.9700955 ], [ 120.38933, 23.9709188 ], [ 120.3912056, 23.9717656 ], [ 120.3931905, 23.972655 ], [ 120.3959417, 23.9738924 ], [ 120.3981908, 23.9748928 ], [ 120.4005076, 23.9759233 ], [ 120.4026765, 23.9769304 ], [ 120.4050058, 23.977932 ], [ 120.4072436, 23.9789294 ], [ 120.4097499, 23.9800336 ], [ 120.4122461, 23.9811539 ], [ 120.4147688, 23.9822739 ], [ 120.4166438, 23.9831079 ], [ 120.4186918, 23.9840262 ], [ 120.4208463, 23.9849841 ], [ 120.4209341, 23.9850158 ], [ 120.4211005, 23.9850893 ], [ 120.4235619, 23.9861645 ], [ 120.4256237, 23.987084 ], [ 120.4279064, 23.9880959 ], [ 120.4303508, 23.9891832 ], [ 120.4324846, 23.9901352 ], [ 120.4349494, 23.9912286 ], [ 120.4375467, 23.9923696 ], [ 120.440071, 23.9934878 ], [ 120.442326, 23.9944845 ], [ 120.4446777, 23.9955194 ], [ 120.4468781, 23.9964911 ], [ 120.4490462, 23.9974661 ], [ 120.4512161, 23.9983994 ], [ 120.4535734, 23.9975311 ], [ 120.4561781, 23.9983204 ], [ 120.4586284, 23.9989733 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297175958", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4785513, 23.9440518 ], [ 120.4806113, 23.9443791 ], [ 120.4831086, 23.9447728 ], [ 120.4854873, 23.9451846 ], [ 120.4850198, 23.9428113 ], [ 120.4845467, 23.9405943 ], [ 120.4838673, 23.9383099 ], [ 120.4831534, 23.9360041 ], [ 120.4823802, 23.9335475 ], [ 120.4815608, 23.9309672 ], [ 120.4807349, 23.9283413 ], [ 120.4808388, 23.9257605 ], [ 120.4809492, 23.9230016 ], [ 120.4810624, 23.9204597 ], [ 120.4818632, 23.9178818 ], [ 120.4826904, 23.9152611 ], [ 120.482924, 23.9126868 ], [ 120.4831086, 23.9104604 ], [ 120.4836534, 23.9086267 ], [ 120.4841609, 23.9067124 ], [ 120.4848687, 23.9042291 ], [ 120.4855462, 23.901686 ], [ 120.4861845, 23.8994101 ], [ 120.4869708, 23.8965661 ], [ 120.4877276, 23.893886 ], [ 120.4884484, 23.8912816 ], [ 120.4890437, 23.8891725 ], [ 120.4889977, 23.8862369 ], [ 120.4889513, 23.8836434 ], [ 120.4888852, 23.8813708 ], [ 120.4888437, 23.8792749 ], [ 120.4888009, 23.8771166 ], [ 120.4887576, 23.8759157 ], [ 120.4887576, 23.8747017 ], [ 120.4887074, 23.8725445 ], [ 120.4886565, 23.8701147 ], [ 120.4885905, 23.8674382 ], [ 120.4882475, 23.8653563 ], [ 120.4876447, 23.8629871 ], [ 120.488651, 23.8623282 ], [ 120.4886874, 23.8608105 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508040", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5022194, 23.6880613 ], [ 120.4999818, 23.6893002 ], [ 120.497482, 23.690624 ], [ 120.49486, 23.6922161 ], [ 120.4920675, 23.6929243 ], [ 120.4896349, 23.6935805 ], [ 120.4844486, 23.6947952 ], [ 120.4827351, 23.6953937 ], [ 120.4803497, 23.6965051 ], [ 120.4801359, 23.6972405 ], [ 120.478926, 23.6979777 ], [ 120.476422, 23.6988185 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508041", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5188385, 23.6896005 ], [ 120.5184757, 23.6897017 ], [ 120.5162515, 23.6895333 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508042", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5161244, 23.6902874 ], [ 120.5184569, 23.6901632 ], [ 120.518805, 23.690181 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508043", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5216926, 23.600163 ], [ 120.517391, 23.6010802 ], [ 120.5176297, 23.6028781 ], [ 120.5178372, 23.6043505 ], [ 120.5182101, 23.6072113 ], [ 120.5188461, 23.6116582 ], [ 120.5195753, 23.6173046 ], [ 120.5199697, 23.6202617 ], [ 120.5190147, 23.623834 ], [ 120.5181997, 23.6262964 ], [ 120.5176822, 23.6279071 ], [ 120.5168741, 23.6303059 ], [ 120.51708, 23.6327994 ], [ 120.5172772, 23.6354348 ], [ 120.5174979, 23.6382432 ], [ 120.5177248, 23.6411596 ], [ 120.5179487, 23.6442581 ], [ 120.5181639, 23.6471819 ], [ 120.5183824, 23.6499288 ], [ 120.5185916, 23.6527197 ], [ 120.5188053, 23.655445 ], [ 120.5190159, 23.6582363 ], [ 120.5192421, 23.6612099 ], [ 120.5193998, 23.6629764 ], [ 120.5194786, 23.6644699 ], [ 120.519734, 23.6678949 ], [ 120.5198756, 23.6697203 ], [ 120.5200787, 23.6723424 ], [ 120.5202852, 23.6749223 ], [ 120.5204895, 23.6777213 ], [ 120.5206693, 23.6804528 ], [ 120.5208968, 23.68341 ], [ 120.5210987, 23.6859632 ], [ 120.5212926, 23.6885649 ], [ 120.5201454, 23.6897909 ], [ 120.5197776, 23.6898128 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508044", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5161244, 23.6902874 ], [ 120.5113606, 23.6907067 ], [ 120.5092504, 23.6908926 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508045", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4630888, 23.7015147 ], [ 120.4647722, 23.7012902 ], [ 120.4672809, 23.7003549 ], [ 120.4708285, 23.7006143 ], [ 120.473901, 23.7011044 ], [ 120.476422, 23.6988185 ], [ 120.4774301, 23.6977464 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508046", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5022194, 23.6880613 ], [ 120.504035, 23.6883503 ], [ 120.5062687, 23.6886425 ], [ 120.5076266, 23.6891795 ], [ 120.5091414, 23.6902778 ], [ 120.5112268, 23.6900293 ], [ 120.513728, 23.6896937 ], [ 120.5162515, 23.6895333 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297508047", "name": "雲林一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.518911, 23.691726 ], [ 120.5199022, 23.6913727 ], [ 120.5199779, 23.6911316 ], [ 120.5201357, 23.6910905 ], [ 120.5201372, 23.6904146 ], [ 120.5201822, 23.6904109 ], [ 120.5202253, 23.6892735 ], [ 120.518554, 23.6892179 ], [ 120.518509, 23.6903996 ], [ 120.5183245, 23.6904114 ], [ 120.5184738, 23.6907515 ], [ 120.5185859, 23.6907897 ], [ 120.5185808, 23.6908521 ], [ 120.518571, 23.690973 ], [ 120.518911, 23.691726 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297730881", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4695447, 23.6460866 ], [ 120.4667273, 23.6461234 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297730883", "name": "民雄~三和線", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4479703, 23.6286018 ], [ 120.447264, 23.6272075 ], [ 120.4461902, 23.6247695 ], [ 120.4451047, 23.6223393 ], [ 120.4441391, 23.6201382 ], [ 120.4430018, 23.6177838 ], [ 120.4421363, 23.6156736 ], [ 120.44132, 23.6138355 ], [ 120.4404048, 23.6117747 ], [ 120.4392342, 23.6091326 ], [ 120.438067, 23.6065137 ], [ 120.4370209, 23.6041566 ], [ 120.4366048, 23.6020795 ], [ 120.4361067, 23.5995748 ], [ 120.4356572, 23.5973209 ], [ 120.4352024, 23.5950585 ], [ 120.434725, 23.5926448 ], [ 120.4342216, 23.5901051 ], [ 120.4331524, 23.5876909 ], [ 120.4321818, 23.5854017 ], [ 120.4313153, 23.5834156 ], [ 120.4305161, 23.5816385 ], [ 120.4298536, 23.5801403 ], [ 120.4319014, 23.578679 ], [ 120.4339921, 23.5771843 ], [ 120.4354723, 23.5761289 ], [ 120.4368111, 23.5751892 ], [ 120.4387122, 23.5738496 ], [ 120.4404836, 23.5725864 ], [ 120.4424726, 23.5711643 ], [ 120.4418193, 23.5682787 ], [ 120.4412042, 23.5655399 ], [ 120.4407898, 23.5637137 ], [ 120.4393079, 23.5614544 ], [ 120.4377029, 23.5590143 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297730884", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4667273, 23.6461234 ], [ 120.4649067, 23.6482571 ], [ 120.4659125, 23.6487697 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "297730885", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4973116, 23.6618636 ], [ 120.4962578, 23.6610432 ], [ 120.4954835, 23.6604462 ], [ 120.4942782, 23.6595564 ], [ 120.4934149, 23.6588667 ], [ 120.4926655, 23.6582661 ], [ 120.4921833, 23.6578518 ], [ 120.4913516, 23.6572468 ], [ 120.4903872, 23.6565263 ], [ 120.4898193, 23.6560836 ], [ 120.4887493, 23.6552333 ], [ 120.4875109, 23.6542838 ], [ 120.4852341, 23.6525373 ], [ 120.4833123, 23.6510227 ], [ 120.4823595, 23.6502716 ], [ 120.4813982, 23.6495365 ], [ 120.4809703, 23.649178 ], [ 120.4797761, 23.6482865 ], [ 120.478652, 23.6474195 ], [ 120.4774035, 23.6464626 ], [ 120.4749711, 23.6463452 ], [ 120.4724361, 23.6462342 ], [ 120.4695447, 23.6460866 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "298149739", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.381457, 23.639121 ], [ 120.3812434, 23.6412282 ], [ 120.3826713, 23.6442584 ], [ 120.3837838, 23.6472585 ], [ 120.3847676, 23.6503086 ], [ 120.3856805, 23.6534288 ], [ 120.3874545, 23.6563495 ], [ 120.3904637, 23.6583615 ], [ 120.3931087, 23.6610127 ], [ 120.3956969, 23.6635706 ], [ 120.3981763, 23.6660434 ], [ 120.4003423, 23.668543 ], [ 120.4012825, 23.6722741 ], [ 120.4019944, 23.6758107 ], [ 120.4017482, 23.6782973 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "298149742", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3361804, 23.6407749 ], [ 120.3354722, 23.6385526 ], [ 120.3330399, 23.6369776 ], [ 120.3307629, 23.6355078 ], [ 120.3297137, 23.63308 ], [ 120.3284944, 23.6292389 ], [ 120.3280177, 23.6256393 ], [ 120.3265956, 23.6236576 ], [ 120.3239884, 23.6200211 ], [ 120.3228646, 23.618454 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "298617687", "power": "line", "wires": "2", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3775178, 23.5316328 ], [ 120.3788999, 23.533455 ], [ 120.379618, 23.5348889 ], [ 120.3814007, 23.5374387 ], [ 120.3827578, 23.5397069 ], [ 120.3841154, 23.5419545 ], [ 120.3848191, 23.5440235 ], [ 120.3856123, 23.5460628 ], [ 120.3863542, 23.5478471 ], [ 120.386969, 23.5499509 ], [ 120.3877014, 23.5520369 ], [ 120.3884988, 23.5543542 ], [ 120.3893097, 23.5567137 ], [ 120.3901088, 23.5589374 ], [ 120.3885036, 23.5588319 ], [ 120.3856284, 23.5586793 ], [ 120.3835072, 23.5586683 ], [ 120.3804898, 23.558478 ], [ 120.3777301, 23.5590849 ], [ 120.3752389, 23.5588946 ], [ 120.3727154, 23.5588717 ], [ 120.369988, 23.5586879 ], [ 120.3673536, 23.5585108 ], [ 120.3648051, 23.5583434 ], [ 120.3620675, 23.5592844 ], [ 120.3594504, 23.5596765 ], [ 120.3580486, 23.5607744 ], [ 120.3558109, 23.5619589 ], [ 120.3558416, 23.5648622 ], [ 120.3557884, 23.5668434 ], [ 120.3555581, 23.5689846 ], [ 120.3529284, 23.570177 ], [ 120.3513118, 23.5718346 ], [ 120.3495207, 23.5736176 ], [ 120.3474697, 23.5750021 ], [ 120.3453793, 23.5750677 ], [ 120.3434177, 23.5759991 ], [ 120.3403203, 23.5755001 ], [ 120.3382658, 23.5748296 ], [ 120.3348491, 23.573191 ], [ 120.3316443, 23.5715974 ], [ 120.3296243, 23.5699312 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299158865", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5726217, 24.1833693 ], [ 120.5724412, 24.1835832 ], [ 120.5720523, 24.1843833 ], [ 120.5699942, 24.1856677 ], [ 120.5684595, 24.1866921 ], [ 120.565744, 24.1884483 ], [ 120.56274, 24.1890642 ], [ 120.5593026, 24.189682 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250393", "name": "嘉民~嘉義線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5026839, 23.5288102 ], [ 120.5020272, 23.5247133 ], [ 120.5011912, 23.5201726 ], [ 120.5001001, 23.5181739 ], [ 120.498739, 23.5156852 ], [ 120.4967343, 23.5120455 ], [ 120.4954828, 23.5097568 ], [ 120.4941556, 23.5073318 ], [ 120.4926201, 23.5045416 ], [ 120.4914773, 23.5024612 ], [ 120.4905165, 23.5006642 ], [ 120.4897421, 23.4991902 ], [ 120.4890108, 23.4984256 ], [ 120.4883983, 23.4965789 ], [ 120.4879672, 23.4959677 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250394", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4652817, 23.5269504 ], [ 120.467385, 23.5258437 ], [ 120.4696388, 23.524488 ], [ 120.4714739, 23.5234503 ], [ 120.4736421, 23.5221803 ], [ 120.4760418, 23.5207147 ], [ 120.4776185, 23.5197729 ], [ 120.4791723, 23.5188611 ], [ 120.4817902, 23.5173184 ], [ 120.4825558, 23.5144064 ], [ 120.4832507, 23.5116925 ], [ 120.4840725, 23.5091109 ], [ 120.4847227, 23.5066838 ], [ 120.4858441, 23.5025382 ], [ 120.4865686, 23.5002914 ], [ 120.4878699, 23.4979537 ], [ 120.4878244, 23.4971473 ], [ 120.4876984, 23.4965888 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250395", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4863215, 23.4960398 ], [ 120.4843939, 23.4957505 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250397", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4873231, 23.496779 ], [ 120.4876932, 23.4973158 ], [ 120.486473, 23.4991645 ], [ 120.4846063, 23.5019353 ], [ 120.4813719, 23.5067373 ], [ 120.4787318, 23.5095786 ], [ 120.4760333, 23.511758 ], [ 120.474156, 23.513075 ], [ 120.4723169, 23.5143794 ], [ 120.4687307, 23.5169396 ], [ 120.4669226, 23.5181592 ], [ 120.4655732, 23.5202899 ], [ 120.4641962, 23.5225599 ], [ 120.4617005, 23.5263597 ], [ 120.4618032, 23.5266367 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250399", "name": "嘉民~斗工線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5918925, 23.6476768 ], [ 120.5896135, 23.6453385 ], [ 120.5873001, 23.6428534 ], [ 120.5853421, 23.6408728 ], [ 120.5826062, 23.637954 ], [ 120.5807272, 23.6339513 ], [ 120.5791194, 23.6307493 ], [ 120.5770412, 23.6263814 ], [ 120.57486, 23.6220403 ], [ 120.5735676, 23.6193946 ], [ 120.5719791, 23.6161637 ], [ 120.5707313, 23.6136112 ], [ 120.5695695, 23.6112051 ], [ 120.5680621, 23.608128 ], [ 120.5667758, 23.6054784 ], [ 120.5648394, 23.6015075 ], [ 120.5632647, 23.5982864 ], [ 120.5609608, 23.5951136 ], [ 120.5592039, 23.5926665 ], [ 120.5564515, 23.588782 ], [ 120.5547032, 23.5863015 ], [ 120.5519834, 23.5826192 ], [ 120.5492022, 23.5787455 ], [ 120.5487456, 23.5772325 ], [ 120.5483519, 23.5759314 ], [ 120.5472587, 23.5724418 ], [ 120.5459994, 23.5681422 ], [ 120.5445752, 23.5634856 ], [ 120.5433912, 23.5596163 ], [ 120.5423499, 23.5565203 ], [ 120.5406425, 23.5521001 ], [ 120.5403185, 23.5507742 ], [ 120.5387092, 23.5469778 ], [ 120.5369297, 23.5421534 ], [ 120.5361879, 23.5402157 ], [ 120.5356896, 23.5388115 ], [ 120.5341575, 23.5347025 ], [ 120.5307403, 23.5317086 ], [ 120.5274693, 23.5289838 ], [ 120.523822, 23.5259258 ], [ 120.5207179, 23.5233254 ], [ 120.518219, 23.5211965 ], [ 120.5139938, 23.5176473 ], [ 120.5112512, 23.5153266 ], [ 120.5084911, 23.5131456 ], [ 120.5064116, 23.5113608 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250400", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4720904, 23.4672825 ], [ 120.4709426, 23.4684903 ], [ 120.4730182, 23.4714253 ], [ 120.4751472, 23.4743673 ], [ 120.476477, 23.4756223 ], [ 120.4777498, 23.4768235 ], [ 120.47809, 23.4771446 ], [ 120.4811304, 23.4801951 ], [ 120.4827227, 23.4818351 ], [ 120.4837228, 23.4851515 ], [ 120.484705, 23.4884897 ], [ 120.4847222, 23.4902888 ], [ 120.484732, 23.4924883 ], [ 120.4847466, 23.4944912 ], [ 120.4848004, 23.4945913 ], [ 120.4869317, 23.4975248 ], [ 120.4873874, 23.4972758 ], [ 120.4870322, 23.4969257 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250401", "name": "嘉民~新營線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4071432, 23.3539302 ], [ 120.4087671, 23.3561895 ], [ 120.4105414, 23.358605 ], [ 120.4121925, 23.3608445 ], [ 120.4138509, 23.3631259 ], [ 120.4155245, 23.3653799 ], [ 120.4164117, 23.3678498 ], [ 120.4172868, 23.370258 ], [ 120.4182207, 23.3728755 ], [ 120.4192226, 23.3756127 ], [ 120.4202101, 23.3783855 ], [ 120.4212586, 23.381267 ], [ 120.4224372, 23.3845141 ], [ 120.4237638, 23.3865255 ], [ 120.4254422, 23.3890919 ], [ 120.4270755, 23.3915517 ], [ 120.4286986, 23.3940437 ], [ 120.4303491, 23.3965305 ], [ 120.4321095, 23.3991427 ], [ 120.4339555, 23.4020791 ], [ 120.4353506, 23.4041415 ], [ 120.4367222, 23.4062364 ], [ 120.438676, 23.4091965 ], [ 120.4405061, 23.4119777 ], [ 120.4418669, 23.4140518 ], [ 120.4425501, 23.4150821 ], [ 120.4442813, 23.4176994 ], [ 120.446317, 23.4207004 ], [ 120.4472244, 23.4221985 ], [ 120.4484934, 23.4243122 ], [ 120.4489908, 23.4251643 ], [ 120.4498951, 23.4267411 ], [ 120.4516239, 23.4296791 ], [ 120.4533847, 23.4327421 ], [ 120.4551297, 23.4357282 ], [ 120.4567732, 23.4385334 ], [ 120.4584702, 23.4414938 ], [ 120.4601166, 23.4443879 ], [ 120.4618827, 23.4473983 ], [ 120.4633747, 23.450342 ], [ 120.4648529, 23.4532958 ], [ 120.4663766, 23.4563195 ], [ 120.4681055, 23.4598017 ], [ 120.4695349, 23.46264 ], [ 120.4705776, 23.4647695 ], [ 120.4718894, 23.4671664 ], [ 120.4731199, 23.469414 ], [ 120.4744667, 23.4718027 ], [ 120.4761488, 23.4748046 ], [ 120.4780251, 23.476695 ], [ 120.4814334, 23.4801446 ], [ 120.482986, 23.4816505 ], [ 120.4839672, 23.4851066 ], [ 120.4848787, 23.4883132 ], [ 120.4854414, 23.490231 ], [ 120.4860432, 23.4932332 ], [ 120.4865107, 23.4953636 ], [ 120.4865378, 23.4958685 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250402", "name": "嘉義~新營線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4850134, 23.4521909 ], [ 120.4854995, 23.448845 ], [ 120.4861951, 23.4450852 ], [ 120.4866752, 23.4419417 ], [ 120.4871785, 23.4388466 ], [ 120.4878759, 23.4346683 ], [ 120.4883446, 23.4319786 ], [ 120.4888321, 23.4288903 ], [ 120.4892998, 23.4262286 ], [ 120.4900972, 23.4212613 ], [ 120.4907706, 23.4171665 ], [ 120.4916058, 23.412221 ], [ 120.4921133, 23.4090984 ], [ 120.4927609, 23.404997 ], [ 120.4915604, 23.4015988 ], [ 120.4903479, 23.3981343 ], [ 120.4895378, 23.3958385 ], [ 120.4875408, 23.3899042 ], [ 120.4861375, 23.3859973 ], [ 120.4845174, 23.381238 ], [ 120.4841477, 23.3799483 ], [ 120.4822715, 23.3748566 ], [ 120.4818084, 23.3739577 ], [ 120.4805365, 23.3712711 ], [ 120.4771332, 23.3683639 ], [ 120.4749703, 23.36552 ], [ 120.4715694, 23.3612883 ], [ 120.4701332, 23.3594653 ], [ 120.4669776, 23.3554545 ], [ 120.464292, 23.352109 ], [ 120.4626125, 23.3499565 ], [ 120.4593497, 23.3461987 ], [ 120.4566087, 23.3429909 ], [ 120.4548251, 23.3409545 ], [ 120.4532354, 23.3390974 ], [ 120.4513278, 23.3368899 ], [ 120.4478686, 23.3338047 ], [ 120.4460014, 23.3321468 ], [ 120.4426229, 23.3290955 ], [ 120.4404508, 23.3271464 ], [ 120.4384856, 23.3253793 ], [ 120.4361791, 23.3233443 ], [ 120.4337788, 23.3211295 ], [ 120.4313519, 23.3190237 ], [ 120.4286916, 23.3166623 ], [ 120.4262584, 23.314402 ], [ 120.4237639, 23.3121846 ], [ 120.4214004, 23.3100717 ], [ 120.4203191, 23.3091071 ], [ 120.4189609, 23.3078819 ], [ 120.4163348, 23.3055313 ], [ 120.4132649, 23.3027949 ], [ 120.4118087, 23.3015201 ], [ 120.4090408, 23.2990245 ], [ 120.4075988, 23.2977111 ], [ 120.4059543, 23.2962771 ], [ 120.4048445, 23.2952751 ], [ 120.403656, 23.2924178 ], [ 120.4018536, 23.2883276 ], [ 120.4000466, 23.2842523 ], [ 120.3989563, 23.2817593 ], [ 120.3975139, 23.27848 ], [ 120.3962583, 23.2756191 ], [ 120.3946633, 23.2724397 ], [ 120.3941178, 23.2707163 ], [ 120.3925296, 23.2671918 ], [ 120.3923003, 23.2664528 ], [ 120.3914952, 23.2648569 ], [ 120.3895993, 23.2608892 ], [ 120.3888388, 23.2588429 ], [ 120.3881028, 23.2572444 ], [ 120.3871647, 23.2572616 ], [ 120.3845083, 23.2574373 ], [ 120.3806574, 23.2588851 ], [ 120.377902, 23.259889 ], [ 120.376734, 23.2604858 ], [ 120.3754128, 23.2611736 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299250403", "name": "嘉民~新營線", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4881195, 23.4958961 ], [ 120.4886824, 23.4966011 ], [ 120.4897015, 23.4986445 ], [ 120.4907253, 23.5004274 ], [ 120.4917188, 23.5020987 ], [ 120.4929322, 23.5041207 ], [ 120.4947826, 23.5071602 ], [ 120.4960275, 23.5094979 ], [ 120.4972311, 23.5117182 ], [ 120.4980012, 23.5131135 ], [ 120.4999432, 23.5167474 ], [ 120.5005033, 23.51777 ], [ 120.5015221, 23.5196713 ], [ 120.5026632, 23.5216964 ], [ 120.5043946, 23.5257479 ], [ 120.5046436, 23.5294137 ], [ 120.5047282, 23.5329369 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299260532", "name": "嘉義一次變電所(P/S)", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4868341, 23.4972828 ], [ 120.4860393, 23.4959727 ], [ 120.4878901, 23.4950252 ], [ 120.4879547, 23.4950381 ], [ 120.4878979, 23.4952465 ], [ 120.4884355, 23.4953695 ], [ 120.4885001, 23.495383 ], [ 120.4889664, 23.4954799 ], [ 120.4888822, 23.4956148 ], [ 120.4887395, 23.4956887 ], [ 120.4888307, 23.4958443 ], [ 120.4882401, 23.4966391 ], [ 120.4881828, 23.4967322 ], [ 120.487999, 23.4968544 ], [ 120.487984, 23.496917 ], [ 120.4871015, 23.4973343 ], [ 120.4869152, 23.4973346 ], [ 120.4868341, 23.4972828 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299260533", "name": "嘉惠電廠~嘉民線", "power": "line", "wires": "quad", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4749948, 23.5337408 ], [ 120.4749936, 23.5340198 ], [ 120.4745776, 23.5358722 ], [ 120.4755562, 23.5369766 ], [ 120.477914, 23.5361629 ], [ 120.4803509, 23.5365027 ], [ 120.4823757, 23.5372676 ], [ 120.4820522, 23.5416567 ], [ 120.484872, 23.5448372 ], [ 120.4864833, 23.5461068 ], [ 120.4864575, 23.5500134 ], [ 120.4871298, 23.5520563 ], [ 120.4878388, 23.552013 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299260534", "name": "嘉民超高壓變電所(E/S)", "power": "substation", "voltage": "345000;161000", "z_order": 0, "other_tags": { "barrier": "fence", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4868636, 23.5549857 ], [ 120.4874893, 23.5548429 ], [ 120.4880211, 23.554841 ], [ 120.4884133, 23.5547732 ], [ 120.4884443, 23.5546877 ], [ 120.4885643, 23.5546823 ], [ 120.4886045, 23.554718 ], [ 120.4889934, 23.5545638 ], [ 120.4891143, 23.5544026 ], [ 120.4892829, 23.5543985 ], [ 120.4893608, 23.5544483 ], [ 120.4894632, 23.554398 ], [ 120.4902925, 23.5537789 ], [ 120.491081, 23.5533358 ], [ 120.4909451, 23.5496176 ], [ 120.4906889, 23.5496163 ], [ 120.4902884, 23.5496804 ], [ 120.4902939, 23.5497276 ], [ 120.4897306, 23.549887 ], [ 120.4897326, 23.5501564 ], [ 120.4875857, 23.5502185 ], [ 120.4871527, 23.551012 ], [ 120.4870661, 23.5513632 ], [ 120.4869608, 23.5523025 ], [ 120.4868943, 23.5524825 ], [ 120.4868691, 23.55325 ], [ 120.4868954, 23.5533071 ], [ 120.4868636, 23.5549857 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299260536", "name": "嘉民~嘉義線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.506887, 23.5318118 ], [ 120.5037599, 23.5346547 ], [ 120.5012494, 23.536901 ], [ 120.4977709, 23.5394718 ], [ 120.4936521, 23.541847 ], [ 120.4915963, 23.5427782 ], [ 120.4898595, 23.5451831 ], [ 120.4887366, 23.5483102 ], [ 120.487952, 23.5504103 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "299260537", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4878141, 23.5513893 ], [ 120.4874564, 23.5513809 ], [ 120.4880796, 23.5490417 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "300047812", "name": "三和~古坑線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5481889, 23.6490208 ], [ 120.5482518, 23.6492996 ], [ 120.5469589, 23.6495056 ], [ 120.5461836, 23.6482367 ], [ 120.5448917, 23.6460402 ], [ 120.5440388, 23.6445954 ], [ 120.5429744, 23.6427873 ], [ 120.5417471, 23.6406945 ], [ 120.5404413, 23.6384629 ], [ 120.5394508, 23.6367995 ], [ 120.5381343, 23.6349437 ], [ 120.5368943, 23.6331083 ], [ 120.5358821, 23.631624 ], [ 120.5346191, 23.6297958 ], [ 120.5330677, 23.6275308 ], [ 120.5320424, 23.6260098 ], [ 120.5309435, 23.6243833 ], [ 120.5296947, 23.622574 ], [ 120.5286613, 23.6210488 ], [ 120.527514, 23.6193808 ], [ 120.5261148, 23.6173438 ], [ 120.5242614, 23.6146616 ], [ 120.5229212, 23.6127214 ], [ 120.5211272, 23.6122396 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "300626816", "name": "秀林~中正大學線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4682517, 23.5628315 ], [ 120.4681804, 23.5627503 ], [ 120.4672454, 23.5622237 ], [ 120.4660691, 23.5611967 ], [ 120.4654078, 23.561358 ], [ 120.4650233, 23.5611349 ], [ 120.4644352, 23.5602304 ], [ 120.4637045, 23.5591285 ], [ 120.4629872, 23.5580306 ], [ 120.4619816, 23.556482 ], [ 120.4612761, 23.5552228 ], [ 120.4609703, 23.5535041 ], [ 120.4607669, 23.5524076 ], [ 120.460668, 23.5518316 ], [ 120.4616405, 23.5507437 ], [ 120.4635238, 23.5493688 ], [ 120.4654725, 23.5483143 ], [ 120.4679896, 23.547173 ], [ 120.47043, 23.5458124 ], [ 120.4699245, 23.5441443 ], [ 120.4707854, 23.5415976 ], [ 120.4702463, 23.5391706 ], [ 120.469691, 23.5369157 ], [ 120.469345, 23.5346656 ], [ 120.4694901, 23.5333587 ], [ 120.4669474, 23.5321575 ], [ 120.464014, 23.5310009 ], [ 120.4632106, 23.5305346 ], [ 120.4622702, 23.5302176 ], [ 120.4612842, 23.5298796 ], [ 120.4602965, 23.5297277 ], [ 120.4603763, 23.5290423 ], [ 120.4606441, 23.5282497 ], [ 120.4608389, 23.5274981 ], [ 120.4610522, 23.5265374 ], [ 120.4603758, 23.5263371 ], [ 120.4596727, 23.5261233 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "300626817", "name": "嘉義~秀林線", "power": "line", "wires": "single", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "1" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4610522, 23.5265374 ], [ 120.4603758, 23.5263371 ], [ 120.4596727, 23.5261233 ], [ 120.4589891, 23.5259577 ], [ 120.4584389, 23.5257757 ], [ 120.4577463, 23.5255854 ], [ 120.4571876, 23.5254391 ], [ 120.4566577, 23.5252735 ], [ 120.4566865, 23.5250837 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "300627350", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5004127, 23.6646808 ], [ 120.500264, 23.6641162 ], [ 120.4985048, 23.6627739 ], [ 120.4973116, 23.6618636 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "300741895", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.671018, 24.4881578 ], [ 120.6705477, 24.4876031 ], [ 120.6713447, 24.4870809 ], [ 120.6754605, 24.4861526 ], [ 120.6776742, 24.4845357 ], [ 120.6799718, 24.4827574 ], [ 120.6820663, 24.4798323 ], [ 120.6841843, 24.4767402 ], [ 120.6860159, 24.4742254 ], [ 120.6876397, 24.4719986 ], [ 120.6891327, 24.469953 ], [ 120.6915596, 24.4686951 ], [ 120.6932745, 24.4687928 ], [ 120.6967641, 24.4681194 ], [ 120.6975801, 24.4671473 ], [ 120.699915, 24.4657833 ], [ 120.7012248, 24.4650167 ], [ 120.7039145, 24.46345 ], [ 120.7065698, 24.460375 ], [ 120.7086201, 24.4580619 ], [ 120.7103648, 24.4559047 ], [ 120.7121445, 24.4543401 ], [ 120.7131772, 24.4526345 ], [ 120.7144787, 24.4503387 ], [ 120.716921, 24.4463943 ], [ 120.7190881, 24.4443495 ], [ 120.7214888, 24.4420294 ], [ 120.7237876, 24.4398415 ], [ 120.7264102, 24.4373049 ], [ 120.7307194, 24.4343394 ], [ 120.7331296, 24.4337718 ], [ 120.7362594, 24.4333563 ], [ 120.7391524, 24.4328726 ], [ 120.7427932, 24.432191 ], [ 120.7473843, 24.4314163 ], [ 120.7499764, 24.431662 ], [ 120.7520259, 24.4315709 ], [ 120.7533763, 24.4313581 ], [ 120.7579624, 24.4303611 ], [ 120.762021, 24.4304864 ], [ 120.7644893, 24.4306967 ], [ 120.7668222, 24.4308979 ], [ 120.769686, 24.4311662 ], [ 120.772532, 24.4301897 ], [ 120.775934, 24.4267922 ], [ 120.7792936, 24.4257508 ], [ 120.7807294, 24.4228122 ], [ 120.7793236, 24.4199632 ], [ 120.7802852, 24.4177212 ], [ 120.7794579, 24.4160613 ], [ 120.7801922, 24.4143268 ], [ 120.7824795, 24.4125402 ], [ 120.7847353, 24.4121639 ], [ 120.787619, 24.4130565 ], [ 120.7902217, 24.4138602 ], [ 120.791356, 24.4142049 ], [ 120.7934285, 24.4148328 ], [ 120.7980309, 24.4162447 ], [ 120.80116, 24.4156985 ], [ 120.8060162, 24.4148309 ], [ 120.812506, 24.4137568 ], [ 120.8156249, 24.4119782 ], [ 120.8171806, 24.4109896 ], [ 120.8204103, 24.4108299 ], [ 120.8222726, 24.4106623 ], [ 120.8272073, 24.4097611 ], [ 120.8319453, 24.4089056 ], [ 120.8341286, 24.4091206 ], [ 120.8372645, 24.4104798 ], [ 120.8387368, 24.4108913 ], [ 120.8401744, 24.4116406 ], [ 120.844067, 24.4120712 ], [ 120.8464944, 24.411702 ], [ 120.8506221, 24.4116017 ], [ 120.854517, 24.4114398 ], [ 120.8567884, 24.4113701 ], [ 120.8581668, 24.4117069 ], [ 120.8598685, 24.4121123 ], [ 120.8635359, 24.4126329 ], [ 120.8670452, 24.4126457 ], [ 120.8704281, 24.4122448 ], [ 120.8721478, 24.4119956 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "302892071", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6373317, 25.141025 ], [ 121.6338735, 25.1397606 ], [ 121.6309264, 25.1385261 ], [ 121.6289964, 25.1376996 ], [ 121.6278461, 25.137212 ], [ 121.625445, 25.1347203 ], [ 121.6236424, 25.1312587 ], [ 121.6226308, 25.1288138 ], [ 121.6211285, 25.1280681 ], [ 121.6162379, 25.1237977 ], [ 121.6109934, 25.1241319 ], [ 121.6054252, 25.1228541 ], [ 121.6021235, 25.1199003 ], [ 121.6002744, 25.1182237 ], [ 121.5993813, 25.1162851 ], [ 121.5991508, 25.1159725 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "306827115", "power": "generator", "z_order": 0, "other_tags": { "generator:method": "photovoltaic", "generator:output:electricity": "yes", "generator:source": "solar", "generator:type": "solar_photovoltaic_panel" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2352938, 23.0576002 ], [ 120.2339746, 23.0581326 ], [ 120.2339321, 23.0580433 ], [ 120.2352513, 23.0575109 ], [ 120.2352938, 23.0576002 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "307905907", "name": "永安鹽灘光電廠", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "yes", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2053768, 22.8391781 ], [ 120.2082288, 22.8398564 ], [ 120.2085634, 22.8387641 ], [ 120.2075155, 22.8385053 ], [ 120.2079245, 22.8371698 ], [ 120.2065031, 22.8367284 ], [ 120.2059196, 22.8373222 ], [ 120.2053768, 22.8391781 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "309025396", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2191419, 23.6471988 ], [ 120.220535, 23.6479109 ], [ 120.2216556, 23.6484778 ], [ 120.2239669, 23.6496502 ], [ 120.2252496, 23.6502941 ], [ 120.2282862, 23.6518821 ], [ 120.2295009, 23.6524686 ], [ 120.2335344, 23.6545293 ], [ 120.2372757, 23.6564713 ], [ 120.2382545, 23.6569638 ], [ 120.239167, 23.6574133 ], [ 120.2404187, 23.6579966 ], [ 120.2413851, 23.6585357 ], [ 120.2429187, 23.6599195 ], [ 120.2455525, 23.6625796 ], [ 120.2466167, 23.6635543 ], [ 120.248367, 23.6652786 ], [ 120.2509564, 23.6677823 ], [ 120.251744, 23.6686531 ], [ 120.2528032, 23.668998 ], [ 120.2554884, 23.6698876 ], [ 120.2578153, 23.6704715 ], [ 120.2589628, 23.6710437 ], [ 120.259314, 23.6720527 ], [ 120.2599907, 23.6738067 ], [ 120.2602098, 23.6744204 ], [ 120.2602087, 23.6746446 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "309025400", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.3438909, 23.7024723 ], [ 120.3438877, 23.7023058 ], [ 120.3438323, 23.70227 ], [ 120.3437343, 23.7022215 ], [ 120.3414614, 23.700548 ], [ 120.3388536, 23.6998393 ], [ 120.3367313, 23.6989441 ], [ 120.3340093, 23.6978128 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "309025401", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2718549, 23.7821207 ], [ 120.2736594, 23.7800534 ], [ 120.2757443, 23.7775483 ], [ 120.2773293, 23.7756715 ], [ 120.2792126, 23.7734124 ], [ 120.2806834, 23.7717338 ], [ 120.2823471, 23.7697348 ], [ 120.2836828, 23.7682033 ], [ 120.2854966, 23.7660119 ], [ 120.2873826, 23.7638135 ], [ 120.2892267, 23.761868 ], [ 120.2913153, 23.7597825 ], [ 120.2933348, 23.7577238 ], [ 120.2954161, 23.7560882 ], [ 120.2972871, 23.7545806 ], [ 120.299096, 23.7531186 ], [ 120.3010507, 23.7515622 ], [ 120.302485, 23.7503746 ], [ 120.3041179, 23.7487543 ], [ 120.3057315, 23.747137 ], [ 120.3074218, 23.7453826 ], [ 120.3089207, 23.7439104 ], [ 120.3088655, 23.7405174 ], [ 120.3087237, 23.7373949 ], [ 120.3086393, 23.7348899 ], [ 120.3084018, 23.729834 ], [ 120.308317, 23.7271531 ], [ 120.3106263, 23.7246091 ], [ 120.312311, 23.7228698 ], [ 120.314135, 23.7208809 ], [ 120.3155988, 23.7192861 ], [ 120.3188917, 23.7158409 ], [ 120.3205443, 23.7147438 ], [ 120.3227282, 23.7133361 ], [ 120.3241188, 23.7114472 ], [ 120.3253623, 23.7096963 ], [ 120.3264748, 23.7081368 ], [ 120.3278218, 23.7062616 ], [ 120.329286, 23.7042327 ], [ 120.3310007, 23.7019049 ], [ 120.3325318, 23.6997418 ], [ 120.3340093, 23.6978128 ], [ 120.3352834, 23.6958831 ], [ 120.3365364, 23.6936695 ], [ 120.3375754, 23.6918334 ], [ 120.3389772, 23.6893752 ], [ 120.3399118, 23.6876908 ], [ 120.341201, 23.6854692 ], [ 120.3423212, 23.683375 ], [ 120.3434866, 23.6814362 ], [ 120.3446946, 23.6792327 ], [ 120.345889, 23.677076 ], [ 120.3470234, 23.6750921 ], [ 120.3462595, 23.6728202 ], [ 120.3454946, 23.670386 ], [ 120.3447174, 23.6678636 ], [ 120.3441117, 23.6659113 ], [ 120.3434362, 23.6638043 ], [ 120.3426546, 23.6612273 ], [ 120.3419637, 23.6590957 ], [ 120.341266, 23.6569053 ], [ 120.339937, 23.652753 ], [ 120.3392393, 23.6505564 ], [ 120.3385743, 23.6483919 ], [ 120.3377337, 23.6457331 ], [ 120.336884, 23.6430029 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310318489", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "yes", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7403162, 21.9579668 ], [ 120.7404826, 21.9579682 ], [ 120.7407645, 21.9578425 ], [ 120.7407676, 21.9576182 ], [ 120.7405719, 21.9574553 ], [ 120.740327, 21.9574396 ], [ 120.7403162, 21.9579668 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310318490", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "yes", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7401013, 21.9574136 ], [ 120.7402763, 21.9574422 ], [ 120.7404563, 21.9564931 ], [ 120.7402813, 21.9564645 ], [ 120.7401013, 21.9574136 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310318491", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "yes", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7402874, 21.9564392 ], [ 120.7404782, 21.9564711 ], [ 120.7406504, 21.9555844 ], [ 120.7404818, 21.9555563 ], [ 120.7404177, 21.9558862 ], [ 120.7404638, 21.9559059 ], [ 120.7404116, 21.9561746 ], [ 120.7403411, 21.9561628 ], [ 120.7402874, 21.9564392 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310318492", "power": "plant", "z_order": 0, "other_tags": { "plant:method": "photovoltaic", "plant:output:electricity": "yes", "plant:source": "solar" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7403162, 21.9574268 ], [ 120.7405211, 21.9574399 ], [ 120.7406202, 21.9573382 ], [ 120.7405813, 21.957069 ], [ 120.7406273, 21.9567867 ], [ 120.7409741, 21.956406 ], [ 120.7411298, 21.9559989 ], [ 120.7410697, 21.9557134 ], [ 120.7406874, 21.955605 ], [ 120.7403162, 21.9574268 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310468014", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.205323, 23.4641286 ], [ 120.2065208, 23.4649405 ], [ 120.2084163, 23.4658964 ], [ 120.2097861, 23.4682803 ], [ 120.208411, 23.4705161 ], [ 120.2069704, 23.4727788 ], [ 120.2088761, 23.4735083 ], [ 120.2118926, 23.4745089 ], [ 120.2149015, 23.4757021 ], [ 120.2172727, 23.4765711 ], [ 120.2198034, 23.47752 ], [ 120.2228599, 23.4772643 ], [ 120.22592, 23.476972 ], [ 120.2289076, 23.476477 ], [ 120.232109, 23.4775366 ], [ 120.2341732, 23.478294 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310468016", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2341732, 23.478294 ], [ 120.236208, 23.480063 ], [ 120.2375856, 23.4819889 ], [ 120.23819, 23.484408 ], [ 120.2391118, 23.4867613 ], [ 120.2391631, 23.4890159 ], [ 120.2392163, 23.491463 ], [ 120.2393136, 23.4937175 ], [ 120.2393502, 23.4959733 ], [ 120.2394553, 23.4982034 ], [ 120.2396128, 23.5016124 ], [ 120.2396599, 23.5034705 ], [ 120.2392376, 23.5066615 ], [ 120.2388105, 23.5148293 ], [ 120.2386905, 23.5172569 ], [ 120.2387161, 23.5201403 ], [ 120.2387878, 23.5223051 ], [ 120.2388032, 23.5246812 ], [ 120.2388339, 23.5270291 ], [ 120.2388941, 23.5293703 ], [ 120.2381925, 23.5314505 ], [ 120.2377111, 23.5340823 ], [ 120.2381771, 23.5368526 ], [ 120.2386889, 23.539741 ], [ 120.2399954, 23.5419074 ], [ 120.2413106, 23.5440796 ], [ 120.2422489, 23.546044 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "310474332", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2422489, 23.546044 ], [ 120.2411498, 23.5478006 ], [ 120.2387284, 23.5482428 ], [ 120.2362608, 23.5487485 ], [ 120.2340393, 23.5491688 ], [ 120.231993, 23.549613 ], [ 120.2294139, 23.550127 ], [ 120.2269447, 23.5500644 ], [ 120.2241575, 23.5493671 ], [ 120.2214216, 23.548735 ], [ 120.2187677, 23.5483215 ], [ 120.2164688, 23.5482579 ], [ 120.2141613, 23.5486717 ], [ 120.211693, 23.548174 ], [ 120.2116812, 23.5504545 ], [ 120.2117009, 23.5536322 ], [ 120.2122212, 23.5562558 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "313534481", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5311014, 24.2371535 ], [ 120.5330816, 24.2365718 ], [ 120.5349406, 24.2360267 ], [ 120.5368107, 24.2355031 ], [ 120.5389135, 24.2348608 ], [ 120.541213, 24.2342068 ], [ 120.5434671, 24.233576 ], [ 120.5444336, 24.2333025 ], [ 120.5434894, 24.2311828 ], [ 120.5428302, 24.2288257 ], [ 120.5429854, 24.2273611 ], [ 120.5431759, 24.2257625 ], [ 120.5425695, 24.2238033 ], [ 120.5420158, 24.2220103 ], [ 120.5413779, 24.2199775 ], [ 120.5407751, 24.2177944 ], [ 120.5403615, 24.2158095 ], [ 120.5399235, 24.2136392 ], [ 120.5394328, 24.2114496 ], [ 120.5411559, 24.2104635 ], [ 120.5430071, 24.2093808 ], [ 120.5458249, 24.2078484 ], [ 120.5475914, 24.206885 ], [ 120.5494018, 24.2056786 ], [ 120.5518082, 24.2041152 ], [ 120.5537571, 24.202927 ], [ 120.554878, 24.2013176 ], [ 120.5576666, 24.1974607 ], [ 120.5594433, 24.1950016 ], [ 120.561132, 24.1927415 ], [ 120.5625835, 24.1906792 ], [ 120.5644634, 24.1897222 ], [ 120.5660961, 24.1888394 ], [ 120.5689763, 24.187229 ], [ 120.5712565, 24.1861018 ], [ 120.5724362, 24.1841584 ], [ 120.5726345, 24.1837108 ], [ 120.5727972, 24.1835098 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "313851488", "operator": "台灣電力公司", "power": "line", "z_order": 0, "other_tags": { "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7204616, 25.0226883 ], [ 121.7202646, 25.0231075 ], [ 121.72007, 25.0233291 ], [ 121.7191213, 25.0239905 ], [ 121.7185524, 25.0259827 ], [ 121.7185054, 25.0281886 ], [ 121.7195614, 25.0328033 ], [ 121.7194149, 25.0346886 ], [ 121.7186467, 25.0366889 ], [ 121.7176938, 25.0388498 ], [ 121.7165999, 25.0399589 ], [ 121.7140497, 25.0410846 ], [ 121.7122812, 25.0418033 ], [ 121.7096876, 25.0429366 ], [ 121.7058441, 25.044617 ], [ 121.7040914, 25.045956 ], [ 121.702347, 25.0472564 ], [ 121.699368, 25.0487612 ], [ 121.6980236, 25.0506296 ], [ 121.6979272, 25.0534801 ], [ 121.6968334, 25.0542681 ], [ 121.6930247, 25.057513 ], [ 121.6896652, 25.0620278 ], [ 121.6885814, 25.0620739 ], [ 121.6843775, 25.0623068 ], [ 121.6810918, 25.0623975 ], [ 121.6798082, 25.0625333 ], [ 121.6768275, 25.0631032 ], [ 121.6751794, 25.0653909 ], [ 121.6738277, 25.067096 ], [ 121.6737788, 25.0682277 ], [ 121.6722896, 25.0695509 ], [ 121.6718901, 25.0696306 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "313958059", "name": "中港超高壓變電所(E/S)", "operator": "台灣電力公司", "power": "substation", "voltage": "345000;161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5717918, 24.1846421 ], [ 120.5697693, 24.1831488 ], [ 120.5706717, 24.1821226 ], [ 120.5710147, 24.1817998 ], [ 120.5711687, 24.1817125 ], [ 120.5715265, 24.1816083 ], [ 120.5719511, 24.1813533 ], [ 120.5720089, 24.1812738 ], [ 120.5728927, 24.1819533 ], [ 120.5729293, 24.1819151 ], [ 120.5740052, 24.182803 ], [ 120.5740295, 24.1828918 ], [ 120.5739053, 24.1833161 ], [ 120.5738151, 24.183402 ], [ 120.5737857, 24.1834913 ], [ 120.5738052, 24.183658 ], [ 120.5731288, 24.1839641 ], [ 120.573094, 24.1839324 ], [ 120.5717918, 24.1846421 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "313959397", "power": "line", "voltage": "161000", "z_order": 50, "other_tags": { "layer": "5" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5730001, 24.1836361 ], [ 120.5728284, 24.1838354 ], [ 120.5726912, 24.1857349 ], [ 120.5726715, 24.1875875 ], [ 120.5737222, 24.1896722 ], [ 120.5748914, 24.1922055 ], [ 120.5761297, 24.1947939 ], [ 120.5772413, 24.197106 ], [ 120.5780551, 24.1986463 ], [ 120.5789707, 24.2006549 ], [ 120.5800381, 24.2028333 ], [ 120.5808859, 24.2045829 ], [ 120.5818811, 24.2067708 ], [ 120.583005, 24.2092162 ], [ 120.5839635, 24.2109716 ], [ 120.5851677, 24.2134403 ], [ 120.5857561, 24.2147118 ], [ 120.586055, 24.2165836 ], [ 120.5863749, 24.2184015 ], [ 120.5866631, 24.2200218 ], [ 120.5869062, 24.2215777 ], [ 120.5869327, 24.2233699 ], [ 120.5874625, 24.2249748 ], [ 120.5877418, 24.2267683 ], [ 120.5881226, 24.2292862 ], [ 120.5885003, 24.2316924 ], [ 120.5889187, 24.2344389 ], [ 120.589323, 24.2369603 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "317676607", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6923767, 24.4674307 ], [ 120.6904934, 24.4636403 ], [ 120.6929925, 24.4617097 ], [ 120.6929531, 24.4598811 ], [ 120.6927494, 24.4580041 ], [ 120.6920187, 24.455558 ], [ 120.6908176, 24.4532132 ], [ 120.6899014, 24.4516954 ], [ 120.6889942, 24.4473338 ], [ 120.6876773, 24.4433925 ], [ 120.6865773, 24.440721 ], [ 120.6866352, 24.4374053 ], [ 120.6833821, 24.4353971 ], [ 120.6802236, 24.4323321 ], [ 120.6782658, 24.4301087 ], [ 120.6771966, 24.4289941 ], [ 120.6757187, 24.4274759 ], [ 120.6738286, 24.4258952 ], [ 120.6730143, 24.4246645 ], [ 120.6726526, 24.4241711 ], [ 120.6718584, 24.4230098 ], [ 120.6707798, 24.4222228 ], [ 120.6696772, 24.4214139 ], [ 120.6694204, 24.4206881 ], [ 120.6691296, 24.4199031 ], [ 120.6687052, 24.4188457 ], [ 120.6679499, 24.4189206 ], [ 120.6674709, 24.418981 ], [ 120.6670744, 24.4190856 ], [ 120.6663891, 24.4195497 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "317769829", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6959841, 24.4634707 ], [ 120.6974691, 24.4637812 ], [ 120.6984097, 24.4639003 ], [ 120.6995365, 24.4634445 ], [ 120.700555, 24.4631103 ], [ 120.7021635, 24.4624986 ], [ 120.7036635, 24.4621919 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "317780612", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7929716, 24.4898156 ], [ 120.7986582, 24.48843 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318338578", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.096993, 24.9240502 ], [ 121.095834, 24.9218417 ], [ 121.0945946, 24.9195138 ], [ 121.0934416, 24.9173253 ], [ 121.0922498, 24.9150721 ], [ 121.0912858, 24.9132393 ], [ 121.0902566, 24.9113155 ], [ 121.0892422, 24.9093997 ], [ 121.0879544, 24.9069528 ], [ 121.0853642, 24.9057118 ], [ 121.0810134, 24.9027922 ], [ 121.0793944, 24.9013145 ], [ 121.0778572, 24.8998848 ], [ 121.0762936, 24.8984484 ], [ 121.0746284, 24.8968715 ], [ 121.0726515, 24.8950643 ], [ 121.0721053, 24.8946139 ], [ 121.0712494, 24.893731 ], [ 121.0706758, 24.8917819 ], [ 121.0698098, 24.8887797 ], [ 121.0693372, 24.8871878 ], [ 121.0667718, 24.885438 ], [ 121.0651219, 24.8842777 ], [ 121.0635054, 24.883164 ], [ 121.0643411, 24.8809282 ], [ 121.0650051, 24.8791612 ], [ 121.0667758, 24.8773266 ], [ 121.0691139, 24.8756583 ], [ 121.0713511, 24.875188 ], [ 121.0744903, 24.8745695 ], [ 121.0777478, 24.8750483 ], [ 121.0820334, 24.8744484 ], [ 121.0839247, 24.874643 ], [ 121.08432, 24.8751354 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318338579", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0958902, 24.893716 ], [ 121.0984281, 24.8943738 ], [ 121.1002571, 24.8946899 ], [ 121.1023275, 24.897167 ], [ 121.1029346, 24.8992094 ], [ 121.1034076, 24.9014855 ], [ 121.1035353, 24.9039818 ], [ 121.1058015, 24.9066443 ], [ 121.1071707, 24.9086731 ], [ 121.1089311, 24.9111451 ], [ 121.1118783, 24.9134971 ], [ 121.1125661, 24.9159965 ], [ 121.1117671, 24.9181683 ], [ 121.114009, 24.920526 ], [ 121.1140856, 24.9231406 ], [ 121.1160156, 24.9261431 ], [ 121.1161339, 24.929241 ], [ 121.1144172, 24.9304361 ], [ 121.1133884, 24.9328579 ], [ 121.112877, 24.9347708 ], [ 121.1114427, 24.9372591 ], [ 121.1105495, 24.9399334 ], [ 121.1095408, 24.9424607 ], [ 121.1087582, 24.9447522 ], [ 121.1060044, 24.9476527 ], [ 121.1047606, 24.9491358 ], [ 121.1019913, 24.951417 ], [ 121.099714, 24.9535704 ], [ 121.0963665, 24.9555493 ], [ 121.0950717, 24.9578773 ], [ 121.0944901, 24.9608216 ], [ 121.0921758, 24.9628818 ], [ 121.0890576, 24.9645536 ], [ 121.0869508, 24.9654717 ], [ 121.0845795, 24.9666173 ], [ 121.0821825, 24.9671549 ], [ 121.0795032, 24.968427 ], [ 121.0771551, 24.9695145 ], [ 121.0751602, 24.9720867 ], [ 121.0735047, 24.9749469 ], [ 121.0716845, 24.9768053 ], [ 121.0699252, 24.9795196 ], [ 121.0691474, 24.9812276 ], [ 121.0693758, 24.9828712 ], [ 121.0679606, 24.9846445 ], [ 121.0673373, 24.9869699 ], [ 121.0655616, 24.9892485 ], [ 121.0639134, 24.9916762 ], [ 121.0621652, 24.993578 ], [ 121.0598304, 24.9955068 ], [ 121.0603483, 24.9975418 ], [ 121.0599007, 25.0000205 ], [ 121.058957, 25.0026179 ], [ 121.0570847, 25.0058009 ], [ 121.0568242, 25.0087586 ], [ 121.0568738, 25.0103737 ], [ 121.0560955, 25.0134492 ], [ 121.0534795, 25.0150753 ], [ 121.0507286, 25.0160075 ], [ 121.0490572, 25.0174111 ], [ 121.0472144, 25.0191587 ], [ 121.048732, 25.0209191 ], [ 121.0476061, 25.0216795 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318338581", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0947261, 24.9111267 ], [ 121.0949142, 24.9097259 ], [ 121.0953894, 24.9074778 ], [ 121.0958902, 24.905086 ], [ 121.0964207, 24.9026077 ], [ 121.0968969, 24.9003436 ], [ 121.0975109, 24.8978117 ], [ 121.0981499, 24.8945699 ], [ 121.0983138, 24.8930577 ], [ 121.099349, 24.8888279 ], [ 121.0995875, 24.8876635 ], [ 121.0997835, 24.886724 ], [ 121.0980598, 24.8838468 ], [ 121.0958822, 24.8802283 ], [ 121.0952168, 24.8789071 ], [ 121.0962379, 24.8781261 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318505639", "name": "梅湖一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0851723, 24.8763596 ], [ 121.0852338, 24.8763499 ], [ 121.0852977, 24.8763142 ], [ 121.0862609, 24.8754534 ], [ 121.086273, 24.8751337 ], [ 121.0862404, 24.8749543 ], [ 121.0861677, 24.8748797 ], [ 121.0862207, 24.8748163 ], [ 121.0862862, 24.87477 ], [ 121.086245, 24.8742444 ], [ 121.0861162, 24.8740672 ], [ 121.0856976, 24.8742555 ], [ 121.0852373, 24.8738582 ], [ 121.0846473, 24.8743855 ], [ 121.0843165, 24.8748689 ], [ 121.0840201, 24.8751266 ], [ 121.0843711, 24.8753893 ], [ 121.0843846, 24.8754445 ], [ 121.0842796, 24.8756421 ], [ 121.085045, 24.8763022 ], [ 121.0850975, 24.8763403 ], [ 121.0851723, 24.8763596 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318512280", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0316017, 24.7206471 ], [ 121.028696, 24.7209321 ], [ 121.0284363, 24.7218881 ], [ 121.0306005, 24.7277788 ], [ 121.0319564, 24.7333389 ], [ 121.0308839, 24.7346701 ], [ 121.0305803, 24.7386549 ], [ 121.0307754, 24.7404141 ], [ 121.0313089, 24.7433036 ], [ 121.0299112, 24.7464956 ], [ 121.0288122, 24.7493213 ], [ 121.0309312, 24.7525176 ], [ 121.0295977, 24.7546881 ], [ 121.0280288, 24.7579247 ], [ 121.0241714, 24.7606795 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318512283", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1009855, 24.7201418 ], [ 121.1025523, 24.7191686 ], [ 121.1061861, 24.7167526 ], [ 121.1073085, 24.7140898 ], [ 121.1084523, 24.7134256 ], [ 121.1117406, 24.7136825 ], [ 121.1158705, 24.7138053 ], [ 121.1183271, 24.7133612 ], [ 121.1223099, 24.7127793 ], [ 121.1249776, 24.7124966 ], [ 121.1281622, 24.7122259 ], [ 121.1297975, 24.7122749 ], [ 121.1358747, 24.7127139 ], [ 121.140055, 24.7133232 ], [ 121.1418896, 24.7140409 ], [ 121.1457826, 24.7141314 ], [ 121.1479754, 24.7145082 ], [ 121.1532033, 24.7153568 ], [ 121.1589151, 24.7162811 ], [ 121.1638769, 24.7184157 ], [ 121.1674727, 24.7177273 ], [ 121.1734462, 24.7141544 ], [ 121.1757973, 24.712751 ], [ 121.1773676, 24.7118072 ], [ 121.1790313, 24.710812 ], [ 121.183353, 24.7082184 ], [ 121.1854874, 24.7058145 ], [ 121.1861937, 24.7049932 ], [ 121.1878931, 24.7030258 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318520579", "power": "line", "voltage": "69000", "z_order": 0, "other_tags": { "circuit": "3" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0269851, 24.9846621 ], [ 121.0245429, 24.9843313 ], [ 121.0214012, 24.9849643 ], [ 121.0211321, 24.9824635 ], [ 121.0202181, 24.9804843 ], [ 121.020552, 24.9779818 ], [ 121.0207495, 24.9749555 ], [ 121.0205619, 24.9744585 ], [ 121.0199258, 24.9727728 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318672710", "name": "嘉民~斗工線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6393226, 23.6972993 ], [ 120.6362304, 23.6930001 ], [ 120.6389242, 23.6891349 ], [ 120.6374532, 23.6870062 ], [ 120.6368558, 23.6843841 ], [ 120.6334067, 23.6813642 ], [ 120.6307341, 23.6820848 ], [ 120.628616, 23.6799151 ], [ 120.6245276, 23.6817497 ], [ 120.6231521, 23.6801698 ], [ 120.6191732, 23.6759705 ], [ 120.6169104, 23.6738523 ], [ 120.613555, 23.6703635 ], [ 120.6122471, 23.669009 ], [ 120.6094069, 23.6660119 ], [ 120.6078539, 23.6642015 ], [ 120.6062008, 23.6625546 ], [ 120.6034042, 23.659578 ], [ 120.6003201, 23.656491 ], [ 120.5980386, 23.6541638 ], [ 120.5967352, 23.652972 ], [ 120.5944499, 23.6505234 ], [ 120.5937789, 23.6497754 ], [ 120.5918925, 23.6476768 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318672711", "name": "嘉民~斗工線;鉅工電廠~斗工線", "power": "line", "wires": "double", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "4" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6393226, 23.6972993 ], [ 120.635341, 23.6985961 ], [ 120.6312933, 23.6996268 ], [ 120.6285208, 23.6990475 ], [ 120.6247184, 23.6987344 ], [ 120.6213876, 23.7003236 ], [ 120.6194581, 23.7010562 ], [ 120.6171223, 23.7001705 ], [ 120.6165744, 23.6993231 ], [ 120.6149155, 23.6967351 ], [ 120.6144152, 23.6958817 ], [ 120.6123749, 23.6956289 ], [ 120.6115918, 23.696099 ], [ 120.6100625, 23.6963785 ], [ 120.6075532, 23.6982551 ], [ 120.6058766, 23.7003347 ], [ 120.6048583, 23.7018262 ], [ 120.6045433, 23.703624 ], [ 120.6041584, 23.7062506 ], [ 120.6037652, 23.7081963 ], [ 120.6017661, 23.7093853 ], [ 120.6004369, 23.7121409 ], [ 120.6003004, 23.714058 ], [ 120.599959, 23.715475 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678825", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1306481, 24.9881496 ], [ 121.1290771, 24.9900762 ], [ 121.128022, 24.9914285 ], [ 121.1251267, 24.9936666 ], [ 121.1257864, 24.9959451 ], [ 121.1260507, 24.998642 ], [ 121.1250071, 25.0003342 ], [ 121.1232769, 25.0033044 ], [ 121.1244276, 25.0065315 ], [ 121.1248068, 25.0096439 ], [ 121.1236951, 25.0118517 ], [ 121.1228321, 25.0144857 ], [ 121.1220774, 25.0166708 ], [ 121.1218191, 25.0191865 ], [ 121.1212084, 25.0224645 ], [ 121.119353, 25.0241248 ], [ 121.1178234, 25.0259855 ], [ 121.1164246, 25.0282032 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678826", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1316843, 24.9878591 ], [ 121.131827, 24.9874594 ], [ 121.1317849, 24.9848407 ], [ 121.1313429, 24.9823389 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678827", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1321354, 24.9880124 ], [ 121.1322768, 24.9876663 ], [ 121.132137, 24.9850323 ], [ 121.1319106, 24.9821612 ], [ 121.1314479, 24.9809281 ], [ 121.13128, 24.9774481 ], [ 121.1294553, 24.9749914 ], [ 121.1290175, 24.9734585 ], [ 121.1290948, 24.9700213 ], [ 121.129119, 24.9682301 ], [ 121.1291579, 24.9666491 ], [ 121.1292143, 24.9645336 ], [ 121.1292778, 24.9624286 ], [ 121.1278299, 24.9610318 ], [ 121.1262131, 24.9594537 ], [ 121.1245878, 24.9578483 ], [ 121.1242058, 24.9557339 ], [ 121.1238073, 24.9536364 ], [ 121.1233539, 24.9511422 ], [ 121.1215805, 24.9488346 ], [ 121.1202335, 24.9470742 ], [ 121.1188908, 24.945289 ], [ 121.1176204, 24.9436089 ], [ 121.1160488, 24.9406979 ], [ 121.1156168, 24.9392819 ], [ 121.1138922, 24.9379751 ], [ 121.1124156, 24.936834 ], [ 121.1101498, 24.9351236 ], [ 121.1081095, 24.9335747 ], [ 121.1061986, 24.9320992 ], [ 121.1044138, 24.9307323 ], [ 121.1026467, 24.9293799 ], [ 121.1017421, 24.9287137 ], [ 121.1016335, 24.9285541 ], [ 121.1002671, 24.9275439 ], [ 121.0983779, 24.9260757 ], [ 121.096993, 24.9240502 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678828", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1160488, 24.9406979 ], [ 121.1163192, 24.9402469 ], [ 121.1181632, 24.9384686 ], [ 121.1202195, 24.9396126 ], [ 121.1225823, 24.9370868 ], [ 121.1245403, 24.9343744 ], [ 121.1260856, 24.9322253 ], [ 121.1279852, 24.931624 ], [ 121.1313266, 24.9293491 ], [ 121.1327513, 24.9277137 ], [ 121.1338082, 24.9260131 ], [ 121.1363732, 24.9245583 ], [ 121.1388094, 24.9231798 ], [ 121.1410691, 24.921925 ], [ 121.1433639, 24.9203665 ], [ 121.1451069, 24.9188366 ], [ 121.1463276, 24.9186258 ], [ 121.1486098, 24.9183049 ], [ 121.1494855, 24.9171182 ], [ 121.1519001, 24.9159094 ], [ 121.1538094, 24.9147883 ], [ 121.1548248, 24.9146855 ], [ 121.1549834, 24.9152403 ], [ 121.1566342, 24.9158625 ], [ 121.1588439, 24.9167779 ], [ 121.1616606, 24.9174568 ], [ 121.164371, 24.9177569 ], [ 121.1663569, 24.9189641 ], [ 121.1673671, 24.9201747 ], [ 121.1676755, 24.9204425 ], [ 121.168031, 24.921207 ], [ 121.1684101, 24.9218986 ], [ 121.1688631, 24.9226301 ], [ 121.1690874, 24.9230059 ], [ 121.1692747, 24.9233466 ], [ 121.1695155, 24.9238965 ], [ 121.1696842, 24.9242796 ], [ 121.1697777, 24.9244642 ], [ 121.1700823, 24.9249563 ], [ 121.1709895, 24.925807 ], [ 121.171769, 24.926476 ], [ 121.1725587, 24.9271072 ], [ 121.1733212, 24.9277815 ], [ 121.1734978, 24.9278829 ], [ 121.1740244, 24.9271122 ], [ 121.174133, 24.9270089 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678829", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.104083, 24.9907606 ], [ 121.1041739, 24.9908722 ], [ 121.1053174, 24.9925239 ], [ 121.1063641, 24.9918422 ], [ 121.1087096, 24.9921398 ], [ 121.1115519, 24.9915533 ], [ 121.113721, 24.9915816 ], [ 121.1166509, 24.9916073 ], [ 121.1203875, 24.9908328 ], [ 121.1236193, 24.9887798 ], [ 121.1254859, 24.9882997 ], [ 121.1283961, 24.9888022 ], [ 121.129657, 24.9888321 ], [ 121.1305978, 24.9878896 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678830", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1164246, 25.0282032 ], [ 121.1185046, 25.0279808 ], [ 121.1218952, 25.0278929 ], [ 121.1245249, 25.0257384 ], [ 121.1272433, 25.0234567 ], [ 121.1294859, 25.0214374 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "318678831", "name": "觀音一次變電所", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "addr:city": "桃園市", "addr:country": "TW", "addr:district": "觀音區", "addr:full": "桃園市觀音區富源三路66號", "addr:housenumber": "66", "addr:postcode": "328005", "addr:street": "富源三路", "addr:village": "富源里", "barrier": "wall", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1309567, 24.988107 ], [ 121.1326692, 24.9886486 ], [ 121.1328567, 24.988348 ], [ 121.1329345, 24.988381 ], [ 121.1330694, 24.988039 ], [ 121.1313373, 24.9871144 ], [ 121.1309567, 24.988107 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "319061789", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1878931, 24.7030258 ], [ 121.1895817, 24.6992803 ], [ 121.1923614, 24.6957228 ], [ 121.1968641, 24.6965338 ], [ 121.20025, 24.6986686 ], [ 121.2033583, 24.7006126 ], [ 121.2062094, 24.7023957 ], [ 121.2096766, 24.7017598 ], [ 121.2105589, 24.7015884 ], [ 121.2123358, 24.7021867 ], [ 121.2131975, 24.7026656 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "320362706", "name": "中港-潭子線;中港-栗林線", "power": "line", "z_order": 0, "other_tags": { "description": "南:中港-潭子線;北:中港-栗林線", "start_date": "1987-06-01" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6245963, 24.207186 ], [ 120.6246517, 24.2098469 ], [ 120.6259165, 24.2111262 ], [ 120.6279997, 24.2138039 ], [ 120.6283298, 24.2137728 ], [ 120.6291216, 24.2152253 ], [ 120.6302932, 24.2167384 ], [ 120.6318961, 24.2187497 ], [ 120.6333485, 24.2206166 ], [ 120.6346605, 24.2223413 ], [ 120.6354008, 24.2242875 ], [ 120.6361768, 24.2263359 ], [ 120.6368882, 24.2282978 ], [ 120.6380433, 24.229575 ], [ 120.6394586, 24.2311455 ], [ 120.6416058, 24.2321721 ], [ 120.6438411, 24.2332453 ], [ 120.6457854, 24.2341596 ], [ 120.6483524, 24.2353821 ], [ 120.6503093, 24.2363249 ], [ 120.6521254, 24.2371793 ], [ 120.6539924, 24.2380952 ], [ 120.6560491, 24.2373955 ], [ 120.6576535, 24.2363761 ], [ 120.6599427, 24.235726 ], [ 120.6630664, 24.2343736 ], [ 120.6656335, 24.2338574 ], [ 120.6685275, 24.2326697 ], [ 120.6709463, 24.2315194 ], [ 120.6713759, 24.2289939 ], [ 120.6741371, 24.2289432 ], [ 120.6769575, 24.2287807 ], [ 120.6792697, 24.2286908 ], [ 120.6820495, 24.2292197 ], [ 120.685046, 24.2297741 ], [ 120.6873792, 24.2301732 ], [ 120.6897142, 24.2292779 ], [ 120.6922914, 24.2283725 ], [ 120.6948666, 24.2284553 ], [ 120.6968708, 24.2286209 ], [ 120.698819, 24.2291797 ], [ 120.700473, 24.2296052 ], [ 120.702484, 24.2301773 ], [ 120.7040705, 24.2298672 ], [ 120.7055649, 24.2297471 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "320938532", "power": "line", "wires": "double", "cables": "6", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0849599, 24.8746225 ], [ 121.084776, 24.8744544 ], [ 121.0862472, 24.8725377 ], [ 121.0889773, 24.871603 ], [ 121.0906279, 24.8710186 ], [ 121.0955618, 24.8692528 ], [ 121.0977383, 24.8684616 ], [ 121.099467, 24.8670192 ], [ 121.1016269, 24.8652208 ], [ 121.1058546, 24.8654942 ], [ 121.108709, 24.865709 ], [ 121.1132804, 24.8642 ], [ 121.1161851, 24.8631398 ], [ 121.1184303, 24.8623005 ], [ 121.1237459, 24.8603472 ], [ 121.13104, 24.8576168 ], [ 121.1332278, 24.8552875 ], [ 121.1362142, 24.8521891 ], [ 121.1370067, 24.8513795 ], [ 121.1404261, 24.8478393 ], [ 121.1410921, 24.8471217 ], [ 121.1420472, 24.846023 ], [ 121.1468661, 24.8404282 ], [ 121.1483452, 24.8389846 ], [ 121.1504174, 24.836927 ], [ 121.1526121, 24.8348052 ], [ 121.1550314, 24.8324598 ], [ 121.1565852, 24.8309021 ], [ 121.1580609, 24.8294471 ], [ 121.1610069, 24.8265347 ], [ 121.1639182, 24.8263293 ], [ 121.1657764, 24.8247543 ], [ 121.1678006, 24.8230154 ], [ 121.1701942, 24.8209703 ], [ 121.1721996, 24.8200355 ], [ 121.1753109, 24.8185427 ], [ 121.1788661, 24.8168606 ], [ 121.1821326, 24.8153245 ], [ 121.1854769, 24.8138876 ], [ 121.187802, 24.8146414 ], [ 121.1906224, 24.8156212 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "320983242", "name": "峨眉-中寮南線;龍潭-中寮南線(分歧霧峰)", "power": "line", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8432786, 24.0417297 ], [ 120.8429628, 24.0425891 ], [ 120.8421425, 24.0434728 ], [ 120.8392164, 24.0447098 ], [ 120.8356793, 24.0449574 ], [ 120.8280646, 24.0439305 ], [ 120.8260272, 24.0441431 ], [ 120.8243257, 24.0442636 ], [ 120.8183152, 24.0452089 ], [ 120.8139281, 24.0460696 ], [ 120.8106935, 24.0467156 ], [ 120.806688, 24.0503081 ], [ 120.8035816, 24.0536108 ], [ 120.7973089, 24.0596377 ], [ 120.7948328, 24.0616045 ], [ 120.7901055, 24.0626341 ], [ 120.7845264, 24.0581944 ], [ 120.7846388, 24.0555237 ], [ 120.7833904, 24.0541273 ], [ 120.7811756, 24.0538644 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321099212", "name": "南投超高壓變電所(E/S)", "power": "substation", "voltage": "345000;161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6355449, 23.882135 ], [ 120.6355818, 23.8821708 ], [ 120.635867, 23.8821276 ], [ 120.6358767, 23.8821443 ], [ 120.6381859, 23.8818473 ], [ 120.6387425, 23.8814869 ], [ 120.6391049, 23.8812991 ], [ 120.6393105, 23.8812387 ], [ 120.6394711, 23.8812091 ], [ 120.6395134, 23.881154 ], [ 120.6391486, 23.8788381 ], [ 120.6391234, 23.8788224 ], [ 120.6373101, 23.8790635 ], [ 120.6372479, 23.8791602 ], [ 120.6371546, 23.8791738 ], [ 120.6370588, 23.8791142 ], [ 120.635414, 23.8793394 ], [ 120.6353819, 23.8793875 ], [ 120.6353474, 23.8793905 ], [ 120.6353133, 23.879395 ], [ 120.6352788, 23.8793658 ], [ 120.6351052, 23.8793903 ], [ 120.6350817, 23.8794188 ], [ 120.6355449, 23.882135 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627776", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0439313, 24.801731 ], [ 121.0458727, 24.8016851 ], [ 121.0498471, 24.8018199 ], [ 121.0535288, 24.8019966 ], [ 121.0567324, 24.8020024 ], [ 121.0598536, 24.801693 ], [ 121.0629361, 24.8013154 ], [ 121.0667046, 24.8009652 ], [ 121.0713306, 24.8006947 ], [ 121.0732877, 24.8003931 ], [ 121.0752899, 24.800253 ], [ 121.0804239, 24.8002024 ], [ 121.0822048, 24.8017767 ], [ 121.0879691, 24.8070986 ], [ 121.0934453, 24.8111323 ], [ 121.0964252, 24.8121168 ], [ 121.0989285, 24.8130895 ], [ 121.102687, 24.8154429 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627777", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0956458, 24.8269219 ], [ 121.0954195, 24.827508 ], [ 121.0939966, 24.8312687 ], [ 121.0930795, 24.8349472 ], [ 121.092006, 24.8377184 ], [ 121.092088, 24.8402624 ], [ 121.0908177, 24.8454795 ], [ 121.090669, 24.8479123 ], [ 121.0897266, 24.8511347 ], [ 121.0898124, 24.856917 ], [ 121.0889882, 24.8594586 ], [ 121.0874552, 24.8623588 ], [ 121.0866645, 24.864556 ], [ 121.0861057, 24.8658522 ], [ 121.084727, 24.8693909 ], [ 121.0838883, 24.8715861 ], [ 121.0843087, 24.8745442 ], [ 121.0846181, 24.874875 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627778", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1380947, 24.8328195 ], [ 121.136251, 24.8371056 ], [ 121.1358838, 24.8381826 ], [ 121.1350315, 24.8405462 ], [ 121.1343339, 24.842377 ], [ 121.13104, 24.8452309 ], [ 121.1294525, 24.847755 ], [ 121.1270863, 24.8515572 ], [ 121.1256254, 24.8538207 ], [ 121.1233173, 24.8573529 ], [ 121.1215044, 24.8601709 ], [ 121.119417, 24.8633126 ], [ 121.1177276, 24.8648295 ], [ 121.1150087, 24.866685 ], [ 121.1114014, 24.8694816 ], [ 121.1069295, 24.8720518 ], [ 121.1031287, 24.8741725 ], [ 121.099671, 24.8761556 ], [ 121.0983443, 24.8769182 ], [ 121.0962379, 24.8781261 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627779", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0423511, 24.834369 ], [ 121.0439387, 24.8315794 ], [ 121.0474077, 24.829713 ], [ 121.0508972, 24.8300538 ], [ 121.0545486, 24.8302832 ], [ 121.0583547, 24.8303965 ], [ 121.0621266, 24.8300484 ], [ 121.0638657, 24.827533 ], [ 121.0656769, 24.8249696 ], [ 121.0685299, 24.8220241 ], [ 121.0722632, 24.8196758 ], [ 121.0758526, 24.8184191 ], [ 121.0806568, 24.8194536 ], [ 121.0828398, 24.8197316 ], [ 121.0868884, 24.8196171 ], [ 121.090595, 24.818932 ], [ 121.0942098, 24.8175824 ], [ 121.0970242, 24.8169115 ], [ 121.1003383, 24.8176519 ], [ 121.102687, 24.8154429 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627780", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1451491, 24.8269395 ], [ 121.1479622, 24.8269117 ], [ 121.1512854, 24.8268825 ], [ 121.1563007, 24.8268083 ], [ 121.1584946, 24.8267365 ], [ 121.1608226, 24.8252846 ], [ 121.1628603, 24.824086 ], [ 121.1681496, 24.8209115 ], [ 121.1695963, 24.8200523 ], [ 121.171076, 24.8191506 ], [ 121.1729382, 24.8178337 ], [ 121.174976, 24.8163508 ], [ 121.176678, 24.8147002 ], [ 121.1783844, 24.8130386 ], [ 121.1803303, 24.8111337 ], [ 121.18214, 24.8094674 ], [ 121.1857718, 24.8097339 ], [ 121.1902146, 24.8118339 ], [ 121.1915479, 24.8131168 ], [ 121.1922332, 24.8146276 ], [ 121.1931287, 24.8170294 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627781", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0647567, 24.8295916 ], [ 121.0638657, 24.827533 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627782", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0631214, 24.8327545 ], [ 121.0636366, 24.831678 ], [ 121.0647567, 24.8295916 ], [ 121.0676261, 24.8315787 ], [ 121.0698874, 24.8341174 ], [ 121.0707016, 24.8352506 ], [ 121.0727286, 24.8354313 ], [ 121.0752461, 24.8375468 ], [ 121.0755137, 24.8377716 ], [ 121.0781845, 24.8383796 ], [ 121.0812191, 24.8391747 ], [ 121.0845023, 24.8400193 ], [ 121.0875338, 24.840509 ], [ 121.090081, 24.8403435 ], [ 121.0922059, 24.8406324 ], [ 121.0933952, 24.8409374 ], [ 121.097271, 24.8423278 ], [ 121.1008925, 24.8433306 ], [ 121.1046815, 24.8402229 ], [ 121.1085639, 24.8396847 ], [ 121.1112895, 24.840673 ], [ 121.1118051, 24.8419312 ], [ 121.1109261, 24.8442263 ], [ 121.1100057, 24.8463342 ], [ 121.1086346, 24.8500306 ], [ 121.1079556, 24.8520745 ], [ 121.1069036, 24.8555075 ], [ 121.1069733, 24.8587065 ], [ 121.1069361, 24.8608263 ], [ 121.106956, 24.863034 ], [ 121.1070028, 24.8659618 ], [ 121.106363, 24.86734 ], [ 121.1043508, 24.8711246 ], [ 121.1028343, 24.8727397 ], [ 121.0995472, 24.8758186 ], [ 121.0947354, 24.8762217 ], [ 121.0916087, 24.8766585 ], [ 121.090316, 24.876479 ], [ 121.0866466, 24.8757743 ], [ 121.0859982, 24.8752826 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627783", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.063058, 24.8327612 ], [ 121.0629155, 24.8324689 ], [ 121.062395, 24.8315643 ], [ 121.0615895, 24.8302884 ], [ 121.0603366, 24.828398 ], [ 121.0617823, 24.8275601 ], [ 121.0602158, 24.8264534 ], [ 121.05928, 24.8265925 ], [ 121.059003, 24.8266411 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627784", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0857061, 24.8755557 ], [ 121.0863455, 24.875963 ], [ 121.0899322, 24.8770948 ], [ 121.0912282, 24.8769758 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627785", "power": "line", "wires": "double", "cables": "6", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0439128, 24.8102797 ], [ 121.0492436, 24.8118203 ], [ 121.051774, 24.8125086 ], [ 121.0568822, 24.8138991 ], [ 121.0604291, 24.8150993 ], [ 121.0625809, 24.8158294 ], [ 121.0666877, 24.8172132 ], [ 121.0726167, 24.8192902 ], [ 121.0765166, 24.820488 ], [ 121.0795655, 24.8215224 ], [ 121.0818944, 24.8223014 ], [ 121.0844538, 24.8231926 ], [ 121.0872835, 24.8240725 ], [ 121.0916972, 24.8255558 ], [ 121.0944652, 24.826483 ], [ 121.0956458, 24.8269219 ], [ 121.09742, 24.8274791 ], [ 121.0995798, 24.8280822 ], [ 121.1019135, 24.8287185 ], [ 121.1033282, 24.8291167 ], [ 121.1039745, 24.8292987 ], [ 121.1061635, 24.8299246 ], [ 121.1082432, 24.8305555 ], [ 121.1104071, 24.8311552 ], [ 121.1124882, 24.8317457 ], [ 121.1166412, 24.8330134 ], [ 121.1196648, 24.8339742 ], [ 121.1223894, 24.8345648 ], [ 121.1252165, 24.8352522 ], [ 121.129112, 24.8364238 ], [ 121.1309858, 24.8369387 ], [ 121.1328963, 24.8375148 ], [ 121.1373813, 24.8387875 ], [ 121.1414737, 24.8399454 ], [ 121.1440406, 24.840208 ], [ 121.1473174, 24.8390577 ], [ 121.1494856, 24.8370002 ], [ 121.1520749, 24.8346086 ], [ 121.1544906, 24.832351 ], [ 121.1571653, 24.829843 ], [ 121.1608319, 24.8263636 ], [ 121.1626222, 24.8253408 ], [ 121.1642783, 24.8240798 ], [ 121.1699348, 24.8203003 ], [ 121.1719191, 24.8190175 ], [ 121.1735026, 24.817974 ], [ 121.175126, 24.8165499 ], [ 121.1765133, 24.8152942 ], [ 121.1783844, 24.8135587 ], [ 121.1807927, 24.8113463 ], [ 121.1851278, 24.811315 ], [ 121.1876277, 24.8129035 ], [ 121.1906224, 24.8156212 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627786", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0962379, 24.8781261 ], [ 121.0959219, 24.8767408 ], [ 121.0942245, 24.876399 ], [ 121.0912282, 24.8769758 ], [ 121.0904451, 24.8768119 ], [ 121.086449, 24.8758747 ], [ 121.0858838, 24.8754055 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321627787", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0504783, 24.9013473 ], [ 121.0503796, 24.9010225 ], [ 121.0503842, 24.8997357 ], [ 121.051806, 24.8980384 ], [ 121.0534455, 24.8964023 ], [ 121.0549827, 24.894854 ], [ 121.0569742, 24.8939365 ], [ 121.0589605, 24.8929953 ], [ 121.0610599, 24.8920304 ], [ 121.0632107, 24.8910442 ], [ 121.0653753, 24.8899998 ], [ 121.0674716, 24.8892801 ], [ 121.0699534, 24.8884959 ], [ 121.0721651, 24.8877568 ], [ 121.0738068, 24.8864096 ], [ 121.0755234, 24.8849936 ], [ 121.0784531, 24.8828691 ], [ 121.0799661, 24.8815379 ], [ 121.0823215, 24.8802078 ], [ 121.0851451, 24.8792191 ], [ 121.0869873, 24.8782689 ], [ 121.0861222, 24.8761068 ], [ 121.0855285, 24.8757141 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321629918", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0853629, 24.8758562 ], [ 121.0858495, 24.8762417 ], [ 121.0843052, 24.8778863 ], [ 121.0821564, 24.8786795 ], [ 121.0803943, 24.8793002 ], [ 121.0767591, 24.8802387 ], [ 121.0738163, 24.8812063 ], [ 121.0714092, 24.8819077 ], [ 121.0682491, 24.882983 ], [ 121.0664932, 24.8819424 ], [ 121.0628935, 24.8798565 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321629919", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0363124, 24.8829032 ], [ 121.0400098, 24.8822462 ], [ 121.0418256, 24.8816945 ], [ 121.0438174, 24.8814559 ], [ 121.0461569, 24.8816113 ], [ 121.0487796, 24.8815574 ], [ 121.0509504, 24.8814172 ], [ 121.0524918, 24.8813068 ], [ 121.0555007, 24.8810849 ], [ 121.0580568, 24.8806946 ], [ 121.0607649, 24.8803368 ], [ 121.0622798, 24.8796324 ], [ 121.0645951, 24.8775431 ], [ 121.066824, 24.8761108 ], [ 121.0687722, 24.8753568 ], [ 121.0700986, 24.8751262 ], [ 121.0717665, 24.8748241 ], [ 121.0749543, 24.8742335 ], [ 121.0782751, 24.8733578 ], [ 121.0814634, 24.8726012 ], [ 121.0815883, 24.8737264 ], [ 121.0817476, 24.8744334 ], [ 121.0820086, 24.8750022 ], [ 121.0827787, 24.8747923 ], [ 121.0849146, 24.8765868 ], [ 121.0853956, 24.8761079 ], [ 121.0852132, 24.8759663 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321629920", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0378575, 24.8779987 ], [ 121.0399413, 24.8799177 ], [ 121.0418256, 24.8816945 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "321633264", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.102687, 24.8154429 ], [ 121.1072458, 24.8182518 ], [ 121.1089999, 24.8193439 ], [ 121.1101053, 24.8201151 ], [ 121.1172821, 24.8220619 ], [ 121.1190016, 24.8226424 ], [ 121.1207232, 24.8231212 ], [ 121.1230105, 24.8235654 ], [ 121.130612, 24.8251689 ], [ 121.1345376, 24.8261266 ], [ 121.1368354, 24.8267125 ], [ 121.1389423, 24.8271882 ], [ 121.1415437, 24.8269583 ], [ 121.1451491, 24.8269395 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323019258", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0255656, 24.7180716 ], [ 121.0272264, 24.719838 ], [ 121.026634, 24.7222847 ], [ 121.0242013, 24.7237404 ], [ 121.020235, 24.7259267 ], [ 121.0171632, 24.730418 ], [ 121.0149311, 24.7328539 ], [ 121.0136891, 24.7347507 ], [ 121.0144909, 24.7366379 ], [ 121.0115973, 24.7398589 ], [ 121.0122768, 24.7421425 ], [ 121.0156192, 24.7443388 ], [ 121.0197553, 24.7471323 ], [ 121.0197804, 24.7484188 ], [ 121.0198008, 24.749566 ], [ 121.0228874, 24.7527894 ], [ 121.022782, 24.7566183 ], [ 121.0226113, 24.757733 ], [ 121.0222398, 24.759205 ], [ 121.0213201, 24.7622627 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323413320", "name": "竹北二次變電所", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0138368, 24.8385233 ], [ 121.0136693, 24.8382182 ], [ 121.0141839, 24.8380309 ], [ 121.0143344, 24.8383327 ], [ 121.0138368, 24.8385233 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323454250", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.8242297, 24.5944587 ], [ 120.8249707, 24.5972012 ], [ 120.8246342, 24.5990282 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323475205", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4324227, 23.7879176 ], [ 120.4342582, 23.7859615 ], [ 120.4342729, 23.7843035 ], [ 120.4343438, 23.781496 ], [ 120.434375, 23.7788056 ], [ 120.4344245, 23.7762986 ], [ 120.434488, 23.773562 ], [ 120.4335968, 23.7716467 ], [ 120.4326118, 23.7695379 ], [ 120.4315838, 23.7671509 ], [ 120.4304345, 23.7646361 ], [ 120.4289087, 23.7624611 ], [ 120.4274991, 23.7605852 ], [ 120.4262212, 23.758701 ], [ 120.4247223, 23.7566145 ], [ 120.4233081, 23.7546494 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323475206", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4223948, 23.7532926 ], [ 120.4219657, 23.7526926 ], [ 120.4209622, 23.7512853 ], [ 120.4180414, 23.7521607 ], [ 120.4171359, 23.752454 ], [ 120.4150669, 23.7531786 ], [ 120.4144276, 23.7534098 ], [ 120.413575, 23.7536752 ], [ 120.412728, 23.7540123 ], [ 120.4116342, 23.7544016 ], [ 120.4104943, 23.7547438 ], [ 120.4090046, 23.7553117 ], [ 120.4079145, 23.7556977 ], [ 120.406539, 23.7561747 ], [ 120.4044119, 23.7569259 ], [ 120.4039313, 23.7570759 ], [ 120.4029195, 23.7574484 ], [ 120.4019417, 23.7577905 ], [ 120.4008387, 23.7581664 ], [ 120.3997891, 23.7585422 ], [ 120.3979763, 23.7592398 ], [ 120.3970724, 23.7595245 ], [ 120.3956696, 23.7595417 ], [ 120.3945377, 23.7594926 ], [ 120.3931054, 23.759414 ], [ 120.3919896, 23.75936 ], [ 120.3908256, 23.7592913 ], [ 120.3885376, 23.7592152 ], [ 120.3873709, 23.759144 ], [ 120.3863731, 23.7592103 ], [ 120.3848067, 23.7590237 ], [ 120.3831866, 23.7589231 ], [ 120.3819367, 23.7588985 ], [ 120.3803301, 23.758928 ], [ 120.3786939, 23.7590998 ], [ 120.377039, 23.7592127 ], [ 120.3760037, 23.7592962 ], [ 120.3747082, 23.75936 ], [ 120.3732651, 23.7594435 ], [ 120.3700277, 23.7596595 ], [ 120.3686571, 23.75977 ], [ 120.3675547, 23.7598387 ], [ 120.3660473, 23.7599148 ], [ 120.3641859, 23.760288 ], [ 120.362906, 23.7616314 ], [ 120.3618185, 23.7622606 ], [ 120.3600911, 23.7616995 ], [ 120.3579953, 23.761767 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "323475207", "name": "西螺變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4324522, 23.7880747 ], [ 120.4324879, 23.7879389 ], [ 120.4320446, 23.7875238 ], [ 120.4319227, 23.7881535 ], [ 120.4320955, 23.7882278 ], [ 120.4322872, 23.7884668 ], [ 120.432404, 23.78848 ], [ 120.432474, 23.7880882 ], [ 120.4324522, 23.7880747 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "329134659", "name": "嘉民~斗工線(一進一出雲林)", "power": "line", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5232102, 23.6846404 ], [ 120.5243521, 23.6825862 ], [ 120.5264057, 23.680503 ], [ 120.5276356, 23.6792326 ], [ 120.5285987, 23.677115 ], [ 120.5292163, 23.675604 ], [ 120.5304565, 23.6732335 ], [ 120.531881, 23.6708725 ], [ 120.5329326, 23.6691771 ], [ 120.5339425, 23.6674933 ], [ 120.5345334, 23.6652361 ], [ 120.5369223, 23.664267 ], [ 120.5403444, 23.6638598 ], [ 120.5422258, 23.6626093 ], [ 120.5441919, 23.6613487 ], [ 120.5459642, 23.6614844 ], [ 120.5501994, 23.6617735 ], [ 120.551928, 23.6610914 ], [ 120.5534716, 23.6602894 ], [ 120.5558555, 23.6593102 ], [ 120.5578006, 23.6569063 ], [ 120.5610022, 23.657574 ], [ 120.5635403, 23.6569706 ], [ 120.5659564, 23.6561406 ], [ 120.5688795, 23.6549076 ], [ 120.5717113, 23.6536476 ], [ 120.5747207, 23.6523488 ], [ 120.5770225, 23.6511043 ], [ 120.5798327, 23.6501049 ], [ 120.5835079, 23.6490292 ], [ 120.5862649, 23.6487278 ], [ 120.5889402, 23.6478419 ], [ 120.5918925, 23.6476768 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "329433631", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7450485, 24.3170258 ], [ 121.745813, 24.319915 ], [ 121.7477428, 24.3269672 ], [ 121.7482711, 24.3287277 ], [ 121.750224, 24.335944 ], [ 121.7517632, 24.3371407 ], [ 121.7548853, 24.3395193 ], [ 121.7563806, 24.3415853 ], [ 121.75788, 24.3436939 ], [ 121.760648, 24.3501856 ], [ 121.7614623, 24.3511818 ], [ 121.7626497, 24.3519808 ], [ 121.7637904, 24.3528189 ], [ 121.7650502, 24.3536792 ], [ 121.7686243, 24.3561061 ], [ 121.7704716, 24.357795 ], [ 121.7731344, 24.3606537 ], [ 121.7736279, 24.3613297 ], [ 121.7744323, 24.3624517 ], [ 121.7756338, 24.3633502 ], [ 121.7766893, 24.3641677 ], [ 121.7801467, 24.3705251 ], [ 121.7792761, 24.3726669 ], [ 121.7788017, 24.3739368 ], [ 121.7784445, 24.3747266 ], [ 121.7773257, 24.3792533 ], [ 121.7768702, 24.3815331 ], [ 121.7761307, 24.3847362 ], [ 121.7755707, 24.3873102 ], [ 121.7779421, 24.3904772 ], [ 121.7785858, 24.3943408 ], [ 121.7788914, 24.3961692 ], [ 121.7797723, 24.4014605 ], [ 121.7800196, 24.4029245 ], [ 121.7801633, 24.4049757 ], [ 121.7809708, 24.4086288 ], [ 121.7818674, 24.4139874 ], [ 121.7828526, 24.420113 ], [ 121.7832653, 24.421651 ], [ 121.7837603, 24.4235683 ], [ 121.7850603, 24.4287629 ], [ 121.7874111, 24.4334046 ], [ 121.7905145, 24.4395534 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "329732301", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.6763786, 24.3352081 ], [ 121.6781668, 24.3352637 ], [ 121.683592, 24.3336949 ], [ 121.6841692, 24.3335518 ], [ 121.6916361, 24.3319153 ], [ 121.6945741, 24.331823 ], [ 121.6982945, 24.3308499 ], [ 121.7001356, 24.330152 ], [ 121.7039553, 24.327722 ], [ 121.7042122, 24.3276369 ], [ 121.7109955, 24.3253901 ], [ 121.7114495, 24.3242891 ], [ 121.713612, 24.3238617 ], [ 121.7152207, 24.3221088 ], [ 121.7178373, 24.3207632 ], [ 121.7220355, 24.321479 ], [ 121.7258221, 24.3224948 ], [ 121.7295851, 24.3221954 ], [ 121.7349672, 24.3213145 ], [ 121.7361131, 24.3213874 ], [ 121.7374856, 24.321177 ], [ 121.7399146, 24.3208049 ], [ 121.7450725, 24.3178786 ], [ 121.7450485, 24.3170258 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "330321632", "name": "公園二次配電變電所", "power": "substation", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9778358, 24.8023319 ], [ 120.9782443, 24.8025742 ], [ 120.978136, 24.8027246 ], [ 120.9785009, 24.8029411 ], [ 120.9787424, 24.8026058 ], [ 120.977969, 24.8021469 ], [ 120.9778358, 24.8023319 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "331226666", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.9090248, 24.6596637 ], [ 120.9070202, 24.6598292 ], [ 120.9031968, 24.65781 ], [ 120.9011729, 24.6593272 ], [ 120.9003937, 24.659671 ], [ 120.8973392, 24.6605743 ], [ 120.8955523, 24.6599326 ], [ 120.8918687, 24.6608411 ], [ 120.8906558, 24.6612809 ], [ 120.8883139, 24.6620495 ], [ 120.8861831, 24.6633639 ], [ 120.8847349, 24.6642557 ], [ 120.8831552, 24.6647375 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "333241853", "power": "line", "cables": "6", "voltage": "161000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2721684, 24.8945904 ], [ 121.270255, 24.8923798 ], [ 121.268452, 24.8903091 ], [ 121.2666997, 24.8882992 ], [ 121.265617, 24.8860374 ], [ 121.2644998, 24.8836541 ], [ 121.263361, 24.8812548 ], [ 121.2622191, 24.878863 ], [ 121.2611446, 24.8765616 ], [ 121.259956, 24.8740373 ], [ 121.2587758, 24.8715353 ], [ 121.2574001, 24.8685353 ], [ 121.2565013, 24.8667948 ], [ 121.2552353, 24.86406 ], [ 121.25398, 24.8613436 ], [ 121.2531335, 24.8596106 ], [ 121.2527042, 24.8587319 ], [ 121.2522081, 24.8557076 ], [ 121.25182, 24.8533616 ], [ 121.2513695, 24.8505788 ], [ 121.2508901, 24.8476755 ], [ 121.2502786, 24.8437325 ], [ 121.2498709, 24.8411038 ], [ 121.2494739, 24.8383508 ], [ 121.2490233, 24.8356641 ], [ 121.244481, 24.8343467 ], [ 121.2425323, 24.832409 ], [ 121.2411781, 24.8302753 ], [ 121.2398757, 24.8282549 ], [ 121.2391887, 24.8271719 ], [ 121.2391556, 24.8256145 ], [ 121.2391246, 24.8227209 ], [ 121.2391028, 24.8198688 ], [ 121.2390872, 24.817323 ], [ 121.2408046, 24.8157111 ], [ 121.2412915, 24.8152607 ], [ 121.2428252, 24.8136413 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "334830259", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.2602989, 23.6746446 ], [ 120.2603027, 23.6743801 ], [ 120.2614098, 23.6711619 ], [ 120.2622015, 23.6688007 ], [ 120.2630166, 23.6663572 ], [ 120.2637484, 23.6642427 ], [ 120.2637617, 23.6624974 ], [ 120.2637647, 23.6577738 ], [ 120.2637576, 23.6554067 ], [ 120.2638455, 23.6530353 ], [ 120.2638219, 23.6506561 ], [ 120.2642723, 23.6483487 ], [ 120.2647455, 23.6458659 ], [ 120.265163, 23.643372 ], [ 120.265642, 23.6410499 ], [ 120.2660478, 23.6386638 ], [ 120.266477, 23.636491 ], [ 120.2685573, 23.6345454 ], [ 120.2685811, 23.6316629 ], [ 120.2684441, 23.6293515 ], [ 120.268183, 23.6273858 ], [ 120.2685668, 23.6251153 ], [ 120.2690338, 23.6229431 ], [ 120.2694278, 23.620707 ], [ 120.2696629, 23.6181342 ], [ 120.2699444, 23.6161165 ], [ 120.2701541, 23.6142293 ], [ 120.270471, 23.6118627 ], [ 120.2707337, 23.609797 ], [ 120.2712533, 23.6050834 ], [ 120.271596, 23.60235 ], [ 120.2717681, 23.6003321 ], [ 120.2719569, 23.5982019 ], [ 120.2721854, 23.5958107 ], [ 120.2723907, 23.5934042 ], [ 120.2725612, 23.5911839 ], [ 120.2727621, 23.5880934 ], [ 120.2728826, 23.585813 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "334830263", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.1698307, 23.631025 ], [ 120.1747877, 23.6291338 ], [ 120.1793046, 23.6278801 ], [ 120.1818124, 23.6257262 ], [ 120.1826394, 23.623085 ], [ 120.1834054, 23.6215755 ], [ 120.1848794, 23.6199645 ], [ 120.1868434, 23.6176337 ], [ 120.1892243, 23.6156663 ], [ 120.1920496, 23.6135005 ], [ 120.1944954, 23.6115059 ], [ 120.1940098, 23.6098907 ], [ 120.1971074, 23.6087611 ], [ 120.1977028, 23.6075504 ], [ 120.1978066, 23.6073277 ], [ 120.1996543, 23.6058152 ], [ 120.1999012, 23.6023934 ], [ 120.2035693, 23.6012864 ], [ 120.2064108, 23.6003494 ], [ 120.2086088, 23.5993282 ], [ 120.2113594, 23.5980043 ], [ 120.2135633, 23.5969805 ], [ 120.2165155, 23.5955323 ], [ 120.2155319, 23.5926358 ], [ 120.214565, 23.5897166 ], [ 120.2174721, 23.5876937 ], [ 120.2195245, 23.5855225 ], [ 120.2217603, 23.5832551 ], [ 120.2240543, 23.5818074 ], [ 120.225408, 23.5797552 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "334993339", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1863542, 24.8766038 ], [ 121.1863541, 24.8742234 ], [ 121.185716, 24.873043 ], [ 121.185848, 24.8720289 ], [ 121.1887122, 24.8701048 ], [ 121.1906885, 24.868481 ], [ 121.192188, 24.8674375 ], [ 121.1947, 24.8657547 ], [ 121.1961108, 24.8633932 ], [ 121.1977234, 24.861256 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "335749732", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0290878, 24.7696954 ], [ 121.0313209, 24.7679318 ], [ 121.0337932, 24.7661471 ], [ 121.0360484, 24.7645498 ], [ 121.0414421, 24.7605899 ], [ 121.0440668, 24.7584382 ], [ 121.0476558, 24.7555337 ], [ 121.0531741, 24.7507515 ], [ 121.0540644, 24.7494957 ], [ 121.05601, 24.7483798 ], [ 121.0582035, 24.746036 ], [ 121.0592715, 24.7448948 ], [ 121.0615864, 24.7425637 ], [ 121.0623836, 24.7417609 ], [ 121.0642107, 24.740289 ], [ 121.0662408, 24.7386154 ], [ 121.0682311, 24.7370278 ], [ 121.07071, 24.735122 ], [ 121.0726562, 24.7334732 ], [ 121.0749274, 24.7320682 ], [ 121.0780967, 24.7285981 ], [ 121.0799946, 24.7261218 ], [ 121.0816337, 24.7243522 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "335749752", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.0337932, 24.7661471 ], [ 121.0345912, 24.7668146 ], [ 121.0374685, 24.7675306 ], [ 121.0383371, 24.7695302 ], [ 121.0405321, 24.7718726 ], [ 121.0419783, 24.7732262 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "335898212", "power": "line", "voltage": "161000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2753547, 24.9587667 ], [ 121.275479, 24.9557418 ], [ 121.275714, 24.9531043 ], [ 121.2759403, 24.9501399 ], [ 121.2761764, 24.9472405 ], [ 121.2764231, 24.9442443 ], [ 121.2766484, 24.9412291 ], [ 121.276863, 24.938349 ], [ 121.2771205, 24.9350223 ], [ 121.277276, 24.9330027 ], [ 121.2794269, 24.9300047 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "336804630", "name": "西屯變電所(S/S)", "operator": "台灣電力股份有限公司", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6463535, 24.1847295 ], [ 120.6463645, 24.1843162 ], [ 120.6468419, 24.1843261 ], [ 120.6468271, 24.1847363 ], [ 120.6464984, 24.1847304 ], [ 120.6463535, 24.1847295 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "336958617", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1067022, 24.238427 ], [ 121.1067536, 24.2382902 ], [ 121.1106183, 24.2371524 ], [ 121.1128117, 24.2366034 ], [ 121.1153611, 24.236153 ], [ 121.1180212, 24.2358469 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337066098", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1289515, 23.9855747 ], [ 121.1300483, 23.9851168 ], [ 121.1323875, 23.9821593 ], [ 121.1340153, 23.9792313 ], [ 121.1346812, 23.9769713 ], [ 121.1354796, 23.9762782 ], [ 121.1346525, 23.9754383 ], [ 121.1342982, 23.9758472 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337145639", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5594987, 24.0743148 ], [ 120.5607813, 24.0745045 ], [ 120.5625388, 24.0743157 ], [ 120.564535, 24.0735438 ], [ 120.5672132, 24.0725508 ], [ 120.5698201, 24.070949 ], [ 120.5695317, 24.0688893 ], [ 120.5698097, 24.0670738 ], [ 120.5689887, 24.0650756 ], [ 120.5666902, 24.0631052 ], [ 120.5645048, 24.0612488 ], [ 120.5621433, 24.059225 ], [ 120.5598234, 24.0572277 ], [ 120.5560658, 24.0558597 ], [ 120.5521374, 24.0544376 ], [ 120.5492557, 24.0542455 ], [ 120.5462592, 24.0531259 ], [ 120.5437518, 24.0538085 ], [ 120.5411836, 24.0535658 ], [ 120.5374308, 24.0534863 ], [ 120.5344466, 24.0535998 ], [ 120.5324653, 24.0528873 ], [ 120.5309506, 24.0523699 ], [ 120.529066, 24.0517215 ], [ 120.5271209, 24.0510397 ], [ 120.5252224, 24.0503887 ], [ 120.5227994, 24.0495528 ], [ 120.521341, 24.0490494 ], [ 120.5198616, 24.0489991 ], [ 120.518466, 24.048993 ], [ 120.5177533, 24.0489807 ], [ 120.5168818, 24.0489712 ], [ 120.5160441, 24.0489623 ], [ 120.5160026, 24.0491343 ], [ 120.5163424, 24.0491889 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337148731", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1839247, 24.8263437 ], [ 121.1823405, 24.8303056 ], [ 121.1814698, 24.833288 ], [ 121.1817148, 24.8352657 ], [ 121.1820387, 24.8378015 ], [ 121.1816142, 24.8381369 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337148732", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1923522, 24.8193305 ], [ 121.1921152, 24.8209962 ], [ 121.1910537, 24.8229834 ], [ 121.1899274, 24.8250684 ], [ 121.1888167, 24.8277262 ], [ 121.1880368, 24.8295354 ], [ 121.1867109, 24.8324015 ], [ 121.1857723, 24.834252 ], [ 121.1866772, 24.8361901 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337344863", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1973582, 24.899859 ], [ 121.1970768, 24.8998066 ], [ 121.1955815, 24.8987438 ], [ 121.1943236, 24.8981185 ], [ 121.1943099, 24.8966501 ], [ 121.1939297, 24.8962526 ], [ 121.1939871, 24.895713 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "337458413", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1368634, 22.9753632 ], [ 121.1361006, 22.973247 ], [ 121.1352686, 22.9709744 ], [ 121.1338698, 22.9673753 ], [ 121.132306, 22.9632986 ], [ 121.131197, 22.9604408 ], [ 121.129326, 22.9555407 ], [ 121.1280193, 22.9535897 ], [ 121.1266412, 22.9514893 ], [ 121.12428, 22.947852 ], [ 121.122563, 22.9452382 ], [ 121.1210338, 22.9429081 ], [ 121.1214684, 22.9400789 ], [ 121.1219297, 22.9368963 ], [ 121.1223086, 22.9340466 ], [ 121.1219087, 22.932024 ], [ 121.1217041, 22.9312206 ], [ 121.1215702, 22.9284958 ], [ 121.1211446, 22.9255546 ], [ 121.1200671, 22.9233653 ], [ 121.1191838, 22.9215981 ], [ 121.1177123, 22.9186492 ], [ 121.1167522, 22.9167004 ], [ 121.1134495, 22.9126333 ], [ 121.1109789, 22.9106413 ], [ 121.1090565, 22.9091242 ], [ 121.1072074, 22.9075904 ], [ 121.1050676, 22.9058679 ], [ 121.1026724, 22.9039412 ], [ 121.1004625, 22.9021496 ], [ 121.0982816, 22.8980759 ], [ 121.0969603, 22.8940678 ], [ 121.0965371, 22.8906917 ], [ 121.0963178, 22.88891 ], [ 121.0958109, 22.8849281 ], [ 121.0956719, 22.8838443 ], [ 121.0968927, 22.8809531 ], [ 121.0995511, 22.8760601 ], [ 121.0991457, 22.8647683 ], [ 121.0981827, 22.8600127 ], [ 121.097144, 22.8546206 ], [ 121.0975667, 22.851747 ], [ 121.0980096, 22.8494182 ], [ 121.0982687, 22.8463711 ], [ 121.0987756, 22.8448933 ], [ 121.0991759, 22.8399519 ], [ 121.0993378, 22.8381511 ], [ 121.099433, 22.8356532 ], [ 121.0996444, 22.8323176 ], [ 121.0997634, 22.8306202 ], [ 121.0999549, 22.8274336 ], [ 121.1001162, 22.824632 ], [ 121.0998671, 22.822486 ], [ 121.0996624, 22.8207338 ], [ 121.0994779, 22.8184366 ], [ 121.0992465, 22.8156723 ], [ 121.0990039, 22.812811 ], [ 121.0987555, 22.809775 ], [ 121.0987848, 22.8071564 ], [ 121.099529, 22.8046554 ], [ 121.1009213, 22.8009941 ], [ 121.1018902, 22.7983839 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "338306166", "power": "line", "cables": "6", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6698326, 24.0324281 ], [ 120.6727669, 24.0356115 ], [ 120.674429, 24.0375034 ], [ 120.6756379, 24.0388481 ], [ 120.676818, 24.0406783 ], [ 120.6782132, 24.0428583 ], [ 120.6790421, 24.0432678 ], [ 120.6804437, 24.0463352 ], [ 120.6818443, 24.0485714 ], [ 120.6832648, 24.0507826 ], [ 120.6843149, 24.0524484 ], [ 120.6847987, 24.0531851 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "338471265", "power": "line", "cables": "6", "voltage": "345000", "z_order": 0, "other_tags": { "circuits": "2" } }, "geometry": { "type": "LineString", "coordinates": [ [ 121.7886605, 24.4405952 ], [ 121.7861525, 24.4347412 ], [ 121.7812133, 24.4304587 ], [ 121.7794778, 24.4289785 ], [ 121.7776385, 24.4229936 ], [ 121.777031, 24.4191879 ], [ 121.7767129, 24.416975 ], [ 121.7762707, 24.4137954 ], [ 121.7761738, 24.4073999 ], [ 121.7760072, 24.4051063 ], [ 121.776013, 24.4023315 ], [ 121.7759853, 24.3990072 ], [ 121.7727705, 24.3952879 ], [ 121.7689459, 24.3896231 ], [ 121.7672923, 24.3871724 ], [ 121.7661897, 24.3854846 ], [ 121.7635128, 24.3806276 ], [ 121.7619154, 24.3781714 ], [ 121.7609209, 24.3763022 ], [ 121.7596328, 24.3740845 ], [ 121.7571869, 24.3695778 ], [ 121.7568869, 24.3673643 ], [ 121.7569506, 24.3622622 ], [ 121.7563027, 24.357008 ], [ 121.7561772, 24.3551753 ], [ 121.7555456, 24.3500047 ], [ 121.7552119, 24.3470746 ], [ 121.7553577, 24.345035 ], [ 121.7565338, 24.3405563 ], [ 121.7556275, 24.3378861 ], [ 121.7576962, 24.3311615 ], [ 121.7589457, 24.328338 ], [ 121.759939, 24.326249 ], [ 121.7613473, 24.3233173 ], [ 121.7649035, 24.3191239 ], [ 121.7655205, 24.3150097 ], [ 121.7661369, 24.3106916 ], [ 121.7667234, 24.307164 ], [ 121.766417, 24.306752 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "340040454", "name": "中市一次變電所(P/S)", "operator": "台灣電力公司", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "location": "outdoor", "operator:en": "Taiwan Power Company", "operator:wikidata": "Q711691", "operator:zh": "台灣電力公司", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6210651, 24.1404057 ], [ 120.6213061, 24.1403166 ], [ 120.6213941, 24.1404652 ], [ 120.6216481, 24.140373 ], [ 120.621964, 24.1405811 ], [ 120.6220617, 24.140584 ], [ 120.6221724, 24.1406256 ], [ 120.6225111, 24.1406227 ], [ 120.6226349, 24.1428605 ], [ 120.6216872, 24.1430685 ], [ 120.6210651, 24.1404057 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "341096498", "name": "栗林變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7058079, 24.2298747 ], [ 120.706173, 24.22986 ], [ 120.7061548, 24.2294493 ], [ 120.7059962, 24.229458 ], [ 120.7059999, 24.229593 ], [ 120.7057272, 24.2296063 ], [ 120.7058079, 24.2298747 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "341119373", "power": "line", "voltage": "345000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6058105, 24.1995861 ], [ 120.6037672, 24.1998693 ], [ 120.6013032, 24.2013853 ], [ 120.5983437, 24.2031741 ], [ 120.5951958, 24.2037493 ], [ 120.5913858, 24.2056121 ], [ 120.5900328, 24.2064415 ], [ 120.5883745, 24.2079738 ], [ 120.5861455, 24.2098102 ], [ 120.5831049, 24.210391 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342738462", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5405272, 24.1487872 ], [ 120.5415595, 24.1460337 ], [ 120.5425137, 24.1435155 ], [ 120.5433359, 24.141323 ], [ 120.5437927, 24.1395056 ], [ 120.5446165, 24.1380412 ], [ 120.5456501, 24.1358807 ], [ 120.5466255, 24.1339235 ], [ 120.5483892, 24.1320507 ], [ 120.550002, 24.1303413 ], [ 120.551918, 24.1282807 ], [ 120.5537099, 24.1263893 ], [ 120.557965, 24.1234354 ], [ 120.560548, 24.1223117 ], [ 120.5628991, 24.1212911 ], [ 120.5649884, 24.1203181 ], [ 120.567298, 24.1193573 ], [ 120.5697011, 24.1183456 ], [ 120.5720227, 24.1173744 ], [ 120.5743147, 24.1163946 ], [ 120.5763992, 24.1154688 ], [ 120.5785825, 24.1145792 ], [ 120.5825306, 24.1132364 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342896951", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1297975, 24.7122749 ], [ 121.1300792, 24.7136429 ], [ 121.1301783, 24.7187791 ], [ 121.1302078, 24.7223863 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342955063", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5163247, 24.049349 ], [ 120.5158522, 24.0492444 ], [ 120.515976, 24.0481221 ], [ 120.517734, 24.0468579 ], [ 120.5194943, 24.0455977 ], [ 120.5213152, 24.0442725 ], [ 120.5235686, 24.0426494 ], [ 120.5251264, 24.0415252 ], [ 120.526933, 24.0402215 ], [ 120.5288584, 24.038827 ], [ 120.5292771, 24.0371496 ], [ 120.5297409, 24.0352806 ], [ 120.5302204, 24.0333354 ], [ 120.5307091, 24.0313798 ], [ 120.5311914, 24.0294371 ], [ 120.531667, 24.0275009 ], [ 120.5321613, 24.0255112 ], [ 120.5326347, 24.023528 ], [ 120.5330642, 24.021736 ], [ 120.5336046, 24.0195851 ], [ 120.5341284, 24.0174564 ], [ 120.534565, 24.0157277 ], [ 120.5350526, 24.0137906 ], [ 120.5355643, 24.0116862 ], [ 120.5360749, 24.0096447 ], [ 120.5365069, 24.0078174 ], [ 120.5369973, 24.0058137 ], [ 120.538965, 24.0055329 ], [ 120.5410525, 24.0052475 ], [ 120.5430756, 24.0052569 ], [ 120.5453553, 24.0056831 ], [ 120.5477375, 24.0061162 ], [ 120.5494709, 24.0050004 ], [ 120.5509162, 24.004051 ], [ 120.5524828, 24.004453 ], [ 120.5550447, 24.0050942 ], [ 120.5557805, 24.0052761 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342955064", "name": "彰化一次變電所(P/S)", "power": "substation", "voltage": "161000;69000", "z_order": 0, "other_tags": { "barrier": "wall", "frequency": "60", "location": "outdoor", "substation": "transmission" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.5158187, 24.0489758 ], [ 120.5158416, 24.0489503 ], [ 120.5170383, 24.0489404 ], [ 120.5173569, 24.0490021 ], [ 120.5173838, 24.0489513 ], [ 120.5178621, 24.0489437 ], [ 120.5178653, 24.0500121 ], [ 120.5176562, 24.0500185 ], [ 120.5176486, 24.0511278 ], [ 120.5155505, 24.0511281 ], [ 120.5155128, 24.0510955 ], [ 120.5158187, 24.0489758 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342959322", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4794328, 24.0751217 ], [ 120.4805236, 24.0746286 ], [ 120.4829706, 24.0749695 ], [ 120.48542, 24.0753104 ], [ 120.4881855, 24.0756782 ], [ 120.488309, 24.0757061 ], [ 120.4908201, 24.0762735 ], [ 120.4937459, 24.0768739 ], [ 120.496364, 24.0770166 ], [ 120.498669, 24.077968 ], [ 120.5008903, 24.0780053 ], [ 120.5039411, 24.0781747 ], [ 120.5061911, 24.0780958 ], [ 120.5094114, 24.0782003 ], [ 120.5121112, 24.0774664 ], [ 120.5147605, 24.0768484 ], [ 120.5169757, 24.0764027 ], [ 120.5191923, 24.0764218 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342959323", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4709793, 24.0767921 ], [ 120.4702791, 24.0749207 ], [ 120.4695639, 24.0730736 ], [ 120.4697543, 24.070844 ], [ 120.4699829, 24.0682146 ], [ 120.4702293, 24.0652885 ], [ 120.4703846, 24.0635353 ], [ 120.4706083, 24.0609681 ], [ 120.471005, 24.0590508 ], [ 120.4713761, 24.0572599 ], [ 120.4741892, 24.056761 ], [ 120.4768706, 24.0570398 ], [ 120.4793286, 24.0573043 ], [ 120.4813586, 24.0575098 ], [ 120.4835725, 24.0577532 ], [ 120.4862557, 24.0580361 ], [ 120.4886636, 24.0573947 ], [ 120.4908259, 24.0568247 ], [ 120.4924805, 24.0555309 ], [ 120.4938272, 24.0544721 ], [ 120.4955863, 24.0530879 ], [ 120.4969715, 24.0520005 ], [ 120.4985684, 24.0507563 ], [ 120.500337, 24.0493606 ], [ 120.5022995, 24.0478503 ], [ 120.5042613, 24.0478597 ], [ 120.5061054, 24.0478503 ], [ 120.5076081, 24.048279 ], [ 120.5089975, 24.0486691 ], [ 120.5113159, 24.0490971 ], [ 120.5136356, 24.0495326 ], [ 120.5157375, 24.0499257 ], [ 120.5162237, 24.0500326 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968366", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4909733, 24.1266714 ], [ 120.49089, 24.126696 ], [ 120.4906976, 24.1263199 ], [ 120.489891, 24.126467 ], [ 120.487563, 24.1259981 ], [ 120.4850715, 24.1251524 ], [ 120.4830395, 24.1244704 ], [ 120.4810996, 24.12348 ], [ 120.4805618, 24.1217058 ], [ 120.479867, 24.1193207 ], [ 120.4791553, 24.1168691 ], [ 120.4784798, 24.114363 ], [ 120.4777453, 24.1119723 ], [ 120.4771018, 24.1103456 ], [ 120.4762081, 24.1080638 ], [ 120.4753421, 24.1058561 ], [ 120.4744899, 24.1036929 ], [ 120.4735744, 24.1013178 ], [ 120.4726856, 24.0990922 ], [ 120.471836, 24.0969135 ], [ 120.4708717, 24.0944624 ], [ 120.4700631, 24.092389 ], [ 120.4691488, 24.0900496 ], [ 120.4683237, 24.0879469 ], [ 120.4674541, 24.0856748 ], [ 120.4665286, 24.083358 ], [ 120.4683545, 24.0806638 ], [ 120.4697153, 24.0786573 ], [ 120.4709793, 24.0767921 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968367", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4910281, 24.1268324 ], [ 120.4909565, 24.1269287 ], [ 120.4905962, 24.1271078 ], [ 120.4897261, 24.1276804 ], [ 120.4881573, 24.1282205 ], [ 120.4858749, 24.1283638 ], [ 120.4831401, 24.1286528 ], [ 120.4829788, 24.1286699 ], [ 120.4802381, 24.1298729 ], [ 120.4780518, 24.1322941 ], [ 120.4764298, 24.1339623 ], [ 120.4748325, 24.1355907 ], [ 120.4732303, 24.1372292 ], [ 120.4715691, 24.1389362 ], [ 120.4699609, 24.1405796 ], [ 120.4684412, 24.1421366 ], [ 120.4664886, 24.1441359 ], [ 120.467392, 24.1465911 ], [ 120.4680789, 24.1484354 ], [ 120.4689625, 24.1508552 ], [ 120.4698033, 24.1531852 ], [ 120.4706899, 24.1555736 ], [ 120.4715051, 24.1577777 ], [ 120.4721375, 24.1595215 ], [ 120.4746683, 24.1613763 ], [ 120.4786488, 24.1642873 ], [ 120.4791745, 24.1646679 ], [ 120.4794379, 24.1648585 ], [ 120.4808019, 24.1658459 ], [ 120.4829059, 24.1673204 ], [ 120.4852456, 24.1689833 ], [ 120.4876628, 24.1700369 ], [ 120.4901942, 24.1711371 ], [ 120.4930325, 24.172378 ], [ 120.4941588, 24.1715125 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968368", "name": "和美變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4909405, 24.1269438 ], [ 120.4913854, 24.1268423 ], [ 120.4911927, 24.1262107 ], [ 120.4909683, 24.1262571 ], [ 120.4908812, 24.1267074 ], [ 120.4909405, 24.1269438 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968369", "name": "伸港變電所(S/S)", "power": "substation", "voltage": "69000", "z_order": 0, "other_tags": { "barrier": "wall", "substation": "distribution" } }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4938104, 24.1710198 ], [ 120.4942248, 24.1709761 ], [ 120.4943043, 24.1716625 ], [ 120.4941846, 24.1716684 ], [ 120.4938351, 24.1713108 ], [ 120.4938104, 24.1710198 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968370", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4794626, 24.075208 ], [ 120.4798144, 24.0759747 ], [ 120.4777808, 24.0767902 ], [ 120.4756585, 24.0768214 ], [ 120.473306, 24.0767962 ], [ 120.4709793, 24.0767921 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "342968371", "power": "line", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.4713761, 24.0572599 ], [ 120.4707332, 24.0550864 ], [ 120.4721768, 24.0534057 ], [ 120.4731338, 24.051381 ], [ 120.47425, 24.0499276 ], [ 120.4752297, 24.0476224 ], [ 120.476308, 24.0473718 ], [ 120.4789544, 24.0470834 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "343195586", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 121.1931492, 24.8198242 ], [ 121.193685, 24.8207519 ], [ 121.1955849, 24.8238395 ], [ 121.1987427, 24.8255994 ], [ 121.2017015, 24.8266844 ], [ 121.2036972, 24.8296554 ], [ 121.2060508, 24.8304127 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "343203312", "power": "line", "wires": "single", "cables": "3", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.7054869, 24.0719186 ], [ 120.7049231, 24.072062 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "343203313", "power": "line", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6933238, 24.0500614 ], [ 120.6909689, 24.0508799 ], [ 120.6887343, 24.0514649 ], [ 120.6867403, 24.0523664 ], [ 120.6847987, 24.0531851 ] ] } },
{ "type": "Feature", "properties": { "osm_id": "343203314", "power": "line", "wires": "single", "cables": "3", "voltage": "69000", "z_order": 0 }, "geometry": { "type": "LineString", "coordinates": [ [ 120.6896808, 24.0769258 ], [ 120.6890671, 24.0774909 ], [ 120.6867517, 24.0810605 ], [ 120.6851846, 24.0835064 ], [ 120.6845504, 24.0844722 ], [ 120.6835431, 24.0859344 ], [ 120.6826473, 24.0873665 ], [ 120.6814491, 24.0891748 ], [ 120.6803408, 24.0908865 ], [ 120.680127, 24.0921835 ], [ 120.6799582, 24.0934284 ], [ 120.6798263, 24.0945784 ], [ 120.6797371, 24.0953938 ], [ 120.6795109, 24.0955363 ], [ 120.6792721, 24.0959485 ], [ 120.6793396, 24.0961338 ], [ 120.6807846, 24.0973939 ], [ 120
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment