1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287
|
2004-07-01 19:34 strk
* source/geom/Geometry.cpp: GeometryFactory argument in Geometry
constructor reverted to its copy-and-destroy semantic.
2004-07-01 19:07 strk
* doc/: .cvsignore, Makefile.am: Added doxygen_docs generation rule
2004-07-01 18:49 strk
* doc/geosDoxygen.conf: re-generated with doxygen 1.2.15
2004-07-01 17:47 cvs
* doc/geosDoxygen.conf: Added doxygen file for better doco
generation.
2004-07-01 16:12 strk
* ChangeLog, NEWS, TODO, doc/example.cpp,
source/algorithm/ConvexHull.cpp,
source/algorithm/InteriorPointArea.cpp, source/geom/Geometry.cpp,
source/geom/GeometryCollection.cpp,
source/geom/GeometryFactory.cpp, source/geom/LineString.cpp,
source/geom/LinearRing.cpp, source/geom/MultiLineString.cpp,
source/geom/MultiPoint.cpp, source/geom/MultiPolygon.cpp,
source/geom/Point.cpp, source/geom/Polygon.cpp,
source/geom/util/GeometryEditor.cpp, source/geomgraph/EdgeRing.cpp,
source/headers/geom.h, source/headers/io.h,
source/headers/noding.h, source/headers/opBuffer.h,
source/headers/opOverlay.h, source/io/WKTReader.cpp,
source/noding/SegmentNodeList.cpp, source/noding/SegmentString.cpp,
source/operation/buffer/BufferBuilder.cpp,
source/operation/buffer/OffsetCurveSetBuilder.cpp,
source/operation/linemerge/EdgeString.cpp,
source/operation/overlay/LineBuilder.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/polygonize/polygonizeEdgeRing.cpp,
source/util/GeometricShapeFactory.cpp:
Geometry constructors come now in two flavors: - deep-copy args
(pass-by-reference) - take-ownership of args (pass-by-pointer)
Same functionality is available through GeometryFactory, including
buildGeometry().
2004-06-30 22:59 strk
* source/: geom/Geometry.cpp, geom/GeometryCollection.cpp,
geomgraph/EdgeRing.cpp, headers/geom.h, headers/geomgraph.h,
headers/geosAlgorithm.h, headers/opBuffer.h, headers/opOverlay.h,
operation/overlay/LineBuilder.cpp,
operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/MinimalEdgeRing.cpp,
operation/overlay/PointBuilder.cpp,
operation/overlay/PolygonBuilder.cpp: Removed GeoemtryFactory copy
from geometry constructors. Enforced const-correctness on
GeometryFactory arguments.
2004-06-28 23:58 strk
* source/geom/Polygon.cpp: Constructors speedup.
2004-06-28 23:11 strk
* source/: geom/GeometryCollection.cpp, geom/LineString.cpp,
geom/LinearRing.cpp, geom/MultiLineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, geom/Point.cpp, geom/Polygon.cpp,
headers/geom.h: Moved getGeometryTypeId() definitions from geom.h
to each geometry module. Added holes argument check in
Polygon.cpp.
2004-06-25 16:26 strk
* tools/geos-config.in: fixed --includes
2004-06-22 18:57 strk
* NEWS: Written down some news
2004-06-22 18:56 strk
* source/headers/: Makefile.am, geos.h: Added geos.h file.
2004-06-22 00:14 strk
* source/headers/.cvsignore: added geos_version.h
2004-06-22 00:13 strk
* TODO: updated
2004-06-22 00:13 strk
* configure.in, source/headers/Makefile.am,
source/headers/geos_version.h.in: Added VERSION defines
2004-06-16 15:13 strk
* TODO, source/geom/BasicCoordinateList.cpp,
source/geom/GeometryFactory.cpp, source/geom/MultiPolygon.cpp,
source/geomgraph/Edge.cpp, source/headers/noding.h,
source/noding/MCQuadtreeNoder.cpp,
source/noding/SegmentNodeList.cpp, source/noding/SegmentString.cpp,
source/noding/nodingSegmentIntersector.cpp: Changed interface of
SegmentString, now copying CoordinateList argument. Fixed memory
leaks associated with this and MultiGeometry constructors. Other
associated fixes.
2004-06-15 23:35 strk
* source/geom/GeometryFactory.cpp: fixed buildGeometry to always
return a newly allocated geometry
2004-06-15 22:42 strk
* doc/example.cpp: updated to respect deep-copy GeometryCollection
interface
2004-06-15 22:38 strk
* source/geom/LineString.cpp: updated to respect deep-copy
GeometryCollection interface
2004-06-15 22:34 strk
* source/geom/MultiPolygon.cpp: updated to respect deep-copy
GeometryCollection interface
2004-06-15 22:30 strk
* source/geom/Polygon.cpp: updated to respect deep-copy
GeometryCollection interface
2004-06-15 22:30 strk
* source/io/WKTReader.cpp: fixed a typo
2004-06-15 22:20 strk
* source/geom/util/GeometryEditor.cpp: updated to respect deep-copy
GeometryCollection interface
2004-06-15 22:13 strk
* source/: operation/overlay/OverlayOp.cpp, io/WKTReader.cpp:
updated to respect deep-copy GeometryCollection interface
2004-06-15 22:10 strk
* source/operation/buffer/BufferBuilder.cpp: updated to respect
deep-copy GeometryCollection interface
2004-06-15 22:07 strk
* source/: geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
headers/geom.h: GeometryCollections constructors make a deep copy
of Geometry vector argument.
2004-06-15 22:01 strk
* source/operation/buffer/BufferBuilder.cpp: Empty geometry
creation call made using NULL instead of newly created empty vector
(will be faster)
2004-06-15 21:24 strk
* tools/geos-config.in: Fixed a bug preventing geos-config from
giving correct version info
2004-06-15 09:40 strk
* source/: noding/SegmentNode.cpp,
planargraph/planarDirectedEdge.cpp: Added missing <stdio.h> include
2004-06-15 09:40 strk
* TODO: Updated
2004-05-28 20:16 ybychkov
* source/geom/PrecisionModel.cpp: Changed rounding method to make
compilable with VC++
2004-05-27 14:09 strk
* source/test/testLeaksBig.xml: added one buffer test
2004-05-27 12:27 strk
* source/noding/: SegmentNodeList.cpp, SegmentString.cpp: Memory
leaks fixed.
2004-05-27 12:26 strk
* source/noding/nodingSegmentIntersector.cpp: set (useless?)
recordIsolated member in constructor
2004-05-27 11:53 strk
* source/headers/indexChain.h:
MonotoneChainOverlapAction::overlap(*) funx made virtual as they
are supposed to be.
2004-05-27 10:40 strk
* source/test/XMLTester.cpp: Fixed a memleak in buffer test.
2004-05-27 10:37 strk
* source/: headers/opBuffer.h,
operation/buffer/OffsetCurveBuilder.cpp: Fixed a bug preventing
OffsetCurveBuilder point list from being reset.
2004-05-26 21:48 strk
* source/operation/buffer/: OffsetCurveBuilder.cpp,
OffsetCurveSetBuilder.cpp: Changed abs() to fabs() when working
with doubles. Used dynamic_cast<> instead of typeid() when JTS
uses instanceof.
2004-05-26 15:12 strk
* source/operation/buffer/BufferBuilder.cpp: Removed try/catch
block from ::buildSubgraphs
2004-05-26 11:50 strk
* source/headers/geomgraph.h: Added comments about
OverlayNodeFactory() ownership in NodeMap and PlanarGraph
constuctors
2004-05-26 11:49 strk
* source/: headers/opBuffer.h, operation/buffer/BufferBuilder.cpp:
PlanarGraph made local to ::buffer instead of Class private.
2004-05-21 16:17 strk
* TODO: updated
2004-05-21 15:58 strk
* source/geom/Geometry.cpp: ::intersection missed to invalidate
geometryCollection inputs
2004-05-21 15:55 strk
* TODO: updated
2004-05-21 15:39 strk
* source/geom/PrecisionModel.cpp: ::makePrecise make use of
nearbyint() now, to be compatible with JTS
2004-05-21 15:37 strk
* source/test/testLeaksBig.xml: first import
2004-05-20 11:14 strk
* TODO: updated
2004-05-19 21:39 ybychkov
* source/geom/PrecisionModel.cpp: Changed rounding method to make
compilable with VC++
2004-05-19 15:40 strk
* source/operation/buffer/OffsetCurveBuilder.cpp: Fixed bug in
::addCircle
2004-05-19 15:18 strk
* source/: geom/BasicCoordinateList.cpp,
geom/PointCoordinateList.cpp, headers/geom.h: made
CoordinateList::toString() a const member function
2004-05-19 15:01 strk
* source/operation/buffer/BufferOp.cpp: avoided assignment operator
calls for BufferBuilder
2004-05-19 14:50 strk
* source/operation/buffer/BufferSubgraph.cpp: Removed all try/catch
blocks transforming stack allocated-vectors to
auto-heap-allocations
2004-05-19 11:57 ybychkov
* source/operation/buffer/OffsetCurveSetBuilder.cpp: Bugfix in
OffsetCurveSetBuilder::addPolygon (JTS 1.4.1)
2004-05-18 15:49 strk
* source/test/XMLTester.cpp: Output made more neat (geometry B is
not printed if not existent). Added support for buffer tests.
2004-05-18 15:15 strk
* source/geom/CoordinateList.cpp: made ::scroll handle already
scrolled vect and more readable
2004-05-18 02:02 ybychkov
* source/: headers/opValid.h, operation/valid/IsValidOp.cpp:
IsValidOp::checkShellNotNested() bugfix from JTS 1.4.1 (not
released yet) has been added.
2004-05-17 23:14 ybychkov
* source/: geom/GeometryCollection.cpp, headers/geom.h: JavaDoc
updated
2004-05-17 23:09 ybychkov
* source/geom/: BasicCoordinateList.cpp, PointCoordinateList.cpp:
toString() performance enhancement
2004-05-17 23:03 ybychkov
* source/: geom/CoordinateList.cpp, headers/geom.h: JavaDoc updated
2004-05-17 14:54 strk
* source/io/markup/MarkupSTL.cpp: Added tab in list of blank chars
2004-05-17 14:53 strk
* source/test/XMLTester.cpp: Expected result string trimmed for
blanks
2004-05-17 14:37 strk
* source/io/StringTokenizer.cpp: Added carriage returns and tabs in
set of blanks chars
2004-05-17 14:36 strk
* source/io/ParseException.cpp: ParseException message made more
readable
2004-05-17 12:45 strk
* source/geom/PrecisionModel.cpp: Fixed bogus FIXED coordinate
rounding
2004-05-17 10:34 strk
* source/operation/overlay/OverlayOp.cpp: reduced stack
allocations, try/catch blocks in ::overlayOp
2004-05-17 09:42 strk
* source/algorithm/CentroidArea.cpp: CentroidArea::add(const
Geometry *geom) uses dynamic_cast
2004-05-17 09:23 strk
* source/geom/Geometry.cpp: ::getCeontroid(): reduced dynamic
allocations, added missing check for isEmpty
2004-05-14 16:47 strk
* source/operation/distance/ConnectedElementLocationFilter.cpp:
Added LinearRing support
2004-05-14 16:45 strk
* source/headers/geomUtil.h: Fixed bogus inheritance of
LinearComponentExtracter
2004-05-14 15:42 strk
* source/: geom/LineSegment.cpp,
geom/util/LinearComponentExtracter.cpp,
geom/util/PointExtracter.cpp, geom/util/PolygonExtracter.cpp,
headers/geomUtil.h, headers/opDistance.h,
operation/distance/ConnectedElementLocationFilter.cpp,
operation/distance/DistanceOp.cpp: DistanceOp bug removed,
cascading errors fixed.
2004-05-14 14:14 strk
* source/: geom/Geometry.cpp, headers/geom.h: const correctness
2004-05-14 14:10 strk
* source/io/WKTReader.cpp: avoided leaks on malformed LinearRing
2004-05-14 11:20 strk
* source/geom/util/: LinearComponentExtracter.cpp,
PointExtracter.cpp, PolygonExtracter.cpp: Mem leaks fixed
2004-05-14 09:19 strk
* source/test/XMLTester.cpp: Changed the algorythm for finding
precisionModel type (current way did not work): now if you specify
a scale precisionModel will be FIXED, otherwise it will be
FLOATING.
2004-05-07 16:15 strk
* source/io/StringTokenizer.cpp: fixed peekNextToken to avoid
incrementing string pointer
2004-05-07 16:13 strk
* source/index/bintree/Bintree.cpp: Fixed segfault in ::insert
2004-05-07 16:12 strk
* source/algorithm/InteriorPointArea.cpp: Fixed segfault in
destructor
2004-05-07 15:23 strk
* source/: io/WKTReader.cpp, test/XMLTester.cpp: Memory leaks
fixed.
2004-05-07 15:04 strk
* source/geom/MultiLineString.cpp: leak removed in
MultiLineString::getBoundary()
2004-05-07 11:05 strk
* source/: geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryFactory.cpp, geom/LineString.cpp,
geom/MultiLineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, headers/geom.h: Some const correctness
added. Fixed bug in GeometryFactory::createMultiPoint to handle
NULL CoordinateList.
2004-05-07 09:57 strk
* source/: geom/Makefile.am, headers/noding.h, headers/opBuffer.h,
noding/SegmentString.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: Added missing
EdgeNodingValidator to build scripts. Changed SegmentString
constructor back to its original form (takes const void *),
implemented local tracking of "contexts" in caller objects for
proper destruction.
2004-05-06 18:30 strk
* source/: headers/indexBintree.h, headers/indexQuadtree.h,
index/bintree/Bintree.cpp, index/quadtree/Quadtree.cpp: Kept track
of newly allocated objects by ensureExtent for Bintree and
Quadtree, deleted at destruction time. doc/example.cpp runs with no
leaks.
2004-05-06 17:54 strk
* source/: headers/noding.h, noding/SegmentNodeList.cpp,
noding/SegmentString.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: SegmentNodeList keeps
track of created splitEdges for later destruction. SegmentString
constructor copies given Label. Buffer operation does no more
leaks for doc/example.cpp
2004-05-06 17:00 strk
* source/: headers/indexStrtree.h,
index/strtree/AbstractSTRtree.cpp, index/strtree/ItemBoundable.cpp,
index/strtree/SIRtree.cpp, index/strtree/STRtree.cpp: Boundable
destructor made virtual. Added vector <AbstractNode *> *nodes
member in AbstractSTRTree, used to keep track of created node to
cleanly delete them at destruction time.
2004-05-06 15:58 strk
* source/index/strtree/STRtree.cpp: leak removed from
createParentBoundablesFromVerticalSlices
2004-05-06 10:59 strk
* source/index/strtree/AbstractSTRtree.cpp: memory leak fixed
2004-05-05 19:42 strk
* source/: headers/indexStrtree.h,
index/strtree/AbstractSTRtree.cpp, index/strtree/SIRtree.cpp,
index/strtree/STRtree.cpp: AbstractNode destructor made virtual.
AbstractNode::bounds made protected. SIRAbstractNode and
STRAbstractNode destructors added to get rid of
AbstractNode::bounds in the right way (is a void * casted to
appropriate Class in the subClasses).
2004-05-05 18:57 strk
* source/: headers/opBuffer.h, operation/buffer/BufferBuilder.cpp:
Rewritten static cga allocation to avoid copy constructor calls.
2004-05-05 18:51 strk
* source/geom/Geometry.cpp: avoided copy constructor in
Geometry::geometryChangedFilter initializzazion
2004-05-05 18:39 strk
* source/noding/MCQuadtreeNoder.cpp: reduced explicit local objects
allocation
2004-05-05 18:36 strk
* source/operation/buffer/BufferBuilder.cpp: Avoid use of copy
c'tors on local objects initializzation
2004-05-05 17:51 strk
* source/noding/MCQuadtreeNoder.cpp: Fixed big leak in
intersectChains()
2004-05-05 15:08 strk
* source/: algorithm/MinimumDiameter.cpp,
operation/buffer/BufferBuilder.cpp,
operation/buffer/OffsetCurveBuilder.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: Leaks fixed, explicit
allocations/deallocations reduced.
2004-05-05 14:29 strk
* source/operation/buffer/SubgraphDepthLocater.cpp: memleak fixed
in ::getDepth
2004-05-05 14:20 strk
* source/geom/util/GeometryEditor.cpp: Memory leak plugged in
editGeometryCollection
2004-05-05 12:54 strk
* source/: geom/Geometry.cpp, headers/geom.h, headers/opBuffer.h,
io/Unload.cpp, operation/buffer/BufferBuilder.cpp: Removed some
private static heap explicit allocation, less cleanup done by the
unloader.
2004-05-05 12:44 strk
* TODO: updated
2004-05-05 12:22 strk
* source/operation/buffer/BufferOp.cpp: Removed dynamic
allocations.
2004-05-05 12:03 strk
* source/operation/buffer/BufferOp.cpp: Reduced dynamic allocations
in bufferOriginalPrecision and bufferFixedPrecision.
2004-05-04 00:56 strk
* source/: geomgraph/EdgeList.cpp, headers/noding.h,
index/strtree/AbstractSTRtree.cpp, noding/IteratedNoder.cpp,
noding/MCQuadtreeNoder.cpp, noding/Noder.cpp,
noding/SegmentNodeList.cpp, operation/buffer/BufferBuilder.cpp,
operation/buffer/BufferSubgraph.cpp,
operation/buffer/SubgraphDepthLocater.cpp: leaks fixed, exception
specification omitted.
2004-05-03 22:49 strk
* source/: geom/util/LinearComponentExtracter.cpp,
geom/util/PointExtracter.cpp, noding/SegmentNodeList.cpp: Some more
leaks fixed
2004-05-03 19:15 strk
* source/: geom/util/GeometryEditor.cpp, headers/precision.h,
index/strtree/STRtree.cpp, operation/buffer/BufferBuilder.cpp,
operation/buffer/BufferOp.cpp, operation/buffer/BufferSubgraph.cpp,
precision/CommonBitsOp.cpp,
precision/SimpleGeometryPrecisionReducer.cpp: leaks on exception
fixed.
2004-05-03 18:29 strk
* source/: headers/indexStrtree.h,
index/strtree/AbstractSTRtree.cpp, index/strtree/SIRtree.cpp,
index/strtree/STRtree.cpp: Added sortBoundables(const
vector<Boundable *>) pure virtual in AbstractSTRtree, implemented
in SIRtree and STRtree. Comparator funx made static in STRtree.cpp
and SIRtree.cpp.
2004-05-03 15:17 strk
* source/: headers/indexStrtree.h,
index/strtree/AbstractSTRtree.cpp: Fixed comparator function to
express StrictWeakOrdering.
2004-05-03 14:09 strk
* source/: noding/Noder.cpp, noding/SegmentNode.cpp,
noding/nodingSegmentIntersector.cpp, planargraph/planarNodeMap.cpp:
newline added at end of file
2004-05-03 12:43 strk
* source/: geomgraph/DirectedEdgeStar.cpp,
geomgraph/EdgeEndStar.cpp, geomgraph/GeometryGraph.cpp,
geomgraph/PlanarGraph.cpp, headers/geomgraph.h, headers/opBuffer.h,
headers/opOverlay.h, operation/buffer/BufferBuilder.cpp,
operation/overlay/OverlayOp.cpp,
operation/overlay/PolygonBuilder.cpp,
planargraph/planarDirectedEdge.cpp: Exception specification
considered harmful - left as comment.
2004-04-30 11:15 strk
* source/: geom/Geometry.cpp, headers/noding.h, headers/opBuffer.h,
noding/IteratedNoder.cpp, operation/buffer/BufferBuilder.cpp:
Enlarged exception specifications to allow for
AssertionFailedException. Added missing initializers.
2004-04-28 16:58 strk
* source/index/strtree/AbstractSTRtree.cpp: Made
AbstractSTRtree::query use dynamic_cast<> to simulate java's
instanceof. Previous typeid(*) use missed to catch an
STRAbstractNode as a class derived from AbstractNode. Still have to
check if this is the correct semantic with Martin, but at least
lots of SIGABORT are no more raised.
2004-04-27 00:00 pramsey
* configure.in: Bump version number to 1.4 to indicate new changes.
2004-04-26 14:37 strk
* source/index/strtree/: AbstractSTRtree.cpp, STRtree.cpp: Some
leaks fixed.
2004-04-23 02:02 strk
* source/: headers/noding.h, headers/opBuffer.h,
noding/IteratedNoder.cpp, operation/buffer/BufferBuilder.cpp,
operation/buffer/BufferOp.cpp: const-correctness changes
2004-04-21 16:14 strk
* source/geomgraph/DirectedEdgeStar.cpp: Fixed bug in computeDepths
2004-04-20 15:24 strk
* source/: algorithm/ConvexHull.cpp, algorithm/MinimumDiameter.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/Polygon.cpp,
operation/buffer/BufferOp.cpp, operation/overlay/OverlayOp.cpp:
More leaks removed.
2004-04-20 14:47 strk
* source/: algorithm/MinimumDiameter.cpp, headers/geosAlgorithm.h:
MinimumDiameter leaks plugged.
2004-04-20 12:58 strk
* source/: headers/opBuffer.h, operation/buffer/BufferBuilder.cpp,
operation/buffer/OffsetCurveBuilder.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: More memory leaks
removed.
2004-04-20 12:14 strk
* source/: algorithm/MinimumDiameter.cpp, geom/Geometry.cpp,
geom/util/GeometryEditor.cpp, operation/buffer/BufferOp.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp,
precision/SimpleGeometryPrecisionReducer.cpp: Memory leaks removed.
2004-04-20 10:52 strk
* source/: geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/MultiLineString.cpp,
geom/MultiPoint.cpp, geom/MultiPolygon.cpp, geom/Polygon.cpp,
geom/Triangle.cpp, geom/util/GeometryEditor.cpp, headers/geom.h,
headers/geomUtil.h, headers/precision.h,
precision/SimpleGeometryPrecisionReducer.cpp: GeometryFactory and
Geometry const correctness. Memory leaks removed from
SimpleGeometryPrecisionReducer and GeometryFactory.
2004-04-19 18:14 strk
* source/: headers/noding.h, noding/IteratedNoder.cpp,
noding/MCQuadtreeNoder.cpp, noding/SegmentString.cpp,
operation/buffer/OffsetCurveBuilder.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: Some memory leaks
plugged in noding algorithms.
2004-04-19 17:14 strk
* source/: geomgraph/PlanarGraph.cpp, headers/indexQuadtree.h,
headers/opBuffer.h, headers/spatialIndex.h,
index/quadtree/Quadtree.cpp, operation/buffer/BufferBuilder.cpp,
operation/buffer/BufferOp.cpp,
operation/buffer/OffsetCurveBuilder.cpp,
operation/buffer/OffsetCurveSetBuilder.cpp: Added missing virtual
destructor in SpatialIndex class. Memory leaks fixes. Const and
throw specifications added.
2004-04-19 14:51 strk
* source/: headers/noding.h, headers/opBuffer.h,
noding/IteratedNoder.cpp, operation/buffer/BufferBuilder.cpp,
operation/buffer/BufferOp.cpp: Memory leaks fixes. Throw
specifications added.
2004-04-16 16:12 strk
* source/geom/Point.cpp: Memory leak fix in copy constructor
2004-04-16 16:09 strk
* source/operation/buffer/BufferOp.cpp: Leaks fixes
2004-04-16 15:03 strk
* source/operation/buffer/OffsetCurveBuilder.cpp: More leaks fixed
2004-04-16 14:48 strk
* source/: noding/IteratedNoder.cpp, noding/MCQuadtreeNoder.cpp,
operation/buffer/BufferSubgraph.cpp,
operation/buffer/OffsetCurveBuilder.cpp: Leak fixes.
2004-04-16 13:04 strk
* source/operation/buffer/BufferOp.cpp: Memory leaks plugged on
exception thrown
2004-04-16 12:00 strk
* source/operation/buffer/BufferOp.cpp: Memory leak fixed.
2004-04-16 11:01 strk
* source/algorithm/CGAlgorithms.cpp: Removed memory leak in
CGAlgorithms::isOnline
2004-04-16 10:52 strk
* source/: headers/planargraph.h, io/Unload.cpp: Unload::Release
final delete (static heap allocations should be gone now)
2004-04-16 10:35 strk
* source/: geom/GeometryFactory.cpp, geom/Point.cpp,
headers/geom.h: Memory leaks fixed and const correctness applied
for Point class.
2004-04-16 09:42 strk
* source/: geom/PrecisionModel.cpp, headers/geom.h, io/Unload.cpp:
PrecisionModel::Type made an enum instead of a Type.
2004-04-15 17:11 strk
* source/io/Unload.cpp: Commented out deletion that seems to cause
segfaults
2004-04-15 16:00 strk
* source/: headers/geom.h, headers/opBuffer.h, io/Unload.cpp: Added
new cleanup to Unload::Release
2004-04-14 15:56 strk
* source/: geom/Geometry.cpp, headers/geom.h: All geometries
returned by {from,to}InternalGeometry calls are now deleted after
use (unless NOT new). Some 'commented' throw specifications in
geom.h
2004-04-14 15:14 strk
* source/operation/overlay/OverlayOp.cpp: Removed deletion of
externally pointed GeometryFactory from OverlayOp destructor
2004-04-14 14:28 strk
* source/: geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
index/strtree/AbstractSTRtree.cpp: shouldNeverReachHere exceptions
made more verbose
2004-04-14 13:05 strk
* source/geom/util/GeometryEditor.cpp: Added support for LinearRing
in GeometryEditor
2004-04-14 12:56 strk
* source/operation/distance/DistanceOp.cpp: Uncommented
initializzazion and destruction of DistanceOp::minDistanceLocation
2004-04-14 11:38 strk
* source/geom/PrecisionModel.cpp: PrecisionModel(double newScale)
missed to set the scale
2004-04-14 11:30 strk
* source/: headers/noding.h, noding/IteratedNoder.cpp: Private
iterated noding funx now use int* instead of vector to know when
it's time to stop.
2004-04-14 11:11 strk
* source/operation/buffer/BufferOp.cpp: endCapStyle was never set
in BufferOp contructor
2004-04-14 10:38 strk
* source/operation/buffer/BufferBuilder.cpp: BufferBuilder
constructor missed to initialize workingPrecisionModel
2004-04-14 10:38 strk
* source/operation/buffer/BufferOp.cpp: BufferOp constructor missed
to set argGeom
2004-04-14 09:29 strk
* source/: geom/Geometry.cpp, geom/GeometryFactory.cpp,
headers/geom.h: Fixed GeometryFactory constructors to copy given
PrecisionModel. Added GeometryFactory copy constructor. Fixed
Geometry constructors to copy GeometryFactory.
2004-04-14 08:04 ybychkov
* source/geomgraph/index/: MonotoneChain.cpp,
MonotoneChainEdge.cpp, MonotoneChainIndexer.cpp,
SegmentIntersector.cpp, SimpleEdgeSetIntersector.cpp,
SimpleMCSweepLineIntersector.cpp, SimpleSweepLineIntersector.cpp,
SweepLineEvent.cpp, SweepLineSegment.cpp: "geomgraph/index" committ
problem fixed.
2004-04-13 16:45 strk
* source/geom/Point.cpp: Removed faulty assert in constructor
2004-04-13 16:33 strk
* source/geom/Makefile.am: Added more source files
2004-04-13 16:28 strk
* doc/example.cpp: Removed spurious line
2004-04-13 15:31 strk
* source/headers/precision.h: prototype mismatch fixed
2004-04-13 14:29 strk
* source/: headers/opDistance.h,
operation/distance/GeometryLocation.cpp: GeometryLocation
const-correctness.
2004-04-13 13:04 strk
* source/headers/Makefile.am: Added lost opDistance.h
2004-04-13 13:03 strk
* source/headers/Makefile.am: Added new header files
2004-04-13 12:58 strk
* source/geom/Makefile.am: Added new source files
2004-04-13 12:05 strk
* source/: headers/opDistance.h, operation/distance/DistanceOp.cpp,
operation/distance/GeometryLocation.cpp: GeometryLocation
constructor made const-correct. Fixed erroneus down-casting in
DistanceOp::computeMinDistancePoints.
2004-04-13 10:15 strk
* source/headers/geom.h: Changed all 'long long' with int64.
Changed all 'long long' constants to end with two Ls.
2004-04-11 00:41 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/LineString.cpp,
source/geom/Point.cpp, source/headers/geom.h,
source/headers/precision.h, source/headers/util.h,
source/operation/buffer/BufferOp.cpp,
source/precision/CommonBits.cpp, source/precision/CommonBitsOp.cpp,
source/precision/CommonBitsRemover.cpp,
source/precision/EnhancedPrecisionOp.cpp,
source/precision/SimpleGeometryPrecisionReducer.cpp,
source/util/UniqueCoordinateArrayFilter.cpp: "precision" upgraded
to JTS 1.4
2004-04-10 10:40 ybychkov
* VisualStudio/GEOS.vcproj, source/geomgraph/PlanarGraph.cpp,
source/headers/geomgraph.h, source/headers/opBuffer.h,
source/headers/opOverlay.h,
source/operation/buffer/BufferBuilder.cpp,
source/operation/buffer/BufferEdgeBuilder.cpp,
source/operation/buffer/BufferLineBuilder.cpp,
source/operation/buffer/BufferOp.cpp,
source/operation/buffer/BufferSubgraph.cpp,
source/operation/buffer/LoopFilter.cpp,
source/operation/buffer/OffsetCurveBuilder.cpp,
source/operation/buffer/OffsetCurveSetBuilder.cpp,
source/operation/buffer/RightmostEdgeFinder.cpp,
source/operation/buffer/SubgraphDepthLocater.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/overlay/PolygonBuilder.cpp: "operation/buffer"
upgraded to JTS 1.4
2004-04-08 06:53 ybychkov
* VisualStudio/GEOS.vcproj, source/headers/opPolygonize.h,
source/operation/polygonize/PolygonizeDirectedEdge.cpp,
source/operation/polygonize/PolygonizeEdge.cpp,
source/operation/polygonize/PolygonizeGraph.cpp,
source/operation/polygonize/Polygonizer.cpp,
source/operation/polygonize/polygonizeEdgeRing.cpp:
"operation/polygonize" ported from JTS 1.4
2004-04-07 08:55 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/CoordinateList.cpp,
source/headers/geom.h, source/headers/opLinemerge.h,
source/headers/planargraph.h,
source/operation/linemerge/EdgeString.cpp,
source/operation/linemerge/LineMergeDirectedEdge.cpp,
source/operation/linemerge/LineMergeEdge.cpp,
source/operation/linemerge/LineMergeGraph.cpp,
source/operation/linemerge/LineMerger.cpp,
source/planargraph/PlanarGraph.cpp,
source/planargraph/planarNodeMap.cpp,
source/planargraph/planarPlanarGraph.cpp: "operation/linemerge"
ported from JTS 1.4
2004-04-05 08:35 ybychkov
* VisualStudio/GEOS.vcproj, source/algorithm/CGAlgorithms.cpp,
source/geom/LineSegment.cpp, source/headers/indexStrtree.h,
source/headers/opDistance.h, source/index/strtree/STRtree.cpp,
source/operation/distance/ConnectedElementLocationFilter.cpp,
source/operation/distance/ConnectedElementPointFilter.cpp,
source/operation/distance/DistanceOp.cpp,
source/operation/distance/GeometryLocation.cpp,
source/operation/distance/LineExtracterFilter.cpp,
source/operation/distance/PointExtracterFilter.cpp,
source/operation/distance/PolygonExtracterFilter.cpp:
"operation/distance" upgraded to JTS 1.4
2004-04-04 08:29 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/GeometryFactory.cpp,
source/geom/util/GeometryEditor.cpp,
source/geom/util/LinearComponentExtracter.cpp,
source/geom/util/PointExtracter.cpp,
source/geom/util/PolygonExtracter.cpp, source/headers/geom.h,
source/headers/geomUtil.h, source/headers/geomgraph.h,
source/headers/geomgraphindex.h, source/headers/planargraph.h,
source/planargraph/PlanarGraph.cpp,
source/planargraph/planarDirectedEdge.cpp,
source/planargraph/planarDirectedEdgeStar.cpp,
source/planargraph/planarEdge.cpp,
source/planargraph/planarGraphComponent.cpp,
source/planargraph/planarNode.cpp,
source/planargraph/planarNodeMap.cpp: "planargraph" and
"geom/utill" upgraded to JTS 1.4
2004-04-01 12:44 ybychkov
* source/: geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryFactory.cpp, geom/LineString.cpp, geom/LinearRing.cpp,
geom/MultiLineString.cpp, geom/MultiPoint.cpp, geom/Polygon.cpp,
headers/geom.h, io/Unload.cpp: All "geom" classes from JTS 1.3
upgraded to JTS 1.4
2004-03-31 09:50 ybychkov
* source/: geom/LineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, geom/Point.cpp, geom/Polygon.cpp,
geom/PrecisionModel.cpp, geomgraph/EdgeNodingValidator.cpp,
headers/geom.h: "geom" partially upgraded to JTS 1.4
2004-03-29 08:59 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/LineSegment.cpp,
source/headers/geom.h, source/headers/nodingSnapround.h,
source/headers/opOverlay.h, source/headers/opRelate.h,
source/headers/opValid.h, source/headers/operation.h,
source/io/Unload.cpp, source/noding/snapround/SegmentSnapper.cpp,
source/noding/snapround/SimpleSegmentStringsSnapper.cpp,
source/noding/snapround/SnapRounder.cpp,
source/operation/GeometryGraphOperation.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/relate/RelateComputer.cpp,
source/operation/relate/RelateOp.cpp,
source/operation/valid/ConnectedInteriorTester.cpp,
source/operation/valid/IsValidOp.cpp,
source/operation/valid/QuadtreeNestedRingTester.cpp,
source/operation/valid/SimpleNestedRingTester.cpp,
source/operation/valid/SweeplineNestedRingTester.cpp:
"noding/snapround" package ported (JTS 1.4); "operation",
"operation/valid", "operation/relate" and "operation/overlay"
upgraded to JTS 1.4; "geom" partially upgraded.
2004-03-26 08:48 ybychkov
* VisualStudio/GEOS.vcproj, source/headers/noding.h,
source/noding/IteratedNoder.cpp, source/noding/MCQuadtreeNoder.cpp,
source/noding/Noder.cpp, source/noding/NodingValidator.cpp,
source/noding/SegmentNode.cpp, source/noding/SegmentNodeList.cpp,
source/noding/SegmentString.cpp, source/noding/SimpleNoder.cpp,
source/noding/nodingSegmentIntersector.cpp: "noding" package ported
(JTS 1.4)
2004-03-25 03:23 ybychkov
* source/: algorithm/RobustLineIntersector.cpp,
headers/indexBintree.h, headers/indexChain.h,
headers/indexQuadtree.h, headers/indexStrtree.h,
headers/spatialIndex.h, index/chain/MonotoneChainBuilder.cpp,
index/chain/MonotoneChainOverlapAction.cpp,
index/chain/MonotoneChainSelectAction.cpp,
index/chain/indexMonotoneChain.cpp, index/quadtree/Quadtree.cpp,
index/strtree/AbstractNode.cpp, index/strtree/AbstractSTRtree.cpp,
index/strtree/SIRtree.cpp, index/strtree/STRtree.cpp: All "index/*"
packages upgraded to JTS 1.4
2004-03-19 10:48 ybychkov
* VisualStudio/GEOS.vcproj, source/algorithm/PointLocator.cpp,
source/geomgraph/Depth.cpp, source/geomgraph/DirectedEdge.cpp,
source/geomgraph/DirectedEdgeStar.cpp, source/geomgraph/Edge.cpp,
source/geomgraph/EdgeEnd.cpp, source/geomgraph/EdgeEndStar.cpp,
source/geomgraph/EdgeIntersection.cpp,
source/geomgraph/EdgeIntersectionList.cpp,
source/geomgraph/EdgeList.cpp,
source/geomgraph/EdgeNodingValidator.cpp,
source/geomgraph/EdgeRing.cpp, source/geomgraph/GeometryGraph.cpp,
source/geomgraph/GraphComponent.cpp, source/geomgraph/Label.cpp,
source/geomgraph/Node.cpp, source/geomgraph/NodeFactory.cpp,
source/geomgraph/NodeMap.cpp, source/geomgraph/PlanarGraph.cpp,
source/geomgraph/Position.cpp, source/geomgraph/Quadrant.cpp,
source/geomgraph/TopologyLocation.cpp, source/headers/geomgraph.h,
source/headers/geomgraphindex.h, source/headers/graph.h,
source/headers/graphindex.h, source/headers/noding.h,
source/headers/opOverlay.h, source/headers/opRelate.h,
source/headers/operation.h,
source/index/chain/MonotoneChainBuilder.cpp, source/io/Unload.cpp,
source/operation/buffer/BufferOp.cpp,
source/operation/overlay/OverlayOp.cpp, source/test/XMLTester.cpp:
"geomgraph" and "geomgraph/indexl" upgraded to JTS 1.4
2004-03-18 11:42 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/Coordinate.cpp,
source/geom/CoordinateList.cpp, source/geom/Envelope.cpp,
source/geom/Triangle.cpp, source/headers/geom.h,
source/headers/io.h, source/headers/util.h,
source/io/StringTokenizer.cpp, source/io/WKTReader.cpp,
source/io/WKTWriter.cpp, source/util/GeometricShapeFactory.cpp:
"IO" and "Util" upgraded to JTS 1.4 "Geometry" partially upgraded.
2004-03-17 03:00 ybychkov
* VisualStudio/GEOS.sln, VisualStudio/GEOS.vcproj,
source/algorithm/CGAlgorithms.cpp,
source/algorithm/CentroidArea.cpp, source/algorithm/ConvexHull.cpp,
source/algorithm/InteriorPointArea.cpp,
source/algorithm/LineIntersector.cpp,
source/algorithm/MinimumDiameter.cpp,
source/algorithm/NonRobustCGAlgorithms.cpp,
source/algorithm/NotRepresentableException.cpp,
source/algorithm/PointLocator.cpp,
source/algorithm/RobustCGAlgorithms.cpp,
source/algorithm/RobustLineIntersector.cpp,
source/algorithm/SimplePointInAreaLocator.cpp,
source/algorithm/SimplePointInRing.cpp, source/geom/Geometry.cpp,
source/headers/geom.h, source/headers/geosAlgorithm.h,
source/test/Stackwalker.h: "Algorithm" upgraded to JTS 1.4
2004-03-01 23:04 strk
* source/: geom/Geometry.cpp, headers/geom.h, headers/opBuffer.h,
headers/opRelate.h, operation/buffer/BufferOp.cpp,
operation/relate/RelateOp.cpp: applied const correctness changes by
Manuel Prieto Villegas <ManuelPrietoVillegas@telefonica.net>
2004-02-27 18:43 strk
* source/geom/Polygon.cpp: memory leak fix in Polygon::getArea() -
reported by 'Manuel Prieto Villegas' <mprieto@dap.es>
2004-02-27 18:42 strk
* source/: algorithm/CGAlgorithms.cpp, headers/geosAlgorithm.h:
made CGAlgorithms::signedArea() and CGAlgorithms::length()
arguments const-correct
2004-02-20 06:44 pramsey
* ltmain.sh: Changed to new version of ltmain, that matches the
version of libtool on build box
2004-01-20 06:51 pramsey
* configure.in: Change platform.h back to AM_CONFIG_HEADER.
2004-01-20 06:10 pramsey
* configure.in: Change AM_CONFIG_HEADER to AC_CONFIG_HEADERS to
allow autoheader to work its magic.
2003-12-11 18:01 strk
* source/operation/buffer/BufferOp.cpp: made buffer(0) back to its
*correct* semantic (empy collection)
2003-12-11 17:01 strk
* source/operation/buffer/BufferOp.cpp: made buffer operation
return a cloned input geom when called with 0 as distance
2003-12-11 16:53 strk
* source/geom/GeometryCollection.cpp: Fixed bogus copy constructor
(making clone bogus)
2003-11-13 12:57 strk
* doc/example.cpp: bug fixed in relate call
2003-11-12 23:03 strk
* doc/example.cpp: added relational operators
2003-11-12 19:02 strk
* source/: headers/graph.h, headers/opOverlay.h,
operation/overlay/OverlayOp.cpp,
operation/overlay/PolygonBuilder.cpp: Added throw specification.
Fixed leaks on exceptions.
2003-11-12 18:15 strk
* source/geom/PrecisionModel.cpp: made sure PrecisionModel scale is
never 0
2003-11-12 18:10 strk
* source/test/XMLTester.cpp: added missing initialization
2003-11-12 17:14 strk
* source/: headers/opOverlay.h, operation/overlay/OverlayOp.cpp:
Added some more throw specifications and cleanup on exception
(leaks removed).
2003-11-12 16:43 strk
* source/headers/graph.h: Added some more throw specifications
2003-11-12 16:02 strk
* source/test/XMLTester.cpp: more cleanup on exception
2003-11-12 12:08 strk
* doc/example.cpp: removed old changelog, moved comments in the
nice standard frame
2003-11-12 12:05 strk
* autogen.sh: added autoheader call
2003-11-07 18:51 strk
* source/operation/buffer/BufferOp.cpp: Memory leak fix in
insertEdge()
2003-11-07 18:49 pramsey
* ChangeLog: Added current ChangeLog
2003-11-07 18:45 strk
* source/headers/config.h.in: will be generated with ./autogen.sh
2003-11-07 15:21 strk
* Makefile.am, configure.in, doc/.cvsignore, doc/Makefile,
doc/Makefile.am: Made doc/ directory part of distribution.
Uniformed doc build script to autotools.
2003-11-07 15:19 strk
* source/headers/.cvsignore: added config.h.in (missed before)
2003-11-07 15:18 strk
* source/headers/.cvsignore: added config.h.in
2003-11-07 02:58 pramsey
* AUTHORS: Added people!
2003-11-07 02:23 pramsey
* doc/example.cpp, source/algorithm/CGAlgorithms.cpp,
source/algorithm/CentroidArea.cpp,
source/algorithm/CentroidLine.cpp,
source/algorithm/CentroidPoint.cpp,
source/algorithm/ConvexHull.cpp, source/algorithm/HCoordinate.cpp,
source/algorithm/InteriorPointArea.cpp,
source/algorithm/InteriorPointLine.cpp,
source/algorithm/InteriorPointPoint.cpp,
source/algorithm/LineIntersector.cpp,
source/algorithm/MCPointInRing.cpp,
source/algorithm/NonRobustCGAlgorithms.cpp,
source/algorithm/NonRobustLineIntersector.cpp,
source/algorithm/NotRepresentableException.cpp,
source/algorithm/PointLocator.cpp,
source/algorithm/RobustCGAlgorithms.cpp,
source/algorithm/RobustDeterminant.cpp,
source/algorithm/RobustLineIntersector.cpp,
source/algorithm/SIRtreePointInRing.cpp,
source/algorithm/SimplePointInAreaLocator.cpp,
source/algorithm/SimplePointInRing.cpp,
source/bigtest/GeometryTestFactory.cpp,
source/bigtest/TestSweepLineSpeed.cpp,
source/examples/CPCLException.cpp,
source/examples/CoordinateListsExample.cpp,
source/examples/CustomCoordinateListExample.cpp,
source/examples/CustomCoordinateListExample.h,
source/examples/CustomPointCoordinateList.cpp,
source/geom/BasicCoordinateList.cpp, source/geom/Coordinate.cpp,
source/geom/CoordinateList.cpp,
source/geom/CoordinateListFactory.cpp, source/geom/Dimension.cpp,
source/geom/Envelope.cpp, source/geom/Geometry.cpp,
source/geom/GeometryCollection.cpp,
source/geom/GeometryCollectionIterator.cpp,
source/geom/GeometryComponentFilter.cpp,
source/geom/GeometryFactory.cpp,
source/geom/IntersectionMatrix.cpp, source/geom/LineSegment.cpp,
source/geom/LineString.cpp, source/geom/LinearRing.cpp,
source/geom/Location.cpp, source/geom/MultiLineString.cpp,
source/geom/MultiPoint.cpp, source/geom/MultiPolygon.cpp,
source/geom/Point.cpp, source/geom/PointCoordinateList.cpp,
source/geom/Polygon.cpp, source/geom/PrecisionModel.cpp,
source/geom/TopologyException.cpp, source/headers/acconfig.h,
source/headers/bigtest.h, source/headers/config.h.in,
source/headers/geom.h, source/headers/geosAlgorithm.h,
source/headers/graph.h, source/headers/graphindex.h,
source/headers/indexBintree.h, source/headers/indexChain.h,
source/headers/indexQuadtree.h, source/headers/indexStrtree.h,
source/headers/indexSweepline.h, source/headers/io.h,
source/headers/opBuffer.h, source/headers/opDistance.h,
source/headers/opOverlay.h, source/headers/opRelate.h,
source/headers/opValid.h, source/headers/operation.h,
source/headers/spatialIndex.h, source/headers/unload.h,
source/headers/util.h, source/index/bintree/BinTreeInterval.cpp,
source/index/bintree/BinTreeNode.cpp,
source/index/bintree/Bintree.cpp, source/index/bintree/Key.cpp,
source/index/bintree/NodeBase.cpp, source/index/bintree/Root.cpp,
source/index/chain/MonotoneChainBuilder.cpp,
source/index/chain/MonotoneChainOverlapAction.cpp,
source/index/chain/MonotoneChainSelectAction.cpp,
source/index/chain/indexMonotoneChain.cpp,
source/index/quadtree/DoubleBits.cpp,
source/index/quadtree/IntervalSize.cpp,
source/index/quadtree/QuadTreeKey.cpp,
source/index/quadtree/QuadTreeNode.cpp,
source/index/quadtree/QuadTreeNodeBase.cpp,
source/index/quadtree/QuadTreeRoot.cpp,
source/index/quadtree/Quadtree.cpp,
source/index/strtree/AbstractNode.cpp,
source/index/strtree/AbstractSTRtree.cpp,
source/index/strtree/Interval.cpp,
source/index/strtree/ItemBoundable.cpp,
source/index/strtree/SIRtree.cpp, source/index/strtree/STRtree.cpp,
source/index/sweepline/SweepLineIndex.cpp,
source/index/sweepline/SweepLineInterval.cpp,
source/index/sweepline/indexSweepLineEvent.cpp,
source/io/ParseException.cpp, source/io/StringTokenizer.cpp,
source/io/Unload.cpp, source/io/WKTReader.cpp,
source/io/WKTWriter.cpp, source/io/Writer.cpp,
source/io/markup/MarkupSTL.h,
source/operation/GeometryGraphOperation.cpp,
source/operation/IsSimpleOp.cpp,
source/operation/buffer/BufferEdgeBuilder.cpp,
source/operation/buffer/BufferLineBuilder.cpp,
source/operation/buffer/BufferOp.cpp,
source/operation/buffer/BufferSubgraph.cpp,
source/operation/buffer/LoopFilter.cpp,
source/operation/buffer/RightmostEdgeFinder.cpp,
source/operation/distance/ConnectedElementPointFilter.cpp,
source/operation/distance/DistanceOp.cpp,
source/operation/distance/LineExtracterFilter.cpp,
source/operation/distance/PointExtracterFilter.cpp,
source/operation/distance/PolygonExtracterFilter.cpp,
source/operation/overlay/EdgeSetNoder.cpp,
source/operation/overlay/LineBuilder.cpp,
source/operation/overlay/MaximalEdgeRing.cpp,
source/operation/overlay/MinimalEdgeRing.cpp,
source/operation/overlay/OverlayNodeFactory.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/overlay/PointBuilder.cpp,
source/operation/overlay/PolygonBuilder.cpp,
source/operation/relate/EdgeEndBuilder.cpp,
source/operation/relate/EdgeEndBundle.cpp,
source/operation/relate/EdgeEndBundleStar.cpp,
source/operation/relate/RelateComputer.cpp,
source/operation/relate/RelateNode.cpp,
source/operation/relate/RelateNodeFactory.cpp,
source/operation/relate/RelateNodeGraph.cpp,
source/operation/relate/RelateOp.cpp,
source/operation/valid/ConnectedInteriorTester.cpp,
source/operation/valid/ConsistentAreaTester.cpp,
source/operation/valid/IsValidOp.cpp,
source/operation/valid/QuadtreeNestedRingTester.cpp,
source/operation/valid/RepeatedPointTester.cpp,
source/operation/valid/SimpleNestedRingTester.cpp,
source/operation/valid/SweeplineNestedRingTester.cpp,
source/operation/valid/TopologyValidationError.cpp,
source/test/CTS.cpp, source/test/SimpleWKTTester.cpp,
source/test/Stackwalker.h, source/test/XMLTester.cpp,
source/util/Assert.cpp, source/util/AssertionFailedException.cpp,
source/util/CoordinateArrayFiter.cpp,
source/util/GEOSException.cpp,
source/util/IllegalArgumentException.cpp,
source/util/UniqueCoordinateArrayFilter.cpp,
source/util/UnsupportedOperationException.cpp: Add standard CVS
headers licence notices and copyrights to all cpp and h files.
2003-11-06 19:50 strk
* doc/.cvsignore: first import
2003-11-06 19:48 strk
* TODO: updated
2003-11-06 19:48 strk
* source/operation/overlay/PolygonBuilder.cpp: added throw
information comment in PolygonBuilder
2003-11-06 19:47 strk
* source/operation/buffer/BufferOp.cpp: Added throw specification
for BufferOp's ::buildSubgraphs() and ::computeBuffer(). Cleanup on
exception in computeBuffer().
2003-11-06 19:46 strk
* source/headers/opBuffer.h: Added throw specification for
BufferOp's ::buildSubgraphs() and ::computeBuffer()
2003-11-06 19:45 strk
* source/headers/graph.h: Added throw specification for
DirectEdgeStar::linkResultDirectedEdges()
2003-11-06 19:00 strk
* source/operation/buffer/BufferOp.cpp: Cleanup on exception in
::bufferOp()
2003-11-06 18:48 strk
* source/operation/buffer/BufferLineBuilder.cpp: Fixed memory leaks
in ::closePt() and ::addLineEndCap()
2003-11-06 18:47 strk
* source/operation/buffer/BufferEdgeBuilder.cpp: Added support for
LinearRing, removed memory leaks in ::addLineString
2003-11-06 18:41 strk
* doc/example.cpp: Added Buffer,Intersection,Difference and
Symdifference. Exception cleanup
2003-11-06 18:33 pramsey
* INSTALL: Small addition of into about LD_LIBRARY_PATH
2003-11-05 22:52 strk
* doc/: Makefile, example.cpp: Modified example.cpp to make use of
vectors instead of Geometry * / int couples. Added LineString
creation example. Added Makefile to compile it.
2003-11-03 17:09 strk
* doc/example.cpp: Removed comments about segfaults, made the
simple collection creation call cleaner by use of the clone()
method.
2003-10-31 17:36 strk
* source/: geom/GeometryCollection.cpp, geom/LineString.cpp,
geom/Point.cpp, geom/Polygon.cpp, headers/geom.h: Re-introduced
clone() method. Copy constructor could not really replace it.
2003-10-29 11:38 strk
* doc/example.cpp: Added centroid computation example
2003-10-29 11:38 strk
* source/algorithm/CentroidLine.cpp: Added support for LinearRing
types (treated as LineString)
2003-10-24 23:27 strk
* source/headers/geom.h: Added GeometryTypeId enum and
getGeometryTypeId abstract Geometry method.
2003-10-23 11:17 strk
* source/headers/.cvsignore: Added stamp-h2 and platform.h
2003-10-23 11:12 strk
* source/headers/util.h: Made CoordinateArrayFilter destructor
virtual.
2003-10-23 01:58 strk
* configure.in, source/headers/platform.h,
source/headers/platform.h.in: Made platform.h be created by
configure. In this way we will not have problems of installed
headers trying to include phantom config.h.
2003-10-22 02:44 strk
* source/: headers/indexQuadtree.h, headers/platform.h,
index/quadtree/DoubleBits.cpp: Quadtree bitfield operations made
using type int64. Type int64 typedef'ed based on autoconf detected
int type (long or long long). If long is not 64bits int64 will be
really 32 bits and INT64_IS_REALLY32 will be defined.
2003-10-22 01:51 strk
* acsite.m4, configure.in, source/headers/acconfig.h,
source/headers/config.h.in: Added macros to find 64bit integer.
2003-10-21 18:16 strk
* doc/example.cpp: Uncommented point creation lines. Updated
comments about segfaults.
2003-10-21 07:35 pramsey
* source/test/Makefile.am: Added test.xml so it gets picked up by
'make dist'
2003-10-21 07:09 pramsey
* INSTALL: Added simple installation directions.
2003-10-21 06:55 pramsey
* source/: examples/Makefile.am, geom/Makefile.am,
test/Makefile.am: Fix up references to header files to 'make dist'
works.
2003-10-20 19:50 strk
* doc/example.cpp: added Union example
2003-10-20 17:41 strk
* source/: geom/Geometry.cpp, headers/geom.h:
Geometry::checkNotGeometryCollection made static and
non-distructive.
2003-10-20 16:02 strk
* source/operation/valid/ConnectedInteriorTester.cpp: more explicit
exception thrown on null Directed Edge detection
2003-10-20 15:56 strk
* source/util/AssertionFailedException.cpp: fixed typo
2003-10-17 07:51 ybychkov
* VisualStudio/GEOS.vcproj, source/geom/Polygon.cpp,
source/headers/indexQuadtree.h,
source/index/quadtree/DoubleBits.cpp, source/test/XMLTester.cpp:
Fixed a small memory leak.
2003-10-16 19:41 strk
* source/util/: GEOSException.cpp,
UnsupportedOperationException.cpp: Fixed a bug in GEOSException
that prevented print of the type of exception thrown.
2003-10-16 19:33 strk
* source/operation/valid/RepeatedPointTester.cpp: dropped useless
string() cast
2003-10-16 19:05 strk
* source/: geom/TopologyException.cpp, headers/geom.h,
headers/util.h, util/IllegalArgumentException.cpp: Made
TopologyException inherit from GEOSException. Adjusted
IllegalArgumentException subclassing.
2003-10-16 15:01 strk
* source/test/XMLTester.cpp: Added call to Unload::Release()
2003-10-16 14:09 strk
* source/test/XMLTester.cpp: bug fixed in exception handling
2003-10-16 10:50 strk
* source/: algorithm/CentroidArea.cpp, algorithm/CentroidLine.cpp,
algorithm/InteriorPointArea.cpp, algorithm/InteriorPointLine.cpp,
algorithm/MCPointInRing.cpp, algorithm/PointLocator.cpp,
algorithm/SIRtreePointInRing.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, geom/LineString.cpp,
geom/MultiPolygon.cpp, geom/Polygon.cpp, headers/geosAlgorithm.h,
operation/distance/DistanceOp.cpp,
operation/overlay/LineBuilder.cpp,
operation/valid/QuadtreeNestedRingTester.cpp: Memory leak fixes.
Improved performance by mean of more calls to new
getCoordinatesRO() when applicable.
2003-10-16 10:48 strk
* source/test/XMLTester.cpp: Exceptions handled
2003-10-15 18:39 strk
* source/: geom/GeometryFactory.cpp, headers/geom.h,
headers/graph.h, headers/graphindex.h,
operation/buffer/BufferOp.cpp,
operation/buffer/RightmostEdgeFinder.cpp,
operation/overlay/LineBuilder.cpp: Made Edge::getCoordinates()
return a 'const' value. Adapted code set.
2003-10-15 17:47 strk
* source/algorithm/: MCPointInRing.cpp, PointLocator.cpp: Adapted
to new getCoordinatesRO() interface
2003-10-15 17:30 strk
* source/headers/graphindex.h: Declared a SweepLineEventOBJ from
which MonotoneChain and SweepLineSegment derive to abstract
SweepLineEvent object previously done on void * pointers. No more
compiler warnings...
2003-10-15 13:24 strk
* source/operation/valid/: ConnectedInteriorTester.cpp,
IsValidOp.cpp: Use getCoordinatesRO() introduced.
2003-10-15 13:23 strk
* source/: geom/BasicCoordinateList.cpp, geom/CoordinateList.cpp,
geom/PointCoordinateList.cpp, headers/geom.h: Formalized const
nature of toVector() method and of first argument to static
removeRepeatedPoints().
2003-10-15 12:17 strk
* source/: geom/BasicCoordinateList.cpp,
geom/PointCoordinateList.cpp, headers/geom.h: Made setPoints() get
a const vector<Coordinate>.
2003-10-15 11:54 strk
* source/: geom/LineString.cpp, headers/geom.h: Added
getCoordinatesRO() public method.
2003-10-15 10:52 strk
* source/io/WKTReader.cpp: Memory leaks fixed.
2003-10-15 10:51 strk
* TODO: Initial import
2003-10-15 10:08 strk
* source/geom/Polygon.cpp: Memory leaks fixed. Partially due to
getCoordinates() and GeometryCollection() changes, partially old
dated.
2003-10-14 17:58 strk
* source/geom/GeometryFactory.cpp: Useless vector<Geometry *>
leaking allocations removed
2003-10-13 23:26 strk
* .cvsignore, macros/.cvsignore, source/bigtest/.cvsignore,
source/examples/.cvsignore, source/geom/.cvsignore,
source/headers/.cvsignore, source/test/.cvsignore: Added build time
created files to cvsignore lists
2003-10-13 19:54 strk
* source/: headers/opValid.h, operation/valid/IsValidOp.cpp:
IsValidOp constructor used same name for the arg and a private
element. Fixed.
2003-10-13 19:47 strk
* source/operation/overlay/: MaximalEdgeRing.cpp,
PolygonBuilder.cpp: delete statement removed
2003-10-13 17:39 strk
* source/: algorithm/CentroidArea.cpp,
algorithm/InteriorPointPoint.cpp, headers/geosAlgorithm.h: Fixed
some leak or fault flips (forced copy of a single coordinate)
2003-10-13 17:02 strk
* source/test/XMLTester.cpp: accept input file as first argument on
cmdline
2003-10-13 14:51 strk
* source/: geom/Geometry.cpp, headers/geom.h: removed sortedClasses
strings array from all geometries.
2003-10-13 11:24 strk
* source/: headers/indexQuadtree.h, index/quadtree/DoubleBits.cpp:
long -> long long enlargement of types to allow for left/rigth
shift of 53 bits
2003-10-11 05:23 strk
* source/geom/: LineString.cpp, LinearRing.cpp: fixed spurious
typos
2003-10-11 03:56 strk
* source/: algorithm/CGAlgorithms.cpp, algorithm/CentroidArea.cpp,
algorithm/CentroidLine.cpp, algorithm/CentroidPoint.cpp,
algorithm/ConvexHull.cpp, algorithm/InteriorPointArea.cpp,
algorithm/InteriorPointLine.cpp, algorithm/InteriorPointPoint.cpp,
algorithm/LineIntersector.cpp, algorithm/MCPointInRing.cpp,
algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SIRtreePointInRing.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, geom/BasicCoordinateList.cpp,
geom/Coordinate.cpp, geom/CoordinateList.cpp, geom/Envelope.cpp,
geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryCollectionIterator.cpp,
geom/GeometryComponentFilter.cpp, geom/GeometryFactory.cpp,
geom/LineSegment.cpp, geom/LineString.cpp, geom/LinearRing.cpp,
geom/MultiLineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, geom/Point.cpp,
geom/PointCoordinateList.cpp, geom/Polygon.cpp,
geom/PrecisionModel.cpp, headers/geom.h, headers/geosAlgorithm.h,
headers/graph.h, headers/io.h, headers/opBuffer.h,
headers/opDistance.h, headers/opOverlay.h, headers/opRelate.h,
headers/opValid.h, headers/operation.h, headers/util.h,
index/chain/indexMonotoneChain.cpp, io/WKTWriter.cpp,
operation/GeometryGraphOperation.cpp, operation/IsSimpleOp.cpp,
operation/buffer/BufferEdgeBuilder.cpp,
operation/buffer/BufferLineBuilder.cpp,
operation/buffer/LoopFilter.cpp,
operation/buffer/RightmostEdgeFinder.cpp,
operation/distance/ConnectedElementPointFilter.cpp,
operation/distance/DistanceOp.cpp,
operation/distance/LineExtracterFilter.cpp,
operation/distance/PointExtracterFilter.cpp,
operation/distance/PolygonExtracterFilter.cpp,
operation/overlay/OverlayOp.cpp,
operation/overlay/PointBuilder.cpp,
operation/overlay/PolygonBuilder.cpp,
operation/relate/RelateComputer.cpp, operation/relate/RelateOp.cpp,
operation/valid/ConnectedInteriorTester.cpp,
operation/valid/IsValidOp.cpp,
operation/valid/QuadtreeNestedRingTester.cpp,
operation/valid/RepeatedPointTester.cpp,
operation/valid/SimpleNestedRingTester.cpp,
operation/valid/SweeplineNestedRingTester.cpp, util/Assert.cpp,
util/CoordinateArrayFiter.cpp,
util/UniqueCoordinateArrayFilter.cpp:
Code base padded with 'const' keywords ;)
2003-10-09 17:35 strk
* source/: geom/GeometryFactory.cpp, headers/geom.h: added 'const'
keyword to GeometryFactory constructor, Log on top of geom.h
2003-10-09 13:20 strk
* doc/example.cpp: moved Log to a better place
2003-10-09 13:19 strk
* doc/example.cpp: added convexHull and PrecisionModel
2003-10-09 12:14 strk
* source/geom/GeometryFactory.cpp: just a style change in top Log
comment.
2003-10-09 12:10 strk
* source/geom/PrecisionModel.cpp: Throw an exception if scale is 0.
Added Log entry.
2003-10-09 11:42 strk
* source/geom/GeometryFactory.cpp:
Tried to "formalize" constant nature of the first argument given to
constructor by PrecisionModel and SRID specification. Added CVS Log
on top.
2003-10-09 10:58 strk
* doc/example.cpp, source/algorithm/ConvexHull.cpp:
Added convexHull() call to example, fixed leaks in ConvexHull
2003-10-09 02:11 strk
* doc/example.cpp:
First reference-by-example file.
2003-10-08 18:51 strk
* source/: geom/Makefile.am, headers/Makefile.am, headers/geom.h,
headers/graph.h, headers/indexQuadtree.h, headers/opRelate.h,
headers/opValid.h, headers/operation.h, headers/unload.h,
io/Unload.cpp:
Added xie's Unload class with some fixes.
2003-10-08 15:18 strk
* source/: headers/io.h, io/WKTWriter.cpp:
added missing LinearRing writing capabilities.
2003-10-08 12:36 strk
* source/geom/GeometryCollection.cpp:
Constructor by vector<Geometry *> * now makes a copy of the vector
so that call ers can safely delete it when done.
2003-10-07 23:47 strk
* source/: algorithm/SimplePointInAreaLocator.cpp,
geom/Polygon.cpp, operation/overlay/PolygonBuilder.cpp:
had all getCoordinates() callers free returned value.
2003-10-07 20:58 strk
* source/: algorithm/PointLocator.cpp, geom/CoordinateList.cpp,
geom/GeometryCollection.cpp, geom/LineString.cpp,
headers/config.h.in:
LineString constructor now creates its own copy of given
CoordinateList object, and returns a new copy with
getCoordinates(). will be easier to remove by anyone else.
2003-10-03 03:20 ybychkov
* source/: geom/MultiPolygon.cpp, test/XMLTester.cpp: Memory leak
in Overlay fixed.
2003-09-29 18:25 strk
* macros/.cvsignore, source/bigtest/.cvsignore,
source/examples/.cvsignore, source/headers/.cvsignore:
Some more cvsignore files. Some entries should probably not be in
the local copy
2003-09-29 17:07 strk
* .cvsignore:
Added config.sub, config.guess and autom4te.cache
2003-09-29 15:15 strk
* tools/.cvsignore:
Don't wonder about Makefile.in, Makefile, gdal-config
2003-09-26 19:31 strk
* source/algorithm/ConvexHull.cpp:
getConvexHull() made check value returned by reduce() before
deleting it (might be the untouched input).
2003-09-26 11:17 ybychkov
* source/: index/bintree/NodeBase.cpp,
index/quadtree/QuadTreeNodeBase.cpp,
index/quadtree/QuadTreeRoot.cpp, test/XMLTester.cpp: isValid
segfault fixed. Overlay still leaks a bit.
2003-09-24 04:16 ybychkov
* source/: geom/MultiPolygon.cpp, index/bintree/NodeBase.cpp,
index/bintree/Root.cpp, operation/buffer/BufferEdgeBuilder.cpp,
operation/buffer/BufferLineBuilder.cpp,
operation/buffer/BufferOp.cpp,
operation/overlay/PolygonBuilder.cpp, test/XMLTester.cpp: All
reported bugs fiexd. Small leak in Overlay remains.
2003-09-06 10:24 ybychkov
* source/: geom/Geometry.cpp, headers/opDistance.h,
operation/distance/ConnectedElementPointFilter.cpp,
operation/distance/DistanceOp.cpp,
operation/distance/LineExtracterFilter.cpp,
operation/distance/PointExtracterFilter.cpp,
operation/distance/PolygonExtracterFilter.cpp, test/XMLTester.cpp:
isWithinDistance fixed and tested.
2003-09-06 02:01 ybychkov
* source/: algorithm/InteriorPointArea.cpp,
algorithm/InteriorPointLine.cpp, algorithm/InteriorPointPoint.cpp,
geom/Geometry.cpp, operation/overlay/OverlayOp.cpp,
test/XMLTester.cpp: getInteriorPoint bugs fixed.
2003-09-01 08:32 ybychkov
* source/: algorithm/ConvexHull.cpp, geom/Geometry.cpp,
geom/Polygon.cpp, test/XMLTester.cpp: Some ConvexHull bugs fixed.
2003-08-30 09:55 ybychkov
* source/: algorithm/CentroidArea.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/Polygon.cpp,
operation/IsSimpleOp.cpp, test/XMLTester.cpp: Some bugfixes.
XMLTester expanded to accomodate getBoundary, getCentroid,
isSimple.
2003-08-19 01:40 pramsey
* source/algorithm/ConvexHull.java: Removed java source file from
archive.
2003-08-19 00:34 pramsey
* configure.in: Change it back :/
2003-08-19 00:33 pramsey
* configure.in: Change version number.
2003-08-18 22:42 pramsey
* ltmain.sh: Return ltmain to distro (oops)
2003-08-18 22:36 pramsey
* mkinstalldirs: Remove more autoconf files
2003-08-18 22:34 pramsey
* acinclude.m4, config.guess, config.sub, install-sh, ltmain.sh:
Removed more autoconf files...
2003-08-18 22:27 pramsey
* missing: Removed 'missing' script.
2003-08-18 18:38 pramsey
* source/headers/Makefile.am: Fixed up to treat headers as headers.
2003-08-17 20:40 pramsey
* Makefile.am, source/Makefile.am,
source/algorithm/CGAlgorithms.cpp,
source/algorithm/CentroidArea.cpp,
source/algorithm/CentroidLine.cpp,
source/algorithm/CentroidPoint.cpp,
source/algorithm/ConvexHull.cpp, source/algorithm/HCoordinate.cpp,
source/algorithm/InteriorPointArea.cpp,
source/algorithm/InteriorPointLine.cpp,
source/algorithm/InteriorPointPoint.cpp,
source/algorithm/LineIntersector.cpp,
source/algorithm/MCPointInRing.cpp,
source/algorithm/NonRobustCGAlgorithms.cpp,
source/algorithm/NonRobustLineIntersector.cpp,
source/algorithm/NotRepresentableException.cpp,
source/algorithm/PointLocator.cpp,
source/algorithm/RobustCGAlgorithms.cpp,
source/algorithm/RobustDeterminant.cpp,
source/algorithm/RobustLineIntersector.cpp,
source/algorithm/SIRtreePointInRing.cpp,
source/algorithm/SimplePointInAreaLocator.cpp,
source/algorithm/SimplePointInRing.cpp, source/bigtest/Makefile.am,
source/examples/CustomCoordinateListExample.h,
source/examples/Makefile.am, source/geom/BasicCoordinateList.cpp,
source/geom/Coordinate.cpp, source/geom/CoordinateList.cpp,
source/geom/CoordinateListFactory.cpp, source/geom/Dimension.cpp,
source/geom/Envelope.cpp, source/geom/Geometry.cpp,
source/geom/GeometryCollection.cpp,
source/geom/GeometryCollectionIterator.cpp,
source/geom/GeometryComponentFilter.cpp,
source/geom/GeometryFactory.cpp,
source/geom/IntersectionMatrix.cpp, source/geom/LineSegment.cpp,
source/geom/LineString.cpp, source/geom/LinearRing.cpp,
source/geom/Location.cpp, source/geom/Makefile.am,
source/geom/MultiLineString.cpp, source/geom/MultiPoint.cpp,
source/geom/MultiPolygon.cpp, source/geom/Point.cpp,
source/geom/PointCoordinateList.cpp, source/geom/Polygon.cpp,
source/geom/PrecisionModel.cpp, source/geom/TopologyException.cpp,
source/headers/Makefile.am, source/headers/geom.h,
source/headers/geosAlgorithm.h,
source/index/bintree/BinTreeInterval.cpp,
source/index/bintree/BinTreeNode.cpp,
source/index/bintree/Bintree.cpp, source/index/bintree/Key.cpp,
source/index/bintree/NodeBase.cpp, source/index/bintree/Root.cpp,
source/index/chain/MonotoneChainBuilder.cpp,
source/index/chain/MonotoneChainOverlapAction.cpp,
source/index/chain/MonotoneChainSelectAction.cpp,
source/index/chain/indexMonotoneChain.cpp,
source/index/quadtree/DoubleBits.cpp,
source/index/quadtree/IntervalSize.cpp,
source/index/quadtree/QuadTreeKey.cpp,
source/index/quadtree/QuadTreeNode.cpp,
source/index/quadtree/QuadTreeNodeBase.cpp,
source/index/quadtree/QuadTreeRoot.cpp,
source/index/quadtree/Quadtree.cpp,
source/index/strtree/AbstractNode.cpp,
source/index/strtree/AbstractSTRtree.cpp,
source/index/strtree/Interval.cpp,
source/index/strtree/ItemBoundable.cpp,
source/index/strtree/SIRtree.cpp,
source/index/sweepline/SweepLineIndex.cpp,
source/index/sweepline/SweepLineInterval.cpp,
source/index/sweepline/indexSweepLineEvent.cpp,
source/io/ParseException.cpp, source/io/StringTokenizer.cpp,
source/io/WKTReader.cpp, source/io/WKTWriter.cpp,
source/io/Writer.cpp, source/operation/GeometryGraphOperation.cpp,
source/operation/IsSimpleOp.cpp,
source/operation/buffer/BufferEdgeBuilder.cpp,
source/operation/buffer/BufferLineBuilder.cpp,
source/operation/buffer/BufferOp.cpp,
source/operation/buffer/BufferSubgraph.cpp,
source/operation/buffer/LoopFilter.cpp,
source/operation/buffer/RightmostEdgeFinder.cpp,
source/operation/distance/ConnectedElementPointFilter.cpp,
source/operation/distance/DistanceOp.cpp,
source/operation/distance/LineExtracterFilter.cpp,
source/operation/distance/PointExtracterFilter.cpp,
source/operation/distance/PolygonExtracterFilter.cpp,
source/operation/overlay/EdgeSetNoder.cpp,
source/operation/overlay/LineBuilder.cpp,
source/operation/overlay/MaximalEdgeRing.cpp,
source/operation/overlay/MinimalEdgeRing.cpp,
source/operation/overlay/OverlayNodeFactory.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/overlay/PointBuilder.cpp,
source/operation/overlay/PolygonBuilder.cpp,
source/operation/relate/EdgeEndBuilder.cpp,
source/operation/relate/EdgeEndBundle.cpp,
source/operation/relate/EdgeEndBundleStar.cpp,
source/operation/relate/RelateComputer.cpp,
source/operation/relate/RelateNode.cpp,
source/operation/relate/RelateNodeFactory.cpp,
source/operation/relate/RelateNodeGraph.cpp,
source/operation/relate/RelateOp.cpp,
source/operation/valid/ConnectedInteriorTester.cpp,
source/operation/valid/ConsistentAreaTester.cpp,
source/operation/valid/IsValidOp.cpp,
source/operation/valid/QuadtreeNestedRingTester.cpp,
source/operation/valid/RepeatedPointTester.cpp,
source/operation/valid/SimpleNestedRingTester.cpp,
source/operation/valid/SweeplineNestedRingTester.cpp,
source/operation/valid/TopologyValidationError.cpp,
source/test/Makefile.am, source/test/XMLTester.cpp,
source/util/Assert.cpp, source/util/AssertionFailedException.cpp,
source/util/CoordinateArrayFiter.cpp,
source/util/GEOSException.cpp,
source/util/IllegalArgumentException.cpp,
source/util/UniqueCoordinateArrayFilter.cpp,
source/util/UnsupportedOperationException.cpp: Norman's patch +
global removal of "no newline" + small changes to make Norman's
patch work in the linux build environment.
2003-08-17 20:01 pramsey
* libtool: Removed more configuration files per Norman's request.
2003-08-17 19:56 pramsey
* aclocal.m4, configure: Removed more configure files per Norman's
request.
2003-08-17 19:55 pramsey
* Makefile.in, macros/Makefile.in, source/Makefile.in,
source/bigtest/Makefile.in, source/geom/Coordinate.cpp,
source/geom/Makefile.in, source/headers/Makefile.in,
source/test/Makefile.in, tools/Makefile.in: Removed Makefile.in
files, per Norman's request.
2003-08-16 08:33 ybychkov
* VisualStudio/GEOS.vcproj, source/algorithm/ConvexHull.cpp,
source/algorithm/HCoordinate.cpp,
source/algorithm/LineIntersector.cpp,
source/algorithm/MCPointInRing.cpp,
source/algorithm/RobustCGAlgorithms.cpp,
source/algorithm/RobustLineIntersector.cpp,
source/algorithm/SimplePointInAreaLocator.cpp,
source/bigtest/TestSweepLineSpeed.cpp,
source/geom/BasicCoordinateList.cpp, source/geom/Coordinate.cpp,
source/geom/CoordinateList.cpp, source/geom/Dimension.cpp,
source/geom/Geometry.cpp, source/geom/GeometryCollection.cpp,
source/geom/GeometryCollectionIterator.cpp,
source/geom/GeometryFactory.cpp,
source/geom/IntersectionMatrix.cpp, source/geom/LineString.cpp,
source/geom/LinearRing.cpp, source/geom/Location.cpp,
source/geom/MultiLineString.cpp, source/geom/MultiPoint.cpp,
source/geom/Point.cpp, source/geom/PointCoordinateList.cpp,
source/geom/Polygon.cpp, source/geom/TopologyException.cpp,
source/headers/bigtest.h, source/headers/geom.h,
source/headers/geosAlgorithm.h, source/headers/graph.h,
source/headers/graphindex.h, source/headers/indexBintree.h,
source/headers/indexChain.h, source/headers/indexQuadtree.h,
source/headers/indexStrtree.h, source/headers/indexSweepline.h,
source/headers/io.h, source/headers/opBuffer.h,
source/headers/opDistance.h, source/headers/opOverlay.h,
source/headers/opRelate.h, source/headers/opValid.h,
source/headers/operation.h, source/headers/spatialIndex.h,
source/headers/util.h, source/index/bintree/BinTreeInterval.cpp,
source/index/bintree/BinTreeNode.cpp,
source/index/bintree/Bintree.cpp, source/index/bintree/Key.cpp,
source/index/bintree/NodeBase.cpp, source/index/bintree/Root.cpp,
source/index/chain/MonotoneChainBuilder.cpp,
source/index/chain/indexMonotoneChain.cpp,
source/index/quadtree/DoubleBits.cpp,
source/index/quadtree/QuadTreeKey.cpp,
source/index/quadtree/QuadTreeNode.cpp,
source/index/quadtree/QuadTreeNodeBase.cpp,
source/index/quadtree/QuadTreeRoot.cpp, source/io/WKTReader.cpp,
source/io/WKTWriter.cpp,
source/operation/GeometryGraphOperation.cpp,
source/operation/buffer/BufferOp.cpp,
source/operation/overlay/LineBuilder.cpp,
source/operation/overlay/MaximalEdgeRing.cpp,
source/operation/overlay/MinimalEdgeRing.cpp,
source/operation/overlay/OverlayOp.cpp,
source/operation/overlay/PointBuilder.cpp,
source/operation/overlay/PolygonBuilder.cpp,
source/operation/relate/EdgeEndBuilder.cpp,
source/operation/relate/EdgeEndBundle.cpp,
source/operation/relate/EdgeEndBundleStar.cpp,
source/operation/relate/RelateComputer.cpp,
source/operation/relate/RelateNode.cpp,
source/operation/relate/RelateNodeGraph.cpp,
source/operation/relate/RelateOp.cpp,
source/operation/valid/ConnectedInteriorTester.cpp,
source/operation/valid/ConsistentAreaTester.cpp,
source/operation/valid/IsValidOp.cpp,
source/operation/valid/QuadtreeNestedRingTester.cpp,
source/test/Stackwalker.cpp, source/test/Stackwalker.h,
source/test/XMLTester.cpp, source/util/CoordinateArrayFiter.cpp,
source/util/UniqueCoordinateArrayFilter.cpp: Memory leak fixes.
2003-06-22 00:17 pramsey
* source/geom/Makefile.am: GNU compile fixes from nvine.
2003-06-19 22:54 ybychkov
* source/: algorithm/CGAlgorithms.cpp, algorithm/CentroidArea.cpp,
algorithm/CentroidLine.cpp, algorithm/CentroidPoint.cpp,
algorithm/HCoordinate.cpp, algorithm/InteriorPointArea.cpp,
algorithm/InteriorPointLine.cpp, algorithm/InteriorPointPoint.cpp,
algorithm/LineIntersector.cpp, algorithm/MCPointInRing.cpp,
algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp,
algorithm/NotRepresentableException.cpp,
algorithm/PointLocator.cpp, algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustDeterminant.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SIRtreePointInRing.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, bigtest/GeometryTestFactory.cpp,
bigtest/TestSweepLineSpeed.cpp, examples/CPCLException.cpp,
examples/CoordinateListsExample.cpp,
examples/CustomCoordinateListExample.cpp,
examples/CustomCoordinateListExample.h,
examples/CustomPointCoordinateList.cpp,
geom/BasicCoordinateList.cpp, geom/Coordinate.cpp,
geom/CoordinateList.cpp, geom/CoordinateListFactory.cpp,
geom/Dimension.cpp, geom/Envelope.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryCollectionIterator.cpp,
geom/GeometryComponentFilter.cpp, geom/GeometryFactory.cpp,
geom/IntersectionMatrix.cpp, geom/LineSegment.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/Location.cpp,
geom/MultiLineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, geom/Point.cpp,
geom/PointCoordinateList.cpp, geom/Polygon.cpp,
geom/PrecisionModel.cpp, geom/TopologyException.cpp,
headers/bigtest.h, headers/geom.h, headers/geosAlgorithm.h,
headers/graph.h, headers/graphindex.h, headers/indexBintree.h,
headers/indexChain.h, headers/indexQuadtree.h,
headers/indexStrtree.h, headers/indexSweepline.h, headers/io.h,
headers/opBuffer.h, headers/opDistance.h, headers/opOverlay.h,
headers/opRelate.h, headers/opValid.h, headers/operation.h,
headers/spatialIndex.h, headers/util.h,
index/bintree/BinTreeInterval.cpp, index/bintree/BinTreeNode.cpp,
index/bintree/Bintree.cpp, index/bintree/Key.cpp,
index/bintree/NodeBase.cpp, index/bintree/Root.cpp,
index/chain/MonotoneChainBuilder.cpp,
index/chain/MonotoneChainOverlapAction.cpp,
index/chain/MonotoneChainSelectAction.cpp,
index/chain/indexMonotoneChain.cpp, index/quadtree/DoubleBits.cpp,
index/quadtree/IntervalSize.cpp, index/quadtree/QuadTreeKey.cpp,
index/quadtree/QuadTreeNode.cpp,
index/quadtree/QuadTreeNodeBase.cpp,
index/quadtree/QuadTreeRoot.cpp, index/quadtree/Quadtree.cpp,
index/strtree/AbstractNode.cpp, index/strtree/AbstractSTRtree.cpp,
index/strtree/Interval.cpp, index/strtree/ItemBoundable.cpp,
index/strtree/SIRtree.cpp, index/sweepline/SweepLineIndex.cpp,
index/sweepline/SweepLineInterval.cpp,
index/sweepline/indexSweepLineEvent.cpp, io/ParseException.cpp,
io/StringTokenizer.cpp, io/WKTReader.cpp, io/WKTWriter.cpp,
io/Writer.cpp, operation/GeometryGraphOperation.cpp,
operation/IsSimpleOp.cpp, operation/buffer/BufferEdgeBuilder.cpp,
operation/buffer/BufferLineBuilder.cpp,
operation/buffer/BufferOp.cpp, operation/buffer/BufferSubgraph.cpp,
operation/buffer/LoopFilter.cpp,
operation/buffer/RightmostEdgeFinder.cpp,
operation/distance/ConnectedElementPointFilter.cpp,
operation/distance/DistanceOp.cpp,
operation/distance/LineExtracterFilter.cpp,
operation/distance/PointExtracterFilter.cpp,
operation/distance/PolygonExtracterFilter.cpp,
operation/overlay/EdgeSetNoder.cpp,
operation/overlay/LineBuilder.cpp,
operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/MinimalEdgeRing.cpp,
operation/overlay/OverlayNodeFactory.cpp,
operation/overlay/OverlayOp.cpp,
operation/overlay/PointBuilder.cpp,
operation/overlay/PolygonBuilder.cpp,
operation/relate/EdgeEndBuilder.cpp,
operation/relate/EdgeEndBundle.cpp,
operation/relate/EdgeEndBundleStar.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNode.cpp,
operation/relate/RelateNodeFactory.cpp,
operation/relate/RelateNodeGraph.cpp,
operation/relate/RelateOp.cpp,
operation/valid/ConnectedInteriorTester.cpp,
operation/valid/ConsistentAreaTester.cpp,
operation/valid/IsValidOp.cpp,
operation/valid/QuadtreeNestedRingTester.cpp,
operation/valid/RepeatedPointTester.cpp,
operation/valid/SimpleNestedRingTester.cpp,
operation/valid/SweeplineNestedRingTester.cpp,
operation/valid/TopologyValidationError.cpp, test/CTS.cpp,
test/SimpleWKTTester.cpp, test/XMLTester.cpp, util/Assert.cpp,
util/AssertionFailedException.cpp, util/GEOSException.cpp,
util/IllegalArgumentException.cpp,
util/UnsupportedOperationException.cpp: 'geos' namespace added.
2003-06-18 22:08 ybychkov
* source/: headers/opBuffer.h,
operation/buffer/BufferEdgeBuilder.cpp,
operation/buffer/BufferLineBuilder.cpp,
operation/buffer/BufferOp.cpp, operation/buffer/BufferSubgraph.cpp,
operation/buffer/LoopFilter.cpp,
operation/buffer/RightmostEdgeFinder.cpp: Buffer is almost fully
debugged.
2003-05-29 02:05 pramsey
* source/: bigtest/Makefile.am, geom/Makefile.am: Final GNU build
adjustments.
2003-05-29 01:55 pramsey
* source/examples/Makefile.am: Added new exception class.
2003-05-29 01:39 pramsey
* source/headers/Makefile.am: Change reference to spatialIndex.h
2003-05-29 01:22 pramsey
* source/geom/Makefile.am: Removed obsolete build entries for
removed classes.
2003-05-29 00:22 ybychkov
* source/: headers/indexStrtree.h, index/strtree/Interval.cpp: Some
bugfixes.
2003-05-29 00:11 ybychkov
* source/: index/bintree/Interval.cpp, index/bintree/Node.cpp,
test/XMLTester.cpp: no message
2003-05-28 07:02 pramsey
* source/index/strtree/: Interval.cpp, SIRtree.cpp: Changed
__max/__min to max/min
2003-05-28 07:01 pramsey
* source/index/quadtree/IntervalSize.cpp: Change __max to max
2003-05-28 01:56 pramsey
* source/geom/Makefile.am: Changed from mistaken cpp file names.
2003-05-28 01:54 pramsey
* source/algorithm/CentroidArea.cpp: Added include for <typeinfo>
2003-05-28 01:45 pramsey
* source/headers/indexStrtree.h: GNU build support
2003-05-28 01:42 pramsey
* source/headers/indexQuadtree.h: Fix reference to spatialIndex
header
2003-05-28 01:41 pramsey
* source/headers/: Makefile.in, SpatialIndex.h, geom.h,
indexStrtree.h, spatialIndex.h: Build updates.
2003-05-28 01:33 pramsey
* source/geom/Makefile.am: Add new files into build support
2003-05-28 01:17 pramsey
* source/headers/Makefile.am: Add all new headers into the build
process.
2003-05-28 01:11 pramsey
* source/: geom/Makefile.am, headers/Makefile.am: Some updates to
synch build with devel.
2003-05-22 01:28 ybychkov
* source/: algorithm/MCPointInRing.cpp, geom/PrecisionModel.cpp,
index/bintree/Key.cpp, operation/relate/RelateOp.cpp: Several bugs
fixed.
2003-05-19 08:18 ybychkov
* source/: algorithm/HCoordinate.cpp,
algorithm/NotRepresentableException.cpp,
algorithm/RobustLineIntersector.cpp, examples/CPCLException.cpp,
examples/CoordinateListsExample.cpp,
examples/CustomCoordinateListExample.cpp,
examples/CustomCoordinateListExample.h,
examples/CustomPointCoordinateList.cpp, geom/CoordinateList.cpp,
geom/Dimension.cpp, geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryCollectionIterator.cpp, geom/GeometryFactory.cpp,
geom/IntersectionMatrix.cpp, geom/LineString.cpp,
geom/LinearRing.cpp, geom/Location.cpp, geom/Point.cpp,
geom/Polygon.cpp, geom/TopologyException.cpp, headers/geom.h,
headers/geosAlgorithm.h, headers/io.h, headers/util.h,
index/quadtree/DoubleBits.cpp, io/ParseException.cpp,
io/WKTReader.cpp, operation/valid/IsValidOp.cpp,
operation/valid/RepeatedPointTester.cpp, test/CTS.cpp,
test/SimpleWKTTester.cpp, util/Assert.cpp,
util/AssertionFailedException.cpp, util/GEOSException.cpp,
util/IllegalArgumentException.cpp,
util/UnsupportedOperationException.cpp: All exceptions are now
classes.
2003-05-17 09:47 ybychkov
* source/: algorithm/CentroidArea.cpp, algorithm/CentroidLine.cpp,
algorithm/CentroidPoint.cpp, algorithm/InteriorPointArea.cpp,
algorithm/InteriorPointLine.cpp, algorithm/InteriorPointPoint.cpp,
algorithm/SIRtreePointInRing.cpp,
index/quadtree/QuadTreeNodeBase.cpp: Last fix for CVS.
2003-05-17 08:08 ybychkov
* source/: algorithm/MCPointInRing.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/graphindex.h, headers/indexQuadtree.h,
headers/indexStrtree.h, index/quadtree/Quadtree.cpp,
index/strtree/AbstractSTRtree.cpp, operation/valid/IsValidOp.cpp:
Fixing CVS error.
2003-05-17 02:27 ybychkov
* source/: geom/GeometryCollection.cpp, headers/geosAlgorithm.h:
Fixing a commit problem.
2003-05-17 02:07 ybychkov
* source/: algorithm/MCPointInRing.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/opDistance.h, index/strtree/SIRtree.cpp,
index/strtree/STRtree.cpp,
operation/distance/ConnectedElementPointFilter.cpp,
operation/distance/DistanceOp.cpp,
operation/distance/LineExtracterFilter.cpp,
operation/distance/PointExtracterFilter.cpp,
operation/distance/PolygonExtracterFilter.cpp: SIRtree is done.
Distance is done.
2003-05-07 11:06 ybychkov
* source/: algorithm/CentroidArea.cpp, algorithm/CentroidLine.cpp,
algorithm/CentroidPoint.cpp, algorithm/ConvexHull.java,
algorithm/IntTreePointInRing.cpp, algorithm/InteriorPointArea.cpp,
algorithm/InteriorPointLine.cpp, algorithm/InteriorPointPoint.cpp,
algorithm/MCPointInRing.cpp, algorithm/SIRtreePointInRing.cpp,
geom/GeometryComponentFilter.cpp, geom/TopologyException.cpp,
headers/SpatialIndex.h, headers/geosAlgorithm.h,
headers/graphindex.h, headers/indexBintree.h,
headers/indexIntervaltree.h, headers/indexQuadtree.h,
headers/indexStrtree.h, index/bintree/BinTreeInterval.cpp,
index/bintree/BinTreeNode.cpp, index/bintree/Bintree.cpp,
index/bintree/Interval.cpp, index/bintree/Key.cpp,
index/bintree/Node.cpp, index/bintree/NodeBase.cpp,
index/bintree/Root.cpp, index/quadtree/DoubleBits.cpp,
index/quadtree/IntervalSize.cpp, index/quadtree/Quad.cpp,
index/quadtree/QuadTreeKey.cpp, index/quadtree/QuadTreeNode.cpp,
index/quadtree/QuadTreeNodeBase.cpp,
index/quadtree/QuadTreeRoot.cpp, index/quadtree/Quadtree.cpp,
index/strtree/AbstractNode.cpp, index/strtree/AbstractSTRtree.cpp,
index/strtree/Interval.cpp, index/strtree/ItemBoundable.cpp,
operation/valid/QuadtreeNestedRingTester.cpp: Closer to 1.3
2003-05-05 00:34 ybychkov
* source/: algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustLineIntersector.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/PrecisionModel.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/graphindex.h, headers/opRelate.h, headers/opValid.h,
headers/operation.h, operation/GeometryGraphOperation.cpp,
operation/relate/RelateComputer.cpp, operation/relate/RelateOp.cpp,
operation/valid/IsValidOp.cpp: Closer to JTS 1.3
2003-04-28 08:01 ybychkov
* source/: algorithm/CGAlgorithms.cpp, algorithm/HCoordinate.cpp,
algorithm/IntTreePointInRing.cpp, algorithm/LineIntersector.cpp,
algorithm/MCPointInRing.cpp, algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp,
algorithm/NotRepresentableException.cpp,
algorithm/PointLocator.cpp, algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustDeterminant.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, bigtest/GeometryTestFactory.cpp,
examples/CustomCoordinateListExample.h,
geom/BasicCoordinateList.cpp, geom/Coordinate.cpp,
geom/CoordinateList.cpp, geom/CoordinateListFactory.cpp,
geom/Dimension.cpp, geom/Envelope.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryCollectionIterator.cpp,
geom/GeometryFactory.cpp, geom/IntersectionMatrix.cpp,
geom/LineSegment.cpp, geom/LineString.cpp, geom/LinearRing.cpp,
geom/Location.cpp, geom/MultiLineString.cpp, geom/MultiPoint.cpp,
geom/MultiPolygon.cpp, geom/Point.cpp,
geom/PointCoordinateList.cpp, geom/Polygon.cpp,
geom/PrecisionModel.cpp, headers/geom.h, headers/geosAlgorithm.h,
headers/graph.h, headers/graphindex.h, headers/opOverlay.h,
headers/opValid.h, index/chain/MonotoneChainBuilder.cpp,
index/chain/MonotoneChainOverlapAction.cpp,
index/chain/MonotoneChainSelectAction.cpp,
index/chain/indexMonotoneChain.cpp, index/quadtree/Quad.cpp,
index/quadtree/Quadtree.cpp, index/sweepline/SweepLineIndex.cpp,
index/sweepline/SweepLineInterval.cpp,
index/sweepline/indexSweepLineEvent.cpp, io/ParseException.cpp,
io/StringTokenizer.cpp, io/WKTReader.cpp, io/WKTWriter.cpp,
io/Writer.cpp, operation/GeometryGraphOperation.cpp,
operation/IsSimpleOp.cpp, operation/overlay/EdgeSetNoder.cpp,
operation/overlay/LineBuilder.cpp,
operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/MinimalEdgeRing.cpp,
operation/overlay/OverlayNodeFactory.cpp,
operation/overlay/OverlayOp.cpp,
operation/overlay/PointBuilder.cpp,
operation/overlay/PolygonBuilder.cpp,
operation/relate/EdgeEndBuilder.cpp,
operation/relate/EdgeEndBundle.cpp,
operation/relate/EdgeEndBundleStar.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNode.cpp,
operation/relate/RelateNodeFactory.cpp,
operation/relate/RelateNodeGraph.cpp,
operation/relate/RelateOp.cpp,
operation/valid/ConnectedInteriorTester.cpp,
operation/valid/ConsistentAreaTester.cpp,
operation/valid/IsValidOp.cpp,
operation/valid/QuadtreeNestedRingTester.cpp,
operation/valid/RepeatedPointTester.cpp,
operation/valid/SimpleNestedRingTester.cpp,
operation/valid/SweeplineNestedRingTester.cpp,
operation/valid/TopologyValidationError.cpp, util/Assert.cpp,
util/AssertionFailedException.cpp: Partially upgraded to JTS 1.3
2003-04-22 00:16 ybychkov
* VisualStudio/: GEOS.sln, GEOS.vcproj: VisualStudio project added.
2003-04-17 02:37 ybychkov
* source/: geom/BasicCoordinateList.cpp, geom/Geometry.cpp,
geom/GeometryFactory.cpp, geom/PointCoordinateList.cpp,
io/WKTReader.cpp: Changed PrecisionModel to Value type. Removed
bounds checking from *At methods in CoordinateLists.
2003-04-12 06:31 ybychkov
* source/operation/overlay/OverlayOp.cpp: Overlay passes all tests
(both precise and normal)
2003-04-12 01:16 ybychkov
* source/: geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryFactory.cpp, geom/LineString.cpp, geom/Point.cpp,
geom/Polygon.cpp, geom/PrecisionModel.cpp, headers/geom.h,
io/WKTReader.cpp, test/XMLTester.cpp: Overlay almost works. Fails 2
tests.
2003-04-10 06:34 ybychkov
* source/: geom/Geometry.cpp, geom/GeometryFactory.cpp,
operation/overlay/OverlayOp.cpp, test/XMLTester.cpp: Overlay passes
all normal tests. Still fails on Precision tests.
2003-04-09 23:52 pramsey
* source/headers/geom.h: Changed destructors to virtual to quiet
GNU warnings
2003-04-05 01:49 pramsey
* source/headers/Makefile.am: Install all headers at install time.
2003-04-05 00:04 pramsey
* source/examples/: CustomCoordinateListExample.cpp,
CustomCoordinateListExample.h, CustomPointCoordinateList.cpp:
Newlines added to quiet gcc.
2003-04-04 05:44 pramsey
* source/geom/Makefile.am: Build support
2003-04-04 05:43 pramsey
* source/examples/Makefile.am: Build support.
2003-04-04 05:28 pramsey
* source/geom/Makefile.am: Build support updates.
2003-04-04 05:11 pramsey
* source/examples/Makefile.am: Build support for new example
programs.
2003-04-04 02:18 dblasby
* INSTALL: added comment about running ./autogen.sh
2003-04-02 23:55 ybychkov
* source/examples/: CustomCoordinateListExample.cpp,
CustomCoordinateListExample.h, CustomPointCoordinateList.cpp: Added
example on how to wrap internal storage format with
CoordinateLists.
2003-04-02 10:02 ybychkov
* source/: algorithm/MCPointInRing.cpp,
geom/BasicCoordinateList.cpp, geom/LineString.cpp,
geom/PointCoordinateList.cpp, headers/geom.h, headers/indexChain.h,
headers/opOverlay.h, operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/MinimalEdgeRing.cpp,
operation/overlay/OverlayNodeFactory.cpp,
operation/valid/ConnectedInteriorTester.cpp,
operation/valid/IsValidOp.cpp: isValid is debugged (passes all 805
tests).
2003-03-24 20:23 pramsey
* source/headers/: indexQuadtree.h, indexSweepline.h: Added
newlines to end to quiet gcc
2003-03-24 20:21 pramsey
* Makefile.in, aclocal.m4, configure, configure.in, libtool,
macros/Makefile.in, source/Makefile.am, source/Makefile.in,
source/algorithm/Makefile.am, source/algorithm/Makefile.in,
source/bigtest/Makefile.in, source/geom/Makefile.in,
source/headers/Makefile.in, source/headers/config.h.in,
source/headers/indexChain.h, source/headers/indexIntervaltree.h,
source/io/Makefile.am, source/io/Makefile.in,
source/io/markup/Makefile.am, source/io/markup/Makefile.in,
source/operation/Makefile.am, source/operation/Makefile.in,
source/operation/relate/Makefile.am,
source/operation/relate/Makefile.in,
source/operation/valid/Makefile.am, source/test/Makefile.in,
source/util/Makefile.am, source/util/Makefile.in,
tools/Makefile.in: Yet more GNU build fiddling. Removed extraneous
build support from all non-geom library directories.
2003-03-24 04:45 pramsey
* source/geom/Makefile.am: More GNU build support
2003-03-24 04:07 pramsey
* Makefile.in, aclocal.m4, configure, configure.in, libtool,
macros/Makefile.in, source/Makefile.in,
source/algorithm/Makefile.in, source/bigtest/Makefile.in,
source/geom/Makefile.am, source/geom/Makefile.in,
source/headers/Makefile.in, source/headers/config.h.in,
source/headers/geosAlgorithm.h, source/headers/opValid.h,
source/io/Makefile.in, source/io/markup/Makefile.in,
source/operation/Makefile.am, source/operation/Makefile.in,
source/operation/relate/Makefile.in, source/test/Makefile.in,
source/test/XMLTester.cpp, source/util/Makefile.in,
tools/Makefile.in: GNU build support on latest changes.
2003-03-19 01:34 ybychkov
* source/: algorithm/IntTreePointInRing.cpp, geom/Geometry.cpp,
headers/geosAlgorithm.h, headers/opOverlay.h,
operation/overlay/LineBuilder.cpp, operation/overlay/OverlayOp.cpp,
operation/overlay/OverlayOp.java: All Overlay classes are ported.
Overlay and isValid have not been tested yet.
2003-03-18 02:42 ybychkov
* source/: geom/Geometry.cpp, headers/opOverlay.h,
headers/opValid.h, index/quadtree/Quad.cpp,
operation/overlay/EdgeSetNoder.cpp,
operation/overlay/LineBuilder.cpp,
operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/OverlayNodeFactory.cpp,
operation/overlay/OverlayOp.java,
operation/overlay/PointBuilder.cpp,
operation/overlay/PolygonBuilder.cpp,
operation/valid/IsValidOp.cpp,
operation/valid/RepeatedPointTester.cpp, test/XMLTester.cpp: 90% of
Overlay classes ported.
2003-03-17 19:04 ybychkov
* source/: algorithm/MCPointInRing.cpp, headers/geosAlgorithm.h,
headers/indexChain.h, headers/indexIntervaltree.h,
index/chain/MonotoneChainBuilder.cpp,
index/chain/MonotoneChainOverlapAction.cpp,
index/chain/MonotoneChainSelectAction.cpp,
index/chain/indexMonotoneChain.cpp: All 'index' packages and part
of 'overlay' are done.
2003-03-17 03:49 ybychkov
* source/: algorithm/MCPointInRing.cpp, headers/geosAlgorithm.h,
headers/opOverlay.h, headers/opValid.h,
operation/overlay/MaximalEdgeRing.cpp,
operation/overlay/MinimalEdgeRing.cpp,
operation/valid/IsValidOp.cpp: IsValid and supporting packages are
ported (but NOT tested).
2003-03-13 00:45 pramsey
* source/: geom/Makefile.am, operation/Makefile.am,
operation/valid/Makefile.am: Build support for valid.
2003-03-10 11:18 ybychkov
* source/: headers/indexQuadtree.h, headers/opOverlay.h,
headers/opValid.h, operation/valid/ConnectedInteriorTester.cpp,
operation/valid/QuadtreeNestedRingTester.cpp: IsValid() and
supporting index classes are ported, but don't work yet (external
dependencies)
2003-03-10 02:17 ybychkov
* source/: headers/indexQuadtree.h, headers/indexSweepline.h,
headers/opValid.h, index/quadtree/Quad.cpp,
index/quadtree/Quadtree.cpp, index/sweepline/SweepLineIndex.cpp,
index/sweepline/SweepLineInterval.cpp,
index/sweepline/indexSweepLineEvent.cpp,
operation/valid/ConsistentAreaTester.cpp,
operation/valid/IsValidOp.cpp,
operation/valid/RepeatedPointTester.cpp,
operation/valid/SimpleNestedRingTester.cpp,
operation/valid/SweeplineNestedRingTester.cpp,
operation/valid/TopologyValidationError.cpp, test/XMLTester.cpp:
IsValid and supporting index classes are almost done.
2003-03-05 18:04 pramsey
* configure.in, source/Makefile.am, source/examples/Makefile.am:
Build support for new coordinateline examples.
2003-03-05 09:02 ybychkov
* source/: examples/CoordinateListsExample.cpp,
geom/PointCoordinateList.cpp, headers/geom.h: CoordinateList
interface example.
2003-03-03 04:56 pramsey
* source/geom/Makefile.am: Remove PointInRing
2003-03-03 04:35 pramsey
* source/algorithm/PointInRing.cpp: Removed unused file.
2003-03-03 03:41 ybychkov
* source/: algorithm/LineIntersector.cpp,
bigtest/GeometryTestFactory.cpp, geom/GeometryFactory.cpp,
geom/PointCoordinateList.cpp, io/WKTReader.cpp: Some Coordinate&
related bugs fixed.
2003-03-03 03:26 ybychkov
* source/geom/GeometryFactory.cpp: GeometryFactory bug fix.
2003-03-03 01:46 ybychkov
* source/: algorithm/CGAlgorithms.cpp, algorithm/HCoordinate.cpp,
algorithm/LineIntersector.cpp, algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, geom/BasicCoordinateList.cpp,
geom/Coordinate.cpp, geom/Geometry.cpp, geom/GeometryFactory.cpp,
geom/LineSegment.cpp, geom/LineString.cpp, geom/Point.cpp,
geom/PointCoordinateList.cpp, geom/PrecisionModel.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/graphindex.h, headers/opRelate.h, headers/operation.h,
headers/util.h, io/WKTReader.cpp, operation/IsSimpleOp.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNode.cpp, test/CTS.cpp, util/Assert.cpp:
Second pass of code cleanup. Coordinate references and inlining.
2003-03-02 04:47 ybychkov
* source/: headers/graph.h, headers/graphindex.h,
operation/IsSimpleOp.cpp, operation/relate/EdgeEndBuilder.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNodeGraph.cpp: First pass of code cleanup
completed over all packages.
2003-03-01 07:10 pramsey
* source/headers/geosAlgorithm.h: Uncommented default constructor
for PointInRing
2003-03-01 07:08 pramsey
* source/test/SimpleWKTTester.cpp: Fixed call to geometry factory.
2003-02-27 00:16 ybychkov
* source/: algorithm/LineIntersector.cpp,
algorithm/NonRobustCGAlgorithms.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, headers/geosAlgorithm.h,
headers/io.h, headers/util.h, io/StringTokenizer.cpp,
io/WKTReader.cpp, io/WKTWriter.cpp, io/Writer.cpp,
test/XMLTester.cpp: All packages except 'graph' has been
refactored.
2003-02-20 04:32 pramsey
* source/test/SimpleWKTTester.cpp: Fixed small bug in call to
GeometryFactory (instantiate PrecisionModel with new)
2003-02-20 04:30 pramsey
* source/geom/: CoordinateListFactory.cpp, GeometryFactory.cpp:
GFactory: Move i outside of for loop. Needed to compile GNU
CListFactory: Add newline to end of file.
2003-02-20 01:10 ybychkov
* source/: geom/GeometryFactory.cpp, headers/opRelate.h,
operation/IsSimpleOp.cpp, operation/relate/EdgeEndBundle.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNodeGraph.cpp,
operation/relate/RelateOp.cpp: Geom and Operation (including
Relate) packages are updated.
2003-02-17 10:38 ybychkov
* source/: geom/Envelope.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/IntersectionMatrix.cpp,
geom/LineString.cpp, geom/Polygon.cpp, headers/geom.h,
headers/io.h, headers/opRelate.h, headers/operation.h,
io/WKTWriter.cpp, operation/GeometryGraphOperation.cpp,
operation/relate/RelateComputer.cpp, operation/relate/RelateOp.cpp,
test/XMLTester.cpp: GEOM package fully updated & bugs fixed.
2003-02-17 01:40 ybychkov
* source/: geom/Geometry.cpp, geom/MultiLineString.cpp,
geom/MultiPoint.cpp, geom/MultiPolygon.cpp, geom/Point.cpp,
geom/Polygon.cpp, headers/geom.h, headers/io.h, io/WKTReader.cpp:
GEOM package fully updated.
2003-02-16 23:52 ybychkov
* source/: bigtest/GeometryTestFactory.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryCollectionIterator.cpp,
geom/GeometryFactory.cpp, geom/IntersectionMatrix.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/MultiLineString.cpp,
geom/MultiPoint.cpp, geom/MultiPolygon.cpp, geom/Point.cpp,
geom/Polygon.cpp, headers/geom.h, io/WKTReader.cpp: GEOM package
partially updated.
2003-02-12 22:09 pramsey
* INSTALL, missing: Added two files required by autoconf build
process.
2003-02-12 21:51 pramsey
* configure, libtool, source/geom/Makefile.in,
source/headers/Makefile.in, source/test/Makefile.in: Commit build
support files.
2003-02-12 20:11 pramsey
* source/headers/Makefile.am: Change header installation path to
$(prefix)/include/geos.
2003-02-12 07:49 pramsey
* source/: algorithm/LineIntersector.cpp,
algorithm/SimplePointInRing.cpp,
operation/relate/EdgeEndBundle.cpp,
operation/GeometryGraphOperation.cpp: Added newlines to quiet g++
warnings.
2003-02-12 07:27 pramsey
* source/test/XMLTester.cpp: Fix headers.
2003-02-12 07:24 pramsey
* source/bigtest/TestSweepLineSpeed.cpp: Added return value.
2003-02-12 07:24 pramsey
* source/: bigtest/TestSweepLineSpeed.cpp,
test/SimpleWKTTester.cpp: Changed headers.
2003-02-12 07:20 pramsey
* source/test/: CTS.cpp, XMLTester.cpp: Changed headers.
2003-02-12 07:19 pramsey
* source/test/XMLTester.cpp: Make path to test file relative.
2003-02-12 07:18 pramsey
* source/bigtest/GeometryTestFactory.cpp: Change include reference
syntax.
2003-02-12 07:07 pramsey
* source/io/WKTWriter.cpp: Pass double to log().
2003-02-12 07:07 pramsey
* source/bigtest/TestSweepLineSpeed.cpp: Fixed main() return type.
2003-02-12 07:04 pramsey
* source/test/Makefile.am: Remove old library references.
2003-02-12 06:58 pramsey
* source/bigtest/TestSweepLineSpeed.cpp: Added stdio reference and
newline at end.
2003-02-12 01:58 pramsey
* source/test/test.xml: Added all JTS test cases to the file.
2003-02-12 00:54 pramsey
* source/geom/Makefile.am: Added support for new cpp files.
2003-02-12 00:33 ybychkov
* source/: geom/CoordinateList.cpp, geom/Geometry.cpp,
geom/PointCoordinateList.cpp, geom/Polygon.cpp, headers/geom.h:
Some bugs fixed.
2003-02-11 21:24 ybychkov
* source/: geom/PointCoordinateList.cpp, headers/graph.h: Small
changes in PointCoordinateList and EdgeEndStar.
2003-02-11 20:01 mbdavis
* source/geom/Geometry.cpp: fixed duplicate for loop index
2003-02-05 09:14 ybychkov
* source/: bigtest/GeometryTestFactory.cpp,
geom/BasicCoordinateList.cpp, geom/CoordinateList.cpp,
geom/CoordinateListFactory.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/MultiPoint.cpp,
geom/Point.cpp, geom/PointCoordinateList.cpp, geom/Polygon.cpp,
geom/PrecisionModel.cpp, headers/geom.h, io/WKTReader.cpp,
io/WKTWriter.cpp, operation/IsSimpleOp.cpp, test/XMLTester.cpp:
Second pass of CoordinateList interface migration.
2003-01-27 09:04 ybychkov
* source/: algorithm/NonRobustCGAlgorithms.cpp,
algorithm/PointLocator.cpp, algorithm/RobustCGAlgorithms.cpp,
algorithm/SimplePointInRing.cpp, geom/BasicCoordinateList.cpp,
geom/Envelope.cpp, geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/GeometryFactory.cpp, geom/LineSegment.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/MultiLineString.cpp,
geom/Point.cpp, geom/Polygon.cpp, geom/PrecisionModel.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/graphindex.h, headers/io.h, io/WKTReader.cpp: First pass of
CoordinateList interface replacement.
2003-01-27 08:56 ybychkov
* source/algorithm/CGAlgorithms.cpp: First pass of CoordinateList
interface replacement.
2003-01-27 08:26 ybychkov
* source/algorithm/CGAlgorithms.cpp: First pass of CoordinateList
interface replacement.
2002-12-02 10:48 ybychkov
* source/: algorithm/CGAlgorithms.cpp,
algorithm/NonRobustCGAlgorithms.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp, algorithm/SimplePointInRing.cpp,
bigtest/TestSweepLineSpeed.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryFactory.cpp,
geom/LineString.cpp, geom/LinearRing.cpp, geom/Point.cpp,
geom/Polygon.cpp, headers/geom.h, headers/geosAlgorithm.h,
headers/graph.h: More performance updates.
2002-11-24 11:48 ybychkov
* source/: algorithm/RobustLineIntersector.cpp,
bigtest/TestSweepLineSpeed.cpp, geom/CoordinateList.cpp,
headers/geom.h, headers/graphindex.h: Some performance
improvements.
2002-11-15 00:43 pramsey
* configure.in, source/Makefile.am, source/Makefile.in,
source/bigtest/Makefile.am, source/bigtest/Makefile.in,
source/geom/Makefile.am, source/geom/Makefile.in: Build support for
the bigtest programs.
2002-11-08 20:49 ybychkov
* source/: bigtest/TestSweepLineSpeed.cpp, geom/Coordinate.cpp,
headers/geom.h, headers/graph.h, headers/graphindex.h: Preformance
is drastically improved
2002-11-06 00:13 ybychkov
* source/: bigtest/GeometryTestFactory.cpp,
bigtest/TestSweepLineSpeed.cpp, headers/bigtest.h,
operation/relate/RelateComputer.cpp: Code for generating large
tests added.
2002-10-31 08:37 ybychkov
* source/: io/StringTokenizer.cpp, test/XMLTester.cpp: XML tester
is less fragile now.
2002-10-30 22:59 pramsey
* config.guess, config.sub: Added configure support files for
building w/o automake/autoconf
2002-10-30 22:58 pramsey
* configure.in: Small changes to make autoconf happy.
2002-10-30 21:04 pramsey
* source/test/test.xml: Edited test file to not crash XMLTester
2002-10-30 20:54 pramsey
* Makefile.in, aclocal.m4, configure, configure.in, libtool,
macros/Makefile.in, source/Makefile.in,
source/algorithm/Makefile.in, source/geom/Makefile.am,
source/geom/Makefile.in, source/headers/Makefile.in,
source/headers/config.h.in, source/headers/opRelate.h,
source/io/Makefile.in, source/io/markup/Makefile.in,
source/operation/Makefile.in, source/operation/relate/Makefile.in,
source/test/Makefile.am, source/test/Makefile.in,
source/util/Makefile.in, tools/Makefile.in: New build changes
necessary to build under Linux GNU.
2002-10-23 04:21 nvine
* configure.in, source/Makefile.am, source/geom/Geometry.cpp,
source/geom/GeometryCollection.cpp, source/geom/Makefile.am,
source/geom/Polygon.cpp,
source/operation/GeometryGraphOperation.cpp,
source/operation/relate/RelateComputer.cpp, source/test/CTS.cpp,
source/test/SimpleWKTTester.cpp, source/test/XMLTester.cpp: GNU
portability changes
2002-10-17 09:12 ybychkov
* source/: algorithm/SimplePointInAreaLocator.cpp,
geom/Geometry.cpp, geom/GeometryCollectionIterator.cpp,
headers/graphindex.h, test/XMLTester.cpp: All test cases now work.
Some are still too slow.
2002-10-06 11:56 ybychkov
* source/: algorithm/PointLocator.cpp, headers/graph.h,
headers/graphindex.h, headers/opRelate.h, operation/IsSimpleOp.cpp,
operation/relate/EdgeEndBuilder.cpp,
operation/relate/EdgeEndBundle.cpp,
operation/relate/EdgeEndBundleStar.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNodeGraph.cpp, test/XMLTester.cpp: Relate()
is almost debugged.
2002-09-12 16:08 fvilla
* Makefile.in, configure, configure.in, libtool,
source/geom/Makefile.am, source/geom/Makefile.in,
source/headers/Makefile.am, source/headers/Makefile.in,
source/operation/Makefile.am, source/operation/Makefile.in,
source/operation/relate/Makefile.am,
source/operation/relate/Makefile.in: Add makefile support for new
files and dir
2002-09-12 03:27 ybychkov
* source/: geom/Geometry.cpp, geom/LineString.cpp,
geom/MultiLineString.cpp, geom/MultiPoint.cpp, geom/Polygon.cpp,
headers/geom.h, headers/graph.h, headers/opRelate.h,
headers/operation.h, operation/GeometryGraphOperation.cpp,
operation/relate/EdgeEndBuilder.cpp,
operation/relate/EdgeEndBundle.cpp,
operation/relate/EdgeEndBundleStar.cpp,
operation/relate/RelateComputer.cpp,
operation/relate/RelateNode.cpp,
operation/relate/RelateNodeFactory.cpp,
operation/relate/RelateNodeGraph.cpp,
operation/relate/RelateOp.cpp, test/XMLTester.cpp: Relate is
finished,but doesn't work yet.
2002-09-10 15:46 fvilla
* configure, configure.in, libtool, source/Makefile.am,
source/Makefile.in, source/geom/Makefile.am,
source/geom/Makefile.in, source/operation/Makefile.am,
source/operation/Makefile.in: Added operation/Makefiles
2002-09-06 22:18 ybychkov
* source/: algorithm/CGAlgorithms.cpp,
algorithm/NonRobustCGAlgorithms.cpp,
algorithm/NonRobustLineIntersector.cpp,
operation/GeometryGraphOperation.cpp, operation/IsSimpleOp.cpp,
algorithm/HCoordinate.cpp, algorithm/PointLocator.cpp,
algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, geom/Envelope.cpp,
geom/Geometry.cpp, geom/GeometryCollection.cpp,
geom/LineSegment.cpp, geom/LineString.cpp, geom/Point.cpp,
geom/Polygon.cpp, geom/PrecisionModel.cpp, headers/geom.h,
headers/geosAlgorithm.h, headers/graph.h, headers/operation.h: A
lot of changes: Code is brought to version 1.2 of JTS. Compilable
part of Operation added.
2002-09-05 20:32 fvilla
* ChangeLog, Makefile.in, configure, configure.in, libtool,
source/Makefile.in, source/geom/Makefile.am,
source/geom/Makefile.in, source/headers/Makefile.am,
source/headers/Makefile.in, source/io/Makefile.in,
source/io/markup/Makefile.in, source/test/Makefile.in,
source/util/Makefile.in, tools/Makefile.in: Fixed version
numbering. Whenever version numbers are bumped up the change should
be reflected in the AC_INIT_AUTOMAKE macro in configure.in. I've
put it at 0.0.1 - should be changed as appropriate. The version is
#define'd for code being compiled as GEOS_VERSION.
2002-09-03 18:04 pramsey
* source/test/Makefile.am: Changed reference to 'libgeom' to
'libgeos'
2002-09-03 15:53 fvilla
* Makefile.am, Makefile.in, acinclude.m4, aclocal.m4, configure,
configure.in, install-sh, libtool, ltmain.sh, mkinstalldirs,
macros/Makefile.am, macros/Makefile.in, macros/geos.m4,
source/Makefile.am, source/Makefile.in,
source/algorithm/Makefile.am, source/algorithm/Makefile.in,
source/geom/Makefile.am, source/geom/Makefile.in,
source/headers/Makefile.am, source/headers/Makefile.in,
source/headers/config.h.in, source/io/Makefile.am,
source/io/Makefile.in, source/io/markup/Makefile.am,
source/io/markup/Makefile.in, source/test/Makefile.am,
source/test/Makefile.in, source/util/Makefile.am,
source/util/Makefile.in, tools/Makefile.am, tools/Makefile.in,
tools/geos-config.in: * Add automake/autoconf support for one-lib
compilation
* add libtool support for shared libraries.
--enable-shared={yes|no} and --enable-static={yes|no} control
static and shared lib generation.
* Makefile.in and configure files added to cvs (for users without
automake)
* add dir macros/ with a GEOS_INIT macro to be used in configure.in
of other packages using geos (not used by geos itself)
* add dir tools/ with geos-config script
* the makefile in source/geom is the only one that generates a
library - all others have the source files in EXTRA_DIST only
* small glitch: 'make dist' will give errors trying to add the
source files non local to source/geom to the archive using relative
paths. Does not have consequences other than the error messages -
will see if I can fix this. In general the one-lib, complex-tree
solution is not easy to work with in automake.
2002-09-01 20:05 pramsey
* source/: algorithm/NotRepresentableException.cpp,
algorithm/PointInRing.cpp, algorithm/PointLocator.cpp,
algorithm/RobustLineIntersector.cpp, io/ParseException.cpp,
io/WKTWriter.cpp, io/Writer.cpp, io/markup/MarkupSTL.cpp: Minor
portability changes.
2002-09-01 19:53 pramsey
* configure.in, source/Makefile.am, source/algorithm/Makefile.am:
Changes to support algorithm directory in build structure.
2002-09-01 19:51 pramsey
* source/geom/: Coordinate.cpp, CoordinateList.cpp, Dimension.cpp,
Envelope.cpp, Geometry.cpp, GeometryCollection.cpp,
GeometryFactory.cpp, IntersectionMatrix.cpp, LineSegment.cpp,
LineString.cpp, Location.cpp, MultiPoint.cpp, PrecisionModel.cpp:
GNU compatibility fixes, changing __min/__max to min/max, adding
stdio.h where needed, small syntax adjustments, newlines at end of
files.
2002-08-30 20:33 pramsey
* COPYING: Added LGPL licence text.
2002-08-30 20:30 pramsey
* AUTHORS, Authors: Changed name of authors file as requested by
autoconf.
2002-08-30 20:28 pramsey
* autogen.sh: Removed --force-missing which did not work for my
version of autoconf
2002-08-30 20:16 pramsey
* .cvsignore, source/.cvsignore, source/geom/.cvsignore,
source/io/.cvsignore, source/io/markup/.cvsignore,
source/test/.cvsignore, source/util/.cvsignore: Added cvs ignore
files.
2002-08-30 20:15 pramsey
* source/test/: CTS.cpp, SimpleWKTTester.cpp, WKTIn, WKTOut,
XMLTester.cpp, test.xml: Added the testing files back into their
new subdirectory.
2002-08-30 20:15 pramsey
* Authors, ChangeLog, Makefile.am, NEWS, README, autogen.sh,
configure.in, source/CTS.cpp, source/Makefile.am,
source/SimpleWKTTester.cpp, source/WKTIn, source/WKTOut,
source/XMLTester.cpp, source/test.xml, source/geom/Makefile.am,
source/io/Makefile.am, source/io/markup/Makefile.am,
source/test/Makefile.am, source/util/Makefile.am: Added GNU
autoconf support files submitted by Norman Vine. Moved test files
to a new subdirectory.
2002-08-30 17:52 ybychkov
* source/: algorithm/HCoordinate.cpp,
algorithm/LineIntersector.cpp,
algorithm/NotRepresentableException.cpp, algorithm/PointInRing.cpp,
algorithm/PointLocator.cpp, algorithm/RobustCGAlgorithms.cpp,
algorithm/RobustDeterminant.cpp,
algorithm/RobustLineIntersector.cpp,
algorithm/SimplePointInAreaLocator.cpp,
algorithm/SimplePointInRing.cpp, geom/Geometry.cpp,
geom/GeometryCollection.cpp, geom/GeometryCollectionIterator.cpp,
geom/GeometryFactory.cpp, geom/LineString.cpp, geom/Polygon.cpp,
headers/geom.h, headers/geosAlgorithm.h, headers/graph.h,
headers/graphindex.h, headers/operation.h, headers/platform.h,
headers/util.h, io/WKTWriter.cpp: 'algorithm' is almost complete
2002-08-22 11:23 ybychkov
* source/headers/: geom.h, geosAlgorithm.h, graph.h, graphindex.h,
io.h, operation.h, platform.h, util.h: 'graph/index' finished. Some
.h changes.
2002-08-21 07:49 ybychkov
* source/headers/: graph.h, graphindex.h: Some changes in 'graph'
2002-08-20 23:08 ybychkov
* source/: XMLTester.cpp, headers/geom.h, headers/geosAlgorithm.h,
headers/graph.h, headers/io.h: Changed consts to enums
2002-08-14 09:00 ybychkov
* Assert.cpp, AssertionFailedException.cpp, CTS.cpp,
Coordinate.cpp, CoordinateList.cpp, Depth.cpp, Dimension.cpp,
Envelope.cpp, Geometry.cpp, GeometryCollection.cpp,
GeometryCollectionIterator.cpp, GeometryFactory.cpp,
IntersectionMatrix.cpp, Label.cpp, LineSegment.cpp, LineString.cpp,
LinearRing.cpp, Location.cpp, MarkupSTL.cpp, MarkupSTL.h,
MultiLineString.cpp, MultiPoint.cpp, MultiPolygon.cpp,
ParseException.cpp, Point.cpp, Polygon.cpp, Position.cpp,
PrecisionModel.cpp, SimpleWKTTester.cpp, StringTokenizer.cpp,
TopologyLocation.cpp, WKTIn, WKTOut, WKTReader.cpp, WKTWriter.cpp,
Writer.cpp, XMLTester.cpp, geom.h, graph.h, io.h, operation.h,
platform.h, test.xml, util.h, source/CTS.cpp,
source/SimpleWKTTester.cpp, source/WKTIn, source/WKTOut,
source/XMLTester.cpp, source/test.xml, source/geom/Coordinate.cpp,
source/geom/CoordinateList.cpp, source/geom/Dimension.cpp,
source/geom/Envelope.cpp, source/geom/Geometry.cpp,
source/geom/GeometryCollection.cpp,
source/geom/GeometryCollectionIterator.cpp,
source/geom/GeometryFactory.cpp,
source/geom/IntersectionMatrix.cpp, source/geom/LineSegment.cpp,
source/geom/LineString.cpp, source/geom/LinearRing.cpp,
source/geom/Location.cpp, source/geom/MultiLineString.cpp,
source/geom/MultiPoint.cpp, source/geom/MultiPolygon.cpp,
source/geom/Point.cpp, source/geom/Polygon.cpp,
source/geom/PrecisionModel.cpp, source/headers/geom.h,
source/headers/geosAlgorithm.h, source/headers/graph.h,
source/headers/graphindex.h, source/headers/io.h,
source/headers/operation.h, source/headers/platform.h,
source/headers/util.h, source/io/ParseException.cpp,
source/io/StringTokenizer.cpp, source/io/WKTReader.cpp,
source/io/WKTWriter.cpp, source/io/Writer.cpp,
source/io/markup/MarkupSTL.cpp, source/io/markup/MarkupSTL.h,
source/util/Assert.cpp, source/util/AssertionFailedException.cpp:
New structure of source.
2002-07-11 09:57 ybychkov
* Assert.cpp, AssertionFailedException.cpp, Depth.cpp,
Geometry.cpp, GeometryCollection.cpp, GeometryFactory.cpp,
Label.cpp, Position.cpp, TopologyLocation.cpp, WKTReader.cpp,
WKTWriter.cpp, XMLTester.cpp, graph.h, operation.h, test.xml,
util.h: Assert and some graph classes
2002-07-03 07:24 ybychkov
* MarkupSTL.cpp, MarkupSTL.h, XMLTester.cpp: started XML tester
2002-07-02 08:41 ybychkov
* CTS.cpp, GeometryCollection.cpp, GeometryCollectionIterator.cpp,
GeometryFactory.cpp, MultiPolygon.cpp, Polygon.cpp,
SimpleWKTTester.cpp, WKTIn, WKTOut, WKTReader.cpp, WKTWriter.cpp,
geom.h, io.h: 'io' and SimpleTester done
2002-06-27 04:50 ybychkov
* CTS.cpp, StringTokenizer.cpp, WKTWriter.cpp, Writer.cpp, io.h:
'io' is almost done
2002-06-26 11:10 ybychkov
* CTS.cpp, GeometryCollection.cpp, ParseException.cpp, Polygon.cpp,
StringTokenizer.cpp, WKTReader.cpp, io.h: Some 'io' classes done.
2002-06-21 09:13 ybychkov
* CTS.cpp, CoordinateList.cpp, Geometry.cpp,
GeometryCollection.cpp, LineString.cpp, Point.cpp, Polygon.cpp,
geom.h: 'geos': first pass done. Some external dependencies and
polishing left.
2002-06-20 10:57 ybychkov
* geom.h, CTS.cpp, Geometry.cpp, GeometryCollection.cpp,
GeometryCollectionIterator.cpp, GeometryFactory.cpp: Only
Geometry.java left
2002-06-19 08:29 ybychkov
* CTS.cpp, CoordinateList.cpp, Geometry.cpp,
GeometryCollection.cpp, LineString.cpp, LinearRing.cpp,
MultiLineString.cpp, MultiPoint.cpp, MultiPolygon.cpp, Point.cpp,
Polygon.cpp, geom.h: 'geom' mostly done.
2002-06-14 09:46 ybychkov
* CTS.cpp, GeometryCollection.cpp, geom.h, GeometryFactory.cpp,
MultiLineString.cpp, MultiPoint.cpp, MultiPolygon.cpp, Polygon.cpp:
'geom' almost done
2002-06-12 03:47 ybychkov
* CoordinateList.cpp, LineString.cpp, geom.h: LineString is 99%
finished
2002-06-12 01:43 ybychkov
* CTS.cpp, Coordinate.cpp, CoordinateList.cpp, Dimension.cpp,
Envelope.cpp, Geometry.cpp, GeometryCollection.cpp,
IntersectionMatrix.cpp, LineSegment.cpp, LineString.cpp,
LinearRing.cpp, Location.cpp, Point.cpp, PrecisionModel.cpp,
geom.h, operation.h, platform.h: 'geom' package 70% done
2002-06-07 19:47 pramsey
* CTS.cpp, Coordinate.cpp, CoordinateList.cpp, Dimension.cpp,
Envelope.cpp, LineSegment.cpp, Location.cpp, geom.h, platform.h:
Initial revision
2002-06-07 19:47 pramsey
* CTS.cpp, Coordinate.cpp, CoordinateList.cpp, Dimension.cpp,
Envelope.cpp, LineSegment.cpp, Location.cpp, geom.h, platform.h:
Imported Sources
|