From f1da68de21defb3068f548e5ae193c4a174961e0 Mon Sep 17 00:00:00 2001 From: zwnk Date: Thu, 23 May 2019 00:05:07 +0200 Subject: [PATCH] Update 'shp_2_txt.py' --- shp_2_txt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/shp_2_txt.py b/shp_2_txt.py index 55617dd..351a303 100644 --- a/shp_2_txt.py +++ b/shp_2_txt.py @@ -20,7 +20,6 @@ from dbfread import DBF dbf_file = DBF("f:\\testing\\shp_2_txt\\MA.dbf", load=True, encoding='utf8') txt_file = open("f:\\testing\\shp_2_txt\\MA.txt", 'w') - for idx, record in enumerate(dbf_file): txt_file.write(str(record['DEC_LON'] + record['DEC_LAT'] + record['ELLIP_HT'] + record['ORTHO_HT']) + '\n')