CVV has string type?
RobertCram
Posts: 15
The CVV type (using the GeoEngine.Core.GXNet lib in C#) includes SetString and GetString methods, but CVV.Create and CVV.CreateExt seem only to support various numerical types, from the GSTypesConstant and GEO_VARConstant enumerations..
How does one create a CVV that includes strings? This would be to add notes, comments, etc., to survey data.
Thanks,
Bob
How does one create a CVV that includes strings? This would be to add notes, comments, etc., to survey data.
Thanks,
Bob
0
Comments
-
Hello,
Below are examples on how you would create them.
in C#:using (var dbVV = CVV.Create(-GeoEngine.Core.GXNet.Constant.STR_FILE, 0)) { dh.GetDatabasesVV(dbVV); ... }
in GXC:GridNameVV = Create_VV(-STR_FILE, 0);
in Python:vv_agg = gxapi.GXVV.create_ext(-gxapi.STR_FILE, 0)
the same comment has been added to https://my.geosoft.com/forum#/discussion/1380/extracting-channel-data-as-strings-net.
Joseph0 -
Thank you.
-- Bob0