hexagon logo

GeoTol Axis Data Extraction

Is there a way to pull the data from the axis measurements in Geometric Tolerances? I cannot seem to find the correct method to get that data. Is it possible?

Parents
  • Hi

    I can only offer you the good old string formatting if you don't like the detour via the csv file.

    
    ASSIGN/COUNT=0
    
    L1 =LABEL/
    
    ASSIGN/COUNT=COUNT+1
    ASSIGN/VANGLE=90+DOUBLE(LEFT(GETTEXTEX("REPORT_LABEL_MEAS", COUNT, "SEG=1", "FCFLOC1"),13))
    
    ANGLE =GENERIC/NONE,DEPENDENT,CARTESIAN,OUT,$
    NOM/XYZ,<0+0,0+0,0+0>,$
    MEAS/XYZ,<0+0,0+0,0+0>,$
    NOM/IJK,<0+0,0+0,1+0>,$
    MEAS/IJK,<0+0,0+0,1+0>,$
    RADIUS/0+0,0+0,$
    ANGLE/90+0,VANGLE,$
    DISTANCE/0+0,0+0
    
    IF_GOTO/COUNT<4,GOTO = L1
    


    For some reason, I cannot edit my previous post...

    However, when I do this, it returns a "0" rather than the angle or deviation on the angle. At this point, I will stick with my route unless I am missing something.
Reply
  • Hi

    I can only offer you the good old string formatting if you don't like the detour via the csv file.

    
    ASSIGN/COUNT=0
    
    L1 =LABEL/
    
    ASSIGN/COUNT=COUNT+1
    ASSIGN/VANGLE=90+DOUBLE(LEFT(GETTEXTEX("REPORT_LABEL_MEAS", COUNT, "SEG=1", "FCFLOC1"),13))
    
    ANGLE =GENERIC/NONE,DEPENDENT,CARTESIAN,OUT,$
    NOM/XYZ,<0+0,0+0,0+0>,$
    MEAS/XYZ,<0+0,0+0,0+0>,$
    NOM/IJK,<0+0,0+0,1+0>,$
    MEAS/IJK,<0+0,0+0,1+0>,$
    RADIUS/0+0,0+0,$
    ANGLE/90+0,VANGLE,$
    DISTANCE/0+0,0+0
    
    IF_GOTO/COUNT<4,GOTO = L1
    


    For some reason, I cannot edit my previous post...

    However, when I do this, it returns a "0" rather than the angle or deviation on the angle. At this point, I will stick with my route unless I am missing something.
Children
No Data