繁体   English   中英

如何在 Python 中以小时、分钟和秒显示“X”轴刻度?

[英]How do I show the “X” axis scale in hours, minutes and seconds in Python?

数据使用 Python 字典根据Create a new table in Python user titusarmah99 Z5E056C500A1C4B6A7110B50D807BADE53647/titusarmah99/

import datetime
import numpy as np
import seaborn as sb 
import pandas as pd
import matplotlib.pyplot as plt
plt.style.use("ggplot")


%matplotlib inline 


%config InlineBackend.figure_format='svg'}

读取 Sandvik.log 和 Iscar.log 文件。

            data=[]
        with open('Sandvik.log','r') as file:
            for row in file:
                data.append(row.rstrip('\n').split('|'))
        columns =['DateTime','Xload']

        data_dic = []
        for row in data:
            tmp ={}
            tmp['DateTime']=row[0]
            for i in range(1,len(row)-1):
                if row[i] in columns:
                    tmp[row[i]]=row[i+1]
            for c in columns:
                if c not in tmp:
                    tmp[c] = '' #for rows which donot have the property
            data_dic.append(tmp)

            dfs = pd.DataFrame(data_dic)
        print (dfs.dtypes)



    # Reading Iscar.log    

    data=[]
    with open('Iscar.log','r') as file:
        for row in file:
            data.append(row.rstrip('\n').split('|'))
    columns =['DateTime','Xload']

    data_dic = []
    for row in data:
        tmp ={}
        tmp['DateTime']=row[0]
        for i in range(1,len(row)-1):
            if row[i] in columns:
                tmp[row[i]]=row[i+1]
        for c in columns:
            if c not in tmp:
                tmp[c] = '' #for rows which donot have the property
        data_dic.append(tmp)

        dfi = pd.DataFrame(data_dic)
    print (dfi.dtypes) 


    # Converting the Xload and Datetime variables
    dfs['Xload']=pd.to_numeric(dfs.Xload)

    dfs['DateTime']= pd.to_datetime(dfs['DateTime']) 

    dfi['Xload']=pd.to_numeric(dfi.Xload)

    dfi['DateTime']= pd.to_datetime(dfi['DateTime']) 


# removing null data
dfs.dropna(inplace=True)
dfi.dropna(inplace=True)


# Reset the DataFrame
dfs.reset_index(drop=True, inplace=True)
dfi.reset_index(drop=True, inplace=True)

绘制 Sandvik DataFrame 的 Xload 变量。

dfs.plot('DateTime', color = "red", figsize = (8, 6))

plt.ylim(0,100) # scale up to 100% for Y axis

# creating subtitles
plt.legend(['Sandvik'], loc='upper left') 
plt.title("Machining Time vs. Xload Power")
plt.xlabel("Machining Time")
plt.ylabel("% in Xload variable")

Dataframe 山特维克图表

绘制 Iscar DataFrame 的 Xload 变量

dfi.plot('DateTime', color = "royalblue", figsize = (8, 6))

plt.ylim(0,100)

# creating subtitles
plt.legend(['Iscar'], loc='upper left') 
plt.title("Machining Time vs Xload Power")
plt.xlabel("Machining Time")
plt.ylabel("% in Xload variable")

Dataframe 伊斯卡图

加入两个图表后,我无法将小时、分钟和秒缩放到“X”轴。

plt.figure(figsize = (10, 6))

for frame in [dfs, dfi]:
    plt.plot(frame['Xload'])


#plt.xlim()
plt.ylim(0,100)

# Criando as legendas
plt.legend(['Sandvik', 'Iscar'], shadow=True, loc='upper left') 
plt.title("Machining Time vs Xload Power")
plt.xlabel("Machining Time")
plt.ylabel("% in Xload variable")

分组图表

我只会以秒为单位使用刻度 dt.strftime ('%S')。 我需要覆盖图表(Sandvik 和 Iscar)并每 5 秒更改一次有序的 X 轴刻度。

dfs['DateTime'] = dfs['DateTime'].dt.strftime('%S') 
dfi['DateTime'] = dfi['DateTime'].dt.strftime('%S')

# overlapping graphics
plt.figure(figsize = (10, 4))
for frame in [dfs, dfi]:
    plt.plot(frame['Xload'])
    plt.legend(['Sandvik', 'Iscar'], loc='upper left') #plot da legend

#plt.xlim()
plt.ylim(0,100)


# using seaborn
x1 = dfs['DateTime']
x2 = dfi['DateTime']
y1 = dfs['Xload']
y2 = dfi['Xload']

f, (ax1, ax2) = plt.subplots(ncols=2, nrows=1, sharey=True, figsize=(10,4))
ax = sns.lineplot(x=x1, y=y1, ax=ax1, color='blue', label='Sardvik', ci=None)
ax = sns.lineplot(x=x2, y=y2, ax=ax2, color='red', label='Iscar', ci=None)

ax1.set_xlim(min(x1), max(x1))
ax2.set_xlim(min(x2), max(x2))
ax1.set_xlabel('Machine Time')
ax2.set_xlabel('Machine Time')
ax1.set_ylabel('% in Xload variable')
ax1.set_xticks(ax1.get_xticks()[::5])
ax2.set_xticks(ax2.get_xticks()[::5])
plt.setp( ax1.xaxis.get_majorticklabels(), rotation=90 )
plt.setp( ax2.xaxis.get_majorticklabels(), rotation=90 )

在此处输入图像描述

请编辑问题以添加更多信息。 尽量不要将其发布为答案。

您可能已经注意到,用于绘图的Sardvik.logIscar.log中的时间戳彼此相差大约 10 分钟。

plt.figure(figsize = (20, 6))
for frame in [dfs, dfi]:
    plt.plot(frame['DateTime'],frame['Xload'])

#plt.xlim()
plt.ylim(0,100)

# Criando as legendas
plt.legend(['Sandvik', 'Iscar'], shadow=True, loc='upper left') 
plt.title("Machining Time vs Xload Power")
plt.xlabel("Machining Time")
plt.ylabel("% in Xload variable")

以上代码产生这个情节 它保留了时间戳,但看起来不太好。 如果这解决了问题,那么它很好,但只是为了更好的可视化,您可以 plot 将它们作为子图( 参见示例)或使用 seaborn 的断轴

# adding these two lines before removing null
dfs['DateTime'] = dfs['DateTime'].dt.strftime('%H:%M:%S.%f') 
dfi['DateTime'] = dfi['DateTime'].dt.strftime('%H:%M:%S.%f')

# using seaborn
x1 = dfs['DateTime']
x2 = dfi['DateTime']
y1 = dfs['Xload']
y2 = dfi['Xload']

f, (ax1, ax2) = plt.subplots(ncols=2, nrows=1, sharey=True, figsize=(10,6))
ax = sns.lineplot(x=x1, y=y1, ax=ax1, color='blue', label='Sardvik', ci=None)
ax = sns.lineplot(x=x2, y=y2, ax=ax2, color='red', label='Iscar', ci=None)

