Commit dwg to Speckle automatically

Hi @clrkng @teocomi @gokermu,

I try to use Speckle.Autocad.API and kit converter to parse Autodesk DBObject and upload to Speckle. ConvertToSpeckle seems retrieve DBObject. However, its upload seems unable to display.

image

May I ask “no display value” is because loaded converter failed to convert DBObject or ConvertToSpeckle filed to convert? Thanks. The following is my code.

var kit = KitManager.GetDefaultKit();
var converter = kit.LoadConverter(“AutoCAD2022”);
IList blist = new List();
using (Transaction tr = db.TransactionManager.StartTransaction())
{
BlockTable blckTbl = tr.GetObject(doc.Database.BlockTableId, OpenMode.ForRead) as BlockTable;
BlockTableRecord btr = tr.GetObject(blckTbl[BlockTableRecord.ModelSpace], OpenMode.ForRead) as BlockTableRecord;
foreach (ObjectId objId in btr)
{
DBObject obj = tr.GetObject(objId, OpenMode.ForWrite) as DBObject;
try
{
blist.Add(converter.ConvertToSpeckle(obj));
}
catch{ }
}
}
try
{
var commitObject = new Base();
commitObject[“@all”] = blist;
string url_ = “https://speckle.xyz/”;
Account account = new Account();
account.token = token;
account.serverInfo = new ServerInfo
{
url = url_
};
var transports = new List<Speckle.Core.Transports.ITransport>() { new ServerTransport(account, streamid) };

            Task.Run(async () => {
                var objectId = await Operations.Send(
                @object: commitObject,
                transports: transports,
                useDefaultCache: true
                ).ConfigureAwait(true);

                var actualCommit = new CommitCreateInput()
                {
                    streamId = streamid,
                    objectId = objectId,
                    branchName = "main",
                    message = "IFC",
                    sourceApplication = "Speckle API",
                };
                var client = new Client(account);
                //client.CommitUpdate
                var response = await client.CommitCreate(actualCommit);
            });
            
        }
        catch(System.Exception ex) { MessageBox.Show(ex.ToString()); }

All regards,
Albert

1 Like

Update, forgot to add

converter.SetContextDocument(doc);

what a shame on me. Now, I’m using PowerBI to decompose commit. Easy!

2 Likes

Did adding SetContextDocument solve your issue @archilles0203 ?

1 Like

Yes, I forgot that so that probably converter has no idea to parse DBObject. Thanks!

Thanks @gokermu .
However, when I unpack the records in data column of dwg commit in Power BI, as you can see in below, I cannot find Layer parameter.

“data”, {“x”, “y”, “z”, “id”, “units”, “displayStyle”, “speckle_type”, “applicationId”, “plane”, “value”, “height”, “richText”, “rotation”, “AutocadProps”, “displayValue”, “area”, “bbox”, “knots”, “closed”, “degree”, “domain”, “length”, “points”, “weights”, “periodic”, “rational”, “end”, “start”}, {“data.x”, “data.y”, “data.z”, “data.id”, “data.units”, “data.displayStyle”, “data.speckle_type”, “data.applicationId”, “data.plane”, “data.value”, “data.height”, “data.richText”, “data.rotation”, “data.AutocadProps”, “data.displayValue”, “data.area”, “data.bbox”, “data.knots”, “data.closed”, “data.degree”, “data.domain”, “data.length”, “data.points”, “data.weights”, “data.periodic”, “data.rational”, “data.end”, “data.start”}

@gokermu @clrkng
May I ask what is the strategy to take layers out from AutoCAD via Speckle API? or, should I create my Converter for this usage? Appreciate any comment.

Regards,
Albert