LoginSignup
1
2

More than 5 years have passed since last update.

[test]世界測地系を日本測地系に変換する

Last updated at Posted at 2012-03-21

test投稿も兼ねて世界測地系を日本測地系に変換するコード。
逆は調べてない。

test_hoge.php
$lat = $lat + $lat * 0.00010696  - $lng * 0.000017467 - 0.0046020;
$lng = $lng + $lat * 0.000046047 + $lng * 0.000083049 - 0.010041;
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2