| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | geo.hpp | 27 double lon; member in mbgl::LatLng 33 : lat(lat_), lon(lon_) { in LatLng() 37 if (std::isnan(lon)) { in LatLng() 43 if (!std::isfinite(lon)) { in LatLng() 52 double longitude() const { return lon; } in longitude() 54 LatLng wrapped() const { return { lat, lon, Wrapped }; } in wrapped() 57 lon = util::wrap(lon, -util::LONGITUDE_MAX, util::LONGITUDE_MAX); in wrap() 63 const double delta = std::abs(end.lon - lon); in unwrapForShortestPath() 65 if (lon > 0 && end.lon < 0) lon -= util::DEGREES_MAX; in unwrapForShortestPath() 66 else if (lon < 0 && end.lon > 0) lon += util::DEGREES_MAX; in unwrapForShortestPath() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/formulas/ |
| H A D | sjoberg_intersection.hpp | 44 CT & lon, CT & lat) in apply() 49 lon, tan_lat); in apply() 61 CT & lon, CT & tan_lat) in apply_alt() 79 lon, tan_lat); in apply_alt() 87 CT & lon, CT & tan_lat) in apply() 119 lon = lon1; in apply() 127 lon = lon2; in apply() 145 lon = atan2(tan_lon_y, tan_lon_x); in apply() 150 CT const lon_2 = lon > c0 ? lon - pi : lon + pi; in apply() 151 CT const lon_dist1 = (std::max)((std::min)(math::longitude_difference<radian>(lon1, lon), in apply() [all …]
|
| H A D | spherical.hpp | 44 static inline void sph_to_cart3d(T const& lon, T const& lat, T & x, T & y, T & z) in sph_to_cart3d() argument 47 x = cos_lat * cos(lon); in sph_to_cart3d() 48 y = cos_lat * sin(lon); in sph_to_cart3d() 57 calc_t const lon = get_as_radian<0>(point_sph); in sph_to_cart3d() local 60 sph_to_cart3d(lon, lat, x, y, z); in sph_to_cart3d() 71 static inline void cart3d_to_sph(T const& x, T const& y, T const& z, T & lon, T & lat) in cart3d_to_sph() argument 73 lon = atan2(y, x); in cart3d_to_sph() 93 coord_t lon = get<0>(res); in cart3d_to_sph() local 100 >(lon, lat); in cart3d_to_sph() 102 set<0>(res, lon); in cart3d_to_sph()
|
| H A D | vertex_longitude.hpp | 50 CT lon = atan2(B, A); in apply() local 51 return lon + math::pi<CT>(); in apply()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeocircle.cpp | 383 double lon = d->m_center.longitude(); in translate() local 386 lon += degreesLongitude; in translate() 387 lon = QLocationUtils::wrapLong(lon); in translate() 392 if (lon < 0.0) in translate() 393 lon = 180.0; in translate() 395 lon -= 180; in translate() 400 if (lon < 0.0) in translate() 401 lon = 180.0; in translate() 403 lon -= 180; in translate() 406 d->setCenter(QGeoCoordinate(lat, lon)); in translate()
|
| H A D | qwebmercator.cpp | 55 double lon = coord.longitude() / 360.0 + 0.5; in coordToMercator() local 61 return QDoubleVector2D(lon, lat); in coordToMercator()
|
| H A D | qgeorectangle.cpp | 617 double lon = coordinate.longitude(); in contains() local 632 if ((lon < left) || (lon > right)) in contains() 635 if ((lon < left) && (lon > right)) in contains()
|
| H A D | qgeocoordinate_p.h | 72 double *lon, double *lat);
|
| H A D | qgeocoordinate.cpp | 494 double *lon, double *lat) in atDistanceAndAzimuth() argument 513 *lon = qRadiansToDegrees(resultLonRad); in atDistanceAndAzimuth()
|
| H A D | qlocationutils_p.h | 335 double *lon);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/geographic/ |
| H A D | intersection.hpp | 184 set_from_radian<0>(point, lon); in assign() 205 CoordinateType lon; member 542 calc_t lon = 0, lat = 0; in apply() local 551 lon, lat, in apply() 582 sinfo.lon = lon; in apply() 692 CalcT & lon, CalcT & lat, // out in calculate_ip_data() 704 lon = a1_lon; in calculate_ip_data() 713 lon = a1_lon; in calculate_ip_data() 722 lon = a2_lon; in calculate_ip_data() 731 lon = a2_lon; in calculate_ip_data() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/ |
| H A D | tst_map_itemview.qml | 68 ListElement { lat: 11; lon: 31 } 69 ListElement { lat: 12; lon: 32 } 70 ListElement { lat: 13; lon: 33 } 77 longitude: lon 265 ListElement { lat: 11; lon: 31 } 266 ListElement { lat: 12; lon: 32 } 267 ListElement { lat: 13; lon: 33 } 274 longitude: lon 467 testingListModel.append({ lat: 1, lon: 1 }) 476 testingListModel.append({ "lat": 11, "lon": 31 }) [all …]
|
| H A D | tst_map_coordinateanimation.qml | 71 var lon = coord.longitude / 360.0 + 0.5; 78 return {'latitude': lat, 'longitude': lon};
|
| H A D | tst_map_item_details.qml | 305 | | (lat 20, lon 20) | | 447 | | (lat 20, lon 180) | |
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/ |
| H A D | geo.cpp | 24 LatLng::LatLng(const CanonicalTileID& id) : lat(lat_(id.z, id.y)), lon(lon_(id.z, id.x)) { in LatLng() 29 lon(lon_(id.canonical.z, id.canonical.x) + id.wrap * util::DEGREES_MAX) { in LatLng()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopolygon/ |
| H A D | tst_qgeopolygon.cpp | 238 QFETCH(double, lon); in translate() 246 p.translate(lat, lon); in translate() 250 QCOMPARE(coords[i].longitude(), p.path()[i].longitude() - lon ); in translate()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocircle/ |
| H A D | tst_qgeocircle.cpp | 205 QFETCH(double, lon); in translate() 211 c.translate(lat, lon); in translate() 216 c = d.translated(lat, lon); in translate()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopath/ |
| H A D | tst_qgeopath.cpp | 243 QFETCH(double, lon); in translate() 251 p.translate(lat, lon); in translate() 255 QCOMPARE(coords[i].longitude(), p.path()[i].longitude() - lon ); in translate()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/winrt/ |
| H A D | qgeopositioninfosource_winrt.cpp | 528 DOUBLE lon = pos.Longitude; in onPositionChanged() local 541 currentInfo.setCoordinate(QGeoCoordinate(lat, lon, alt)); in onPositionChanged() 543 currentInfo.setCoordinate(QGeoCoordinate(lat, lon)); in onPositionChanged()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/ |
| H A D | tst_coordinate.qml | 260 var lon = p.x 261 return {'latitude': lat, 'longitude': lon};
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/flickrcommon/ |
| H A D | RestModel.qml | 65 "lat=" + coordinate.latitude + "&lon=" + coordinate.longitude;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/ |
| H A D | wa_BE | 107 abday "dim";"lon";/
|
| H A D | ku_TR | 136 "<U00CE>lon";/
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/ |
| H A D | wa_BE | 107 abday "dim";"lon";/
|
| H A D | ku_TR | 136 "<U00CE>lon";/
|