データドリブンページを使用してテーブルを作成するPythonスクリプト


11

特定のデータドリブンページ内にある機能のテーブル(dbfに基づく)を表示するために、Pythonスクリプトを変換しようとしています。これまでのところ、特定のテーブルへのマップを正常に更新できるスクリプトがありますが、テーブルは更新されません。

ユーザーがArcToolboxからスクリプトを実行するときに3つの特定のフィールドで更新する必要がある3つのテキストボックスとして設定しています。

テーブルが更新されない理由に関する提案はありますか?

import arcpy, sys, os

#Reference current MXD
mxd = arcpy.mapping.MapDocument("current")

#Get input parameter
Name = arcpy.GetParameterAsText(0)

#Reference  data frames
mapatlasDF = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]
locatorDF = arcpy.mapping.ListDataFrames(mxd, "Locator Map")[0]

#Reference appropriate layers
atlasLyr = arcpy.mapping.ListLayers(mxd, "PinalCreekMapAtlas_HalfMile", mapatlasDF)[0]
locatorLyr = arcpy.mapping.ListLayers(mxd, "Locator Map", locatorDF)[0]
atlasoutlineLyr = arcpy.mapping.ListLayers(mxd, "Map Atlas Outline", locatorDF)[0]

#Reference layout elements by calling ListLayoutElements 
for elm in arcpy.mapping.ListLayoutElements(mxd):
  if elm.name =="Table1Column1": tab1Col1Txt = elm
  if elm.name =="Table1Column2": tab1Col2Txt = elm
  if elm.name =="Table1Column3": tab1Col3Txt = elm

#Reference the Data Driven Page object
ddp = mxd.dataDrivenPages

#Set the current page to be the one selected in the script tool
arcpy.AddMessage(Name)

pageID = mxd.dataDrivenPages.getPageIDFromName(str(Name))
mxd.dataDrivenPages.currentPageID = pageID

#Set the appropriate definition queries
atlasLyr.definitionQuery = "Name = '" + Name +  "'"
locatorLyr.definitionQuery = "Name = '" + Name +  "'"
atlasoutlineLyr.definitionQuery = "Name <> '" + Name +  "'"

#Update Sheet Index data frame
arcpy.SelectLayerByAttribute_management(locatorLyr, "NEW_SELECTION", "\"Name\" = '" + Name + "'")
locatorDF.panToExtent(locatorLyr.getSelectedExtent())

#Reference Affected Parcels table and select appropriate records
parcelTable = arcpy.mapping.ListTableViews(mxd, "AffectedParcels")[0]

#Build query and create search cursor to loop through rows
parcelFieldValue = "Page " + Name
queryExp = "\"MapPage\" = '" + parcelFieldValue + "'"  #e.g., "MapPage" = 'Page 01'
parcelRows = arcpy.SearchCursor(parcelTable.dataSource, queryExp)

#Clear all table text values
tab1Col1Txt.text = " "; tab1Col2Txt.text = " "; tab1Col3Txt.text = " "

#iteate through each row, update appropiate text
count = 0
for row in parcelRows:
  if count < 30: #Table1 - static position
    tab1Col1Txt.text = tab1Col1Txt.text + row.getValue("OwnerName") +"\n"
    tab1Col2Txt.text = tab1Col2Txt.text + row.getValue("APN") + "\n"
    tab1Col3Txt.text = tab1Col3Txt.text + row.getValue("LengthTrail") + "\n"
  if count ==30:  
    arcpy.AddMessage("Table Overflow") #The code could be reworked to show the last 90 records
  count = count + 1

arcpy.RefreshActiveView()
arcpy.AddMessage("PROCESS COMPLETED")

まず、スクリプトをより単純な例に切り詰めることから始めます。オブジェクトListLayoutElementsは型によって返されTextElementますか?他のコードなしで、スクリプト内の単一のテキスト値を更新できますか?
scw

scwが言ったように、要素は実際に返されますか?if文にそれぞれarcpy.AddMessage( "Found Table1Column1")を追加し、次にif count <30領域にarcpy.AddMessage(tab1Col1Txt.text + tab1Col2Txt.text + tab1Col3Txt.text)を追加します。これにより、問題が発生している場所がわかりやすくなります。
-eseglem

コードから、tab1Col1Txt、tab1Col2Txt、およびtab1Col3Txtオブジェクトがどこに定義されているかは明確ではありません。row.getValue部分によって返されるものを確認するための最初の試み
マテイ

回答:


2

おそらく、これらの例が役立つでしょう:

動的テーブルとグラフ10.1_v1を使用したDDP

このサンプルでは、​​arcpy.mapping APIを使用してデータドリブンページ(DDP)の機能を拡張し、マップシリーズを真に動的なテーブルとグラフを作成する方法を示します。

ダイナミックグラフィックテーブルを含むarcpy.mappingマップブック

このプロジェクトは、データドリブンページとarcpy.mappingを組み込んで、動的なグラフィックテーブルを含むマップシリーズを構築します。


1
回答でより多くのコンテンツを提供できますか?リンクは時間とともに変化する可能性があるため、リンクのみの回答は推奨されません。
アートワーク21 14年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.