blob: 2c3e6d3653c60f323910b7e891b56e19f711a561 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clear
s=100
dsm=3500
adsm=dsm/s
printf("\n distance between stations on map= %0.3f centimeters',adsm)
actuals=50
td=adsm*actuals
printf("\n true distance on ground = %0.3f meters',td)
|