#編集の開始 workspace = r"C:\Users\Administrator\AppData\Roaming\ESRI\Desktop10.2\ArcCatalog\SQLEXPRESS_GeoDatabase.sde" #*.sdeファイルへのパス edit = arcpy.da.Editor(workspace) edit.startEditing(False,False) #バージョン非対応の場合は第2引数を False に設定 #~属性値の更新~ # Insert a row into the table. with arcpy.da.InsertCursor(fc, ('SHAPE@', 'Name')) as icur: icur.insertRow([(7642471.100, 686465.725), 'New School']) #編集の終了 edit.stopEditing(True)
編集の開始と終了
2016/9/1 (木)