CentOS 7에서 레드마인 설치하기
CentOS 7에서 레드마인 설치하기 Prerequisites Domain name pointing to your server public IP. In this tutorial we will use Logged in as a user with sudo privileges. Installation Creating MySQL …
CentOS 7에서 레드마인 설치하기 Prerequisites Domain name pointing to your server public IP. In this tutorial we will use Logged in as a user with sudo privileges. Installation Creating MySQL …
오픈리파인에서 KML 읍면동 구분하기 TL_SCCO_EMD.json [ { "op": "core/column-split", "description": "Split column description by separator", "engineConfig": { "mode": "row-based", "facets": [] }, "columnName": "description", "guessCellType": true, "removeOriginalColumn": true, "mode": "separator", …
오픈리파인에서 KML 시도 구분하기 TL_SCCO_SID.json [ { "op": "core/column-split", "description": "Split column description by separator", "engineConfig": { "mode": "row-based", "facets": [] }, "columnName": "description", "guessCellType": true, "removeOriginalColumn": true, "mode": "separator", …
오픈리파인에서 KML 시군구 구분하기 TL_SCCO_SIG.json [ { "op": "core/column-split", "description": "Split column description by separator", "engineConfig": { "mode": "row-based", "facets": [] }, "columnName": "description", "guessCellType": true, "removeOriginalColumn": true, "mode": "separator", …
오픈리파인에서 단어분리하기 하이픈(-)을 기준으로 단어를 구분할경우 value.split("-")[0] // 첫번째 단어 value.split("-")[1] // 두번째 단어 value.split("-")[2] // 세번째 단어 Post Tags: #openrefine, #단어분리, #오픈리파인
오픈리파인에서 단어 치환하기 행정구역[시] 오타 수정 역슬러쉬\가 들어가있는 경우 더블역슬러쉬 \\ 를 해주어 ESCAPE 시킨다. 한셀에 약20-30개 이상의 replace 함수 이용시 버퍼링 오류가 발생하며, 수정이 되지않는다. 따라서 replace를 최대 20-30개 …
오픈리파인에서 특수문자 및 영문자 제거하기 특수문자 및 영문자 삭제 value.replace(/.*(\\d+|\\w+).*/,'') Post Tags: #openrefine, #오픈리파인
오픈리파인에서 단어추출하기 단어길이 value.slice(시작위치,끝위치) value.slice(0,2) 우편번호[6자리] 추출 value.partition(/(,)(\\d{3}-\\d{3})/)[1].split(",")[0] Post Tags: #openrefine, #단어추출, #오픈리파인
오픈리파인에서 나이계산하기 당해년도 기준 ((now().toString("yyyy")).toNumber()) – (value.split("-")[0]).toNumber() + 1 Post Tags: #openrefine, #나이계산, #오픈리파인
오픈리파인에서 파일 로딩시 메모리가 부족할경우 오픈리파인이 설치된 루트폴드에서 openrefine.l4j.ini 파일을 찾아 메모리를 늘려주면 된다. #Launch4j runtime config #initial memory heap size -Xms512M #max memory memory heap size -Xmx4096M #-XX:+UseLargePages #-Dsomevar="%SOMEVAR%" …