Home
last modified time | relevance | path

Searched refs:latitude (Results 1 – 25 of 155) sorted by relevance

1234567

/third_party/grpc/examples/node/dynamic_codegen/route_guide/
Droute_guide_client.js56 feature.location.latitude/COORD_FACTOR + ', ' +
60 feature.location.latitude/COORD_FACTOR + ', ' +
66 latitude: 409146138, property
70 latitude: 0, property
86 latitude: 400000000, property
90 latitude: 420000000, property
98 feature.location.latitude/COORD_FACTOR + ', ' +
149 latitude: lat, property
158 point_senders[i] = pointSender(rand_point.location.latitude,
176 note.location.latitude + ', ' + note.location.longitude);
[all …]
Droute_guide_server.js62 if (feature.location.latitude === point.latitude &&
96 var top = _.max([lo.latitude, hi.latitude]);
97 var bottom = _.min([lo.latitude, hi.latitude]);
105 feature.location.latitude >= bottom &&
106 feature.location.latitude <= top) {
125 var lat1 = toRadians(start.latitude / COORD_FACTOR);
126 var lat2 = toRadians(end.latitude / COORD_FACTOR);
186 return point.latitude + ' ' + point.longitude;
/third_party/boost/boost/geometry/util/
Dnormalize_spheroidal_coordinates.hpp261 CoordinateType& latitude, in apply() argument
264 latitude_convert_if_polar<Units, IsEquatorial>::apply(latitude); in apply()
268 if (math::larger(latitude, constants::half_period())) in apply()
270 latitude = normalize_up(latitude); in apply()
272 else if (math::smaller(latitude, -constants::half_period())) in apply()
274 latitude = normalize_down(latitude); in apply()
278 if (latitude < constants::min_latitude()) in apply()
280 latitude = -constants::half_period() - latitude; in apply()
283 else if (latitude > constants::max_latitude()) in apply()
285 latitude = constants::half_period() - latitude; in apply()
[all …]
/third_party/grpc/examples/ruby/route_guide/
Droute_guide_client.rb32 Point.new(latitude: 409_146_138, longitude: -746_188_906),
33 Point.new(latitude: 0, longitude: 0)
54 lo: Point.new(latitude: 400_000_000, longitude: -750_000_000),
55 hi: Point.new(latitude: 420_000_000, longitude: -730_000_000))
111 location: Point.new(latitude: 0, longitude: 0)),
113 location: Point.new(latitude: 0, longitude: 1)),
115 location: Point.new(latitude: 1, longitude: 0)),
117 location: Point.new(latitude: 1, longitude: 1)),
119 location: Point.new(latitude: 0, longitude: 1))
Droute_guide_server.rb38 lat_a = to_radians.call(point_a.latitude / COORD_FACTOR)
39 lat_b = to_radians.call(point_b.latitude / COORD_FACTOR)
58 lats = [@bounds.lo.latitude, @bounds.hi.latitude]
98 'latitude' => point.latitude }] || ''
113 'latitude' => point.latitude }] || ''
145 'latitude' => n.location.latitude,
/third_party/grpc/examples/cpp/route_guide/
Droute_guide_server.cc61 float lat_1 = start.latitude() / kCoordFactor; in GetDistance()
62 float lat_2 = end.latitude() / kCoordFactor; in GetDistance()
81 if (f.location().latitude() == point.latitude() && in GetFeatureName()
109 long top = (std::max)(lo.latitude(), hi.latitude()); in ListFeatures()
110 long bottom = (std::min)(lo.latitude(), hi.latitude()); in ListFeatures()
114 f.location().latitude() >= bottom && in ListFeatures()
115 f.location().latitude() <= top) { in ListFeatures()
158 if (n.location().latitude() == note.location().latitude() && in RouteChat()
Droute_guide_client.cc51 Point MakePoint(long latitude, long longitude) { in MakePoint() argument
53 p.set_latitude(latitude); in MakePoint()
59 long latitude, long longitude) { in MakeFeature() argument
62 f.mutable_location()->CopyFrom(MakePoint(latitude, longitude)); in MakeFeature()
67 long latitude, long longitude) { in MakeRouteNote() argument
70 n.mutable_location()->CopyFrom(MakePoint(latitude, longitude)); in MakeRouteNote()
107 << feature.location().latitude()/kCoordFactor_ << ", " in ListFeatures()
136 << f.location().latitude()/kCoordFactor_ << ", " in RecordRoute()
172 << " at " << note.location().latitude() << ", " in RouteChat()
182 << " at " << server_note.location().latitude() << ", " in RouteChat()
[all …]
/third_party/grpc/examples/python/route_guide/
Droute_guide_client.py28 def make_route_note(message, latitude, longitude): argument
31 location=route_guide_pb2.Point(latitude=latitude, longitude=longitude))
48 stub, route_guide_pb2.Point(latitude=409146138, longitude=-746188906))
49 guide_get_one_feature(stub, route_guide_pb2.Point(latitude=0, longitude=0))
54 lo=route_guide_pb2.Point(latitude=400000000, longitude=-750000000),
55 hi=route_guide_pb2.Point(latitude=420000000, longitude=-730000000))
Droute_guide_server.py39 lat_1 = start.latitude / coord_factor
40 lat_2 = end.latitude / coord_factor
74 top = max(request.lo.latitude, request.hi.latitude)
75 bottom = min(request.lo.latitude, request.hi.latitude)
79 feature.location.latitude >= bottom and
80 feature.location.latitude <= top):
/third_party/grpc/examples/python/multiplex/
Dmultiplex_client.py31 def make_route_note(message, latitude, longitude): argument
34 location=route_guide_pb2.Point(latitude=latitude, longitude=longitude))
52 route_guide_pb2.Point(latitude=409146138, longitude=-746188906))
54 route_guide_pb2.Point(latitude=0, longitude=0))
59 lo=route_guide_pb2.Point(latitude=400000000, longitude=-750000000),
60 hi=route_guide_pb2.Point(latitude=420000000, longitude=-730000000))
Dmultiplex_server.py41 lat_1 = start.latitude / coord_factor
42 lat_2 = end.latitude / coord_factor
82 top = max(request.lo.latitude, request.hi.latitude)
83 bottom = min(request.lo.latitude, request.hi.latitude)
87 feature.location.latitude >= bottom and
88 feature.location.latitude <= top):
/third_party/grpc/examples/node/static_codegen/route_guide/
Droute_guide_client.js46 var latitude = feature.getLocation().getLatitude();
50 latitude/COORD_FACTOR + ', ' + longitude/COORD_FACTOR);
53 latitude/COORD_FACTOR + ', ' + longitude/COORD_FACTOR);
113 location.setLatitude(value.location.latitude);
177 latitude: 0, property
183 latitude: 0, property
189 latitude: 1, property
195 latitude: 0, property
203 note.location.latitude + ', ' + note.location.longitude);
207 location.setLatitude(note.location.latitude);
/third_party/boost/boost/geometry/strategies/
Dnormalize.hpp55 CoordinateType const& latitude, in apply()
67 >::apply(longitude, latitude, point_in, point_out); in apply()
88 CoordinateType const& latitude, in apply()
100 >::apply(longitude, latitude, point_in, point_out); in apply()
109 CoordinateType const& latitude, in apply()
116 >(latitude)); in apply()
121 >::apply(longitude, latitude, point_in, point_out); in apply()
134 in_coordinate_type latitude = geometry::get<1>(point_in); in apply() local
141 >(longitude, latitude); in apply()
146 >::apply(longitude, latitude, point_in, point_out); in apply()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dpolar_coordinates.inl17 asin(tmp.y), // latitude
28 T const latitude(polar.x); local
32 cos(latitude) * sin(longitude),
33 sin(latitude),
34 cos(latitude) * cos(longitude));
/third_party/boost/libs/geometry/test/formulas/
Ddirect_accuracy.cpp54 double latitude(1.0 * i); in test_main() local
64 GeographicLibWGS84.Inverse(0.0, 0.0, latitude, longitude, distance_m, azimuth, azi2); in test_main()
69 BOOST_CHECK_CLOSE(latitude, lat2k, 140 * CALCULATION_TOLERANCE); in test_main()
76 BOOST_CHECK_CLOSE(latitude, results_6.lat2, 220 * CALCULATION_TOLERANCE); in test_main()
86 BOOST_CHECK_CLOSE(latitude, results_8.lat2, 220 * CALCULATION_TOLERANCE); in test_main()
/third_party/boost/libs/geometry/test/test_geometries/
Dcustom_lon_lat_point.hpp28 CoordinateType longitude, latitude; member
68 return (Dimension == 0) ? p.longitude : p.latitude; in get()
75 ( Dimension == 0 ? p.longitude : p.latitude ) = value; in set()
86 CoordinateType longitude, latitude; member
126 return (Dimension == 0) ? p.longitude : p.latitude; in get()
/third_party/grpc/examples/objective-c/route_guide/
DViewControllers.m37 NSString *verticalDirection = self.latitude >= 0 ? @"N" : @"S";
40 [NSString stringWithFormat:@"%.02f%@ %.02f%@", abs(self.latitude) / 1E7f, verticalDirection,
48 latitude:(float)latitude
54 latitude:(float)latitude
58 note.location.latitude = (int32_t)latitude * 1E7;
103 point.latitude = 409146138;
160 rectangle.lo.latitude = 405E6;
162 rectangle.hi.latitude = 410E6;
273 location.latitude = [((NSNumber *)feature[@"location"][@"latitude"]) intValue];
323 [RTGRouteNote noteWithMessage:@"First message" latitude:0 longitude:0],
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dastro.h88 latitude = lat;
99 latitude = lat; in set()
115 double latitude; variable
317 CalendarAstronomer(double longitude, double latitude);
/third_party/skia/third_party/externals/icu/source/i18n/
Dastro.h88 latitude = lat;
99 latitude = lat; in set()
115 double latitude; variable
317 CalendarAstronomer(double longitude, double latitude);
/third_party/node/deps/icu-small/source/i18n/
Dastro.h88 latitude = lat;
99 latitude = lat; in set()
115 double latitude; variable
317 CalendarAstronomer(double longitude, double latitude);
/third_party/icu/icu4c/source/i18n/
Dastro.h88 latitude = lat;
99 latitude = lat; in set()
115 double latitude; variable
317 CalendarAstronomer(double longitude, double latitude);
/third_party/python/Lib/
Dantigravity.py7 def geohash(latitude, longitude, datedow): argument
17 print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))
/third_party/jsframework/runtime/main/extend/systemplugin/
Dgeolocation.js20 latitude: '121.61934', property
49 data.latitude = getRandomArbitrary(121, 122)
/third_party/boost/libs/serialization/example/
Ddemo_xml.hpp74 gps_position latitude; member in bus_stop
80 ar & BOOST_SERIALIZATION_NVP(latitude); in serialize()
86 latitude(_lat), longitude(_long) in bus_stop()
98 return os << bs.latitude << bs.longitude << ' ' << bs.description();
Ddemo_gps.hpp74 gps_position latitude; member in bus_stop
80 ar & BOOST_SERIALIZATION_NVP(latitude); in serialize()
86 latitude(_lat), longitude(_long) in bus_stop()
98 return os << bs.latitude << bs.longitude << ' ' << bs.description();

1234567