Data update

This commit is contained in:
Ingy döt Net 2026-02-01 16:33:20 -08:00
parent 5150844a7d
commit 4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions

View file

@ -16,8 +16,8 @@ begin % compute the distance between places using the Haversine formula %
real d;
integer mi, km;
d := distance( 36.12, -86.67, 33.94, -118.4 );
mi := round( d );
km := round( d / 1.609344 );
writeon( i_w := 4, s_w := 0, "distance: ", mi, " km (", km, " mi.)" )
km := round( d );
mi := round( d / 1.609344 );
writeon( i_w := 4, s_w := 0, "distance: ", km, " km (", mi, " mi.)" )
end
end.