Home
last modified time | relevance | path

Searched full:latitude (Results 1 – 25 of 2596) sorted by relevance

12345678910>>...104

/aosp_15_r20/external/grpc-grpc/examples/cpp/route_guide/
H A Droute_guide_db.json3 "latitude": 407838351, number
9 "latitude": 408122808, number
15 "latitude": 413628156, number
21 "latitude": 419999544, number
27 "latitude": 414008389, number
33 "latitude": 419611318, number
39 "latitude": 406109563, number
45 "latitude": 416802456, number
51 "latitude": 412950425, number
57 "latitude": 412144655, number
[all …]
/aosp_15_r20/external/grpc-grpc/examples/php/route_guide/
H A Droute_guide_db.json3 "latitude": 407838351, number
9 "latitude": 408122808, number
15 "latitude": 413628156, number
21 "latitude": 419999544, number
27 "latitude": 414008389, number
33 "latitude": 419611318, number
39 "latitude": 406109563, number
45 "latitude": 416802456, number
51 "latitude": 412950425, number
57 "latitude": 412144655, number
[all …]
/aosp_15_r20/external/grpc-grpc-java/examples/src/main/resources/io/grpc/examples/routeguide/
H A Droute_guide_db.json4 "latitude": 407838351, number
10 "latitude": 408122808, number
16 "latitude": 413628156, number
22 "latitude": 419999544, number
28 "latitude": 414008389, number
34 "latitude": 419611318, number
40 "latitude": 406109563, number
46 "latitude": 416802456, number
52 "latitude": 412950425, number
58 "latitude": 412144655, number
[all …]
/aosp_15_r20/external/grpc-grpc/examples/python/multiplex/
H A Droute_guide_db.json3 "latitude": 407838351, number
9 "latitude": 408122808, number
15 "latitude": 413628156, number
21 "latitude": 419999544, number
27 "latitude": 414008389, number
33 "latitude": 419611318, number
39 "latitude": 406109563, number
45 "latitude": 416802456, number
51 "latitude": 412950425, number
57 "latitude": 412144655, number
[all …]
/aosp_15_r20/external/grpc-grpc/examples/python/route_guide/
H A Droute_guide_db.json3 "latitude": 407838351, number
9 "latitude": 408122808, number
15 "latitude": 413628156, number
21 "latitude": 419999544, number
27 "latitude": 414008389, number
33 "latitude": 419611318, number
39 "latitude": 406109563, number
45 "latitude": 416802456, number
51 "latitude": 412950425, number
57 "latitude": 412144655, number
[all …]
/aosp_15_r20/external/python/google-api-python-client/tests/data/
Dlatitude.json3 "id": "latitude:v1",
4 "name": "latitude",
6 "description": "Google Latitude API",
15 "basePath": "/latitude/v1/",
18 "servicePath": "latitude/v1/",
22 "https://www.googleapis.com/auth/latitude": {
56 "default": "latitude#location"
58 "latitude": { object
87 "default": "latitude#locationFeed"
96 "id": "latitude.currentLocation.delete",
[all …]
/aosp_15_r20/external/grpc-grpc/examples/objective-c/route_guide/
H A Droute_guide_db.json3 "latitude": 407838351, number
9 "latitude": 408122808, number
15 "latitude": 413628156, number
21 "latitude": 419999544, number
27 "latitude": 414008389, number
33 "latitude": 419611318, number
39 "latitude": 406109563, number
45 "latitude": 416802456, number
51 "latitude": 412950425, number
57 "latitude": 412144655, number
[all …]
H A 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 …]
/aosp_15_r20/external/geojson-jackson/src/main/java/org/geojson/
H A DLngLatAlt.java16 private double latitude; field in LngLatAlt
23 public LngLatAlt(double longitude, double latitude) { in LngLatAlt() argument
25 this.latitude = latitude; in LngLatAlt()
28 public LngLatAlt(double longitude, double latitude, double altitude) { in LngLatAlt() argument
30 this.latitude = latitude; in LngLatAlt()
39 * @param latitude The latitude.
43 …public LngLatAlt(double longitude, double latitude, double altitude, double... additionalElements)… in LngLatAlt() argument
45 this.latitude = latitude; in LngLatAlt()
69 return latitude; in getLatitude()
72 public void setLatitude(double latitude) { in setLatitude() argument
[all …]
/aosp_15_r20/external/geojson-jackson/src/test/java/org/geojson/
H A DToStringTest.java30 "Point{coordinates=LngLatAlt{longitude=10.0, latitude=20.0, altitude=NaN}} GeoJsonObject{}", in itShouldToStringPoint()
38 …"Point{coordinates=LngLatAlt{longitude=10.0, latitude=20.0, altitude=30.0, additionalElements=[40.… in itShouldToStringPointWithAdditionalElements()
46 …"Point{coordinates=LngLatAlt{longitude=10.0, latitude=20.0, altitude=30.0, additionalElements=[40.… in itShouldToStringPointWithAdditionalElementsAndIgnoreNulls()
55 "Polygon{} Geometry{coordinates=[[LngLatAlt{longitude=10.0, latitude=20.0, altitude=NaN}, " in itShouldToStringPolygon()
56 …+ "LngLatAlt{longitude=30.0, latitude=40.0, altitude=NaN}, LngLatAlt{longitude=10.0, latitude=40.0… in itShouldToStringPolygon()
57 + "LngLatAlt{longitude=10.0, latitude=20.0, altitude=NaN}]]} GeoJsonObject{}", in itShouldToStringPolygon()
67 …assertEquals("MultiPolygon{} Geometry{coordinates=[[[LngLatAlt{longitude=10.0, latitude=20.0, alti… in itShouldToStringMultiPolygon()
68 + "LngLatAlt{longitude=30.0, latitude=40.0, altitude=NaN}, " in itShouldToStringMultiPolygon()
69 + "LngLatAlt{longitude=10.0, latitude=40.0, altitude=NaN}, " in itShouldToStringMultiPolygon()
70 + "LngLatAlt{longitude=10.0, latitude=20.0, altitude=NaN}]], " in itShouldToStringMultiPolygon()
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
Dfirestore_v1.projects.databases.documents.html182 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
183 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
238 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
239 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
261 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
262 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
281 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
282 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
301 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
302 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
[all …]
Dfirestore_v1beta1.projects.databases.documents.html186 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
187 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
250 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
251 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
274 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
275 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
298 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
299 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
334 …# An object that represents a latitude/longitude pair. This is expressed as a pair of doubles to r…
335 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
[all …]
Dstreetviewpublish_v1.photo.html134latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
135 "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
188latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
189 "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
272latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
273 "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
352latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
353 "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
407latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
408 "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
Dstreetviewpublish_v1.photos.html180latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
181 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
250latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
251 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
311latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
312 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
399latitude/longitude pair. This is expressed as a pair of doubles to represent degrees latitude and …
400 … "latitude": 3.14, # The latitude in degrees. It must be in the range [-90.0, +90.0].
/aosp_15_r20/prebuilts/vndk/v33/arm/include/generated-headers/hardware/interfaces/radio/aidl/android.hardware.radio.network-V1-ndk-source/gen/include/aidl/android/hardware/radio/network/
DCellIdentityCdma.h30 int32_t latitude = 0; variable
37 …ationId, longitude, latitude, operatorNames) != std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
40 …tationId, longitude, latitude, operatorNames) < std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
43 …ationId, longitude, latitude, operatorNames) <= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
46 …ationId, longitude, latitude, operatorNames) == std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
49 …tationId, longitude, latitude, operatorNames) > std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
52 …ationId, longitude, latitude, operatorNames) >= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
63 os << ", latitude: " << ::android::internal::ToString(latitude); in toString()
/aosp_15_r20/prebuilts/vndk/v33/arm64/include/generated-headers/hardware/interfaces/radio/aidl/android.hardware.radio.network-V1-ndk-source/gen/include/aidl/android/hardware/radio/network/
DCellIdentityCdma.h30 int32_t latitude = 0; variable
37 …ationId, longitude, latitude, operatorNames) != std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
40 …tationId, longitude, latitude, operatorNames) < std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
43 …ationId, longitude, latitude, operatorNames) <= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
46 …ationId, longitude, latitude, operatorNames) == std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
49 …tationId, longitude, latitude, operatorNames) > std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
52 …ationId, longitude, latitude, operatorNames) >= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
63 os << ", latitude: " << ::android::internal::ToString(latitude); in toString()
/aosp_15_r20/prebuilts/vndk/v33/x86/include/generated-headers/hardware/interfaces/radio/aidl/android.hardware.radio.network-V1-ndk-source/gen/include/aidl/android/hardware/radio/network/
DCellIdentityCdma.h30 int32_t latitude = 0; variable
37 …ationId, longitude, latitude, operatorNames) != std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
40 …tationId, longitude, latitude, operatorNames) < std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
43 …ationId, longitude, latitude, operatorNames) <= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
46 …ationId, longitude, latitude, operatorNames) == std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
49 …tationId, longitude, latitude, operatorNames) > std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
52 …ationId, longitude, latitude, operatorNames) >= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
63 os << ", latitude: " << ::android::internal::ToString(latitude); in toString()
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/generated-headers/hardware/interfaces/radio/aidl/android.hardware.radio.network-V1-ndk-source/gen/include/aidl/android/hardware/radio/network/
DCellIdentityCdma.h30 int32_t latitude = 0; variable
37 …ationId, longitude, latitude, operatorNames) != std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
40 …tationId, longitude, latitude, operatorNames) < std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
43 …ationId, longitude, latitude, operatorNames) <= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
46 …ationId, longitude, latitude, operatorNames) == std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
49 …tationId, longitude, latitude, operatorNames) > std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
52 …ationId, longitude, latitude, operatorNames) >= std::tie(rhs.networkId, rhs.systemId, rhs.baseStat…
63 os << ", latitude: " << ::android::internal::ToString(latitude); in toString()
/aosp_15_r20/frameworks/base/location/java/android/location/
H A DGeocoder.java42 * street address or other description of a location into a (latitude, longitude) coordinate.
43 * Reverse geocoding is the process of transforming a (latitude, longitude) coordinate into a
114 * given latitude and longitude. The returned addresses should be localized for the locale
127 * @param latitude the latitude a point for the search
132 * @throws IllegalArgumentException if latitude or longitude is invalid
139 @FloatRange(from = -90D, to = 90D) double latitude, in getFromLocation()
144 getFromLocation(latitude, longitude, maxResults, listener); in getFromLocation()
150 * given latitude and longitude. The returned addresses should be localized for the locale
158 * @param latitude the latitude a point for the search
162 * @throws IllegalArgumentException if latitude or longitude is invalid
[all …]
/aosp_15_r20/external/s2-geometry-library-java/src/com/google/common/geometry/
H A DS2LatLngRect.java21 * An S2LatLngRect represents a latitude-longitude rectangle. It is capable of
41 /** Construct a rectangle from latitude and longitude intervals. */
101 * Return a latitude-longitude rectangle that contains the edge from "a" to
109 // Check whether the min/max latitude occurs in the edge interior. in fromEdge()
119 // Minimum and maximum latitude are attained at the vertices. in fromEdge()
122 // Minimum/maximum latitude occurs in the edge interior. This affects the in fromEdge()
123 // latitude bounds but not the longitude bounds. in fromEdge()
134 * the latitude bounds do not exceed Pi/2 in absolute value and the longitude
191 * degree latitude line.
215 * Return the center of the rectangle in latitude-longitude space (in general
[all …]
/aosp_15_r20/device/google/cuttlefish/host/commands/cvd_import_locations/unittest/
Dkml_parser_test.cc176 EXPECT_FLOAT_EQ(37.4220033612141, locations[i].latitude); in TEST()
200 EXPECT_FLOAT_EQ(37.4220033612141, locations[i].latitude); in TEST()
222 EXPECT_FLOAT_EQ(37.42228990140251, locations[0].latitude); in TEST()
234 EXPECT_FLOAT_EQ(37.42228990140251, locations[0].latitude); in TEST()
258 EXPECT_FLOAT_EQ(37.42228990140251, locations[0].latitude); in TEST()
261 EXPECT_FLOAT_EQ(39., locations[1].latitude); in TEST()
264 EXPECT_FLOAT_EQ(21.4, locations[2].latitude); in TEST()
277 EXPECT_FLOAT_EQ(37.42228990140251, locations[0].latitude); in TEST()
280 EXPECT_FLOAT_EQ(39., locations[1].latitude); in TEST()
283 EXPECT_FLOAT_EQ(21.4, locations[2].latitude); in TEST()
[all …]
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/location/fudger/
H A DLocationFudger.java174 double latitude = wrapLatitude(coarse.getLatitude()); in createCoarse() local
177 // add offsets - update longitude first using the non-offset latitude in createCoarse()
178 longitude += wrapLongitude(metersToDegreesLongitude(mLongitudeOffsetM, latitude)); in createCoarse()
179 latitude += wrapLatitude(metersToDegreesLatitude(mLatitudeOffsetM)); in createCoarse()
193 int level = cacheCopy.getCoarseningLevel(latitude, longitude); in createCoarse()
194 double[] center = snapToCenterOfS2Cell(latitude, longitude, level); in createCoarse()
195 latitude = center[S2CellIdUtils.LAT_INDEX]; in createCoarse()
202 // note that we quantize the latitude first, since the longitude quantization depends on in createCoarse()
203 // the latitude value and so leaks information about the latitude in createCoarse()
205 latitude = wrapLatitude(Math.round(latitude / latGranularity) * latGranularity); in createCoarse()
[all …]
/aosp_15_r20/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowGeocoder.java35 * <p>{@param latitude} and {@param longitude} are ignored by this implementation, except to check
40 protected List<Address> getFromLocation(double latitude, double longitude, int maxResults) in getFromLocation() argument
43 -90 <= latitude && latitude <= 90, "Latitude must be between -90 and 90, got %s", latitude); in getFromLocation()
55 * <p>{@code latitude} and {@code longitude} are ignored by this implementation, except to check
61 double latitude, double longitude, int maxResults, GeocodeListener listener) in getFromLocation() argument
64 -90 <= latitude && latitude <= 90, "Latitude must be between -90 and 90, got %s", latitude); in getFromLocation()
/aosp_15_r20/external/zxing/zxing.appspot.com/src/main/java/com/google/zxing/web/generator/client/
H A DGeoLocationGenerator.java37 private final TextBox latitude = new TextBox(); field in GeoLocationGenerator
42 latitude.addStyleName(StylesDefs.INPUT_FIELD_REQUIRED); in GeoLocationGenerator()
43 latitude.addChangeHandler(handler); in GeoLocationGenerator()
44 latitude.addKeyPressHandler(keyListener); in GeoLocationGenerator()
62 latitude.setText("0"); in getText()
96 String lat = latitude.getText(); in getLatitudeField()
98 throw new GeneratorException("Latitude is not a correct value."); in getLatitudeField()
102 throw new GeneratorException("Latitude must be in [-90:90]"); in getLatitudeField()
114 table.setText(0, 0, "Latitude"); in getWidget()
115 table.setWidget(0, 1, latitude); in getWidget()
[all …]
/aosp_15_r20/external/grpc-grpc/examples/ruby/route_guide/
H A 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]
69 location['latitude'] >= @lo_lat &&
70 location['latitude'] <= @hi_lat
98 'latitude' => point.latitude }] || ''
113 'latitude' => point.latitude }] || ''
145 'latitude' => n.location.latitude,

12345678910>>...104