Created
October 13, 2017 06:13
-
-
Save tilfin/c35d3ee0545b16059860c849da60a114 to your computer and use it in GitHub Desktop.
スプレッドシートで緯度経度差から距離を算出する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
差の距離をキロメートルで | |
``` | |
=sqrt(power((<緯度1>-<緯度2>)/0.0111, 2)+power((<経度1>-<経度2>)/0.0091, 2))*1000 | |
``` | |
多分 Excel も同じ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment