summaryrefslogtreecommitdiff
path: root/gis/ossim/c45639.patch
blob: 10c11aef52ac30f4dccbb0e4bf965d1d22c7af0a (plain)
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
From c456397821cf369af4d9ff1fb60a5dfd1bcefc24 Mon Sep 17 00:00:00 2001
From: Garrett Potts <gpotts@radiantblue.com>
Date: Wed, 30 Oct 2019 20:43:06 -0400
Subject: [PATCH] Added new interfaces to support the geos_c api

---
 include/ossim/base/ossimPolyArea2d.h |  171 ++--
 src/base/ossimPolyArea2d.cpp         | 1084 +++++++++++---------------
 src/imaging/ossimImageGeometry.cpp   |    2 +-
 src/init/ossimInit.cpp               |   51 +-
 4 files changed, 570 insertions(+), 738 deletions(-)

diff --git a/include/ossim/base/ossimPolyArea2d.h b/include/ossim/base/ossimPolyArea2d.h
index ffb1d611..75db23fd 100644
--- a/include/ossim/base/ossimPolyArea2d.h
+++ b/include/ossim/base/ossimPolyArea2d.h
@@ -5,10 +5,8 @@
 // Author: Garrett Potts
 //*******************************************************************
 //$Id: ossimPolyArea2d.h 23608 2015-10-28 13:51:35Z gpotts $
-
 #ifndef ossimPolyArea2d_HEADER
 #define ossimPolyArea2d_HEADER 1
-
 #include <ossim/base/ossimDpt.h>
 #include <ossim/base/ossimGpt.h>
 #include <ossim/base/ossimKeywordlist.h>
@@ -16,137 +14,76 @@
 #include <ossim/base/ossimReferenced.h>
 #include <vector>
 
-class ossimDrect;
-class ossimIrect;
-class OssimPolyArea2dPrivate;
+class ossimPolyArea2dPrivate;
 
-namespace geos
-{
-   namespace geom
-   {
-      class Geometry;
-   }
-}
-
-class OSSIM_DLL ossimPolyArea2d : public ossimReferenced
+class OSSIM_DLL ossimPolyArea2d
 {
 public:
-   friend class OssimPolyArea2dPrivate;
-   friend OSSIM_DLL std::ostream& operator <<(std::ostream& out, const ossimPolyArea2d& data);
-   
+   friend OSSIM_DLL std::ostream &operator<<(std::ostream &out, const ossimPolyArea2d &data);
+   friend class ossimPolyArea2dPrivate;
    ossimPolyArea2d();
-   ossimPolyArea2d(const std::vector<ossimGpt>& polygon);
-   ossimPolyArea2d(const std::vector<ossimDpt>& polygon);
-   ossimPolyArea2d(const ossimPolygon& shell, const std::vector<ossimPolygon>& holes);
-   
-   ossimPolyArea2d(const ossimDpt& p1,
-                   const ossimDpt& p2,
-                   const ossimDpt& p3,
-                   const ossimDpt& p4);
-   ossimPolyArea2d(const ossimPolyArea2d& rhs);
-   
-   ossimPolyArea2d(const ossimIrect& rect);
-   ossimPolyArea2d(const ossimDrect& rect);
-   ossimPolyArea2d(const ossimPolygon& polygon);
+   ossimPolyArea2d(const std::vector<ossimGpt> &polygon);
+   ossimPolyArea2d(const std::vector<ossimDpt> &polygon);
+   ossimPolyArea2d(const ossimPolygon &shell, const std::vector<ossimPolygon> &holes);
+
+   ossimPolyArea2d(const ossimDpt &p1,
+                   const ossimDpt &p2,
+                   const ossimDpt &p3,
+                   const ossimDpt &p4);
+   ossimPolyArea2d(const ossimPolyArea2d &rhs);
+
+   ossimPolyArea2d(const ossimIrect &rect);
+   ossimPolyArea2d(const ossimDrect &rect);
+   ossimPolyArea2d(const ossimPolygon &polygon);
    ~ossimPolyArea2d();
-   
+
    void clear()
    {
       clearPolygons();
    }
-   const ossimPolyArea2d& operator =(const ossimPolyArea2d& rhs);
-   const ossimPolyArea2d& operator =(const ossimPolygon& rhs);
-   const ossimPolyArea2d& operator =(const ossimIrect& rect);
-   const ossimPolyArea2d& operator =(const ossimDrect& rect);
-   const ossimPolyArea2d& operator =(const std::vector<ossimGpt>& polygon);
-   const ossimPolyArea2d& operator =(const std::vector<ossimDpt>& polygon);
-   const ossimPolyArea2d& operator &=(const ossimPolyArea2d& rhs);
-   ossimPolyArea2d operator &(const ossimPolyArea2d& rhs)const;
-   ossimPolyArea2d operator +(const ossimPolyArea2d& rhs)const;
-   const ossimPolyArea2d& operator +=(const ossimPolyArea2d& rhs);
-   ossimPolyArea2d operator -(const ossimPolyArea2d& rhs)const;
-   const ossimPolyArea2d& operator -=(const ossimPolyArea2d& rhs);
-   
-   bool intersects(const ossimPolyArea2d& rhs)const;
-   
-   void add(const ossimPolyArea2d& rhs);
-   bool getVisiblePolygons(std::vector<ossimPolygon>& polyList)const;
-   bool getPolygonHoles(std::vector<ossimPolygon>& polyList)const;
-   
-   /**
-    * @brief Gets all of the polygons stored with their holes embedded. This
-    * may be useful if an operation was performed on the original ossimPolyArea2d 
-    * that caused multiple polygons to be created internally.
-    *	 
-    * For example, if a rectangle is intersected with a U shape, the two top
-    * portions of the U would be their own separate polygon. It's also possible 
-    * for these polygons to contain their own holes. This function will return 
-    * the two top polygons as separate ossimPolyArea2d objects (with any of 
-    * their holes embedded inside them).
-    *
-    *  --------------------------------		 
-    * |                                |
-    * |                                |
-    * | ........           .........   |
-    * | .      .           .       .   |
-    *  -.------.-----------.-------.---
-    *   .      .           .       .
-    *   .      .............       .
-    *   .                          .
-    *   ............................
-    *   
-    * @param polylist an empty vector of ossimPolyArea2d that will be filled
-    * @return returns true if it successfully places polygons in the input vector
-    */
-   bool getCompletePolygons(std::vector<ossimPolyArea2d>& polyList)const;
-   
-   bool isEmpty()const;
-   bool isValid(bool displayValidationError = false)const;
-   bool isPointWithin(const ossimDpt& point)const;
-   bool isPointWithin(double x, double y)const;
-   void getBoundingRect(ossimDrect& rect);
-   
+   const ossimPolyArea2d &operator=(const ossimPolyArea2d &rhs);
+   const ossimPolyArea2d &operator=(const ossimPolygon &rhs);
+   const ossimPolyArea2d &operator=(const ossimIrect &rect);
+   const ossimPolyArea2d &operator=(const ossimDrect &rect);
+   const ossimPolyArea2d &operator=(const std::vector<ossimGpt> &polygon);
+   const ossimPolyArea2d &operator=(const std::vector<ossimDpt> &polygon);
+   const ossimPolyArea2d &operator&=(const ossimPolyArea2d &rhs);
+   ossimPolyArea2d operator&(const ossimPolyArea2d &rhs) const;
+   ossimPolyArea2d operator+(const ossimPolyArea2d &rhs) const;
+   const ossimPolyArea2d &operator+=(const ossimPolyArea2d &rhs);
+   ossimPolyArea2d operator-(const ossimPolyArea2d &rhs) const;
+   const ossimPolyArea2d &operator-=(const ossimPolyArea2d &rhs);
+
+   ossim_float64 getArea()const;
+   bool isEmpty() const;
+   void makeValid();
+   bool isValid(bool displayValidationError = false) const;
+   bool isPointWithin(const ossimDpt &point) const;
+   bool isPointWithin(double x, double y) const;
+   void getBoundingRect(ossimDrect &rect) const;
+
+   bool intersects(const ossimPolyArea2d &rhs) const;
+   void add(const ossimPolyArea2d &rhs);
+   bool getVisiblePolygons(std::vector<ossimPolygon> &polyList) const;
+   bool getPolygonHoles(std::vector<ossimPolygon> &polyList) const;
+
+   ossimPolyArea2d &toMultiPolygon();
+
    /**
    * Returns the Well Known Text string
    */
-   std::string toString()const;
+   std::string toString() const;
+   bool setFromWkt(const std::string &s);
 
-   /**
-    * @brief Buffers the ossimPolyArea2d shape and returns a copy. This method
-    * does not alter polygon.
-    *  
-    * @param distance is the distance to buffer the shape by. Positive values
-    * will expand the shape, and negative values will shrink the shape.
-    * @return A shape that is a buffered (expanded/contracted) version of this
-    * shape
-    */
-   ossimPolyArea2d getBufferedShape(double distance=FLT_EPSILON) const;
-   
-   ossimPolyArea2d& setToBufferedShape(double distance=FLT_EPSILON);
+   bool saveState(ossimKeywordlist &kwl,
+                  const char *prefix = 0) const;
+   bool loadState(const ossimKeywordlist &kwl,
+                  const char *prefix = 0);
 
-   ossimPolyArea2d& toMultiPolygon();
-   bool saveState(ossimKeywordlist& kwl,
-                  const char* prefix=0)const;
-   bool loadState(const ossimKeywordlist& kwl,
-                  const char* prefix=0);
-   
 protected:
-   
+   ossimPolyArea2dPrivate *m_privateData;
+
    void clearPolygons();
-   void recurseVisibleGeometries(ossimPolygon::Vector& polyList,
-                                 const geos::geom::Geometry* geom) const;
-   
-   void recurseHoles(ossimPolygon::Vector& polyList,
-                     const geos::geom::Geometry* geom) const;
-   
-   /**
-    * @brief Recurses over the Geometry object to load all complete polygons
-    * (a shell and any internal holes) into the ossimPolyArea2d.
-    */
-   void recurseCompleteGeometries(std::vector<ossimPolyArea2d>& polyList,
-                                  const geos::geom::Geometry* geom) const;
-   
-   OssimPolyArea2dPrivate* m_privateData;
 };
 
 #endif /* #ifndef ossimPolyArea2d_HEADER */
