Changeset: 09bdfddb309d for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=09bdfddb309d Modified Files: geom/monetdb5/geom.mal Branch: sfcgal Log Message:
AddPoint available at MAL level diffs (12 lines): diff --git a/geom/monetdb5/geom.mal b/geom/monetdb5/geom.mal --- a/geom/monetdb5/geom.mal +++ b/geom/monetdb5/geom.mal @@ -324,6 +324,8 @@ command GeometryN(g:wkb, n:int) :wkb add comment "Returns the 1-based Nth geometry if the geometry is a GEOMETRYCOLLECTION, (MULTI)POINT, (MULTI)LINESTRING, MULTICURVE or (MULTI)POLYGON. Otherwise, return NULL"; command NumGeometries(g:wkb) :int address wkbNumGeometries comment "Returns the number of geometries"; +command AddPoint(w:wkb, p:wkb) :wkb address wkbAddPoint +comment "Adds a new point to a Linestring."; command Transform(g:wkb, srid_src:int, srid_dst:int, proj_src:str, proj_dest:str) :wkb address wkbTransform comment "Transforms a geometry from one srid to another"; _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
