レポートのエクスポート(Export Reports)ツール (Business Analyst)
サマリ
レポート ファイルを適切な形式にエクスポートします。
使用法
-
このツールは主に、Business Analyst の商圏のレポートをエクスポートするために使用します。
-
[クイック レポート(Quick Reports)] ツールの [出力レポートのリスト] パラメータが、[レポート ファイルを入力] パラメータへの入力として必要です。
構文
ExportReports_ba (ReportFile, ExportReportsFormatOptions, ExportFile)
パラメータ | 説明 | データ タイプ |
ReportFile |
エクスポートするレポート ファイルを選択します。 | File |
ExportReportsFormatOptions |
レポートをエクスポートするときに利用できる形式。
| String |
ExportFile |
エクスポートしたレポートが格納される出力ディレクトリ。 | Folder |
コードのサンプル
ExportReports(レポートのエクスポート)ツールの例(スタンドアロン スクリプト)
# Name: ExportReports.py
# Description: Exports a PDF format from a general report in Business Analyst.
# Author: Esri
# Import system modules
import arcview
import arcpy
arcpy.ImportToolbox("C:\Program Files (x86)\ArcGIS\Desktop10.2\Business Analyst\ArcToolbox\Toolboxes\Business Analyst Tools.tbx")
try:
# Acquire extension license
arcpy.CheckOutExtension("Business")
# Define input and output parameters for the Export Reports tool
InputReport = "C:/My Output Data\Projects/CA, San Francisco/Reports/General/Report.rpt"
ExportDir = "C:/My Output Data/Export.pdf"
# Export reports
arcpy.ExportReports_ba(InputReport, "Adobe Format (PDF)", ExportDir)
# Release extension license
arcpy.CheckInExtension("Business")
except:
print arcpy.GetMessages(2)
環境
このツールはジオプロセシング環境を使用していません
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014