Question

My Shutdown Python Script is calling arcpy to run the Arc Extend and Trim tools on my dataset, is there a way to have inspector display the results?

  • 18 August 2017
  • 2 replies
  • 4 views

Badge


2 replies

Userlevel 2
Badge +17

Hi @apadilla, I think that a quick way is to create and run another workspace which contains:

  1. WorkspaceRunner (Wait for Job to Copmlete: Yes): Run your workspace.
  2. FeatureReader: Read the resulting dataset created by your workspace.
  3. Inspector: Review the dataset with FME Data Inspector.
Userlevel 4

An alternative to Takashi's suggestion could be

Data -> FeatureWriter -> PythonCaller with arcpy -> FeatureReader -> Inspector

In other words, moving the arcpy code from the shutdown script into the PythonCaller. This way you won't need more than one workspace.

Reply