point_geographic_with_wrong_units.cpp 672 B

1234567891011121314151617181920212223242526272829
  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/point.hpp>
  10. #include <boost/geometry/geometries/concepts/check.hpp>
  11. namespace bg = boost::geometry;
  12. int main()
  13. {
  14. bg::concepts::check
  15. <
  16. bg::model::point<double, 2, bg::cs::geographic<int> >
  17. >();
  18. return 0;
  19. }