]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/geometry/test/algorithms/length/linestring_cases.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / geometry / test / algorithms / length / linestring_cases.hpp
1 // Boost.Geometry
2 // Unit Test
3
4 // Copyright (c) 2016 Oracle and/or its affiliates.
5
6 // Contributed and/or modified by Vissarion Fysikopoulos, on behalf of Oracle
7
8 // Use, modification and distribution is subject to the Boost Software License,
9 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
10 // http://www.boost.org/LICENSE_1_0.txt)
11
12 #ifndef LINESTRING_CASES_HPP
13 #define LINESTRING_CASES_HPP
14
15 #include <string>
16
17 static std::string Ls_data_geo[] = {"LINESTRING(0 90,1 80,1 70)",
18 "LINESTRING(0 90,1 80,1 80,1 80,1 70,1 70)",
19 "LINESTRING(0 90,1 80,1 79,1 78,1 77,1 76,1 75,1 74,\
20 1 73,1 72,1 71,1 70)"};
21
22 static std::string Ls_data_sph[] = {"LINESTRING(0 0,180 0,180 180)",
23 "LINESTRING(0 0,180 0,180 0,180 0,180 180,180 180)",
24 "LINESTRING(0 0,180 0,180 10,180 20,180 30,180 40,180 50,180 60,\
25 180 70,180 80,180 90,180 100,180 110,180 120,180 130,\
26 180 140,180 150,180 160,180 170,180 180)"};
27
28 #endif // LINESTRING_CASES_HPP