Skip to content
Snippets Groups Projects
Commit 51e64bd4 authored by Simantini Shinde's avatar Simantini Shinde
Browse files

Added boundary data into the datasources

parent 7dfd7ffc
No related tags found
1 merge request!21Added boundary data into the datasources
## Terms of Use
Using the content on this website
Information made available on this website (hereinafter referred to as “Content”) may be freely used, copied, publicly transmitted, translated or otherwise modified on condition that the user complies with provisions 1) to 6) below. Commercial use of Content is also permitted.
Note, however, that numerical data and data in Simple tables, graphs, and so forth are not subject to copyright. Accordingly the terms of use does not apply to such data, and said data may be used freely.
Use of the Content constitutes agreement by the user with these terms of use for using the Content described herein (hereinafter referred to as “Terms of Use”).
1) Source citation
a. The user must cite the source when using the Content. Sources should be cited in the following manner:
(Examples of source citation)
Source: Portal Site of Official Statistics of [Japan website](https://www.e-stat.go.jp/)
Source: XX Survey (Ministry A)
b. If you have edited the Content for use, you must include a statement expressing that the content has been edited, in addition to the abovementioned source citation, but not in any way that making public or using edited information in a format that may be misconstrued as having been created by the Government of Japan (or its ministries and/or agencies).
(Example of citation when using edited content)
Created by editing the XX Survey (Ministry A)
Created by Company YY based on XX Survey (Ministry A)
2) No infringement of third party rights
a. In some cases, a third party (refers to a party other than the state. Hereinafter referred to as “Third Party”) may hold copyrights or other rights to a part of the Content. For Content where a Third Party holds copyrights or other rights (e.g. portrait rights in a photograph, publicity rights etc.), it is the responsibility of the user to obtain consent for use from the Third Party unless there is explicit indication that the rights have already been cleared.
b. If a Third Party holds rights to a part of the Content, said fact may be directly or indirectly stated or indicated through source citations, but in some cases the part of the Content to which the Third Party holds the rights may not be clear or may not be explicitly stated. It is the responsibility of the user to confirm the rights pertaining to use of the Content.
c. The user must comply with the terms and conditions of the source provider for Content obtained through API (Application Programming Interface) links to external databases etc.
d. Even if a Third Party holds copyrights to the Content, some use of the Content, such as quoting, may be allowed without the consent of the copyright holder, under the Copyright Act of Japan.
3) Content where the Terms of Use does not apply
The Terms of Use herein does not apply to the following Content.
a. Symbol mark, Logo, and Character Design which represent the organization or specific business.
b. Content where other terms of use apply with rational and concrete reason.
(Please refer to Notes. Content where other terms of use apply.)
4) Governing law and jurisdiction
a. The Terms of Use shall be governed by and construed in accordance with the laws of Japan.
b. In case of disputes relating to the use of the Content based on the Terms of Use, or the Terms of Use, the user agrees that the exclusive court of first instance shall be the district court with jurisdiction in the place where the organization that has published the disputed Content or Terms of Use is located.
5) Disclaimer
a. The state bears absolutely no responsibility for any action taken by the user involving the use of the Content (including use of information based on edited Content).
b. The Content may be modified, moved or deleted without prior notice.
6) Other
a. The Terms of Use does not limit those types of uses for which, under Copyright Act of Japan, license from the right holders are not required.
b. The Terms of Use was established on January 29, 2016. The Terms of Use is based on the Government of Japan Standard Terms of Use (Version 2.0). The Terms of Use may be modified in the future. If you are already using Content under previous version of the Government of Japan Standard Terms of Use, these terms and conditions will continue to apply.
c. The Terms of Use are compatible with the [Creative Commons Attribution License 4.0](https://creativecommons.org/licenses/by/4.0/legalcode) (hereinafter referred to as the CC License). This means that Content based on the Terms of Use may be used under the CC License in lieu of the Terms of Use.
Notes. Content where other terms of use apply
Please refer to the relevant link(s) below for details
-Use of the logo of the Portal Site of Official Statistics of Japan (e-Stat):
When using the logo of the Portal Site of Official Statistics of Japan (e-Stat), please contact the Statistical Information Systems Division (tel:03-5273-1007)
-Use of the API in the Portal Site of Official Statistics of Japan (e-Stat):
[These Terms of Use (Japanese)](https://www.e-stat.go.jp/api/agreement/) shall apply to the use of the API in the Portal Site of Official Statistics of Japan (e-Stat).
-Use of the GIS in the Portal Site of Official Statistics of Japan (e-Stat):
[These Terms of Use (Japanese)](https://www.e-stat.go.jp/gis-terms) shall apply to the use of the GIS in the Portal Site of Official Statistics of Japan (e-Stat).
Date of downloading of the TERMS OF USE: 4/02/2021
Website, this document was reproduced from: https://www.e-stat.go.jp/en/terms-of-use
# e-Stat 2020 National Census Small Area Boundaries (JGD2000) for Japan
This dataset contains boundaries for small area (i.e. administrative units) of Japan.
## Description
This is a collection of boundaries for the administrative units (Prefectures, municipalities, sub-municipalities, neighborhoods) in Japan , updated in the year 2020. These boundaries are given for the national census surveyed in the year 2020. They are in JGD2000 projections.
More detailed information can be found in the official datasource:
[e-Stat: 2020 Japanese National Census Small Area Boundaries](https://www.e-stat.go.jp/gis/statmap-search?page=1&type=2&aggregateUnitForBoundary=A&toukeiCode=00200521&toukeiYear=2020&serveyId=A002005212020&coordsys=1&format=shape&datum=2000).
## License
See a human-readable summary of the terms of use
[here](https://www.e-stat.go.jp/en/terms-of-use).
Read the original datasource terms of use statement [here](./LICENSE).
See [this file](./japan_statistics_terms_of_use_screenshot.pdf) for
a PDF of the license generated on 4th February 2021.
## Source
Portal Site of Official Statistics of Japan website ([e-Stat: 2020 Japanese National Census Small Area Boundaries](https://www.e-stat.go.jp/gis/statmap-search?page=1&type=2&aggregateUnitForBoundary=A&toukeiCode=00200521&toukeiYear=2020&serveyId=A002005212020&coordsys=1&format=shape&datum=2000))
## Dependencies
- [wget](https://www.gnu.org/software/wget/)
## Download data
Execute [download.sh](./download_commercial.sh)
Source diff could not be displayed: it is too large. Options to address this: view the blob.
#!/bin/bash
# Set the pathname to store the boundary data
path="boundary_data"
# Check if `boundary_data` directory already exists; If does not exist create it.
if [[ -d "$path" ]]
then
echo "Directory exists"
else
mkdir "$path"
fi
# Change to `boundary_data` directory
cd "$path"
# Boundaries for National Census of small area (i.e. Prefectures, municipalities and sub-municipalities)
wget -i ../boundary_urls.txt
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment