uribo / jpndistrict

🗾 Create Japansese Administration Area Maps
http://uribo.github.io/jpndistrict
Other
22 stars 3 forks source link

東京都の市町村名列に余分な表示 #13

Closed uribo closed 6 years ago

uribo commented 6 years ago

千代田区であるところが千代田区 NAとなっている。

``` r library(jpndistrict) #> Loading required package: jpmesh #> This package provide map data is based on the Digital Map #> 25000(Map Image) published by Geospatial Information Authorityof #> Japan (Approval No.603FY2017 information usage #> ) jpn_pref(13) #> Simple feature collection with 62 features and 4 fields #> geometry type: GEOMETRY #> dimension: XY #> bbox: xmin: 136.0695 ymin: 20.42271 xmax: 153.9863 ymax: 35.89836 #> epsg (SRID): 4326 #> proj4string: +proj=longlat +datum=WGS84 +no_defs #> # A tibble: 62 x 5 #> pref_code prefecture city_code city geometry #> #> 1 13 東京都 13101 千代田区 NA "list(c(139.77297181907, 13… #> 2 13 東京都 13102 中央区 NA "list(c(139.783391737155, 1… #> 3 13 東京都 13103 港区 NA "list(list(c(139.7765456117… #> 4 13 東京都 13104 新宿区 NA "list(c(139.684157228559, 1… #> 5 13 東京都 13105 文京区 NA "list(c(139.744978062483, 1… #> 6 13 東京都 13106 台東区 NA "list(c(139.766636356547, 1… #> 7 13 東京都 13107 墨田区 NA "list(c(139.795082613051, 1… #> 8 13 東京都 13108 江東区 NA "list(list(c(139.8337384053… #> 9 13 東京都 13109 品川区 NA "list(list(c(139.7723871618… #> 10 13 東京都 13110 目黒区 NA "list(c(139.680641020993, 1… #> # ... with 52 more rows jpn_pref("01") #> Simple feature collection with 194 features and 4 fields #> geometry type: GEOMETRY #> dimension: XY #> bbox: xmin: 139.3339 ymin: 41.35158 xmax: 148.8945 ymax: 45.55692 #> epsg (SRID): 4326 #> proj4string: +proj=longlat +datum=WGS84 +no_defs #> # A tibble: 194 x 5 #> pref_code prefecture city_code city geometry #> #> 1 01 北海道 01101 札幌市 中央区 "list(c(141.34233537711, … #> 2 01 北海道 01102 札幌市 北区 "list(c(141.408475641414,… #> 3 01 北海道 01103 札幌市 東区 "list(c(141.447180210209,… #> 4 01 北海道 01104 札幌市 白石区 "list(c(141.462424452852,… #> 5 01 北海道 01105 札幌市 豊平区 "list(c(141.384635947885,… #> 6 01 北海道 01106 札幌市 南区 "list(c(141.098334733372,… #> 7 01 北海道 01107 札幌市 西区 "list(c(141.314841926803,… #> 8 01 北海道 01108 札幌市 厚別区 "list(c(141.47405687199, … #> 9 01 北海道 01109 札幌市 手稲区 "list(c(141.225079549714,… #> 10 01 北海道 01110 札幌市 清田区 "list(c(141.454105171575,… #> # ... with 184 more rows jpn_pref(10) #> Simple feature collection with 35 features and 4 fields #> geometry type: GEOMETRY #> dimension: XY #> bbox: xmin: 138.3969 ymin: 35.98523 xmax: 139.67 ymax: 37.05873 #> epsg (SRID): 4326 #> proj4string: +proj=longlat +datum=WGS84 +no_defs #> # A tibble: 35 x 5 #> pref_code prefecture city_code city geometry #> #> 1 10 群馬県 10201 前橋市 "list(c(139.172684094611, 139.… #> 2 10 群馬県 10202 高崎市 "list(list(c(139.115708014834,… #> 3 10 群馬県 10203 桐生市 "list(list(c(139.443084391511,… #> 4 10 群馬県 10204 伊勢崎市 "list(c(139.254316033831, 139.… #> 5 10 群馬県 10205 太田市 "list(c(139.316540949636, 139.… #> 6 10 群馬県 10206 沼田市 "list(c(139.11429912531, 139.1… #> 7 10 群馬県 10207 館林市 "list(c(139.528065978634, 139.… #> 8 10 群馬県 10208 渋川市 "list(c(138.998789014759, 139.… #> 9 10 群馬県 10209 藤岡市 "list(c(139.082005125722, 139.… #> 10 10 群馬県 10210 富岡市 "list(c(138.924024371062, 138.… #> # ... with 25 more rows ``` Created on 2018-05-22 by the [reprex package](http://reprex.tidyverse.org) (v0.2.0).