@@ -797,9 +797,80 @@ void GMLASReader::SetField(OGRFeature *poFeature, OGRGMLASLayer *poLayer,
797
797
poFeature->SetField (nAttrIdx, papszTokens);
798
798
CSLDestroy (papszTokens);
799
799
}
800
+ else if (eType == OFTStringList)
801
+ {
802
+ OGRField *psRawField = poFeature->GetRawFieldRef (nAttrIdx);
803
+ if (OGR_RawField_IsUnset (psRawField))
804
+ {
805
+ poFeature->SetField (nAttrIdx, osAttrValue.c_str ());
806
+ }
807
+ else
808
+ {
809
+ ++psRawField->StringList .nCount ;
810
+ psRawField->StringList .paList = CSLAddString (
811
+ psRawField->StringList .paList , osAttrValue.c_str ());
812
+ }
813
+ }
814
+ else if (eType == OFTIntegerList)
815
+ {
816
+ OGRField *psRawField = poFeature->GetRawFieldRef (nAttrIdx);
817
+ if (OGR_RawField_IsUnset (psRawField))
818
+ {
819
+ psRawField->IntegerList .nCount = 1 ;
820
+ psRawField->IntegerList .paList = static_cast <int *>(
821
+ CPLMalloc (psRawField->IntegerList .nCount * sizeof (int )));
822
+ }
823
+ else
824
+ {
825
+ ++psRawField->IntegerList .nCount ;
826
+ psRawField->IntegerList .paList = static_cast <int *>(
827
+ CPLRealloc (psRawField->IntegerList .paList ,
828
+ psRawField->IntegerList .nCount * sizeof (int )));
829
+ }
830
+ psRawField->IntegerList .paList [psRawField->IntegerList .nCount - 1 ] =
831
+ atoi (osAttrValue.c_str ());
832
+ }
833
+ else if (eType == OFTInteger64List)
834
+ {
835
+ OGRField *psRawField = poFeature->GetRawFieldRef (nAttrIdx);
836
+ if (OGR_RawField_IsUnset (psRawField))
837
+ {
838
+ psRawField->Integer64List .nCount = 1 ;
839
+ psRawField->Integer64List .paList =
840
+ static_cast <GIntBig *>(CPLMalloc (
841
+ psRawField->Integer64List .nCount * sizeof (GIntBig)));
842
+ }
843
+ else
844
+ {
845
+ ++psRawField->Integer64List .nCount ;
846
+ psRawField->Integer64List .paList =
847
+ static_cast <GIntBig *>(CPLRealloc (
848
+ psRawField->Integer64List .paList ,
849
+ psRawField->Integer64List .nCount * sizeof (GIntBig)));
850
+ }
851
+ psRawField->Integer64List
852
+ .paList [psRawField->Integer64List .nCount - 1 ] =
853
+ CPLAtoGIntBig (osAttrValue.c_str ());
854
+ }
800
855
else
801
856
{
802
- poFeature->SetField (nAttrIdx, osAttrValue.c_str ());
857
+ CPLAssert (eType == OFTRealList);
858
+ OGRField *psRawField = poFeature->GetRawFieldRef (nAttrIdx);
859
+ if (OGR_RawField_IsUnset (psRawField))
860
+ {
861
+ psRawField->RealList .nCount = 1 ;
862
+ psRawField->RealList .paList = static_cast <double *>(
863
+ CPLMalloc (psRawField->RealList .nCount * sizeof (double )));
864
+ }
865
+ else
866
+ {
867
+ ++psRawField->RealList .nCount ;
868
+ psRawField->RealList .paList = static_cast <double *>(
869
+ CPLRealloc (psRawField->RealList .paList ,
870
+ psRawField->RealList .nCount * sizeof (double )));
871
+ }
872
+ psRawField->RealList .paList [psRawField->RealList .nCount - 1 ] =
873
+ CPLAtof (osAttrValue.c_str ());
803
874
}
804
875
}
805
876
else
0 commit comments