diff --git a/src/base/ossimPolyArea2d.cpp b/src/base/ossimPolyArea2d.cpp
index fac88637..572d59de 100644
--- a/src/base/ossimPolyArea2d.cpp
+++ b/src/base/ossimPolyArea2d.cpp
@@ -3,153 +3,167 @@
 //
 // $Id: ossimPolyArea2d.cpp 23623 2015-11-13 18:24:28Z gpotts $
 //---
-
 #include <ossim/base/ossimPolyArea2d.h>
-#include <ossim/base/ossimDrect.h>
-#include <ossim/base/ossimIrect.h>
+#include <ossim/base/ossimReferenced.h>
+#include <ossim/base/ossimPolygon.h>
+#include <ossim/base/ossimNotifyContext.h>
+#include <ossim/base/ossimKeywordlist.h>
 #include <ossim/base/ossimKeywordNames.h>
-#include <ossim/base/ossimNotify.h>
-#include <ossim/base/ossimRefPtr.h>
-#include <ossim/base/ossimString.h>
-#include <geos/geom/Coordinate.h>
-#include <geos/geom/CoordinateArraySequence.h>
-#include <geos/geom/GeometryFactory.h>
-#include <geos/geom/LinearRing.h>
-#include <geos/opBuffer.h>
-#include <geos/geom/Point.h>
-#include <geos/geom/Polygon.h>
-#include <geos/geom/MultiPolygon.h>
-#include <geos/geom/PrecisionModel.h>
-#include <geos/io/WKTReader.h>
-#include <geos/io/WKTWriter.h>
-#include <geos/util/GEOSException.h>
-#include <geos/operation/valid/IsValidOp.h>
-#include <geos/opBuffer.h>
-#include <cstdlib>
-#include <exception>
-#include <memory>
 #include <vector>
-#include <mutex>
-
-using namespace std;
+#include <cstdio>
+#include <cstdarg>
+#include <geos_c.h>
 
-class MyGeomFactory : public geos::geom::GeometryFactory
+class ossimPolyArea2dPrivate
 {
 public:
-   MyGeomFactory():
-   geos::geom::GeometryFactory(new geos::geom::PrecisionModel(geos::geom::PrecisionModel::FLOATING),
-                             -1)
+   typedef GEOSGeometry *GEOSGeometryPtr;
+   typedef const GEOSGeometry *ConstGEOSGeometryPtr;
+   ossimPolyArea2dPrivate() : m_geometry(GEOSGeom_createEmptyPolygon()) {}
+   virtual ~ossimPolyArea2dPrivate() { deleteGeometry(); }
+   void deleteGeometry()
    {
+      if (m_geometry)
+         GEOSGeom_destroy(m_geometry);
+      m_geometry = 0;
+   }
 
+   void setGeometry(GEOSGeometryPtr geom)
+   {
+      if(geom != m_geometry)
+      {
+         deleteGeometry();
+         m_geometry = geom;
+      }
    }
-}; 
-class ossimGeometryFactoryWrapper : public ossimReferenced
-{
-public:
-   ossimGeometryFactoryWrapper()
-      : m_geomFactory(0)
+   void setGeometry(const ossimPolygon &polygon, const std::vector<ossimPolygon> &holes = std::vector<ossimPolygon>());
+
+   void ringToPoints(const ConstGEOSGeometryPtr geom, std::vector<ossimDpt> &points) const;
+   void recurseVisibleGeometries(ossimPolygon::Vector &polyList) const
    {
-      //geos::geom::PrecisionModel *pm =
-      //   new geos::geom::PrecisionModel(geos::geom::PrecisionModel::FLOATING);
-      m_geomFactory = new MyGeomFactory();//new geos::geom::GeometryFactory(pm, -1); 
+      recurseVisibleGeometries(m_geometry, polyList);
    }
-   virtual ~ossimGeometryFactoryWrapper(){if(m_geomFactory) delete m_geomFactory;m_geomFactory=0;}
-   
-   MyGeomFactory* m_geomFactory;
-};
 
-class OssimPolyArea2dPrivate
-{
-public:
-   typedef geos::geom::Geometry* GeometryPtr;
-   typedef const geos::geom::Geometry* ConstGeometryPtr;
-   
-   OssimPolyArea2dPrivate(GeometryPtr geom=0);
-   ~OssimPolyArea2dPrivate();
-   
-   void deleteGeometry() { if(m_geometry) { delete m_geometry; m_geometry = 0; }}
-   void setGeometry(const ossimPolygon& polygon, const vector<ossimPolygon>& holes = vector<ossimPolygon>());
-   void setGeometry(GeometryPtr geom){deleteGeometry();m_geometry=geom;}
-   geos::geom::GeometryFactory* geomFactory(){{return m_globalFactory.valid()?m_globalFactory->m_geomFactory:0;}}
-   GeometryPtr m_geometry;
-   static ossimRefPtr<ossimGeometryFactoryWrapper> m_globalFactory; 
-};
+   void recurseVisibleGeometries(ConstGEOSGeometryPtr geom,
+                                 ossimPolygon::Vector &polygons) const;
 
