Home
last modified time | relevance | path

Searched refs:lon (Results 1 – 25 of 27) sorted by relevance

12

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dgeo.hpp27 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 Dsjoberg_intersection.hpp44 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 Dspherical.hpp44 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 Dvertex_longitude.hpp50 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 Dqgeocircle.cpp383 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 Dqwebmercator.cpp55 double lon = coord.longitude() / 360.0 + 0.5; in coordToMercator() local
61 return QDoubleVector2D(lon, lat); in coordToMercator()
H A Dqgeorectangle.cpp617 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 Dqgeocoordinate_p.h72 double *lon, double *lat);
H A Dqgeocoordinate.cpp494 double *lon, double *lat) in atDistanceAndAzimuth() argument
513 *lon = qRadiansToDegrees(resultLonRad); in atDistanceAndAzimuth()
H A Dqlocationutils_p.h335 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 Dintersection.hpp184 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 Dtst_map_itemview.qml68 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 Dtst_map_coordinateanimation.qml71 var lon = coord.longitude / 360.0 + 0.5;
78 return {'latitude': lat, 'longitude': lon};
H A Dtst_map_item_details.qml305 | | (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 Dgeo.cpp24 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 Dtst_qgeopolygon.cpp238 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 Dtst_qgeocircle.cpp205 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 Dtst_qgeopath.cpp243 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 Dqgeopositioninfosource_winrt.cpp528 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 Dtst_coordinate.qml260 var lon = p.x
261 return {'latitude': lat, 'longitude': lon};
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/geoflickr/flickrcommon/
H A DRestModel.qml65 "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 Dwa_BE107 abday "dim";"lon";/
H A Dku_TR136 "<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 Dwa_BE107 abday "dim";"lon";/
H A Dku_TR136 "<U00CE>lon";/

12