Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/uribo/jpndistrict

🗾 Create Japansese Administration Area Maps
https://github.com/uribo/jpndistrict

cran japan map r r-package visualization

Last synced: about 2 months ago
JSON representation

🗾 Create Japansese Administration Area Maps

Lists

README

        

---
output: github_document
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-",
warning = FALSE
)
```

# jpndistrict

[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version/jpndistrict)](https://cran.r-project.org/package=jpndistrict) [![Coverage status](https://codecov.io/gh/uribo/jpndistrict/branch/master/graph/badge.svg)](https://codecov.io/github/uribo/jpndistrict?branch=master)

## Overview

In this package, the administrative area data to be provided uses the National Land Numerical Information. Shinya Uryu is editing and processing this data. Therefore, when preparing a secondary work using this data, it is necessary to follow the term of the National Land Numerical Information.

This package provide map data is based on the Digital Map 25000 (Map Image) published by Geospatial Information Authority of Japan (Approval No.603FY2017 information usage ).

## Installation

~~Install from CRAN.~~

It is currently not available for installation. Please install the next development version.

```{r, eval = FALSE, echo = TRUE}
# install.packages("jpndistrict")
```

For developers, please use the **remotes** package to install via the GitHub repository.

```{r, echo = TRUE, eval = FALSE}
install.packages("remotes")
remotes::install_github("uribo/jpndistrict")
```

## Usage

```{r, echo = TRUE, eval = FALSE}
# Load Package
library(jpndistrict)
```

### Administrative area data

```{r, eval = FALSE, echo = TRUE}
jpn_pref(14)
jpn_pref(14, district = FALSE)
jpn_cities(14, admin_name = "海老名市")
jpn_cities(33, admin_name = c("倉敷市", "笠岡市"))
```

```{r, eval = FALSE, echo = TRUE}
# Return mesh polygons included in administrative areas.
mesh_district(jis_code = "05")
mesh_district(jis_code = 33101)
```

### Administration office data

```{r, eval = FALSE, echo = TRUE}
jpn_admins(jis_code = 33)
jpn_admins(jis_code = c("33101", "33212"))
```

### Reverse geocoding in prefecture and city level

```{r, eval = FALSE, echo = TRUE}
find_pref(longitude = 133.915, latitude = 34.666)
find_city(longitude = 133.915, latitude = 34.666)
# sfg
find_city(geometry = sf::st_point(c(140.112, 36.083)))
```

### City name and code validation

```{r, eval = FALSE, echo = TRUE}
code_validate(jis_code = 33101)
code_reform(jis_code = c(1, "33", "08201"))
```