-ossimRefPtr<ossimGeometryFactoryWrapper> OssimPolyArea2dPrivate::m_globalFactory;
+   void getVisiblePolygons(ConstGEOSGeometryPtr geom,
+                           ossimPolygon::Vector &polygons) const;
 
-OssimPolyArea2dPrivate::OssimPolyArea2dPrivate(GeometryPtr geom)
-:m_geometry(geom)
-{
-   static std::mutex globalFactoryMutex;
-   
+   bool getVisiblePolygons(ossimPolygon::Vector &polygons) const;
+
+   void getHoles(ConstGEOSGeometryPtr geom,
+                 ossimPolygon::Vector &polygons) const;
+   bool getPolygonHoles(ossimPolygon::Vector &polygons) const;
+   bool getPolygonHoles(ConstGEOSGeometryPtr geom,
+                        ossimPolygon::Vector &polygons) const;
+   void recurseGeometryHoles(ConstGEOSGeometryPtr geom,
+                             ossimPolygon::Vector &polygons) const;
+   void getBoundingRect(ossimDrect &bounds) const
    {
-      std::lock_guard<std::mutex> lock(globalFactoryMutex);
-      if(!m_globalFactory.valid())
+      bounds.makeNan();
+      if (!isEmpty())
       {
-         m_globalFactory = new ossimGeometryFactoryWrapper();
-      }    
+         GEOSGeometry *geom = GEOSEnvelope(m_geometry);
+
+         if (geom)
+         {
+            ossimPolygon::Vector polys;
+            getVisiblePolygons(geom, polys);
+            for (ossim_int32 idx = 0; idx < polys.size(); ++idx)
+            {
+               if (bounds.isNan())
+               {
+                  polys[idx].getBoundingRect(bounds);
+               }
+               else
+               {
+                  ossimDrect tempRect;
+                  polys[idx].getBoundingRect(tempRect);
+                  bounds = bounds.combine(tempRect);
+               }
+            }
+            GEOSGeom_destroy(geom);
+            geom = 0;
+         }
+      }
    }
-}
+   std::string toString() const;
+   bool setFromWkt(const std::string &s);
 
-OssimPolyArea2dPrivate::~OssimPolyArea2dPrivate()
-{
-   deleteGeometry();
-}
+   bool isEmpty() const;
+   bool isValid(bool displayValidationError = false) const;
+   bool isPointWithin(const ossimDpt &pt) const;
+   GEOSGeometryPtr m_geometry;
+};
 
