⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jdtoxs.bas

📁 反算坐标 求得距离及方位角
💻 BAS
字号:
Attribute VB_Name = "Module1"

Public Function Jdtoxs(jd As Single) As Single
    Jdtoxs = Int(jd) + ((jd * 100 - Int(jd * 100)) / 60 + (jd - Int(jd) - (jd * 100 - Int(jd * 100)) / 100)) / 0.6
End Function

Public Function Xstojd(xs As Single) As Single
   Xstojd = Int(xs) + Int((xs - Int(xs)) * 60) / 100 + (((xs - Int(xs)) * 60) - Int((xs - Int(xs)) * 60)) * 60 / 10000
End Function

Public Function fwj(CZX As Single, CZY As Single, DXS As Single, DXY As Single) As Single
   
End Function

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -