Skip to content

Commit

Permalink
#21 support GMLMultiCurve / GMLMultiSurface in GMLAbstractGeometry$fr…
Browse files Browse the repository at this point in the history
…omSimpleFeatureGeometry
  • Loading branch information
eblondel committed Apr 29, 2024
1 parent b85eceb commit 6d33594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R/GMLAbstractGeometry.R
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ GMLAbstractGeometry$fromSimpleFeatureGeometry = function(sfg){
"POINT" = GMLPoint$new(sfg=sfg),
"LINESTRING" = GMLLineString$new(sfg=sfg),
"POLYGON" = GMLPolygon$new(sfg=sfg),
"MULTIPOINT" = GMLMultiPoint$new(sfg=sfg)
"MULTIPOINT" = GMLMultiPoint$new(sfg=sfg),
"MULTILINESTRING" = GMLMultiCurve$new(sfg=sfg),
"MULTIPOLYGON" = GMLMultiSurface$new(sfg=sfg)

)
return(newvalue)
}

0 comments on commit 6d33594

Please sign in to comment.