-void OssimPolyArea2dPrivate::setGeometry(
-   const ossimPolygon& exteriorRing, const vector<ossimPolygon>& interiorRings)
+void ossimPolyArea2dPrivate::setGeometry(const ossimPolygon &exteriorRing,
+                                         const std::vector<ossimPolygon> &interiorRings)
 {
    deleteGeometry();
-   
-   geos::geom::CoordinateArraySequence *cas = new geos::geom::CoordinateArraySequence();
-   
-   const std::vector<ossimDpt>& pts = exteriorRing.getVertexList();
 
+   if (exteriorRing.getNumberOfVertices() < 1)
+      return;
+   GEOSGeometryPtr shell = 0;
+   std::vector<GEOSGeometryPtr> holes;
+   const std::vector<ossimDpt> &pts = exteriorRing.getVertexList();
    int idx = 0;
    int n = (int)pts.size();
-   
-   if(n > 0)
+
+   bool firstAndLastSame = ((pts[0].x == pts[n - 1].x) && (pts[0].y == pts[n - 1].y));
+   if (n > 0)
    {
+      GEOSCoordSequence *shellSeq = GEOSCoordSeq_create(
+          exteriorRing.getNumberOfVertices() + ((firstAndLastSame) ? 0 : 1), 2);
       //fill the exterior ring
       for (idx = 0; idx < n; idx++)
       {
-         cas->add(geos::geom::Coordinate(pts[idx].x, pts[idx].y));
+         GEOSCoordSeq_setXY(shellSeq, idx, pts[idx].x, pts[idx].y);
       }
-      
       //if the original polygon didn't have the first and last point the same, make it so
-      if((pts[0].x != pts[n-1].x) || (pts[0].y!=pts[n-1].y))
+      if (!firstAndLastSame)
       {
-         cas->add(geos::geom::Coordinate(pts[0].x, pts[0].y));
+         GEOSCoordSeq_setXY(shellSeq, idx, pts[0].x, pts[0].y);
       }
-      
+      shell = GEOSGeom_createLinearRing(shellSeq);
       //fill the interior rings
-      vector<geos::geom::Geometry*> *holes = new vector<geos::geom::Geometry*>();
-      for (ossim_uint32 interiorRingIdx = 0; interiorRingIdx < interiorRings.size(); ++interiorRingIdx)
+      if (!interiorRings.empty())
       {
-         geos::geom::CoordinateArraySequence *interiorCas =
-            new geos::geom::CoordinateArraySequence();
-         const std::vector<ossimDpt>& vertexPts = interiorRings[interiorRingIdx].getVertexList();
-         for(ossim_uint32 vertexIndex=0; vertexIndex < vertexPts.size(); ++vertexIndex)
-         {
-            interiorCas->add(geos::geom::Coordinate(vertexPts[vertexIndex].x,
-                                                    vertexPts[vertexIndex].y));
-         }
-         
-         //if the original polygon didn't have the first and last point the same, make it so
-         if((vertexPts[0].x != vertexPts[vertexPts.size()-1].x) ||
-            (vertexPts[0].y!=vertexPts[vertexPts.size()-1].y))
+         for (ossim_uint32 interiorRingIdx = 0; interiorRingIdx < interiorRings.size(); ++interiorRingIdx)
          {
-            interiorCas->add(geos::geom::Coordinate(vertexPts[0].x, vertexPts[0].y));
+            if (interiorRings[interiorRingIdx].getNumberOfVertices() > 0)
+            {
+               const std::vector<ossimDpt> &vertexPts = interiorRings[interiorRingIdx].getVertexList();
+               firstAndLastSame = ((vertexPts[0].x == vertexPts[n - 1].x) && (vertexPts[0].y == vertexPts[n - 1].y));
+
+               GEOSCoordSequence *ring = GEOSCoordSeq_create(
+                   vertexPts.size() + ((firstAndLastSame) ? 0 : 1), 2);
+               for (ossim_uint32 vertexIndex = 0; vertexIndex < vertexPts.size(); ++vertexIndex)
+               {
+                  GEOSCoordSeq_setXY(ring, vertexIndex, vertexPts[vertexIndex].x, vertexPts[vertexIndex].y);
+               }
+
+               //if the original polygon didn't have the first and last point the same, make it so
+               if (!firstAndLastSame)
+               {
+                  GEOSCoordSeq_setXY(ring, vertexPts.size(), vertexPts[0].x, vertexPts[0].y);
+               }
+               GEOSGeometryPtr hole = GEOSGeom_createLinearRing(ring);
+               holes.push_back(hole);
+            }
          }
-         
-         geos::geom::LinearRing *hole = geomFactory()->createLinearRing(interiorCas);
-         holes->push_back(hole);
       }
-      
-      geos::geom::LinearRing* shell = geomFactory()->createLinearRing(cas);
-      if ( shell )
+
+      if (shell)
       {
-         m_geometry = geomFactory()->createPolygon(shell, holes);
+         if (holes.size())
+         {
+            m_geometry = GEOSGeom_createPolygon(shell, &holes.front(), holes.size());
+         }
+         else
+         {
+            m_geometry = GEOSGeom_createPolygon(shell, 0, 0);
+         }
       }
       else
       {
@@ -158,708 +172,540 @@ void OssimPolyArea2dPrivate::setGeometry(
    }
 }
 
-void ossimPolyArea2d::recurseVisibleGeometries(
-   std::vector<ossimPolygon>& polyList, const geos::geom::Geometry* geom) const
+void ossimPolyArea2dPrivate::ringToPoints(const ConstGEOSGeometryPtr geom, std::vector<ossimDpt> &points) const
 {
-   int nGeoms = (int)geom->getNumGeometries();
-   
-   if(nGeoms < 2 )
+   double x, y;
+   if (!geom)
+      return;
+   ossim_int32 nPoints = GEOSGetNumCoordinates(geom);
+   if (nPoints > 0)
    {
-      const geos::geom::Polygon* poly = dynamic_cast<const geos::geom::Polygon*> (geom);
-      
-      if (poly)
+      const GEOSCoordSequence *seq = GEOSGeom_getCoordSeq(geom);
+      ossim_int32 i = 0;
+      for (i = 0; i < nPoints; i++)
       {
-         const geos::geom::LineString* lineString = dynamic_cast<const geos::geom::LineString*> (poly->getExteriorRing());
-         if (lineString)
-         {
-            int currentPolyIdx = (int)polyList.size();
-            int nPoints = (int)lineString->getNumPoints();
-            int idx = 0;
-            
-            polyList.push_back(ossimPolygon());
-            
-            for (idx=0; idx<nPoints; idx++)
-            {
-               std::unique_ptr<const geos::geom::Point> point(lineString->getPointN(idx));
-               polyList[currentPolyIdx].addPoint(point->getX(), point->getY());
-            }
-         }
+         GEOSCoordSeq_getX(seq, i, &x);
+         GEOSCoordSeq_getY(seq, i, &y);
+         points.push_back(ossimDpt(x, y));
       }
    }
-   else
+}
+
+void ossimPolyArea2dPrivate::getHoles(ConstGEOSGeometryPtr geom,
+                                      ossimPolygon::Vector &polygons) const
+{
+   int geomType = GEOSGeomTypeId(geom);
+   std::vector<ossimDpt> points;
+   switch (geomType)
    {
-      for (int idx=0; idx < nGeoms; ++idx)
-      {
-         recurseVisibleGeometries(polyList, geom->getGeometryN(idx));
-      }
+   case GEOS_LINESTRING:
+   case GEOS_LINEARRING:
+   {
+      ringToPoints(geom, points);
+      polygons.push_back(ossimPolygon(points));
+      break;
+   }
    }
 }
 
-void ossimPolyArea2d::recurseHoles(std::vector<ossimPolygon>& polyList,
-                                   const geos::geom::Geometry* geom) const
+void ossimPolyArea2dPrivate::getVisiblePolygons(ConstGEOSGeometryPtr geom,
+                                                ossimPolygon::Vector &polygons) const
 {
-   int nGeoms = (int)geom->getNumGeometries();
-   
-   if(nGeoms < 2 )
+   int geomType = GEOSGeomTypeId(geom);
+   std::vector<ossimDpt> points;
+
+   switch (geomType)
    {
-      const geos::geom::Polygon* poly = dynamic_cast<const geos::geom::Polygon*> (geom);
+   case GEOS_LINESTRING:
+   case GEOS_LINEARRING:
+   {
+      ringToPoints(geom, points);
+      polygons.push_back(ossimPolygon(points));
+      break;
+   }
+   case GEOS_POLYGON:
+   {
+      ConstGEOSGeometryPtr geom2 = GEOSGetExteriorRing(geom);
+      ringToPoints(geom2, points);
+      polygons.push_back(ossimPolygon(points));
 
-      if (poly)
+      break;
+   }
+   }
+}
+void ossimPolyArea2dPrivate::recurseVisibleGeometries(ConstGEOSGeometryPtr geom,
+                                                      ossimPolygon::Vector &polygons) const
+{
+   ossim_int32 nGeoms = GEOSGetNumGeometries(geom);
+   ConstGEOSGeometryPtr geomPtr = 0;
+   if (nGeoms < 2)
+   {
+      geomPtr = GEOSGetGeometryN(geom, 0);
+      if (geomPtr)
       {
-         ossim_uint32 nInteriorRings = (ossim_uint32)poly->getNumInteriorRing();
-         ossim_uint32 idx = 0;
-         
-         for(idx = 0; idx < nInteriorRings; ++idx)
-         {
-            const geos::geom::LineString* lineString = poly->getInteriorRingN(idx);
-            if (lineString)
-            {
-               int currentPolyIdx = (int)polyList.size();
-               int nPoints = (int)lineString->getNumPoints();
-               int idx = 0;
-
-               polyList.push_back(ossimPolygon());
-
-               for (idx=0; idx<nPoints; idx++)
-               {
-                  std::unique_ptr<const geos::geom::Point> point(lineString->getPointN(idx));
-                  polyList[currentPolyIdx].addPoint(point->getX(), point->getY());
-               }
-            }
-         }
+         getVisiblePolygons(geomPtr, polygons);
       }
    }
    else
    {
-      int idx = 0;
-      
-      for (idx=0; idx < nGeoms; idx++)
+      for (int idx = 0; idx < nGeoms; ++idx)
       {
-         recurseHoles(polyList, geom->getGeometryN(idx));
+         geomPtr = GEOSGetGeometryN(geom, idx);
+         recurseVisibleGeometries(geomPtr, polygons);
       }
    }
 }
 
-void ossimPolyArea2d::recurseCompleteGeometries(std::vector<ossimPolyArea2d>& polyList,
-                                                const geos::geom::Geometry* geom) const
+void ossimPolyArea2dPrivate::recurseGeometryHoles(ConstGEOSGeometryPtr geom,
+                                                  ossimPolygon::Vector &polygons) const
 {
-   int nGeoms = (int)geom->getNumGeometries();
-   if(nGeoms < 2 )
+   ossim_int32 nGeoms = GEOSGetNumGeometries(geom);
+   ConstGEOSGeometryPtr geomPtr = 0;
+   if (nGeoms < 2)
    {
-      const geos::geom::Polygon* poly = dynamic_cast<const geos::geom::Polygon*> (geom);
+      ossim_int32 nInteriorRings = GEOSGetNumInteriorRings(geom);
+      ossim_int32 idx = 0;
 
-      if (poly)
+      for (idx = 0; idx < nInteriorRings; ++idx)
       {
-         //get exterior shell for the geometry
-         ossimPolygon shell;
-         const geos::geom::LineString* lineString =
-            dynamic_cast<const geos::geom::LineString*> (poly->getExteriorRing());
-         if (lineString)
-         {
-            int nPoints = (int)lineString->getNumPoints();
-            for (int idx = 0; idx<nPoints; idx++)
-            {
-               std::unique_ptr<const geos::geom::Point> point(lineString->getPointN(idx));
-               shell.addPoint(point->getX(), point->getY());
-            }
-         }
-         
-         // Get interior rings for the geometry.
-         std::size_t nInteriorRings = poly->getNumInteriorRing();
-         vector<ossimPolygon> holes(nInteriorRings);
-         for(std::size_t holeIdx = 0; holeIdx < nInteriorRings; ++holeIdx)
-         {
-            const geos::geom::LineString* lineString = poly->getInteriorRingN(holeIdx);
-            if (lineString)
-            {
-               std::size_t nPoints = lineString->getNumPoints();
-               for (std::size_t idx = 0; idx<nPoints; ++idx)
-               {
-                  std::unique_ptr<const geos::geom::Point> point(lineString->getPointN(idx));
-                  holes[holeIdx].addPoint(point->getX(), point->getY());
-               }
-            }
-         }
-         polyList.push_back(ossimPolyArea2d(shell, holes));
+         const GEOSGeometry *ringGeom = GEOSGetInteriorRingN(geom, idx);
+         getHoles(ringGeom, polygons);
       }
    }
    else
    {
-      int idx = 0;
-      
-      for (idx=0; idx < nGeoms; idx++)
+      for (int idx = 0; idx < nGeoms; ++idx)
       {
-         recurseCompleteGeometries(polyList, geom->getGeometryN(idx));
+         geomPtr = GEOSGetGeometryN(geom, idx);
+         recurseGeometryHoles(geomPtr, polygons);
       }
    }
 }
 
-std::ostream& operator <<(std::ostream& out, const ossimPolyArea2d& rhs)
+bool ossimPolyArea2dPrivate::getVisiblePolygons(ossimPolygon::Vector &polygons) const
 {
-   if(rhs.m_privateData->m_geometry)
+   bool foundPolys = false;
+   if (m_geometry)
    {
-      out << rhs.m_privateData->m_geometry->toString();
+      ossim_uint32 sizeBefore = (ossim_uint32)polygons.size();
+      recurseVisibleGeometries(m_geometry, polygons);
+      foundPolys = (sizeBefore != polygons.size());
    }
-   return out;
-}
 
-ossimPolyArea2d::ossimPolyArea2d()
-   :m_privateData(new OssimPolyArea2dPrivate)
-{
+   return foundPolys;
 }
-
-ossimPolyArea2d::ossimPolyArea2d(const vector<ossimGpt>& polygon)
-   :m_privateData(new OssimPolyArea2dPrivate)
+bool ossimPolyArea2dPrivate::getPolygonHoles(ossimPolygon::Vector &polygons) const
 {
-   (*this) = polygon;
+   return getPolygonHoles(m_geometry, polygons);
 }
 
-ossimPolyArea2d::ossimPolyArea2d(const vector<ossimDpt>& polygon)
-   :m_privateData(new OssimPolyArea2dPrivate)
+bool ossimPolyArea2dPrivate::getPolygonHoles(ConstGEOSGeometryPtr geom,
+                                             ossimPolygon::Vector &polygons) const
 {
-   (*this) = polygon;
-}
+   bool foundPolys = false;
+   if (m_geometry)
+   {
+      ossim_uint32 sizeBefore = (ossim_uint32)polygons.size();
+      recurseGeometryHoles(m_geometry, polygons);
+      foundPolys = (sizeBefore != polygons.size());
+   }
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimIrect& rect)
-   :m_privateData(new OssimPolyArea2dPrivate)
-{
-   (*this) = rect;
+   return foundPolys;
 }
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimDrect& rect)
-   :m_privateData(new OssimPolyArea2dPrivate)
+std::string ossimPolyArea2dPrivate::toString() const
 {
-   (*this) = rect;
-}
+   std::string result;
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimPolygon& polygon)
-   :m_privateData(new OssimPolyArea2dPrivate)
-{
-   (*this) = polygon;
-}
+   if (m_geometry)
+   {
+      GEOSWKTWriter *wktWriter = GEOSWKTWriter_create();
+      GEOSWKTWriter_setRoundingPrecision(wktWriter, 20);
+      char *wkt_c = GEOSWKTWriter_write(wktWriter, m_geometry);
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimPolygon& exteriorRing, const vector<ossimPolygon>& interiorRings)
-   :m_privateData(new OssimPolyArea2dPrivate)
-{	
-	m_privateData->setGeometry(exteriorRing, interiorRings);
-}
+      result = wkt_c;
+      GEOSWKTWriter_destroy(wktWriter);
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimPolyArea2d& rhs)
-   :m_privateData(new OssimPolyArea2dPrivate) 
-{
-   *this = rhs;
-}
+      GEOSFree(wkt_c);
+   }
 
