point_spherical_custom_with_wrong_units.cpp 635 B

12345678910111213141516171819202122232425262728
  1. // Boost.Geometry (aka GGL, Generic Geometry Library)
  2. // Unit Test
  3. // Copyright (c) 2014, Oracle and/or its affiliates.
  4. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
  5. // Licensed under the Boost Software License version 1.0.
  6. // http://www.boost.org/users/license.html
  7. #include <test_geometries/custom_lon_lat_point.hpp>
  8. #include <boost/geometry/core/cs.hpp>
  9. #include <boost/geometry/geometries/concepts/check.hpp>
  10. namespace bg = boost::geometry;
  11. int main()
  12. {
  13. bg::concepts::check
  14. <
  15. rw_lon_lat_point<double, bg::cs::spherical_equatorial<double> >
  16. >();
  17. return 0;
  18. }