Kwan-Gu / geospatial_analysis

공간정보분석 Ⅰ 번역 (2023.06.09. ~)
https://kwan-gu.github.io/geospatial_analysis/
GNU General Public License v3.0
0 stars 0 forks source link
gis jupyter-book python spatial-analysis study-group

공간정보분석 Ⅰ - Automating GIS Processes

 《Automating GIS Processes》를 한국어로 번역 및 자료를 현지화한 웹페이지 입니다.

파일 설명

_config.yml

_toc.yml

이미지 붙이는 마크다운

https://jupyterbook.org/en/stable/content/figures.html#figure-parameters

```{figure} ../images/C-3PO_droid.png
---
height: 150px
name: directive-fig
---
Here is my figure caption!

## 셀 출력 숨기기
https://jupyterbook.org/en/stable/interactive/hiding.html#hide-cell-outputs
```python
{
    "tags": [
        "hide-output"
    ]
}

댓글 기능 추가

```{raw} html
<script src="https://utteranc.es/client.js"
        repo="Kwan-Gu/geospatial_analysis"
        issue-term="pathname"
        theme="preferred-color-scheme"
        crossorigin="anonymous"
        async>
</script>

## 배포 과정
### 1. requirements.txt 업데이트
```commandline
pip freeze > automating_gis_processes/requirements.txt

2. 빌드

jb build --all .\automating_gis_processes\

3. 빌드 결과 확인

브라우저에 빌드 파일 주소 입력

4. 배포

ghp-import -n -p -f .\automating_gis_processes\_build\html\

커밋 메세지

Type 키워드 사용 시점
feat 새로운 기능 추가
fix 버그 수정
docs 문서 수정
style 코드 스타일 변경 (코드 포매팅, 세미콜론 누락 등)
기능 수정이 없는 경우
design 사용자 UI 디자인 변경 (CSS 등)
test 테스트 코드, 리팩토링 테스트 코드 추가
refactor 코드 리팩토링
build 빌드 파일 수정
ci CI 설정 파일 수정
perf 성능 개선
chore 빌드 업무 수정, 패키지 매니저 수정 (gitignore 수정 등)
rename 파일 혹은 폴더명을 수정만 한 경우
remove 파일을 삭제만 한 경우