-ossimPolyArea2d::ossimPolyArea2d(const ossimDpt& p1,
-                                 const ossimDpt& p2,
-                                 const ossimDpt& p3,
-                                 const ossimDpt& p4)
-   :
-   m_privateData(new OssimPolyArea2dPrivate)
+   return result;
+}
+bool ossimPolyArea2dPrivate::setFromWkt(const std::string &s)
 {
-   ossimPolygon temp(p1,p2,p3,p4);
-   *this = temp;
+   bool result = false;
+
+   GEOSWKTReader *reader = GEOSWKTReader_create();
+   GEOSGeometry *geom = GEOSWKTReader_read(reader, s.c_str());
+   result = (geom != 0);
+   setGeometry(geom);
+
+   GEOSWKTReader_destroy(reader);
+
+   return result;
 }
 
-ossimPolyArea2d::~ossimPolyArea2d()
+
+bool ossimPolyArea2dPrivate::isEmpty() const
 {
-   if(m_privateData)
+   bool result = true;
+   if (m_geometry)
    {
-      delete m_privateData;
-      m_privateData = 0;
+      result = (GEOSisEmpty(m_geometry) == 1);
    }
+
+   return result;
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const ossimPolyArea2d& rhs)
-{ 
-   if(this != &rhs)
+bool ossimPolyArea2dPrivate::isValid(bool displayValidationError) const
+{
+   bool result = false;
+
+   if (!displayValidationError)
    {
-      if(rhs.m_privateData->m_geometry)
+      result = GEOSisValid(m_geometry) == 1;
+   }
+   else
+   {
+      char *reason = GEOSisValidReason(m_geometry);
+      if (reason)
       {
-         m_privateData->setGeometry(rhs.m_privateData->m_geometry->clone());
+         ossimNotify(ossimNotifyLevel_INFO)
+             << "ossimPolyArea2dPrivate::isValid: " << reason << "\n";
+
+         GEOSFree(reason);
+         reason = 0;
       }
    }
-   return *this;
+
+   return result;
+}
+bool ossimPolyArea2dPrivate::isPointWithin(const ossimDpt &pt) const
+{
+   bool result = false;
+
+   if (!isEmpty())
+   {
+      GEOSCoordSequence *pointSeq = GEOSCoordSeq_create(1, 2);
+      GEOSCoordSeq_setXY(pointSeq, 0, pt.x, pt.y);
+      GEOSGeometry *geom = GEOSGeom_createPoint(pointSeq);
+      result = (GEOSWithin(geom, m_geometry) == 1);
+
+      GEOSGeom_destroy(geom);
+   }
+
+   return result;
+}
+
+
+ossimPolyArea2d::ossimPolyArea2d()
+    : m_privateData(new ossimPolyArea2dPrivate())
+{
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const ossimPolygon& polygon)
+ossimPolyArea2d::ossimPolyArea2d(const std::vector<ossimGpt> &polygon)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
    m_privateData->setGeometry(polygon);
+}
 
