jp-pref-lookup

Japan Prefecture Code Lookup / 10km grid reverse geocoding

Usage no npm install needed!

<script type="module">
  import jpPrefLookup from 'https://cdn.skypack.dev/jp-pref-lookup';
</script>

README

Japan Prefecture Code Lookup

Node.js CI npm version

  • JIS X 0401: To−Do−Fu−Ken (Prefecture) Identification Code
  • Reverse Geocoding: Japan Integrated Grid Square (10km accuracy)
  • Standalone: jp-pref-lookup.min.js is just 20KB minified, 6KB gzipped

Synopsis

const {Pref} = require("jp-pref-lookup");

// by pair of latitude and longitude
console.log(Pref.lookup({lat: 35.68944, lng: 139.69167})); // => ["13"]

// by comma separated latitude and longitude
console.log(Pref.lookup({ll: "35.3606,138.7278"})); // => ["22", "19"]

// name for prefecture code
console.log(Pref.name("13")); // => "東京都"
console.log(Pref.name(27)); // => "大阪府"

// prefecture code for name
console.log(Pref.code("東京都")); // => "13"
console.log(Pref.code("大阪")); // => "27"

Browser

<script src="https://cdn.jsdelivr.net/npm/jp-pref-lookup/dist/jp-pref-lookup.min.js"></script>
<script>
  navigator.geolocation.getCurrentPosition(function(position) {
    var ll = position.coords.latitude + "," + position.coords.longitude;
    var array = Pref.lookup({ll: ll});
    var name = array && Pref.name(array[0]);
    alert(name);
  });
</script>

GitHub

Reference

See Also

The MIT License (MIT)

Copyright (c) 2018-2021 Yusuke Kawasaki

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.