ax1.set_xlim(min(x1), max(x1))
ax2.set_xlim(min(x2), max(x2))
ax1.set_xlabel('Machine Time')
ax2.set_xlabel('Machine Time')
ax1.set_ylabel('% in Xload variable')
ax1.set_xticks(ax1.get_xticks()[::10])
ax2.set_xticks(ax2.get_xticks()[::10])
plt.setp( ax1.xaxis.get_majorticklabels(), rotation=70 )
plt.setp( ax2.xaxis.get_majorticklabels(), rotation=70 )

f.suptitle('Machining Time vs Xload Power')
plt.subplots_adjust(wspace=.01, hspace=0)

上面的代码给出这个

数据文件 Sandivik.log

> 2019-10-30T20:33:57.326Z|avail|AVAILABLE|part_count|0|SspeedOvr|100|Fovr|100|tool_id|100|program|778.778|program_comment|% O0778(PEGA AGO SAE1045) (FACEAMENTO PONTO A PONTO) |line|0|block|O0778(PEGA AGO SAE1045)|path_feedrate|0|path_position|196.8030000000 0.0000000000 327.3670000000|active_axes|X Z C|mode|AUTOMATIC
2019-10-30T20:33:57.326Z|servo|NORMAL||||
2019-10-30T20:33:57.326Z|comms|NORMAL||||
2019-10-30T20:33:57.326Z|logic|NORMAL||||
2019-10-30T20:33:57.326Z|motion|NORMAL||||
2019-10-30T20:33:57.326Z|system|NORMAL||||
2019-10-30T20:33:57.326Z|execution|STOPPED|f_command|0|estop|ARMED|Xact|0|Xload|38
2019-10-30T20:33:57.326Z|Xtravel|NORMAL||||
2019-10-30T20:33:57.326Z|Xoverheat|NORMAL||||
2019-10-30T20:33:57.326Z|Xservo|NORMAL||||
2019-10-30T20:33:57.326Z|Zact|0|Zload|9
2019-10-30T20:33:57.326Z|Ztravel|NORMAL||||
2019-10-30T20:33:57.326Z|Zoverheat|NORMAL||||
2019-10-30T20:33:57.326Z|Zservo|NORMAL||||
2019-10-30T20:33:57.326Z|Cact|0|Cload|0
2019-10-30T20:33:57.326Z|Ctravel|NORMAL||||
2019-10-30T20:33:57.326Z|Coverheat|NORMAL||||
2019-10-30T20:33:57.326Z|Cservo|NORMAL||||
2019-10-30T20:33:57.326Z|S1speed|0|S1load|0
2019-10-30T20:33:57.326Z|S1servo|NORMAL||||
2019-10-30T20:33:57.326Z|S2speed|0|S2load|0
2019-10-30T20:33:57.326Z|S2servo|NORMAL||||
2019-10-30T20:33:57.666Z|S2load|1
2019-10-30T20:33:58.094Z|Zload|8
2019-10-30T20:33:58.533Z|Xload|37|Zload|9
2019-10-30T20:33:58.969Z|Xload|38|Zload|8|S2load|0
2019-10-30T20:33:59.409Z|S2load|1
2019-10-30T20:33:59.845Z|Zload|9|S2load|0
2019-10-30T20:34:00.777Z|Xload|37|Zload|8|S2load|1
2019-10-30T20:34:01.218Z|Xload|38|S2load|0
2019-10-30T20:34:01.681Z|tool_id|101|line|40|block|N40T0101(Faceamento)|execution|ACTIVE|Xload|34|Zload|9|S1speed|1|S1load|50|S2load|1
2019-10-30T20:34:02.121Z|line|60|block|N60G97S1870M4|f_command|25|Xload|35|Zload|10|S1speed|1839|S1load|101
2019-10-30T20:34:02.562Z|line|70|block|N70G0X55Z7.2M8|path_feedrate|10242|path_position|167.8670000000 0.0000000000 262.0340000000|Xact|-28.936|Xload|16|Zact|-65.333|Zload|14|S1speed|1864|S1load|7|S2load|0
2019-10-30T20:34:02.997Z|path_position|134.7970000000 0.0000000000 187.3670000000|Xact|-62.006|Xload|14|Zact|-140|Zload|16|S1speed|1865|S1load|5
2019-10-30T20:34:03.437Z|path_position|104.0890000000 0.0000000000 118.0340000000|Xact|-92.714|Xload|15|Zact|-209.333|Zload|15|S1load|4
2019-10-30T20:34:03.877Z|path_position|71.0180000000 0.0000000000 43.3670000000|Xact|-125.785|Xload|16|Zact|-284|S1speed|1867|S1load|5|S2load|1
2019-10-30T20:34:04.313Z|path_feedrate|467|path_position|53.8800000000 0.0000000000 7.2000000000|Xact|-142.923|Xload|15|Zact|-320.167|Zload|12|S1speed|1866|S1load|4
2019-10-30T20:34:04.753Z|block|N70G1X-2F.25|path_feedrate|466|path_position|47.4140000000 0.0000000000 7.2000000000|Xact|-149.389|Xload|7|S1speed|1865|S1load|21|S2load|0
2019-10-30T20:34:05.193Z|path_position|40.4550000000 0.0000000000 7.2000000000|Xact|-156.348|Xload|10|Zload|14|S1speed|1867|S1load|19
2019-10-30T20:34:05.634Z|path_feedrate|467|path_position|33.4930000000 0.0000000000 7.2000000000|Xact|-163.31|Zload|15|S1load|17
2019-10-30T20:34:06.069Z|path_feedrate|466|path_position|26.5310000000 0.0000000000 7.2000000000|Xact|-170.272|Xload|8|Zload|13|S1load|14
2019-10-30T20:34:06.509Z|path_feedrate|467|path_position|20.0640000000 0.0000000000 7.2000000000|Xact|-176.739|Xload|10|S1speed|1866|S1load|12
2019-10-30T20:34:06.949Z|path_position|13.1000000000 0.0000000000 7.2000000000|Xact|-183.703|Zload|14|S1speed|1865|S1load|9
2019-10-30T20:34:07.385Z|path_position|6.1340000000 0.0000000000 7.2000000000|Xact|-190.669|Xload|9|Zload|13|S1speed|1866|S1load|7
2019-10-30T20:34:07.825Z|path_feedrate|466|path_position|-0.3350000000 0.0000000000 7.2000000000|Xact|-197.138|Xload|5|Zload|11|S1speed|1865|S1load|4
2019-10-30T20:34:08.264Z|block|N70G0X55W1|path_feedrate|0|path_position|55.0000000000 0.0000000000 8.2000000000|Xact|-141.803|Xload|2|Zact|-319.167|Zload|9|S1speed|1864|S1load|5
2019-10-30T20:34:08.705Z|line|80|block|N80G1X-2|path_feedrate|466|path_position|51.0190000000 0.0000000000 6.4000000000|Xact|-145.784|Xload|15|Zact|-320.967|Zload|11|S1speed|1865|S1load|4
2019-10-30T20:34:09.168Z|path_position|43.5640000000 0.0000000000 6.4000000000|Xact|-153.239|Xload|7|Zload|14|S1speed|1864|S1load|23
2019-10-30T20:34:09.608Z|path_position|37.1000000000 0.0000000000 6.4000000000|Xact|-159.703|Xload|8|S1speed|1866|S1load|20
2019-10-30T20:34:10.072Z|path_feedrate|467|path_position|29.6420000000 0.0000000000 6.4000000000|Xact|-167.161|Xload|9|S1load|17
2019-10-30T20:34:10.512Z|path_position|23.1760000000 0.0000000000 6.4000000000|Xact|-173.627|Xload|12|Zload|13|S1speed|1864|S1load|14|S2load|1
2019-10-30T20:34:10.981Z|path_feedrate|466|path_position|15.7150000000 0.0000000000 6.4000000000|Xact|-181.088|Xload|9|Zload|14|S1speed|1863|S1load|12|S2load|0
2019-10-30T20:34:11.417Z|path_position|8.7490000000 0.0000000000 6.4000000000|Xact|-188.054|Xload|7|S1speed|1864|S1load|9
2019-10-30T20:34:11.857Z|path_position|1.7830000000 0.0000000000 6.4000000000|Xact|-195.02|Xload|9|Zload|12|S1speed|1866|S1load|5
2019-10-30T20:34:12.325Z|line|90|block|N90G0X55W1|path_feedrate|10006|path_position|48.6670000000 0.0000000000 7.2890000000|Xact|-148.136|Xload|64|Zact|-320.078|Zload|9|S1speed|1867|S1load|4
2019-10-30T20:34:12.761Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|53.1340000000 0.0000000000 5.6000000000|Xact|-143.669|Xload|15|Zact|-321.767|Zload|12
2019-10-30T20:34:13.201Z|path_feedrate|466|path_position|46.6700000000 0.0000000000 5.6000000000|Xact|-150.133|Xload|10|S1speed|1865|S1load|23
2019-10-30T20:34:13.641Z|path_position|39.7100000000 0.0000000000 5.6000000000|Xact|-157.093|Xload|9|Zload|14|S1speed|1864|S1load|20
2019-10-30T20:34:14.105Z|path_position|32.2520000000 0.0000000000 5.6000000000|Xact|-164.551|Zload|13|S1speed|1866|S1load|18
2019-10-30T20:34:14.545Z|path_position|25.2900000000 0.0000000000 5.6000000000|Xact|-171.513|Xload|8|Zload|14|S1speed|1864|S1load|15
2019-10-30T20:34:14.985Z|path_position|18.8230000000 0.0000000000 5.6000000000|Xact|-177.98|Xload|10|Zload|13|S1load|13|S2load|1
2019-10-30T20:34:15.426Z|path_position|11.8590000000 0.0000000000 5.6000000000|Xact|-184.944|Zload|14|S1load|10|S2load|0
2019-10-30T20:34:15.861Z|path_position|4.8920000000 0.0000000000 5.6000000000|Xact|-191.911|Xload|7|Zload|13|S1speed|1865|S1load|7|S2load|1
2019-10-30T20:34:16.301Z|path_position|-1.5770000000 0.0000000000 5.6000000000|Xact|-198.38|Xload|11|Zload|11|S1load|5|S2load|0
2019-10-30T20:34:16.741Z|line|90|block|N90G0X55W1|path_feedrate|0|path_position|55.0000000000 0.0000000000 4.8000000000|Xact|-141.803|Xload|43|Zact|-322.567|Zload|21|S1speed|1866|S2load|1
2019-10-30T20:34:17.177Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|49.7740000000 0.0000000000 4.8000000000|Xact|-147.029|Xload|12|Zload|10|S1speed|1861|S1load|13|S2load|0
2019-10-30T20:34:17.617Z|path_feedrate|466|path_position|42.8180000000 0.0000000000 4.8000000000|Xact|-153.985|Xload|10|Zload|14|S1speed|1865|S1load|22
2019-10-30T20:34:18.057Z|path_position|36.3540000000 0.0000000000 4.8000000000|Xact|-160.449|Xload|8|Zload|15|S1speed|1867|S1load|19|S2load|1
2019-10-30T20:34:18.498Z|path_position|29.3920000000 0.0000000000 4.8000000000|Xact|-167.411|S1speed|1866|S1load|17|S2load|0
2019-10-30T20:34:18.933Z|path_position|22.4290000000 0.0000000000 4.8000000000|Xact|-174.374|S1speed|1865|S1load|14
2019-10-30T20:34:19.401Z|path_position|15.4660000000 0.0000000000 4.8000000000|Xact|-181.337|Zload|14|S1load|11
2019-10-30T20:34:19.842Z|path_position|8.5000000000 0.0000000000 4.8000000000|Xact|-188.303|Xload|9|Zload|15|S1speed|1866|S1load|8
2019-10-30T20:34:20.277Z|path_position|1.5340000000 0.0000000000 4.8000000000|Xact|-195.269|Zload|12|S1speed|1865|S1load|5
2019-10-30T20:34:20.717Z|line|90|block|N90G0X55W1|path_feedrate|10006|path_position|43.3330000000 0.0000000000 5.5950000000|Xact|-153.47|Xload|57|Zact|-321.772|Zload|9|S1speed|1866|S1load|4|S2load|1
2019-10-30T20:34:21.186Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|52.8850000000 0.0000000000 4.0000000000|Xact|-143.918|Xload|17|Zact|-323.367|Zload|13|S1speed|1865
2019-10-30T20:34:21.621Z|path_feedrate|466|path_position|45.9250000000 0.0000000000 4.0000000000|Xact|-150.878|Xload|10|Zload|14|S1load|22|S2load|0
2019-10-30T20:34:22.089Z|path_position|38.9650000000 0.0000000000 4.0000000000|Xact|-157.838|Xload|9|Zload|15|S1speed|1866|S1load|20
2019-10-30T20:34:22.530Z|path_position|32.0040000000 0.0000000000 4.0000000000|Xact|-164.799|Xload|10|S1speed|1865|S1load|17
2019-10-30T20:34:22.965Z|path_position|25.0420000000 0.0000000000 4.0000000000|Xact|-171.761|Xload|11|S1speed|1866|S1load|15
2019-10-30T20:34:23.405Z|path_position|18.5750000000 0.0000000000 4.0000000000|Xact|-178.228|Xload|8|Zload|14|S1speed|1865|S1load|12|S2load|1
2019-10-30T20:34:23.845Z|path_position|11.6110000000 0.0000000000 4.0000000000|Xact|-185.192|Zload|15|S1speed|1864|S1load|10
2019-10-30T20:34:24.281Z|path_position|4.6440000000 0.0000000000 4.0000000000|Xact|-192.159|Xload|7|Zload|14|S1speed|1865|S1load|7|S2load|0
2019-10-30T20:34:24.749Z|path_position|-2.0000000000 0.0000000000 4.0000000000|Xact|-198.803|Xload|16|Zload|12|S1speed|1866|S1load|4|S2load|1
2019-10-30T20:34:25.188Z|line|90|block|N90Z3.2|path_feedrate|1929|path_position|55.0000000000 0.0000000000 3.2000000000|Xact|-141.803|Xload|42|Zact|-324.167|Zload|15|S1speed|1867|S1load|5|S2load|0
2019-10-30T20:34:25.624Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|49.0280000000 0.0000000000 3.2000000000|Xact|-147.775|Xload|10|Zload|11|S1speed|1861|S1load|18
2019-10-30T20:34:26.064Z|path_feedrate|466|path_position|42.5690000000 0.0000000000 3.2000000000|Xact|-154.234|Xload|5|Zload|14|S1speed|1865|S1load|22|S2load|1
2019-10-30T20:34:26.505Z|path_position|35.6080000000 0.0000000000 3.2000000000|Xact|-161.195|Xload|12|S1speed|1867|S1load|19|S2load|0
2019-10-30T20:34:26.946Z|path_position|28.6460000000 0.0000000000 3.2000000000|Xact|-168.157|Xload|8|S1speed|1866|S1load|16
2019-10-30T20:34:27.380Z|path_position|21.6830000000 0.0000000000 3.2000000000|Xact|-175.12|Xload|7|S1speed|1864|S1load|13
2019-10-30T20:34:27.848Z|path_position|14.7190000000 0.0000000000 3.2000000000|Xact|-182.084|Xload|9|Zload|15|S1load|11
2019-10-30T20:34:28.313Z|path_position|7.2560000000 0.0000000000 3.2000000000|Xact|-189.547|Xload|8|Zload|14|S1load|8
2019-10-30T20:34:28.753Z|path_feedrate|467|path_position|0.7870000000 0.0000000000 3.2000000000|Xact|-196.016|Xload|9|Zload|12|S1speed|1865|S1load|5|S2load|1
2019-10-30T20:34:29.193Z|line|90|block|N90G0X55W1|path_feedrate|3395|path_position|55.0000000000 0.0000000000 4.2000000000|Xact|-141.803|Xload|27|Zact|-323.167|Zload|8|S1speed|1867|S1load|4
2019-10-30T20:34:29.634Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|52.1380000000 0.0000000000 2.4000000000|Xact|-144.665|Xload|15|Zact|-324.967|Zload|10|S1speed|1865|S2load|0
2019-10-30T20:34:30.069Z|path_feedrate|466|path_position|45.1790000000 0.0000000000 2.4000000000|Xact|-151.624|Xload|10|Zload|12|S1load|22
2019-10-30T20:34:30.533Z|path_position|38.2190000000 0.0000000000 2.4000000000|Xact|-158.584|Xload|9|Zload|13|S1load|20
2019-10-30T20:34:30.969Z|path_position|31.2580000000 0.0000000000 2.4000000000|Xact|-165.545|Xload|11|S1load|17
2019-10-30T20:34:31.409Z|path_position|24.2950000000 0.0000000000 2.4000000000|Xact|-172.508|Xload|8|S1speed|1866|S1load|15
2019-10-30T20:34:31.849Z|path_position|17.8290000000 0.0000000000 2.4000000000|Xact|-178.974|S1speed|1864|S1load|12
2019-10-30T20:34:32.290Z|path_position|10.8640000000 0.0000000000 2.4000000000|Xact|-185.939|Xload|10|S1load|9
2019-10-30T20:34:32.725Z|path_position|3.8970000000 0.0000000000 2.4000000000|Xact|-192.906|Xload|9|S1speed|1865|S1load|6
2019-10-30T20:34:33.193Z|line|90|path_feedrate|160|path_position|3.3330000000 0.0000000000 2.4940000000|Xact|-193.47|Xload|20|Zact|-324.873|Zload|1|S1speed|1867|S1load|4|S2load|1
2019-10-30T20:34:33.634Z|block|N90Z1.6|path_feedrate|0|path_position|55.0000000000 0.0000000000 1.6000000000|Xact|-141.803|Xload|44|Zact|-325.767|Zload|3|S1speed|1866|S2load|0
2019-10-30T20:34:34.069Z|line|80|block|N80G1X-2|path_feedrate|466|path_position|48.2840000000 0.0000000000 1.6000000000|Xact|-148.519|Xload|10|Zload|10|S1speed|1863|S1load|21
2019-10-30T20:34:34.509Z|path_position|41.8240000000 0.0000000000 1.6000000000|Xact|-154.979|Zload|15|S1speed|1866|S2load|1
2019-10-30T20:34:34.942Z|path_position|35.3600000000 0.0000000000 1.6000000000|Xact|-161.443|Zload|14|S1load|20|S2load|0
2019-10-30T20:34:35.333Z|path_position|28.8950000000 0.0000000000 1.6000000000|Xact|-167.908|Xload|11|S1speed|1863|S1load|17
2019-10-30T20:34:35.745Z|path_position|22.4300000000 0.0000000000 1.6000000000|Xact|-174.373|Xload|9|S1load|14
2019-10-30T20:34:36.153Z|path_position|16.4610000000 0.0000000000 1.6000000000|Xact|-180.342|Xload|8|S1speed|1864|S1load|11
2019-10-30T20:34:36.584Z|path_position|9.4960000000 0.0000000000 1.6000000000|Xact|-187.307|Xload|9|Zload|15|S1speed|1866|S1load|9
2019-10-30T20:34:36.990Z|path_position|3.0270000000 0.0000000000 1.6000000000|Xact|-193.776|Zload|13|S1speed|1865|S1load|5
2019-10-30T20:34:37.421Z|line|90|path_feedrate|160|path_position|11.3330000000 0.0000000000 1.8340000000|Xact|-185.47|Xload|64|Zact|-325.533|Zload|2|S1speed|1867|S1load|4
2019-10-30T20:34:37.837Z|block|N90Z0.8|path_feedrate|0|path_position|55.0000000000 0.0000000000 0.8000000000|Xact|-141.803|Xload|35|Zact|-326.567|Zload|10
2019-10-30T20:34:38.273Z|line|80|block|N80G1X-2|path_feedrate|466|path_position|48.4080000000 0.0000000000 0.8000000000|Xact|-148.395|Xload|10|Zload|11|S1speed|1862|S1load|20
2019-10-30T20:34:38.701Z|path_position|41.9480000000 0.0000000000 0.8000000000|Xact|-154.855|Xload|8|Zload|14|S1speed|1865|S1load|21
2019-10-30T20:34:39.105Z|path_position|35.4840000000 0.0000000000 0.8000000000|Xact|-161.319|Xload|12|S1speed|1867|S1load|19
2019-10-30T20:34:39.512Z|path_feedrate|467|path_position|29.5160000000 0.0000000000 0.8000000000|Xact|-167.287|Xload|9|S1speed|1866|S1load|17
2019-10-30T20:34:39.924Z|path_position|22.5530000000 0.0000000000 0.8000000000|Xact|-174.25|Xload|7|S1speed|1867|S1load|13
2019-10-30T20:34:40.382Z|path_feedrate|466|path_position|16.0870000000 0.0000000000 0.8000000000|Xact|-180.716|Xload|11|S1speed|1868|S1load|11
2019-10-30T20:34:40.784Z|path_position|9.6190000000 0.0000000000 0.8000000000|Xact|-187.184|S1speed|1867|S1load|9
2019-10-30T20:34:41.192Z|path_position|3.1500000000 0.0000000000 0.8000000000|Xact|-193.653|Xload|8|Zload|13|S1speed|1865|S1load|6
2019-10-30T20:34:41.633Z|line|90|block|N90G0X55W1|path_feedrate|7147|path_position|19.3330000000 0.0000000000 1.1740000000|Xact|-177.47|Xload|85|Zact|-326.193|Zload|7|S1speed|1864|S1load|4
2019-10-30T20:34:42.040Z|block|N90Z0|path_feedrate|0|path_position|55.0000000000 0.0000000000 0.0000000000|Xact|-141.803|Xload|45|Zact|-327.367|Zload|3
2019-10-30T20:34:42.444Z|line|210|block|N210G28U0W0M5M9|path_feedrate|14142|path_position|132.3330000000 0.0000000000 39.6670000000|Xact|-64.47|Xload|54|Zact|-287.7|Zload|20|S1speed|1866
2019-10-30T20:34:42.840Z|path_feedrate|10000|path_position|196.8030000000 0.0000000000 103.6670000000|Xact|0|Xload|44|Zact|-223.7|Zload|17|S1speed|1867|S2load|1
2019-10-30T20:34:43.236Z|path_position|196.8030000000 0.0000000000 173.0000000000|Xload|38|Zact|-154.367|S1speed|1866|S2load|0
2019-10-30T20:34:43.640Z|path_position|196.8030000000 0.0000000000 242.3330000000|Xload|36|Zact|-85.034|Zload|13|S1speed|1868
2019-10-30T20:34:44.077Z|path_position|196.8030000000 0.0000000000 311.6670000000|Zact|-15.7|Zload|11|S1speed|1867|S2load|1
2019-10-30T20:34:44.500Z|line|220|block|N220M30|path_feedrate|0|path_position|196.8030000000 0.0000000000 327.3670000000|execution|READY|Xload|37|Zact|0|Zload|12|S1speed|1738|S1load|57|S2load|0
2019-10-30T20:34:44.909Z|tool_id|100|line|0|block|O0778(PEGA AGO SAE1045)|execution|STOPPED|f_command|0|Zload|10|S1speed|306|S1load|89
2019-10-30T20:34:45.316Z|message||ABRIR PORTA DO OPERADOR