-   return *this;
+ossimPolyArea2d::ossimPolyArea2d(const std::vector<ossimDpt> &polygon)
+    : m_privateData(new ossimPolyArea2dPrivate())
+{
+   m_privateData->setGeometry(polygon);
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const ossimIrect& rect)
+ossimPolyArea2d::ossimPolyArea2d(const ossimPolygon &shell, const std::vector<ossimPolygon> &holes)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
-   return (*this = ossimPolygon(rect));
+   m_privateData->setGeometry(shell, holes);
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const ossimDrect& rect)
+ossimPolyArea2d::ossimPolyArea2d(const ossimDpt &p1,
+                                 const ossimDpt &p2,
+                                 const ossimDpt &p3,
+                                 const ossimDpt &p4)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
-   return (*this = ossimPolygon(rect));
+   m_privateData->setGeometry(ossimPolygon(p1, p2, p3, p4));
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const vector<ossimGpt>& polygon)
+ossimPolyArea2d::ossimPolyArea2d(const ossimPolyArea2d &rhs)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
-   std::vector<ossimDpt> pts;
-   int idx = 0;
-   int n = (int)polygon.size();
-   for(idx = 0; idx < n;++idx)
-   {
-      pts.push_back(polygon[idx]);
-   }
-  
-   return (*this = ossimPolygon(pts));
+   m_privateData->deleteGeometry();
+   m_privateData->m_geometry = GEOSGeom_clone(rhs.m_privateData->m_geometry);
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator =(const vector<ossimDpt>& polygon)
+ossimPolyArea2d::ossimPolyArea2d(const ossimIrect &rect)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
-   return (*this = ossimPolygon(polygon));
+   m_privateData->setGeometry(ossimPolygon(rect));
 }
 
-bool ossimPolyArea2d::intersects(const ossimPolyArea2d& rhs)const
+ossimPolyArea2d::ossimPolyArea2d(const ossimDrect &rect)
+    : m_privateData(new ossimPolyArea2dPrivate())
 {
-   bool result = false;
+   m_privateData->setGeometry(ossimPolygon(rect));
+}
 
-   if(m_privateData->m_geometry&&rhs.m_privateData->m_geometry)
+ossimPolyArea2d::ossimPolyArea2d(const ossimPolygon &polygon)
+    : m_privateData(new ossimPolyArea2dPrivate())
+{
+   m_privateData->setGeometry(polygon);
+}
+
+ossimPolyArea2d::~ossimPolyArea2d()
+{
+   if (m_privateData)
    {
-      result = m_privateData->m_geometry->intersects(rhs.m_privateData->m_geometry); 
+      delete m_privateData;
    }
+   m_privateData = 0;
+}
 
-   return result;
+void ossimPolyArea2d::clearPolygons()
+{
+   m_privateData->setGeometry(GEOSGeom_createEmptyPolygon());
 }
 
-ossimPolyArea2d ossimPolyArea2d::operator &(const ossimPolyArea2d& rhs)const
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const ossimPolyArea2d &rhs)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
+   if (&rhs != this)
    {
-      ossimPolyArea2d result;
-      try // GEOS code throws exceptions...
-      {
-         result.m_privateData->setGeometry(m_privateData->m_geometry->intersection(
-                                              rhs.m_privateData->m_geometry));
-      }
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator& Caught exception: " << e.what() << std::endl;
-         result.clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator& Caught exception!" << std::endl;
-         result.clearPolygons();
-      }
-      return result;
+      m_privateData->deleteGeometry();
+      m_privateData->m_geometry = GEOSGeom_clone(rhs.m_privateData->m_geometry);
    }
+
    return *this;
 }
 
-ossimPolyArea2d ossimPolyArea2d::operator +(const ossimPolyArea2d& rhs)const
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const ossimPolygon &rhs)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
-   {
-      ossimPolyArea2d result;
-      try // GEOS code throws exceptions...
-      {
-         result.m_privateData->setGeometry(m_privateData->m_geometry->Union(
-                                              rhs.m_privateData->m_geometry));
-      }  
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator+ Caught exception: " << e.what() << std::endl;
-         result.clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator+ Caught exception!" << std::endl;
-         result.clearPolygons();
-      }
-      return result;
-   }
+   m_privateData->setGeometry(rhs);
+
    return *this;
 }
-ossimPolyArea2d ossimPolyArea2d::operator -(const ossimPolyArea2d& rhs)const
+
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const ossimIrect &rect)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
-   {
-      ossimPolyArea2d result;
-      try // GEOS code throws exceptions...
-      {
-         result.m_privateData->setGeometry(m_privateData->m_geometry->difference(
-                                              rhs.m_privateData->m_geometry));
-      }
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator- Caught exception: " << e.what() << std::endl;
-         result.clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator- Caught exception!" << std::endl;
-         result.clearPolygons();
-      }
-      return result;
-   }
+   m_privateData->setGeometry(ossimPolygon(rect));
+
    return *this;
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator &=(const ossimPolyArea2d& rhs)
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const ossimDrect &rect)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
-   {
-      try // GEOS code throws exceptions...
-      {
-         m_privateData->setGeometry(m_privateData->m_geometry->intersection(
-                                       rhs.m_privateData->m_geometry));
-      }
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator&= Caught exception: " << e.what() << std::endl;
-         this->clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator&= Caught exception!" << std::endl;
-         this->clearPolygons();
-      }      
-   }
+   m_privateData->setGeometry(ossimPolygon(rect));
+
    return *this;
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator +=(const ossimPolyArea2d& rhs)
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const std::vector<ossimGpt> &polygon)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
-   {
-      try // GEOS code throws exceptions...
-      {
-         m_privateData->setGeometry(m_privateData->m_geometry->Union(
-                                       rhs.m_privateData->m_geometry));
-      }
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator+= Caught exception: " << e.what() << std::endl;
-         this->clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator+= Caught exception!" << std::endl;
-         this->clearPolygons();
-      }      
-   }
+   m_privateData->setGeometry(ossimPolygon(polygon));
+
    return *this;
 }
 
-const ossimPolyArea2d& ossimPolyArea2d::operator -=(const ossimPolyArea2d& rhs)
+const ossimPolyArea2d &ossimPolyArea2d::operator=(const std::vector<ossimDpt> &polygon)
 {
-   if((this!=&rhs) && m_privateData->m_geometry && rhs.m_privateData->m_geometry)
-   {
-      try // GEOS code throws exceptions...
-      {
-         m_privateData->setGeometry(m_privateData->m_geometry->difference(
-                                       rhs.m_privateData->m_geometry));
-      }
-      catch( const std::exception& e )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator-= Caught exception: " << e.what() << std::endl;
-         this->clearPolygons();
-      }
-      catch( ... )
-      {
-         ossimNotify(ossimNotifyLevel_DEBUG)
-            << "ossimPolyArea2d::operator-= Caught exception!" << std::endl;
-         this->clearPolygons();
-      }      
-   }
+   m_privateData->setGeometry(ossimPolygon(polygon));
+
    return *this;
 }
 
-void ossimPolyArea2d::add(const ossimPolyArea2d& rhs)
+const ossimPolyArea2d &ossimPolyArea2d::operator&=(const ossimPolyArea2d &rhs)
 {
-   if(isEmpty())
-   {
-      *this=rhs;
-   }
-   else
-   {
-      geos::geom::Geometry* geom = m_privateData->m_geometry->Union(rhs.m_privateData->m_geometry);
-      if(geom) m_privateData->setGeometry(geom);
-   }
+   GEOSGeometry *geom = GEOSIntersection(m_privateData->m_geometry, rhs.m_privateData->m_geometry);
+   m_privateData->setGeometry(geom);
+
+   return *this;
 }
 
-void ossimPolyArea2d::clearPolygons()
+ossimPolyArea2d ossimPolyArea2d::operator&(const ossimPolyArea2d &rhs) const
 {
-   m_privateData->deleteGeometry();
-#if 0
-   clearEngine();
-#endif
+   ossimPolyArea2d result(*this);
+
+   result &= rhs;
+
+   return result;
 }
 
