/
usr
/
include
/
boost
/
geometry
/
strategies
/
spherical
/
/usr/include/boost/geometry/strategies/spherical
mkdir
upload
Name
Size
Mode
Actions
area.hpp
4959
0644
edit
dl
rm
azimuth.hpp
3489
0644
edit
dl
rm
compare.hpp
9997
0644
edit
dl
rm
densify.hpp
4079
0644
edit
dl
rm
disjoint_box_box.hpp
4633
0644
edit
dl
rm
disjoint_segment_box.hpp
3588
0644
edit
dl
rm
distance_cross_track.hpp
27455
0644
edit
dl
rm
distance_cross_track_box_box.hpp
15443
0644
edit
dl
rm
distance_cross_track_point_box.hpp
13202
0644
edit
dl
rm
distance_haversine.hpp
9669
0644
edit
dl
rm
distance_segment_box.hpp
14187
0644
edit
dl
rm
envelope.hpp
4370
0644
edit
dl
rm
envelope_box.hpp
2130
0644
edit
dl
rm
envelope_multipoint.hpp
13234
0644
edit
dl
rm
envelope_point.hpp
3397
0644
edit
dl
rm
envelope_segment.hpp
14133
0644
edit
dl
rm
expand_box.hpp
5203
0644
edit
dl
rm
expand_point.hpp
8242
0644
edit
dl
rm
expand_segment.hpp
3435
0644
edit
dl
rm
get_radius.hpp
2109
0644
edit
dl
rm
index.hpp
6805
0644
edit
dl
rm
intersection.hpp
39856
0644
edit
dl
rm
io.hpp
1977
0644
edit
dl
rm
line_interpolate.hpp
3131
0644
edit
dl
rm
point_in_point.hpp
5771
0644
edit
dl
rm
point_in_poly_winding.hpp
21516
0644
edit
dl
rm
point_order.hpp
3787
0644
edit
dl
rm
side_by_cross_track.hpp
2864
0644
edit
dl
rm
ssf.hpp
5038
0644
edit
dl
rm
Edit:
/usr/include/boost/geometry/strategies/spherical/point_order.hpp
(3787B)
// Boost.Geometry // Copyright (c) 2019, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Licensed under the Boost Software License version 1.0. // http://www.boost.org/users/license.html #ifndef BOOST_GEOMETRY_STRATEGIES_SPHERICAL_POINT_ORDER_HPP #define BOOST_GEOMETRY_STRATEGIES_SPHERICAL_POINT_ORDER_HPP #include <boost/type_traits/is_same.hpp> #include <boost/geometry/core/tags.hpp> #include <boost/geometry/formulas/spherical.hpp> #include <boost/geometry/strategies/spherical/area.hpp> #include <boost/geometry/strategies/spherical/point_in_point.hpp> #include <boost/geometry/strategies/point_order.hpp> #include <boost/geometry/util/math.hpp> #include <boost/geometry/util/select_calculation_type.hpp> namespace boost { namespace geometry { namespace strategy { namespace point_order { //template <typename CalculationType = void> //struct spherical //{ // typedef azimuth_tag version_tag; // // template <typename Geometry> // struct result_type // { // typedef typename geometry::select_calculation_type_alt // < // CalculationType, Geometry // >::type type; // }; // // template <typename Point> // inline bool apply(Point const& p1, Point const& p2, // typename result_type<Point>::type & azi, // typename result_type<Point>::type & razi) const // { // typedef typename result_type<Point>::type calc_t; // // if (equals_point_point(p1, p2)) // { // return false; // } // // calc_t lon1 = geometry::get_as_radian<0>(p1); // calc_t lat1 = geometry::get_as_radian<1>(p1); // calc_t lon2 = geometry::get_as_radian<0>(p2); // calc_t lat2 = geometry::get_as_radian<1>(p2); // // convert_latitudes<Point>(lat1, lat2); // // formula::result_spherical<calc_t> // res = formula::spherical_azimuth<calc_t, true>(lon1, lat1, lon2, lat2); // // azi = res.azimuth; // razi = res.reverse_azimuth; // // return true; // } // // template <typename Point> // inline typename result_type<Point>::type // apply(Point const& /*p0*/, Point const& /*p1*/, Point const& /*p2*/, // typename result_type<Point>::type const& azi1, // typename result_type<Point>::type const& azi2) const // { // // TODO: support poles // return math::longitude_distance_signed<radian>(azi1, azi2); // } // //private: // template <typename Point> // static bool equals_point_point(Point const& p0, Point const& p1) // { // return strategy::within::spherical_point_point::apply(p0, p1); // } // // template <typename Point, typename CalcT> // static void convert_latitudes(CalcT & lat1, CalcT & lat2) // { // static const bool is_polar = boost::is_same // < // typename geometry::cs_tag<Point>::type, // spherical_polar_tag // >::value; // // if (BOOST_GEOMETRY_CONDITION(is_polar)) // { // CalcT pi_half = math::half_pi<CalcT>(); // lat1 = pi_half - lat1; // lat2 = pi_half - lat2; // } // } //}; template <typename CalculationType = void> struct spherical : strategy::area::spherical<double, CalculationType> { typedef area_tag version_tag; }; namespace services { template <> struct default_strategy<spherical_equatorial_tag> { typedef spherical<> type; }; /*template <> struct default_strategy<spherical_polar_tag> { typedef spherical<> type; };*/ } // namespace services }} // namespace strategy::point_order }} // namespace boost::geometry #endif // BOOST_GEOMETRY_STRATEGIES_SPHERICAL_POINT_ORDER_HPP
Save
cmd:
run