I'm basically using a set of 1) reader, 2) transformer ('PointCloudCombiner'), 3) writer for multiple input files in different folders so that I would like to automate this process by using a python script.
What I'm expecting to see is something like using arcpy in ArcGIS as shown below.
----------------------------
import arcpy
inputfile_name='111.shp'
outputfile_name='222.shp'
arcpy.Project(inputfile_name, outputfile_name, parameters...)
----------------------------
I've spent several hours for finding examples but I couldn't find one...
If anyone knows how to implement this, would you please give me directions? (or related articles would be very helpful too!)