-bool ossimPolyArea2d::getVisiblePolygons(vector<ossimPolygon>& polyList)const
+ossimPolyArea2d ossimPolyArea2d::operator+(const ossimPolyArea2d &rhs) const
 {
-   bool foundPolys = false;
-   if(m_privateData->m_geometry)
-   {
-      ossim_uint32 sizeBefore = (ossim_uint32)polyList.size();
-      recurseVisibleGeometries(polyList, m_privateData->m_geometry);
-      foundPolys = (sizeBefore != polyList.size());
-   }
+   ossimPolyArea2d result(*this);
 
-   return foundPolys;
+   result += rhs;
+
+   return result;
 }
 
-bool ossimPolyArea2d::getPolygonHoles(vector<ossimPolygon>& polyList)const
+const ossimPolyArea2d &ossimPolyArea2d::operator+=(const ossimPolyArea2d &rhs)
 {
-   bool foundPolys = false;
-   if(m_privateData->m_geometry)
-   {
-      ossim_uint32 sizeBefore = (ossim_uint32)polyList.size();
-      recurseHoles(polyList, m_privateData->m_geometry);
-      foundPolys = (sizeBefore != polyList.size());
-   }
+   GEOSGeometry *geom = GEOSUnion(m_privateData->m_geometry, rhs.m_privateData->m_geometry);
 
-   return foundPolys;
+   m_privateData->setGeometry(geom);
+
+   return *this;
 }
 
-bool ossimPolyArea2d::getCompletePolygons(vector<ossimPolyArea2d>& polyList)const
+ossimPolyArea2d ossimPolyArea2d::operator-(const ossimPolyArea2d &rhs) const
 {
-	bool foundPolys = false;
-	if(m_privateData->m_geometry){
-		ossim_uint32 sizeBefore = (ossim_uint32)polyList.size();
-		recurseCompleteGeometries(polyList, m_privateData->m_geometry);
-		foundPolys = (sizeBefore != polyList.size());
-	}
-	return foundPolys;
+   ossimPolyArea2d result(*this);
+
+   result -= rhs;
+
+   return result;
 }
 
-bool ossimPolyArea2d::isEmpty()const
+const ossimPolyArea2d &ossimPolyArea2d::operator-=(const ossimPolyArea2d &rhs)
 {
-   bool result = true;
-   if (m_privateData&&m_privateData->m_geometry)
-   {
-      result = m_privateData->m_geometry->isEmpty();
-   }
+   GEOSGeometry *geom = GEOSDifference(m_privateData->m_geometry, rhs.m_privateData->m_geometry);
 
-   return result;
+   m_privateData->setGeometry(geom);
+
+   return *this;
 }
 
-bool ossimPolyArea2d::isValid(bool displayValidationError)const
+ossim_float64 ossimPolyArea2d::getArea()const
 {
-   bool result = false;
+   double result = 0.0;
    
-   if(m_privateData&&m_privateData->m_geometry)
+   if(!isEmpty())
    {
-      if(displayValidationError)
-      {
-         geos::operation::valid::IsValidOp validityCheck(m_privateData->m_geometry);
-         geos::operation::valid::TopologyValidationError*
-            topologyValidationError(validityCheck.getValidationError());
-         // if(topologyValidationError == nullptr)
-         if(topologyValidationError == 0)
-         {
-            result = true;
-         }
-         else
-         {
-            ossimNotify(ossimNotifyLevel_INFO)
-               << "ossimPolyArea2d::isValid: " << topologyValidationError->toString() << std::endl;
-         }
-      }
-      else
-      {
-         result = m_privateData->m_geometry->isValid();
-      }
+      GEOSArea(m_privateData->m_geometry, &result);
    }
-   
+
    return result;
 }
 
-bool ossimPolyArea2d::isPointWithin(const ossimDpt& point)const
+bool ossimPolyArea2d::isEmpty() const
 {
-   return isPointWithin(point.x, point.y);
+   return m_privateData->isEmpty();
 }
 
-bool ossimPolyArea2d::isPointWithin(double x, double y)const
+bool ossimPolyArea2d::isValid(bool displayValidationError) const
 {
-   bool result = false;
-
-   if(!isEmpty())
-   {
-      geos::geom::Coordinate c(x,y);
-      geos::geom::Geometry* geom = m_privateData->geomFactory()->createPoint(c);
-  
-      result = m_privateData->m_geometry->intersects(geom);
-
-      delete geom;
-   }
+   return m_privateData->isValid(displayValidationError);
+}
 
-   return result;
+bool ossimPolyArea2d::isPointWithin(const ossimDpt &point) const
+{
+   return m_privateData->isPointWithin(point);
 }
 
-void ossimPolyArea2d::getBoundingRect(ossimDrect& rect)
+bool ossimPolyArea2d::isPointWithin(double x, double y) const
 {
-   rect.makeNan();
+   return isPointWithin(ossimDpt(x, y));
+}
 
-   if(!isEmpty())
-   {
-      const geos::geom::Envelope* envelope = m_privateData->m_geometry->getEnvelopeInternal();
+void ossimPolyArea2d::getBoundingRect(ossimDrect &rect) const
+{
+   m_privateData->getBoundingRect(rect);
+}
 
-      rect = ossimDrect(envelope->getMinX(), envelope->getMinY(), envelope->getMaxX(), envelope->getMaxY());
-   }
+bool ossimPolyArea2d::intersects(const ossimPolyArea2d &rhs) const
+{
+   return (GEOSIntersects(m_privateData->m_geometry,
+                          rhs.m_privateData->m_geometry) == 1);
 }
 
-std::string ossimPolyArea2d::toString()const
+void ossimPolyArea2d::makeValid()
 {
-   std::string result = "";
+   ossimPolyArea2dPrivate::GEOSGeometryPtr geom = GEOSMakeValid(m_privateData->m_geometry);
+   if(geom) m_privateData->setGeometry(geom);
+}
 
-   if(m_privateData->m_geometry)
-   {
-      result = m_privateData->m_geometry->toString();
-   }
 
-   return result;
+void ossimPolyArea2d::add(const ossimPolyArea2d &rhs)
+{
+   *this += rhs;
 }
 
