Cocos Creator 설치
cocos 사이트로 이동, 프로그램을 다운 받습니다. URL : https://www.cocos.com/en/creator install download 설치 파일 정보 -- 다운로드 파일 압축 해제, 설치 파일 버전 및 크기는 아래와 같습니다. CocosCreator_v2.3.1_setup.exe -- 버전 : 2.3.1 -- 파일 크기 : 626MB 현 시점 낮은 버전으로 다운 받았습니다. 1)...
import os
def search(dirname):
try:
filenames = os.listdir(dirname)
for filename in filenames:
full_filename = os.path.join(dirname, filename)
if os.path.isdir(full_filename):
search(full_filename)
else:
if filename == '{searchfileName}.shp':
# print(full_filename)
if os.path.isfile(full_filename):
print(full_filename)
if os.path.isfile('merged.shp'):
print("merge shape")
cmd = 'ogr2ogr -f "ESRI Shapefile" -append -update -lco ENCODING=UTF-8 merged.shp '
cmd += full_filename
#cmdfull = os.path.join(cmd, full_filename)
print(cmd)
os.system(cmd)
else:
print("create file")
cmd = 'ogr2ogr -f "ESRI Shapefile" -lco ENCODING=UTF-8 {outfileName}.shp '
cmd += full_filename
cmd += ' '
#cmdfull = os.path.join(cmd, full_filename)
print(cmd)
os.system(cmd)
except PermissionError:
pass
search("..\\")
cocos 사이트로 이동, 프로그램을 다운 받습니다. URL : https://www.cocos.com/en/creator install download 설치 파일 정보 -- 다운로드 파일 압축 해제, 설치 파일 버전 및 크기는 아래와 같습니다. CocosCreator_v2.3.1_setup.exe -- 버전 : 2.3.1 -- 파일 크기 : 626MB 현 시점 낮은 버전으로 다운 받았습니다. 1)...
1. Header (제목) # 2. Empasis(강조) --- & === 3. List (목록) 1.2. -.-. 4. Link(링크) [URL Explanation Text ](LinkURL "링크 설명(title)을 ...
step 1. License Key 발급 신청 설치 프로그램 다운로드 한다. Wowza 사이트 접속하여 trial license key 발급 신청을 한다. URL : https://www.wowza.com/pricing/trial 신청이후 등록한 메일로 라이선스 키가 발급된다. Step 2...
문서 작성을 할때 복잡한 수식을 표현하는 방법은 다양합니다. Latex라는 문서 조판에 사용되는 프로그램 언어가 그 중에 하나 입니다. latex 언어를 채용해서 수식을 표현하는 프로그램도 많아지고 있는...