2018년 10월 16일 화요일

[QGIS3] 모든 레이어 조회

for _temp in QgsProject.instance().layerTreeRoot().children():
    _layer = _temp.layer()

[python] subprocess

proc.py import asyncio from argparse import ArgumentParser from asyncio import sleep async def process_function(user, file_path):     if use...