Home
last modified time | relevance | path

Searched refs:lon_m (Results 1 – 12 of 12) sorted by relevance

/dports/databases/xapian-core/xapian-core-1.4.18/geospatial/
H A Dgeoencode.cc146 double lon_m = (tmp & 0xf) * 4; in decode() local
151 lon_m += (tmp >> 4) & 3; in decode()
168 lon_m += lon_s / 60.0; in decode()
172 lon_ref += lon_m / 60.0; in decode()
/dports/astro/p5-Astro-Sunrise/Astro-Sunrise-0.99/t/
H A D04basic.t43 …my ($yyyy, $mm, $dd, $loc, $lat_d, $lat_m, $lat_x, $lon_d, $lon_m, $lon_x, $alt, $upper_limb, $exp…
60 $long = sprintf( "%.3f", $lon_d + ( $lon_m / 60 ) );
63 $long = sprintf( "%.3f", -( $lon_d + ( $lon_m / 60 ) ) );
H A D14precise.t44 …my ($yyyy, $mm, $dd, $loc, $lat_d, $lat_m, $lat_x, $lon_d, $lon_m, $lon_x, $alt, $upper_limb, $pol…
62 $long = sprintf( "%.3f", $lon_d + ( $lon_m / 60 ) );
65 $long = sprintf( "%.3f", -( $lon_d + ( $lon_m / 60 ) ) );
H A D05polar.t53 …my ($yyyy, $mm, $dd, $loc, $lat_d, $lat_m, $lat_x, $lon_d, $lon_m, $lon_x, $alt, $upper_limb, $pol…
71 $long = sprintf( "%.3f", $lon_d + ( $lon_m / 60 ) );
74 $long = sprintf( "%.3f", -( $lon_d + ( $lon_m / 60 ) ) );
/dports/net/linknx/linknx-0.0.1.32/src/
H A Dsuncalc.h102 void getCoord(double *lon, double *lat) { *lon = lon_m; *lat = lat_m; }; in getCoord()
104 bool isEmpty() { return lon_m==0 && lat_m==0; }; in isEmpty()
106 double lon_m, lat_m;
H A Dsuncalc.cpp618 pConfig->GetAttributeOrDefault("lon", &lon_m, 0); in importXml()
624 pConfig->SetAttribute("lon", lon_m); in exportXml()
645 LocationInfo::LocationInfo() : lon_m(0), lat_m(0) in LocationInfo()
/dports/misc/heyu2/heyu-2.10/
H A Dsun.c401 int sunmode, int offset, int timemode, int lat_d, int lat_m, int lon_d, int lon_m ) in display_sun_table_wide() argument
440 longitude = (lon_d < 0) ? (double)lon_d - (double)lon_m / 60. : in display_sun_table_wide()
441 (double)lon_d + (double)lon_m / 60. ; in display_sun_table_wide()
453 longitude < 0 ? "W" : "E", abs(lon_d), abs(lon_m)); in display_sun_table_wide()
583 int sunmode, int offset, int timemode, int lat_d, int lat_m, int lon_d, int lon_m ) in display_sun_table() argument
623 longitude = (lon_d < 0) ? (double)lon_d - (double)lon_m / 60. : in display_sun_table()
624 (double)lon_d + (double)lon_m / 60. ; in display_sun_table()
653 longitude < 0 ? "W" : "E", abs(lon_d), abs(lon_m)); in display_sun_table()
H A Dconfig.c4199 configp->lon_m = (int)strtol(sp2 + 1, NULL, 10); in parse_longitude()
4203 configp->lon_m *= sign ; in parse_longitude()
4208 (double)configp->lon_d - (double)configp->lon_m/60. : in parse_longitude()
4209 (double)configp->lon_d + (double)configp->lon_m/60.; in parse_longitude()
H A Dprocess.h1197 int lon_m; /* Longitude minutes */ member
H A Dprocess.c8287 configp->lat_d, configp->lat_m, configp->lon_d, configp->lon_m); in write_sun_table()
8291 configp->lat_d, configp->lat_m, configp->lon_d, configp->lon_m); in write_sun_table()
/dports/net/libmateweather/libmateweather-1.26.0/libmateweather/
H A Dmateweather-location.c130 int lat_d, lat_m, lat_s, lon_d, lon_m, lon_s; in unparse_coordinates() local
151 lon_m = (int)(longitude * 60.0) - lon_d * 60; in unparse_coordinates()
152 lon_s = (int)(longitude * 3600.0) - lon_d * 3600 - lon_m * 60; in unparse_coordinates()
156 lon_d, lon_m, lon_s, lon_dir); in unparse_coordinates()
/dports/games/flightgear-data/fgdata/Aircraft/Generic/Human/Nasal/
H A Dwalk.nas410 var lon_m = speed * sin(head_w);
412 var lon3 = lon_m * ERAD_deg / cos(posy1);
531 var lon_m = getprop("sim/walker/key-triggers/speed") * walk_factor * (0 - sin(head_w));
533 var lon3 = lon_m * ERAD_deg / cos(posy1);