数据文件 Iscar.log Sandvik.log 和 Iscar.log 文件的 DateTime 已经是 ISO 格式。

> 2019-10-30T20:43:19.052Z|avail|AVAILABLE|part_count|0|SspeedOvr|100|Fovr|100|tool_id|100|program|778.778|program_comment|% O0778(PEGA AGO SAE1045) (FACEAMENTO PONTO A PONTO) |line|0|block|O0778(PEGA AGO SAE1045)|path_feedrate|0|path_position|196.8030000000 0.0000000000 334.4970000000|active_axes|X Z C|mode|AUTOMATIC
2019-10-30T20:43:19.052Z|servo|NORMAL||||
2019-10-30T20:43:19.052Z|comms|NORMAL||||
2019-10-30T20:43:19.052Z|logic|NORMAL||||
2019-10-30T20:43:19.052Z|motion|NORMAL||||
2019-10-30T20:43:19.052Z|system|NORMAL||||
2019-10-30T20:43:19.052Z|execution|STOPPED|f_command|0|estop|ARMED|Xact|0|Xload|35
2019-10-30T20:43:19.052Z|Xtravel|NORMAL||||
2019-10-30T20:43:19.052Z|Xoverheat|NORMAL||||
2019-10-30T20:43:19.052Z|Xservo|NORMAL||||
2019-10-30T20:43:19.052Z|Zact|0|Zload|7
2019-10-30T20:43:19.052Z|Ztravel|NORMAL||||
2019-10-30T20:43:19.052Z|Zoverheat|NORMAL||||
2019-10-30T20:43:19.052Z|Zservo|NORMAL||||
2019-10-30T20:43:19.052Z|Cact|0|Cload|0
2019-10-30T20:43:19.052Z|Ctravel|NORMAL||||
2019-10-30T20:43:19.052Z|Coverheat|NORMAL||||
2019-10-30T20:43:19.052Z|Cservo|NORMAL||||
2019-10-30T20:43:19.052Z|S1speed|0|S1load|0
2019-10-30T20:43:19.052Z|S1servo|NORMAL||||
2019-10-30T20:43:19.052Z|S2speed|0|S2load|1
2019-10-30T20:43:19.052Z|S2servo|NORMAL||||
2019-10-30T20:43:19.395Z|S2load|0
2019-10-30T20:43:20.316Z|Xload|36
2019-10-30T20:43:20.757Z|Xload|35|Zload|8
2019-10-30T20:43:21.192Z|Xload|36
2019-10-30T20:43:21.660Z|Xload|35|S2load|1
2019-10-30T20:43:22.101Z|Zload|7
2019-10-30T20:43:22.536Z|S2load|0
2019-10-30T20:43:23.445Z|Xload|36|Zload|8|S2load|1
2019-10-30T20:43:23.880Z|tool_id|101|line|40|block|N40T0101(Faceamento)|execution|ACTIVE|Xload|35|S1speed|1|S1load|50
2019-10-30T20:43:24.348Z|line|60|block|N60G97S1870M4|f_command|25|S1speed|1842|S1load|99|S2load|0
2019-10-30T20:43:24.789Z|line|70|block|N70G0X55Z7.2M8|path_feedrate|10232|path_position|168.4970000000 0.0000000000 269.1640000000|Xact|-28.306|Xload|16|Zact|-65.333|Zload|14|S1speed|1867|S1load|6
2019-10-30T20:43:25.224Z|path_position|138.4580000000 0.0000000000 199.8300000000|Xact|-58.345|Xload|11|Zact|-134.667|Zload|15|S1speed|1868|S1load|4
2019-10-30T20:43:25.636Z|path_position|108.4190000000 0.0000000000 130.4970000000|Xact|-88.384|Xload|15|Zact|-204|S1speed|1864|S1load|5|S2load|1
2019-10-30T20:43:26.104Z|path_position|73.7590000000 0.0000000000 50.4970000000|Xact|-123.044|Xload|13|Zact|-284|Zload|14|S1speed|1865|S1load|4
2019-10-30T20:43:26.540Z|path_feedrate|133|path_position|54.6260000000 0.0000000000 7.2000000000|Xact|-142.177|Xload|11|Zact|-327.297|Zload|11|S1speed|1864|S1load|5|S2load|0
2019-10-30T20:43:26.980Z|block|N70G1X-2F.25|path_feedrate|466|path_position|48.1590000000 0.0000000000 7.2000000000|Xact|-148.644|Xload|10|Zload|12|S1speed|1863|S1load|20
2019-10-30T20:43:27.448Z|path_position|40.7030000000 0.0000000000 7.2000000000|Xact|-156.1|Xload|9|Zload|14|S1speed|1865|S1load|19
2019-10-30T20:43:27.912Z|path_position|33.2450000000 0.0000000000 7.2000000000|Xact|-163.558|Zload|13|S1speed|1866|S1load|16
2019-10-30T20:43:28.352Z|path_position|26.7790000000 0.0000000000 7.2000000000|Xact|-170.024|Xload|10|S1speed|1865|S1load|14
2019-10-30T20:43:28.792Z|path_position|19.8150000000 0.0000000000 7.2000000000|Xact|-176.988|Xload|6|S1speed|1864|S1load|12
2019-10-30T20:43:29.228Z|path_position|12.8500000000 0.0000000000 7.2000000000|Xact|-183.953|Xload|11|S1speed|1865|S1load|9
2019-10-30T20:43:29.668Z|path_feedrate|467|path_position|5.8840000000 0.0000000000 7.2000000000|Xact|-190.919|Xload|10|S1load|7
2019-10-30T20:43:30.137Z|path_position|-1.0830000000 0.0000000000 7.2000000000|Xact|-197.886|Zload|12|S1speed|1867|S1load|5
2019-10-30T20:43:30.573Z|block|N70G0X55W1|path_feedrate|0|path_position|55.0000000000 0.0000000000 8.2000000000|Xact|-141.803|Xload|34|Zact|-326.297|Zload|5|S1speed|1865|S1load|4
2019-10-30T20:43:31.012Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|50.7700000000 0.0000000000 6.4000000000|Xact|-146.033|Xload|15|Zact|-328.097|Zload|11|S1speed|1867|S1load|8
2019-10-30T20:43:31.452Z|path_feedrate|466|path_position|43.8120000000 0.0000000000 6.4000000000|Xact|-152.991|Xload|11|S1speed|1866|S1load|21
2019-10-30T20:43:31.894Z|path_feedrate|467|path_position|36.8510000000 0.0000000000 6.4000000000|Xact|-159.952|Xload|9|Zload|12|S1speed|1867|S1load|19
2019-10-30T20:43:32.300Z|path_feedrate|466|path_position|30.8830000000 0.0000000000 6.4000000000|Xact|-165.92|Xload|10|S1speed|1865|S1load|17
2019-10-30T20:43:32.696Z|path_position|24.4180000000 0.0000000000 6.4000000000|Xact|-172.385|Xload|9|S1speed|1864|S1load|15|S2load|1
2019-10-30T20:43:33.109Z|path_position|17.9520000000 0.0000000000 6.4000000000|Xact|-178.851|Xload|12|S1load|12
2019-10-30T20:43:33.505Z|path_position|11.9820000000 0.0000000000 6.4000000000|Xact|-184.821|Xload|11|S1speed|1865|S1load|9|S2load|0
2019-10-30T20:43:33.921Z|path_position|5.0160000000 0.0000000000 6.4000000000|Xact|-191.787|Xload|8|Zload|11|S1load|6|S2load|1
2019-10-30T20:43:34.376Z|path_feedrate|467|path_position|-1.4540000000 0.0000000000 6.4000000000|Xact|-198.257|Xload|11|S1speed|1866|S1load|4|S2load|0
2019-10-30T20:43:34.780Z|line|90|block|N90G0X55W1|path_feedrate|0|path_position|55.0000000000 0.0000000000 7.4000000000|Xact|-141.803|Xload|29|Zact|-327.097|Zload|12|S2load|1
2019-10-30T20:43:35.196Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|50.8940000000 0.0000000000 5.6000000000|Xact|-145.909|Xload|17|Zact|-328.897|Zload|14|S1speed|1868|S2load|0
2019-10-30T20:43:35.596Z|path_feedrate|466|path_position|44.9300000000 0.0000000000 5.6000000000|Xact|-151.873|Xload|8|S1speed|1865|S1load|22|S2load|1
2019-10-30T20:43:36.001Z|path_position|38.4660000000 0.0000000000 5.6000000000|Xact|-158.337|Xload|11|S1speed|1864|S1load|20|S2load|0
2019-10-30T20:43:36.412Z|path_position|32.0020000000 0.0000000000 5.6000000000|Xact|-164.801|Xload|12|S1speed|1863|S1load|17
2019-10-30T20:43:36.821Z|path_position|25.5370000000 0.0000000000 5.6000000000|Xact|-171.266|Xload|11|Zload|15|S1speed|1864|S1load|15|S2load|1
2019-10-30T20:43:37.224Z|path_position|19.5680000000 0.0000000000 5.6000000000|Xact|-177.235|Xload|9|S1speed|1866|S1load|12|S2load|0
2019-10-30T20:43:37.656Z|path_position|12.6030000000 0.0000000000 5.6000000000|Xact|-184.2|Xload|10|Zload|14|S1speed|1867|S1load|9
2019-10-30T20:43:38.068Z|path_feedrate|467|path_position|6.1350000000 0.0000000000 5.6000000000|Xact|-190.668|Xload|9|S1speed|1868|S1load|6
2019-10-30T20:43:38.472Z|path_position|0.1630000000 0.0000000000 5.6000000000|Xact|-196.64|S1load|4
2019-10-30T20:43:38.900Z|line|90|block|N90G0X55W1|path_feedrate|1965|path_position|55.0000000000 0.0000000000 6.6000000000|Xact|-141.803|Xload|4|Zact|-327.897|Zload|9
2019-10-30T20:43:39.332Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|52.0140000000 0.0000000000 4.8000000000|Xact|-144.789|Xload|14|Zact|-329.697|Zload|10
2019-10-30T20:43:39.768Z|path_feedrate|466|path_position|45.0550000000 0.0000000000 4.8000000000|Xact|-151.748|Xload|11|Zload|11|S1speed|1866|S1load|21|S2load|1
2019-10-30T20:43:40.192Z|path_position|38.5910000000 0.0000000000 4.8000000000|Xact|-158.212|Xload|10|Zload|12|S1speed|1865|S1load|20|S2load|0
2019-10-30T20:43:40.593Z|path_position|32.1260000000 0.0000000000 4.8000000000|Xact|-164.677|Xload|11|S1speed|1866|S1load|17|S2load|1
2019-10-30T20:43:41.036Z|path_position|25.6610000000 0.0000000000 4.8000000000|Xact|-171.142|Xload|10|S1load|15|S2load|0
2019-10-30T20:43:41.440Z|path_position|19.1950000000 0.0000000000 4.8000000000|Xact|-177.608|Xload|9|S1load|13
2019-10-30T20:43:41.852Z|path_position|12.7280000000 0.0000000000 4.8000000000|Xact|-184.075|S1speed|1863|S1load|10
2019-10-30T20:43:42.260Z|path_position|6.2590000000 0.0000000000 4.8000000000|Xact|-190.544|Xload|8|S1speed|1865|S1load|7
2019-10-30T20:43:42.668Z|path_position|-0.2100000000 0.0000000000 4.8000000000|Xact|-197.013|Xload|9|Zload|10|S1speed|1864|S1load|5
2019-10-30T20:43:43.108Z|line|90|block|N90G0X55W1|path_feedrate|1965|path_position|55.0000000000 0.0000000000 5.8000000000|Xact|-141.803|Xload|0|Zact|-328.697|Zload|9|S1load|4|S2load|1
2019-10-30T20:43:43.532Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|52.1390000000 0.0000000000 4.0000000000|Xact|-144.664|Xload|14|Zact|-330.497|Zload|14|S1speed|1866|S2load|0
2019-10-30T20:43:43.936Z|path_feedrate|466|path_position|45.6760000000 0.0000000000 4.0000000000|Xact|-151.127|Xload|9|Zload|12|S1speed|1865|S1load|21|S2load|1
2019-10-30T20:43:44.344Z|path_position|39.2130000000 0.0000000000 4.0000000000|Xact|-157.59|Xload|11|Zload|13|S1speed|1867|S1load|20
2019-10-30T20:43:44.744Z|path_position|33.2450000000 0.0000000000 4.0000000000|Xact|-163.558|Xload|12|S1speed|1866|S1load|18|S2load|0
2019-10-30T20:43:45.179Z|path_position|26.2830000000 0.0000000000 4.0000000000|Xact|-170.52|Xload|8|S1speed|1864|S1load|15
2019-10-30T20:43:45.585Z|path_feedrate|467|path_position|19.8160000000 0.0000000000 4.0000000000|Xact|-176.987|Xload|9|S1load|13|S2load|1
2019-10-30T20:43:45.996Z|path_feedrate|466|path_position|13.8470000000 0.0000000000 4.0000000000|Xact|-182.956|Xload|10|Zload|14|S1load|11|S2load|0
2019-10-30T20:43:46.404Z|path_position|7.3790000000 0.0000000000 4.0000000000|Xact|-189.424|Zload|13|S1load|7
2019-10-30T20:43:46.811Z|path_feedrate|467|path_position|0.9100000000 0.0000000000 4.0000000000|Xact|-195.893|Xload|12|Zload|12|S1speed|1867|S1load|5
2019-10-30T20:43:47.223Z|line|90|block|N90G0X55W1|path_feedrate|10006|path_position|55.0000000000 0.0000000000 5.0000000000|Xact|-141.803|Xload|71|Zact|-329.497|Zload|9|S1load|4|S2load|1
2019-10-30T20:43:47.628Z|line|80|block|N80G1X-2|path_feedrate|467|path_position|53.2580000000 0.0000000000 3.2000000000|Xact|-143.545|Xload|16|Zact|-331.297|Zload|14|S1speed|1869|S2load|0
2019-10-30T20:43:48.044Z|path_feedrate|465|path_position|47.2900000000 0.0000000000 3.2000000000|Xact|-149.513|Xload|11|Zload|12|S1speed|1865|S1load|22
2019-10-30T20:43:48.444Z|path_feedrate|466|path_position|40.8280000000 0.0000000000 3.2000000000|Xact|-155.975|Xload|10|Zload|13|S1speed|1864|S1load|21
2019-10-30T20:43:48.850Z|path_position|34.8620000000 0.0000000000 3.2000000000|Xact|-161.941|Xload|12|Zload|14|S1speed|1863|S1load|18
2019-10-30T20:43:49.249Z|path_position|28.3960000000 0.0000000000 3.2000000000|Xact|-168.407|Xload|8|Zload|13|S1speed|1864|S1load|16
2019-10-30T20:43:49.704Z|path_position|20.9350000000 0.0000000000 3.2000000000|Xact|-175.868|S1load|13
2019-10-30T20:43:50.113Z|path_position|14.9660000000 0.0000000000 3.2000000000|Xact|-181.837|Xload|7|Zload|14|S1speed|1866|S1load|10
2019-10-30T20:43:50.517Z|path_position|8.4980000000 0.0000000000 3.2000000000|Xact|-188.305|Xload|8|S1speed|1865|S1load|7
2019-10-30T20:43:50.952Z|path_feedrate|467|path_position|2.0290000000 0.0000000000 3.2000000000|Xact|-194.774|Xload|10|Zload|13|S1speed|1867|S1load|5
2019-10-30T20:43:51.352Z|line|90|block|N90G0X55W1|path_feedrate|8577|path_position|32.6670000000 0.0000000000 3.8080000000|Xact|-164.136|Xload|94|Zact|-330.689|Zload|10|S1speed|1868|S1load|4|S2load|1
2019-10-30T20:43:51.748Z|line|80|block|N90Z2.4|path_feedrate|0|path_position|54.8750000000 0.0000000000 2.4000000000|Xact|-141.928|Xload|34|Zact|-332.097|Zload|11|S1speed|1867|S2load|0
2019-10-30T20:43:52.181Z|block|N80G1X-2|path_feedrate|466|path_position|48.4080000000 0.0000000000 2.4000000000|Xact|-148.395|Xload|12|S1speed|1862|S1load|20
2019-10-30T20:43:52.568Z|path_position|41.9470000000 0.0000000000 2.4000000000|Xact|-154.856|S1load|21
2019-10-30T20:43:52.972Z|path_position|35.4830000000 0.0000000000 2.4000000000|Xact|-161.32|Xload|13|Zload|12|S1speed|1864|S1load|19
2019-10-30T20:43:53.412Z|path_position|29.0190000000 0.0000000000 2.4000000000|Xact|-167.784|Xload|10|S1speed|1863|S1load|16
2019-10-30T20:43:53.820Z|path_feedrate|467|path_position|22.5530000000 0.0000000000 2.4000000000|Xact|-174.25|Xload|9|S1speed|1867|S1load|13|S2load|1
2019-10-30T20:43:54.228Z|path_feedrate|466|path_position|16.0860000000 0.0000000000 2.4000000000|Xact|-180.717|Xload|10|S1speed|1866|S1load|10|S2load|0
2019-10-30T20:43:54.628Z|path_feedrate|467|path_position|10.1150000000 0.0000000000 2.4000000000|Xact|-186.688|S1speed|1867|S1load|9
2019-10-30T20:43:55.036Z|path_feedrate|466|path_position|3.6470000000 0.0000000000 2.4000000000|Xact|-193.156|Xload|11|Zload|11|S1speed|1865|S1load|6|S2load|1
2019-10-30T20:43:55.444Z|path_feedrate|93|path_position|-2.0000000000 0.0000000000 2.4000000000|Xact|-198.803|Xload|16|Zload|4|S1speed|1864|S1load|5|S2load|0
2019-10-30T20:43:55.864Z|line|90|block|N90Z1.6|path_feedrate|1929|path_position|55.0000000000 0.0000000000 1.6000000000|Xact|-141.803|Xload|44|Zact|-332.897|Zload|0|S1speed|1865|S1load|4
2019-10-30T20:43:56.300Z|line|80|block|N80G1X-2|path_feedrate|466|path_position|49.5260000000 0.0000000000 1.6000000000|Xact|-147.277|Xload|10|Zload|12|S1speed|1860|S1load|17
2019-10-30T20:43:56.704Z|path_position|43.0660000000 0.0000000000 1.6000000000|Xact|-153.737|Xload|12|S1speed|1862|S1load|21
2019-10-30T20:43:57.120Z|path_position|36.6020000000 0.0000000000 1.6000000000|Xact|-160.201|Zload|13|S1speed|1865|S1load|18
2019-10-30T20:43:57.528Z|path_position|30.1370000000 0.0000000000 1.6000000000|Xact|-166.666|Xload|10|S1speed|1866|S1load|16
2019-10-30T20:43:57.940Z|path_feedrate|467|path_position|23.6720000000 0.0000000000 1.6000000000|Xact|-173.131|Zload|12|S1load|14
2019-10-30T20:43:58.380Z|path_feedrate|466|path_position|17.2050000000 0.0000000000 1.6000000000|Xact|-179.598|Xload|9|Zload|13|S1speed|1865|S1load|11
2019-10-30T20:43:58.812Z|path_position|10.2400000000 0.0000000000 1.6000000000|Xact|-186.563|S1speed|1867|S1load|8
2019-10-30T20:43:59.220Z|path_feedrate|467|path_position|3.7710000000 0.0000000000 1.6000000000|Xact|-193.032|Xload|7|S1load|6
2019-10-30T20:43:59.648Z|path_position|-2.0000000000 0.0000000000 1.6000000000|Xact|-198.803|Xload|18|Zload|11|S1load|3
2019-10-30T20:44:00.075Z|line|90|block|N90Z0.8|path_feedrate|1929|path_position|55.0000000000 0.0000000000 0.8000000000|Xact|-141.803|Xload|42|Zact|-333.697|Zload|14|S1speed|1868|S1load|4
2019-10-30T20:44:00.480Z|line|80|block|N80G1X-2|path_feedrate|466|path_position|49.6500000000 0.0000000000 0.8000000000|Xact|-147.153|Xload|12|Zload|8|S1speed|1861|S1load|14
2019-10-30T20:44:00.884Z|path_position|43.1900000000 0.0000000000 0.8000000000|Xact|-153.613|Xload|9|Zload|10|S1speed|1863|S1load|21
2019-10-30T20:44:01.288Z|path_position|37.2240000000 0.0000000000 0.8000000000|Xact|-159.579|Xload|14|S1speed|1864|S1load|19
2019-10-30T20:44:01.691Z|path_position|30.7590000000 0.0000000000 0.8000000000|Xact|-166.044|Xload|11|Zload|11|S1speed|1865|S1load|16
2019-10-30T20:44:02.103Z|path_feedrate|467|path_position|24.2930000000 0.0000000000 0.8000000000|Xact|-172.51|Xload|9|Zload|10|S1speed|1864|S1load|14
2019-10-30T20:44:02.539Z|path_feedrate|466|path_position|17.8260000000 0.0000000000 0.8000000000|Xact|-178.977|Xload|13|Zload|9|S1speed|1866|S1load|11
2019-10-30T20:44:02.947Z|path_feedrate|467|path_position|11.3590000000 0.0000000000 0.8000000000|Xact|-185.444|Xload|10|Zload|11|S1speed|1867|S1load|9|S2load|1
2019-10-30T20:44:03.351Z|path_position|4.8900000000 0.0000000000 0.8000000000|Xact|-191.913|Xload|7|S1speed|1868|S1load|6|S2load|0
2019-10-30T20:44:03.783Z|path_position|-1.5790000000 0.0000000000 0.8000000000|Xact|-198.382|Xload|14|Zload|10|S1speed|1867|S1load|4
2019-10-30T20:44:04.247Z|line|90|block|N90Z0|path_feedrate|1929|path_position|55.0000000000 0.0000000000 0.0000000000|Xact|-141.803|Xload|44|Zact|-334.497|Zload|20|S1speed|1868
2019-10-30T20:44:04.656Z|line|210|block|N210G28U0W0M5M9|path_feedrate|14142|path_position|105.6670000000 0.0000000000 26.3330000000|Xact|-91.136|Xload|68|Zact|-308.164|Zload|36|S2load|1
2019-10-30T20:44:05.052Z|path_feedrate|10000|path_position|196.8030000000 0.0000000000 95.6670000000|Xact|0|Xload|18|Zact|-238.83|Zload|16|S1speed|1865|S2load|0
2019-10-30T20:44:05.452Z|path_position|196.8030000000 0.0000000000 159.6670000000|Xload|42|Zact|-174.83|Zload|13|S2load|1
2019-10-30T20:44:05.856Z|path_position|196.8030000000 0.0000000000 229.0000000000|Xload|40|Zact|-105.497|Zload|16|S1speed|1866|S2load|0
2019-10-30T20:44:06.260Z|path_position|196.8030000000 0.0000000000 298.3330000000|Zact|-36.164|Zload|12|S1speed|1864
2019-10-30T20:44:06.692Z|path_feedrate|0|path_position|196.8030000000 0.0000000000 334.4970000000|Xload|39|Zact|0|Zload|7|S1speed|1865|S1load|3
2019-10-30T20:44:07.089Z|tool_id|100|line|0|block|O0778(PEGA AGO SAE1045)|execution|STOPPED|f_command|0|Zload|9|S1speed|801|S1load|87
2019-10-30T20:44:07.540Z|message||ABRIR PORTA DO OPERADOR

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM