2
ArcGIS Python Toolbox에서 가져온 모듈을 새로 고치겠습니까?
ArcMap에서 python toolbox (.pyt)를 사용할 때, 일반적으로 .pyt 파일 자체가 단순히 입력 인수를 수집하고 도구 자체를 정의하는 래퍼 인 패턴을 따릅니다. 지원 코드는 별도의 단위 테스트 가능 모듈로 유지됩니다. 예: import supporting_module class MyTool(object): ... def execute(self, parameters, messages): """The source code of the tool.""" some_input = parameters[0].valueAsText some_output = …