-ossimPolyArea2d ossimPolyArea2d::getBufferedShape(double distance) const{
-	ossimPolyArea2d result;
-	try{
-		geos::operation::buffer::BufferOp buffer_operation(m_privateData->m_geometry);
-		result.m_privateData->setGeometry( buffer_operation.getResultGeometry(distance));
-	}catch( const std::exception& e ){
-		ossimNotify(ossimNotifyLevel_DEBUG)
-			<< "ossimPolyArea2d::getBufferedShape Caught exception: " << e.what() << std::endl;
-		result.clearPolygons();
-	}catch( ... ){
-		ossimNotify(ossimNotifyLevel_DEBUG)
-			<< "ossimPolyArea2d::getBufferedShape Caught exception!" << std::endl;
-		result.clearPolygons();
-	}
-	return result;
-}
-ossimPolyArea2d& ossimPolyArea2d::setToBufferedShape(double distance)
-{
-   try{
-      geos::operation::buffer::BufferOp buffer_operation(m_privateData->m_geometry);
-      m_privateData->setGeometry( buffer_operation.getResultGeometry(distance));
-   }catch( const std::exception& e ){
-      ossimNotify(ossimNotifyLevel_DEBUG)
-         << "ossimPolyArea2d::getBufferedShape Caught exception: " << e.what() << std::endl;
-   }catch( ... ){
-      ossimNotify(ossimNotifyLevel_DEBUG)
-         << "ossimPolyArea2d::getBufferedShape Caught exception!" << std::endl;
-   }
-   return *this;
+bool ossimPolyArea2d::getVisiblePolygons(std::vector<ossimPolygon> &polyList) const
+{
+   m_privateData->getVisiblePolygons(polyList);
+
+   return (polyList.size() > 0);
 }
 
-ossimPolyArea2d& ossimPolyArea2d::toMultiPolygon()
+bool ossimPolyArea2d::getPolygonHoles(std::vector<ossimPolygon> &polyList) const
 {
+   m_privateData->getPolygonHoles(polyList);
 
+   return (polyList.size() > 0);
+}
 
-   try{
-      if(m_privateData->m_geometry)
-      {
-         switch(m_privateData->m_geometry->getGeometryTypeId())
-         {
-            case geos::geom::GEOS_POLYGON:
-            {
-               std::vector<geos::geom::Geometry*> values;
-               values.push_back(m_privateData->m_geometry->clone());
-
-               m_privateData->setGeometry(m_privateData->m_geometry->getFactory()->createMultiPolygon(values));
-               break;
-            }
-            case geos::geom::GEOS_MULTIPOLYGON:
-            {
-               // intentionally left blank
-               break;
-            }
-            default:
-            {  
-               // might need an error at a later date
-               ossimNotify(ossimNotifyLevel_WARN)
-                  << "ossimPolyArea2d::toMultiPolygon Geometry type can not be converted to a multi polygon: " <<m_privateData->m_geometry->getGeometryType()<< std::endl;
+ossimPolyArea2d &ossimPolyArea2d::toMultiPolygon()
+{
+   int geomType = GEOSGeomTypeId(m_privateData->m_geometry);
 
-               break;
-            }
-         }
-      }
-   }
-   catch(const std::exception& e)
-   {
-      ossimNotify(ossimNotifyLevel_WARN)
-         << "ossimPolyArea2d::toMultiPolygon Caught exception: " << e.what() << std::endl;
-   }
-   catch(...)
+   if (geomType != GEOS_MULTIPOLYGON)
    {
-      ossimNotify(ossimNotifyLevel_WARN)
-         << "ossimPolyArea2d::toMultiPolygon Caught exception!" << std::endl;
+      std::vector<GEOSGeometry *> geoms(1);
+      geoms[0] = GEOSGeom_clone(m_privateData->m_geometry);
+      GEOSGeometry *result = GEOSGeom_createCollection(GEOS_MULTIPOLYGON,
+                                                       &geoms.front(), 1);
+      m_privateData->setGeometry(result);
    }
 
    return *this;
 }
 
-bool ossimPolyArea2d::saveState(ossimKeywordlist& kwl,
-                                const char* prefix)const
+std::string ossimPolyArea2d::toString() const
+{
+   return m_privateData->toString();
+}
+
+bool ossimPolyArea2d::setFromWkt(const std::string &s)
+{
+   return m_privateData->setFromWkt(s);
+}
+
+bool ossimPolyArea2d::saveState(ossimKeywordlist &kwl,
+                                const char *prefix) const
 {
    kwl.add(prefix,
            ossimKeywordNames::TYPE_KW,
            "ossimPolyArea2d",
            true);
 
-   if(!isEmpty())
+   if (!isEmpty())
    {
-      geos::io::WKTWriter writer;
 
       kwl.add(prefix,
               "wkt",
-              writer.write(m_privateData->m_geometry).c_str(),
+              toString().c_str(),
               true);
    }
-   // else
-   // {
-   //
-   // }
-
    return true;
 }
 
-bool ossimPolyArea2d::loadState(const ossimKeywordlist& kwl,
-                                const char* prefix)
+bool ossimPolyArea2d::loadState(const ossimKeywordlist &kwl,
+                                const char *prefix)
 {
-   if(m_privateData)
+   bool result = true;
+
+   if (m_privateData)
    {
       ossimString wkt = kwl.find(prefix, "wkt");
 
-      if(!wkt.empty())
+      if (!wkt.empty())
       {
-         geos::io::WKTReader reader(m_privateData->geomFactory());
-         try
-         {
-            m_privateData->setGeometry(reader.read(wkt.c_str()));
-         }
-         catch( const std::exception& e )
-         {
-            ossimNotify(ossimNotifyLevel_DEBUG)
-               << "ossimPolyArea2d::loadState Caught exception: " << e.what() << std::endl;
-            this->clearPolygons();
-         }
-         catch(...)
-         {
-            ossimNotify(ossimNotifyLevel_DEBUG)
-               << "ossimPolyArea2d::loadState Caught exception!" << std::endl;
-            this->clearPolygons(); 
-         }
+         result = setFromWkt(wkt.string());
       }
    }
-   return true;
+
+   return result;
+}
+
+std::ostream &operator<<(std::ostream &out, const ossimPolyArea2d &rhs)
+{
+   if (!rhs.isEmpty())
+   {
+      out << rhs.toString();
+   }
+
+   return out;
 }
diff --git a/src/imaging/ossimImageGeometry.cpp b/src/imaging/ossimImageGeometry.cpp
index f7b054a8..148aeea4 100644
--- a/src/imaging/ossimImageGeometry.cpp
+++ b/src/imaging/ossimImageGeometry.cpp
@@ -1240,7 +1240,7 @@ void ossimImageGeometry::calculatePolyBounds(ossimPolyArea2d& result, ossim_uint
       }
       result.add(ossimPolygon(gPoints));
    }
-   if(!result.isValid()) result.setToBufferedShape();
+   if(!result.isValid()) result.makeValid();
 }
 
 
diff --git a/src/init/ossimInit.cpp b/src/init/ossimInit.cpp
index 19b28113..9aeec9de 100644
--- a/src/init/ossimInit.cpp
+++ b/src/init/ossimInit.cpp
@@ -65,12 +65,59 @@
 
 #include <algorithm>
 #include <mutex>
+#include <geos_c.h>
 
 using namespace std;
 
 static ossimTrace traceExec = ossimTrace("ossimInit:exec");
 static ossimTrace traceDebug = ossimTrace("ossimInit:debug");
 
+extern "C"
+{
+   void geosNoticeFunction(const char *fmt, ...);
+   void geosErrorFunction(const char *fmt, ...);
+}
+
+ossimString geosErrorV(const char *fmt, va_list args)
+{
+   char temp[2024];
+   if (fmt)
+   {
+      vsprintf(temp, fmt, args);
+   }
+   else
+   {
+      sprintf(temp, "%s", "");
+   }
+
+   return temp;
+}
+
+void geosNoticeFunction(const char *fmt, ...)
+{
+   // NOTE: This code has an infinite loop in it!!! (drb)
+   //std::lock_guard<std::mutex> lock(theMutex);
+   // theMutex.lock();
+   va_list args;
+
+   va_start(args, fmt);
+   ossimString result = geosErrorV(fmt, args);
+   va_end(args);
+   // theMutex.unlock();
+   ossimNotify(ossimNotifyLevel_WARN) << result << "\n";
+}
+
+void geosErrorFunction(const char *fmt, ...)
+{
+   va_list args;
+
+   va_start(args, fmt);
+   ossimString result = geosErrorV(fmt, args);
+   va_end(args);
+   // theMutex.unlock();
+   ossimNotify(ossimNotifyLevel_WARN) << result << "\n";
+}
+
 ossimInit* ossimInit::theInstance = 0;
 
 ossimInit::~ossimInit()
@@ -122,6 +169,8 @@ void ossimInit::initialize(int& argc, char** argv)
 {
    static std::mutex m;
    std::lock_guard<std::mutex> lock(m);
+   initGEOS(geosNoticeFunction, geosErrorFunction);
+
    if( !theInitializedFlag )
    {
       ossimArgumentParser argumentParser(&argc, argv);
@@ -262,7 +311,7 @@ void ossimInit::initialize()
 
 void ossimInit::finalize()
 {
-   
+   finishGEOS();
 }
 /*!****************************************************************************
  *  Prints to stdout the list of command line options that this object parses.