forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathogrpolyhedralsurface.cpp
966 lines (792 loc) · 30.6 KB
/
ogrpolyhedralsurface.cpp
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
/******************************************************************************
* $Id$
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: The OGRPolyhedralSurface geometry class.
* Author: Avyav Kumar Singh <avyavkumar at gmail dot com>
*
******************************************************************************
* Copyright (c) 2016, Avyav Kumar Singh <avyavkumar at gmail dot com>
* Copyright (c) 2016, Even Rouault <even.roauult at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "ogr_geometry.h"
#include "ogr_p.h"
#include "ogr_sfcgal.h"
#include "ogr_api.h"
#include "ogr_libs.h"
#include <new>
/************************************************************************/
/* OGRPolyhedralSurface() */
/************************************************************************/
/**
* \brief Create an empty PolyhedralSurface
*/
OGRPolyhedralSurface::OGRPolyhedralSurface() = default;
/************************************************************************/
/* OGRPolyhedralSurface( const OGRPolyhedralSurface& ) */
/************************************************************************/
/**
* \brief Copy constructor.
*
*/
OGRPolyhedralSurface::OGRPolyhedralSurface(const OGRPolyhedralSurface &) =
default;
/************************************************************************/
/* ~OGRPolyhedralSurface() */
/************************************************************************/
/**
* \brief Destructor
*
*/
OGRPolyhedralSurface::~OGRPolyhedralSurface() = default;
/************************************************************************/
/* operator=( const OGRPolyhedralSurface&) */
/************************************************************************/
/**
* \brief Assignment operator.
*
*/
OGRPolyhedralSurface &
OGRPolyhedralSurface::operator=(const OGRPolyhedralSurface &other)
{
if (this != &other)
{
OGRSurface::operator=(other);
oMP = other.oMP;
}
return *this;
}
/************************************************************************/
/* clone() */
/************************************************************************/
OGRPolyhedralSurface *OGRPolyhedralSurface::clone() const
{
return new (std::nothrow) OGRPolyhedralSurface(*this);
}
/************************************************************************/
/* getGeometryName() */
/************************************************************************/
const char *OGRPolyhedralSurface::getGeometryName() const
{
return "POLYHEDRALSURFACE";
}
/************************************************************************/
/* getGeometryType() */
/************************************************************************/
/**
* \brief Returns the WKB Type of PolyhedralSurface
*
*/
OGRwkbGeometryType OGRPolyhedralSurface::getGeometryType() const
{
if ((flags & OGR_G_3D) && (flags & OGR_G_MEASURED))
return wkbPolyhedralSurfaceZM;
else if (flags & OGR_G_MEASURED)
return wkbPolyhedralSurfaceM;
else if (flags & OGR_G_3D)
return wkbPolyhedralSurfaceZ;
else
return wkbPolyhedralSurface;
}
/************************************************************************/
/* WkbSize() */
/************************************************************************/
size_t OGRPolyhedralSurface::WkbSize() const
{
size_t nSize = 9;
for (auto &&poSubGeom : *this)
{
nSize += poSubGeom->WkbSize();
}
return nSize;
}
/************************************************************************/
/* getDimension() */
/************************************************************************/
int OGRPolyhedralSurface::getDimension() const
{
return 2;
}
/************************************************************************/
/* empty() */
/************************************************************************/
void OGRPolyhedralSurface::empty()
{
if (oMP.papoGeoms != nullptr)
{
for (auto &&poSubGeom : *this)
{
delete poSubGeom;
}
CPLFree(oMP.papoGeoms);
}
oMP.nGeomCount = 0;
oMP.papoGeoms = nullptr;
}
/************************************************************************/
/* getEnvelope() */
/************************************************************************/
void OGRPolyhedralSurface::getEnvelope(OGREnvelope *psEnvelope) const
{
oMP.getEnvelope(psEnvelope);
}
/************************************************************************/
/* getEnvelope() */
/************************************************************************/
void OGRPolyhedralSurface::getEnvelope(OGREnvelope3D *psEnvelope) const
{
oMP.getEnvelope(psEnvelope);
}
/************************************************************************/
/* importFromWkb() */
/************************************************************************/
OGRErr OGRPolyhedralSurface::importFromWkb(const unsigned char *pabyData,
size_t nSize,
OGRwkbVariant eWkbVariant,
size_t &nBytesConsumedOut)
{
nBytesConsumedOut = 0;
oMP.nGeomCount = 0;
OGRwkbByteOrder eByteOrder = wkbXDR;
size_t nDataOffset = 0;
OGRErr eErr = importPreambleOfCollectionFromWkb(
pabyData, nSize, nDataOffset, eByteOrder, 9, oMP.nGeomCount,
eWkbVariant);
if (eErr != OGRERR_NONE)
return eErr;
oMP.papoGeoms = reinterpret_cast<OGRGeometry **>(
VSI_CALLOC_VERBOSE(sizeof(void *), oMP.nGeomCount));
if (oMP.nGeomCount != 0 && oMP.papoGeoms == nullptr)
{
oMP.nGeomCount = 0;
return OGRERR_NOT_ENOUGH_MEMORY;
}
/* -------------------------------------------------------------------- */
/* Get the Geoms. */
/* -------------------------------------------------------------------- */
for (int iGeom = 0; iGeom < oMP.nGeomCount; iGeom++)
{
// Parse the polygons
const unsigned char *pabySubData = pabyData + nDataOffset;
if (nSize < 9 && nSize != static_cast<size_t>(-1))
return OGRERR_NOT_ENOUGH_DATA;
OGRwkbGeometryType eSubGeomType;
eErr = OGRReadWKBGeometryType(pabySubData, eWkbVariant, &eSubGeomType);
if (eErr != OGRERR_NONE)
return eErr;
if (!isCompatibleSubType(eSubGeomType))
{
oMP.nGeomCount = iGeom;
CPLDebug("OGR",
"Cannot add geometry of type (%d) to "
"geometry of type (%d)",
eSubGeomType, getGeometryType());
return OGRERR_CORRUPT_DATA;
}
OGRGeometry *poSubGeom = nullptr;
size_t nSubGeomBytesConsumed = 0;
eErr = OGRGeometryFactory::createFromWkb(pabySubData, nullptr,
&poSubGeom, nSize, eWkbVariant,
nSubGeomBytesConsumed);
if (eErr != OGRERR_NONE)
{
oMP.nGeomCount = iGeom;
delete poSubGeom;
return eErr;
}
oMP.papoGeoms[iGeom] = poSubGeom;
if (oMP.papoGeoms[iGeom]->Is3D())
flags |= OGR_G_3D;
if (oMP.papoGeoms[iGeom]->IsMeasured())
flags |= OGR_G_MEASURED;
CPLAssert(nSubGeomBytesConsumed > 0);
if (nSize != static_cast<size_t>(-1))
{
CPLAssert(nSize >= nSubGeomBytesConsumed);
nSize -= nSubGeomBytesConsumed;
}
nDataOffset += nSubGeomBytesConsumed;
}
nBytesConsumedOut = nDataOffset;
return OGRERR_NONE;
}
/************************************************************************/
/* exportToWkb() */
/************************************************************************/
OGRErr OGRPolyhedralSurface::exportToWkb(OGRwkbByteOrder eByteOrder,
unsigned char *pabyData,
OGRwkbVariant /*eWkbVariant*/) const
{
/* -------------------------------------------------------------------- */
/* Set the byte order. */
/* -------------------------------------------------------------------- */
pabyData[0] =
DB2_V72_UNFIX_BYTE_ORDER(static_cast<unsigned char>(eByteOrder));
/* -------------------------------------------------------------------- */
/* Set the geometry feature type, ensuring that 3D flag is */
/* preserved. */
/* -------------------------------------------------------------------- */
GUInt32 nGType = getIsoGeometryType();
if (OGR_SWAP(eByteOrder))
{
nGType = CPL_SWAP32(nGType);
}
memcpy(pabyData + 1, &nGType, 4);
// Copy the raw data
if (OGR_SWAP(eByteOrder))
{
int nCount = CPL_SWAP32(oMP.nGeomCount);
memcpy(pabyData + 5, &nCount, 4);
}
else
memcpy(pabyData + 5, &oMP.nGeomCount, 4);
size_t nOffset = 9;
// serialize each of the geometries
for (auto &&poSubGeom : *this)
{
poSubGeom->exportToWkb(eByteOrder, pabyData + nOffset, wkbVariantIso);
nOffset += poSubGeom->WkbSize();
}
return OGRERR_NONE;
}
/************************************************************************/
/* importFromWkt() */
/* Instantiate from well known text format. */
/************************************************************************/
OGRErr OGRPolyhedralSurface::importFromWkt(const char **ppszInput)
{
int bHasZ = FALSE, bHasM = FALSE;
bool bIsEmpty = false;
OGRErr eErr = importPreambleFromWkt(ppszInput, &bHasZ, &bHasM, &bIsEmpty);
flags = 0;
if (eErr != OGRERR_NONE)
return eErr;
if (bHasZ)
flags |= OGR_G_3D;
if (bHasM)
flags |= OGR_G_MEASURED;
if (bIsEmpty)
return OGRERR_NONE;
char szToken[OGR_WKT_TOKEN_MAX];
const char *pszInput = *ppszInput;
/* Skip first '(' */
pszInput = OGRWktReadToken(pszInput, szToken);
/* ==================================================================== */
/* Read each surface in turn. Note that we try to reuse the same */
/* point list buffer from ring to ring to cut down on */
/* allocate/deallocate overhead. */
/* ==================================================================== */
OGRRawPoint *paoPoints = nullptr;
int nMaxPoints = 0;
double *padfZ = nullptr;
do
{
/* --------------------------------------------------------------------
*/
/* Get the first token, which should be the geometry type. */
/* --------------------------------------------------------------------
*/
const char *pszInputBefore = pszInput;
pszInput = OGRWktReadToken(pszInput, szToken);
OGRSurface *poSurface = nullptr;
/* --------------------------------------------------------------------
*/
/* Do the import. */
/* --------------------------------------------------------------------
*/
if (EQUAL(szToken, "("))
{
OGRPolygon *poPolygon =
OGRGeometryFactory::createGeometry(getSubGeometryType())
->toPolygon();
poSurface = poPolygon;
pszInput = pszInputBefore;
eErr = poPolygon->importFromWKTListOnly(
&pszInput, bHasZ, bHasM, paoPoints, nMaxPoints, padfZ);
}
else
{
CPLError(CE_Failure, CPLE_AppDefined, "Unexpected token : %s",
szToken);
eErr = OGRERR_CORRUPT_DATA;
break;
}
if (eErr == OGRERR_NONE)
eErr = oMP._addGeometryDirectlyWithExpectedSubGeometryType(
poSurface, getSubGeometryType());
if (eErr != OGRERR_NONE)
{
delete poSurface;
break;
}
// Read the delimiter following the surface.
pszInput = OGRWktReadToken(pszInput, szToken);
} while (szToken[0] == ',' && eErr == OGRERR_NONE);
CPLFree(paoPoints);
CPLFree(padfZ);
// Check for a closing bracket
if (eErr != OGRERR_NONE)
return eErr;
if (szToken[0] != ')')
return OGRERR_CORRUPT_DATA;
set3D(oMP.Is3D());
setMeasured(oMP.IsMeasured());
*ppszInput = pszInput;
return OGRERR_NONE;
}
/************************************************************************/
/* exportToWkt() */
/************************************************************************/
std::string OGRPolyhedralSurface::exportToWkt(const OGRWktOptions &opts,
OGRErr *err) const
{
OGRWktOptions optsModified(opts);
optsModified.variant = wkbVariantIso;
return exportToWktInternal(optsModified, err);
}
//! @cond Doxygen_Suppress
std::string OGRPolyhedralSurface::exportToWktInternal(const OGRWktOptions &opts,
OGRErr *err) const
{
try
{
std::string wkt(getGeometryName());
wkt += wktTypeString(opts.variant);
bool first = true;
for (int i = 0; i < oMP.nGeomCount; ++i)
{
OGRGeometry *geom = oMP.papoGeoms[i];
OGRErr subgeomErr = OGRERR_NONE;
std::string tempWkt = geom->exportToWkt(opts, &subgeomErr);
if (subgeomErr != OGRERR_NONE)
{
if (err)
*err = subgeomErr;
return std::string();
}
auto pos = tempWkt.find('(');
// Skip empty geoms
if (pos == std::string::npos)
continue;
if (first)
wkt += '(';
else
wkt += ',';
first = false;
// Extract the '( ... )' part of the child geometry.
wkt += tempWkt.substr(pos);
}
if (err)
*err = OGRERR_NONE;
if (first)
wkt += "EMPTY";
else
wkt += ')';
return wkt;
}
catch (const std::bad_alloc &e)
{
CPLError(CE_Failure, CPLE_OutOfMemory, "%s", e.what());
if (err)
*err = OGRERR_FAILURE;
return std::string();
}
}
//! @endcond
/************************************************************************/
/* flattenTo2D() */
/************************************************************************/
void OGRPolyhedralSurface::flattenTo2D()
{
oMP.flattenTo2D();
flags &= ~OGR_G_3D;
flags &= ~OGR_G_MEASURED;
}
/************************************************************************/
/* transform() */
/************************************************************************/
OGRErr OGRPolyhedralSurface::transform(OGRCoordinateTransformation *poCT)
{
return oMP.transform(poCT);
}
/************************************************************************/
/* GetCasterToPolygon() */
/************************************************************************/
//! @cond Doxygen_Suppress
static OGRPolygon *CasterToPolygon(OGRSurface *poGeom)
{
CPLError(CE_Failure, CPLE_AppDefined, "%s found. Conversion impossible",
poGeom->getGeometryName());
delete poGeom;
return nullptr;
}
OGRSurfaceCasterToPolygon OGRPolyhedralSurface::GetCasterToPolygon() const
{
return ::CasterToPolygon;
}
//! @endcond
/************************************************************************/
/* OGRSurfaceCasterToCurvePolygon() */
/************************************************************************/
//! @cond Doxygen_Suppress
static OGRCurvePolygon *CasterToCurvePolygon(OGRSurface *poGeom)
{
CPLError(CE_Failure, CPLE_AppDefined, "%s found. Conversion impossible",
poGeom->getGeometryName());
delete poGeom;
return nullptr;
}
OGRSurfaceCasterToCurvePolygon
OGRPolyhedralSurface::GetCasterToCurvePolygon() const
{
return ::CasterToCurvePolygon;
}
//! @endcond
/************************************************************************/
/* isCompatibleSubType() */
/************************************************************************/
//! @cond Doxygen_Suppress
OGRBoolean
OGRPolyhedralSurface::isCompatibleSubType(OGRwkbGeometryType eSubType) const
{
return wkbFlatten(eSubType) == wkbPolygon;
}
//! @endcond
/************************************************************************/
/* getSubGeometryName() */
/************************************************************************/
//! @cond Doxygen_Suppress
const char *OGRPolyhedralSurface::getSubGeometryName() const
{
return "POLYGON";
}
//! @endcond
/************************************************************************/
/* getSubGeometryType() */
/************************************************************************/
//! @cond Doxygen_Suppress
OGRwkbGeometryType OGRPolyhedralSurface::getSubGeometryType() const
{
return wkbPolygon;
}
//! @endcond
/************************************************************************/
/* Equals() */
/************************************************************************/
OGRBoolean OGRPolyhedralSurface::Equals(const OGRGeometry *poOther) const
{
if (poOther == this)
return TRUE;
if (poOther->getGeometryType() != getGeometryType())
return FALSE;
if (IsEmpty() && poOther->IsEmpty())
return TRUE;
auto poOMP = poOther->toPolyhedralSurface();
if (oMP.getNumGeometries() != poOMP->oMP.getNumGeometries())
return FALSE;
for (int iGeom = 0; iGeom < oMP.nGeomCount; iGeom++)
{
if (!oMP.getGeometryRef(iGeom)->Equals(
poOMP->oMP.getGeometryRef(iGeom)))
return FALSE;
}
return TRUE;
}
/************************************************************************/
/* get_Area() */
/************************************************************************/
/**
* \brief Returns the area enclosed
*
* This method is built on the SFCGAL library, check it for the definition
* of the geometry operation.
* If OGR is built without the SFCGAL library, this method will always return
* -1.0
*
* @return area enclosed by the PolyhedralSurface
*/
double OGRPolyhedralSurface::get_Area() const
{
#ifndef HAVE_SFCGAL
CPLError(CE_Failure, CPLE_NotSupported, "SFCGAL support not enabled.");
return -1.0;
#else
sfcgal_init();
sfcgal_geometry_t *poThis = OGRGeometry::OGRexportToSFCGAL(this);
if (poThis == nullptr)
return -1.0;
double area = sfcgal_geometry_area_3d(poThis);
sfcgal_geometry_delete(poThis);
return (area > 0) ? area : -1.0;
#endif
}
/************************************************************************/
/* PointOnSurface() */
/************************************************************************/
OGRErr OGRPolyhedralSurface::PointOnSurface(OGRPoint *poPoint) const
{
return PointOnSurfaceInternal(poPoint);
}
/************************************************************************/
/* GetCasterToMultiPolygon() */
/************************************************************************/
//! @cond Doxygen_Suppress
OGRPolyhedralSurfaceCastToMultiPolygon
OGRPolyhedralSurface::GetCasterToMultiPolygon() const
{
return OGRPolyhedralSurface::CastToMultiPolygonImpl;
}
/************************************************************************/
/* CastToMultiPolygonImpl() */
/************************************************************************/
OGRMultiPolygon *
OGRPolyhedralSurface::CastToMultiPolygonImpl(OGRPolyhedralSurface *poPS)
{
OGRMultiPolygon *poMultiPolygon = new OGRMultiPolygon(poPS->oMP);
poMultiPolygon->assignSpatialReference(poPS->getSpatialReference());
delete poPS;
return poMultiPolygon;
}
//! @endcond
/************************************************************************/
/* CastToMultiPolygon() */
/************************************************************************/
/**
* \brief Casts the OGRPolyhedralSurface to an OGRMultiPolygon
*
* The passed in geometry is consumed and a new one returned (or NULL in case
* of failure)
*
* @param poPS the input geometry - ownership is passed to the method.
* @return new geometry.
*/
OGRMultiPolygon *
OGRPolyhedralSurface::CastToMultiPolygon(OGRPolyhedralSurface *poPS)
{
OGRPolyhedralSurfaceCastToMultiPolygon pfn =
poPS->GetCasterToMultiPolygon();
return pfn(poPS);
}
/************************************************************************/
/* addGeometry() */
/************************************************************************/
/**
* \brief Add a new geometry to a collection.
*
* Only a POLYGON can be added to a POLYHEDRALSURFACE.
*
* @return OGRErr OGRERR_NONE if the polygon is successfully added
*/
OGRErr OGRPolyhedralSurface::addGeometry(const OGRGeometry *poNewGeom)
{
if (!isCompatibleSubType(poNewGeom->getGeometryType()))
return OGRERR_UNSUPPORTED_GEOMETRY_TYPE;
OGRGeometry *poClone = poNewGeom->clone();
OGRErr eErr;
if (poClone == nullptr)
return OGRERR_FAILURE;
eErr = addGeometryDirectly(poClone);
if (eErr != OGRERR_NONE)
delete poClone;
return eErr;
}
/************************************************************************/
/* addGeometryDirectly() */
/************************************************************************/
/**
* \brief Add a geometry directly to the container.
*
* This method is the same as the C function OGR_G_AddGeometryDirectly().
*
* There is no SFCOM analog to this method.
*
* @param poNewGeom geometry to add to the container.
*
* @return OGRERR_NONE if successful, or OGRERR_UNSUPPORTED_GEOMETRY_TYPE if
* the geometry type is illegal for the type of geometry container.
*/
OGRErr OGRPolyhedralSurface::addGeometryDirectly(OGRGeometry *poNewGeom)
{
if (!isCompatibleSubType(poNewGeom->getGeometryType()))
{
return OGRERR_UNSUPPORTED_GEOMETRY_TYPE;
}
HomogenizeDimensionalityWith(poNewGeom);
OGRGeometry **papoNewGeoms =
static_cast<OGRGeometry **>(VSI_REALLOC_VERBOSE(
oMP.papoGeoms, sizeof(void *) * (oMP.nGeomCount + 1)));
if (papoNewGeoms == nullptr)
return OGRERR_FAILURE;
oMP.papoGeoms = papoNewGeoms;
oMP.papoGeoms[oMP.nGeomCount] = poNewGeom;
oMP.nGeomCount++;
return OGRERR_NONE;
}
/************************************************************************/
/* getNumGeometries() */
/************************************************************************/
/**
* \brief Fetch number of geometries in PolyhedralSurface
*
* @return count of children geometries. May be zero.
*/
int OGRPolyhedralSurface::getNumGeometries() const
{
return oMP.nGeomCount;
}
/************************************************************************/
/* getGeometryRef() */
/************************************************************************/
/**
* \brief Fetch geometry from container.
*
* This method returns a pointer to an geometry within the container. The
* returned geometry remains owned by the container, and should not be
* modified. The pointer is only valid until the next change to the
* geometry container. Use IGeometry::clone() to make a copy.
*
* @param i the index of the geometry to fetch, between 0 and
* getNumGeometries() - 1.
* @return pointer to requested geometry.
*/
OGRPolygon *OGRPolyhedralSurface::getGeometryRef(int i)
{
return oMP.papoGeoms[i]->toPolygon();
}
/************************************************************************/
/* getGeometryRef() */
/************************************************************************/
/**
* \brief Fetch geometry from container.
*
* This method returns a pointer to an geometry within the container. The
* returned geometry remains owned by the container, and should not be
* modified. The pointer is only valid until the next change to the
* geometry container. Use IGeometry::clone() to make a copy.
*
* @param i the index of the geometry to fetch, between 0 and
* getNumGeometries() - 1.
* @return pointer to requested geometry.
*/
const OGRPolygon *OGRPolyhedralSurface::getGeometryRef(int i) const
{
return oMP.papoGeoms[i]->toPolygon();
}
/************************************************************************/
/* IsEmpty() */
/************************************************************************/
/**
* \brief Checks if the PolyhedralSurface is empty
*
* @return TRUE if the PolyhedralSurface is empty, FALSE otherwise
*/
OGRBoolean OGRPolyhedralSurface::IsEmpty() const
{
return oMP.IsEmpty();
}
/************************************************************************/
/* set3D() */
/************************************************************************/
/**
* \brief Set the type as 3D geometry
*/
void OGRPolyhedralSurface::set3D(OGRBoolean bIs3D)
{
oMP.set3D(bIs3D);
OGRGeometry::set3D(bIs3D);
}
/************************************************************************/
/* setMeasured() */
/************************************************************************/
/**
* \brief Set the type as Measured
*/
void OGRPolyhedralSurface::setMeasured(OGRBoolean bIsMeasured)
{
oMP.setMeasured(bIsMeasured);
OGRGeometry::setMeasured(bIsMeasured);
}
/************************************************************************/
/* setCoordinateDimension() */
/************************************************************************/
/**
* \brief Set the coordinate dimension.
*
* This method sets the explicit coordinate dimension. Setting the coordinate
* dimension of a geometry to 2 should zero out any existing Z values.
* This will also remove the M dimension if present before this call.
*
* @param nNewDimension New coordinate dimension value, either 2 or 3.
*/
void OGRPolyhedralSurface::setCoordinateDimension(int nNewDimension)
{
oMP.setCoordinateDimension(nNewDimension);
OGRGeometry::setCoordinateDimension(nNewDimension);
}
/************************************************************************/
/* swapXY() */
/************************************************************************/
/**
* \brief Swap x and y coordinates.
*/
void OGRPolyhedralSurface::swapXY()
{
oMP.swapXY();
}
/************************************************************************/
/* hasCurveGeometry() */
/************************************************************************/
OGRBoolean OGRPolyhedralSurface::hasCurveGeometry(int) const
{
return FALSE;
}
/************************************************************************/
/* removeGeometry() */
/************************************************************************/
/**
* \brief Remove a geometry from the container.
*
* Removing a geometry will cause the geometry count to drop by one, and all
* "higher" geometries will shuffle down one in index.
*
* @param iGeom the index of the geometry to delete. A value of -1 is a
* special flag meaning that all geometries should be removed.
*
* @param bDelete if TRUE the geometry will be deallocated, otherwise it will
* not. The default is TRUE as the container is considered to own the
* geometries in it.
*
* @return OGRERR_NONE if successful, or OGRERR_FAILURE if the index is
* out of range.
*/
OGRErr OGRPolyhedralSurface::removeGeometry(int iGeom, int bDelete)
{
return oMP.removeGeometry(iGeom, bDelete);
}
/************************************************************************/
/* assignSpatialReference() */
/************************************************************************/
void OGRPolyhedralSurface::assignSpatialReference(
const OGRSpatialReference *poSR)
{
OGRGeometry::assignSpatialReference(poSR);
oMP.assignSpatialReference(poSR);
}