hexagon logo

Pointcloud Export during program execution not working

I've been writing my romer arm programs to end with a pointcloud operator exporting the scan so that no data is lost. I have added this command to the edit window thinking it would execute during the program with the rest of the features but for some reason it will only actually export if I F9 the command and click apply... during the program execution it still shows a progress bar and takes quite a while as if it was actually exporting it only nothing ever comes out....
Parents
  • I figured it out. PC-DMIS doesn't like variables ending with a backslash "" In the comment input box I will have to lead with this back slash and if I do that the following code executes successfully

    C1 =COMMENT/INPUT,NO,FULL SCREEN=NO,
    Please Edit Comment Text!
    ASSIGN/V1=C1.INPUT
    ASSIGN/V2="C:\USERS\METROLOGY\ONEDRIVE - MONARCH TRACTOR\METROLOGY_DATABASE\RAW_DATA\XYZ"
    ASSIGN/V3=V2+V1+".XYZ"
    COPEXPORT1 =COP/OPER,EXPORT,FORMAT=XYZ,FILENAME=V3,
    SIZE=44750938,REF=COP1,,
Reply
  • I figured it out. PC-DMIS doesn't like variables ending with a backslash "" In the comment input box I will have to lead with this back slash and if I do that the following code executes successfully

    C1 =COMMENT/INPUT,NO,FULL SCREEN=NO,
    Please Edit Comment Text!
    ASSIGN/V1=C1.INPUT
    ASSIGN/V2="C:\USERS\METROLOGY\ONEDRIVE - MONARCH TRACTOR\METROLOGY_DATABASE\RAW_DATA\XYZ"
    ASSIGN/V3=V2+V1+".XYZ"
    COPEXPORT1 =COP/OPER,EXPORT,FORMAT=XYZ,FILENAME=V3,
    SIZE=44750938,REF=COP1,,
Children
No Data