gpt4 book ai didi

python - 修改G代码

转载 作者:行者123 更新时间:2023-12-01 02:30:48 28 4
gpt4 key购买 nike

我正在尝试打开一个 .gcode 文件,读取它,并根据它读取的内容将特定数字添加到附加到任何包含“Z”的字符串的数字

以下是 gcode 示例:

G1 Z0.3
G1 F6000 E0
G1 F900 X-14.561 Y14.562 E2.27024
G1 X-14.561 Y-14.561 E4.54048
G1 X14.562 Y-14.561 E6.81071
G1 Z0.8
G0 F12000 X-9.687 Y9.688 Z1.05
G1 Z0.3
G1 F6000 E0
G1 F900 X-14.561 Y14.562 E2.27024
G1 X-14.561 Y-14.561 E4.54048 Z1.50

例如,它需要读取每一行,每次遇到包含“Z”的字符串时,获取与其关联的数字并添加 1.5,然后将其替换为新值。

到目前为止,这就是我所拥有的:

part_path = input(' Enter Directory for Part Number: ')  # Asks user to input directory of part number folder
part_path = part_path.replace(('\\'), '/') # Converts \ to / in path to avoid escape characters
file_name = input('Enter the file name: ')
file_path = part_path + '/' + file_name + '.gcode'

gc = open(file_path)
gc_content = gc.readlines()
for l in gc_content:
if 'Z' in l:
print(l)

我只是将打印内容作为占位符来查看发生了什么。我很困惑如何只获取每行的 ZXXX 部分,将其从字母中拆分(因此将 'Z0.3' 拆分为 ['Z', '0.3']),以便我可以将 '0.3' 转换为 float ,然后向其添加特定数字,然后用新值替换旧的 ZXXX 字符串。

任何帮助将不胜感激,谢谢!

最佳答案

我认为这会起作用:

from string import *
part_path = input(' Enter Directory for Part Number: ') # Asks user to input directory of part number folder
part_path = part_path.replace(('\\'), '/') # Converts \ to / in path to avoid escape characters
file_name = input('Enter the file name: ')
file_path = part_path + '/' + file_name + '.gcode'

gc = open(file_path)
gc_content = gc.readlines()
for l in gc_content:
if 'Z' in l:
l.rstrip()
dex = l.index('Z')
num = float(l[dex+1:])
newnum = num + 1.0
replace(l, str(num), str(newnum))

现在,您可以使用 float num 执行任何操作。这只是找到 Z 的位置,并获取该行的其余部分,该部分始终是 float 。它还会去除右侧的所有空格(否则我们可能会得到带有空格的 0.3 而不是“0.3”来转换为 float 。现在,我们将 1.0 添加到 num,并将该值分配给 newnum。使用 string.replace() 方法,我们用 newnum 替换 num。

关于python - 修改G代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46841544/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com