npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

japan-address-distance

v0.1.1

Published

住所または緯度経度からHubenyの公式で距離を計算する日本国内用ライブラリ

Downloads

6

Readme

japan-address-distance

日本の住所間の距離を計算する npm ライブラリです。国土地理院 API で住所を緯度経度に変換し、Hubeny の公式で高精度な距離を算出します。 住所同士だけでなく、既知の緯度経度ペアからの距離計算にも対応しています。

特徴

  • 日本国内の住所表記に特化したジオコーディング
  • Hubeny の公式による数 m 単位の高精度な距離算出
  • 緯度経度ペアからの直接計算に対応(API 呼び出し不要)
  • WGS84 / GRS80 の楕円体を選択可能

インストール

npm install japan-address-distance

クイックスタート

getDistance(from, to, ellipsoid?)

  • from, to: 住所文字列、または { lat: number; lon: number } を受け取ります。
  • ellipsoid: 任意の楕円体指定。"WGS84"(デフォルト)と "GRS80" から選択できます。
  • 戻り値はメートル単位の距離です。住所を指定した場合は内部で国土地理院 API を呼び出します。
import { getDistance } from "japan-address-distance";

// 緯度経度から直接距離を計算する例
const tokyoStation = { lat: 35.681236, lon: 139.767125 };
const osakaStation = { lat: 34.702485, lon: 135.495951 };

const meters = await getDistance(tokyoStation, osakaStation, "GRS80");
console.log(meters); // => 500000 前後

useHubenyDistance(lat1, lon1, lat2, lon2, ellipsoid?)

既知の緯度経度ペア間の距離だけを Hubeny 公式で計算します。

  • lat1, lon1, lat2, lon2: 各地点の緯度・経度(角度は度数法)。
  • ellipsoid: 任意の楕円体指定。省略時は "WGS84"
  • 戻り値はメートル単位。
import { useHubenyDistance } from "japan-address-distance";

const distance = useHubenyDistance(
  35.658034, // 東京タワーの緯度
  139.751599, // 東京タワーの経度
  35.710063, // 東京スカイツリーの緯度
  139.8107, // 東京スカイツリーの経度
  "WGS84"
);

console.log(distance.toFixed(0)); // => 8000 前後

楕円体の指定

楕円体を切り替えることで距離計算の結果を国内測地系(GRS80)とグローバル測地系(WGS84)で使い分けできます。省略時は "WGS84" が利用されます。

ライセンス

MIT License