bscheibel 5 years ago
parent
commit
06274f01ea
6 changed files with 19281 additions and 15 deletions
  1. 1 1
      .idea/dxf_reader.iml
  2. 1 0
      .idea/encodings.xml
  3. 1 1
      .idea/misc.xml
  4. 19262 0
      Stahl_Adapterplatte.DXF
  5. 15 12
      read_data.py
  6. 1 1
      read_text_lines.py

+ 1 - 1
.idea/dxf_reader.iml

@@ -4,7 +4,7 @@
     <content url="file://$MODULE_DIR$">
       <excludeFolder url="file://$MODULE_DIR$/venv" />
     </content>
-    <orderEntry type="jdk" jdkName="Python 3.7" jdkType="Python SDK" />
+    <orderEntry type="jdk" jdkName="Python 3.7 (dxf_reader)" jdkType="Python SDK" />
     <orderEntry type="sourceFolder" forTests="false" />
   </component>
   <component name="TestRunnerService">

+ 1 - 0
.idea/encodings.xml

@@ -2,5 +2,6 @@
 <project version="4">
   <component name="Encoding">
     <file url="file://$PROJECT_DIR$/GV_12.DXF" charset="US-ASCII" />
+    <file url="file://$PROJECT_DIR$/Stahl_Adapterplatte.DXF" charset="windows-1252" />
   </component>
 </project>

+ 1 - 1
.idea/misc.xml

@@ -1,4 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
-  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7" project-jdk-type="Python SDK" />
+  <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.7 (dxf_reader)" project-jdk-type="Python SDK" />
 </project>

File diff suppressed because it is too large
+ 19262 - 0
Stahl_Adapterplatte.DXF


+ 15 - 12
read_data.py

@@ -1,7 +1,3 @@
-#if(+ oder - merge with next line)
-
-#merge all values into one until 4 values or until no integer/string with number
-
 import csv
 import re
 
@@ -9,23 +5,30 @@ with open('merged.csv') as csv_file:
     csv_reader = csv.reader(csv_file, delimiter=',')
     line_count = 0
     durchmesser = False
+    vorzeichen = "nix"
     text = True
     for row in csv_reader:
+        #row[1] = row[1].replace(",",".")
         if durchmesser:
             print("Durchmesser: " + row[1])
         durchmesser = False
+        #continue
         if row[1] == "%%c":
             durchmesser = True
-        num_format = re.compile("^[\-]?[1-9][0-9]*\.?[0-9]+$")
-        isnumber = re.match(num_format, row[1])
+        if row[1] == "-" or row[1] == "+":
+            vorzeichen = row[1]
+            #print(vorzeichen)
+        isnumber = re.findall(r"\d*\,\d+", row[1])
         if isnumber:
-            print(row[1])
-        try:
-            if row[1].isFloat():
-                print(row[1])
-        except:
-            pass
+            if vorzeichen != "nix":
+                print(vorzeichen + isnumber[0])
+            else:
+                print(isnumber[0])
+            vorzeichen = "nix"
+
         if row[1][0] == "?":
             print("+/- " + row[1][1:])
+
         line_count += 1
     print(f'Processed {line_count} lines.')
+

+ 1 - 1
read_text_lines.py

@@ -30,7 +30,7 @@ def printsection(b):
 
 
 buffer = []
-file = open("GV_12.DXF", "r")
+file = open("Stahl_Adapterplatte.DXF", "r")
 for line in file:
     line = line.strip()
     #print(line)