Note: This is the guide for v 2.x.
For the v3, please follow this url: https://blog.csdn.net/sam_shan/article/details/80585240 Thanks @liy-cn for contributing.
Download: StarUML.io
Source: jorgeancal
| #!/bin/bash | |
| # $1: osm file path | |
| export PGPASSWORD=$DB_PASSWORD | |
| osm2pgsql \ | |
| -H $DB_HOST \ | |
| -P $DB_PORT \ | |
| -d $DB_NAME \ |
| #!/bin/bash | |
| BASE_URL="https://osmdata.openstreetmap.de/download/" | |
| POSTFIX=".zip" | |
| names=("simplified-water-polygons-split-3857" "water-polygons-split-3857" "antarctica-icesheet-polygons-3857" "antarctica-icesheet-outlines-3857") | |
| for (( i=0; i<${#names[@]}; i++)); do | |
| wget ${BASE_URL}${names[i]}${POSTFIX} | |
| unzip ${names[i]}${POSTFIX} |
| #!/bin/bash | |
| BASE_URL="http://download.geofabrik.de/" | |
| POSTFIX="-latest.osm.pbf" | |
| names=("africa" "antarctica" "asia" "australia-oceania" "central-america" "europe" "north-america" "south-america") | |
| # for (( i=0; i<${#names[@]}; i++)); do | |
| # wget --spider ${BASE_URL}${names[i]}${POSTFIX} | |
| # done |
Note: This is the guide for v 2.x.
For the v3, please follow this url: https://blog.csdn.net/sam_shan/article/details/80585240 Thanks @liy-cn for contributing.
Download: StarUML.io
Source: jorgeancal
| certifi==2020.4.5.1 | |
| click==7.1.2 | |
| efficientnet-pytorch==0.6.3 | |
| Flask==1.1.2 | |
| future==0.18.2 | |
| itsdangerous==1.1.0 | |
| Jinja2==2.11.2 | |
| MarkupSafe==1.1.1 | |
| mkl-fft==1.0.15 | |
| mkl-random==1.1.0 |
| name: pdf_api | |
| channels: | |
| - defaults | |
| dependencies: | |
| - _libgcc_mutex=0.1=main | |
| - blas=1.0=mkl | |
| - bzip2=1.0.8=h7b6447c_0 | |
| - ca-certificates=2020.1.1=0 | |
| - cairo=1.14.12=h8948797_3 | |
| - certifi=2020.4.5.1=py37_0 |
| #!/bin/sh | |
| tmux new-session -d 'htop' | |
| tmux split-window -h 'watch -n 1 -d nvidia-smi' | |
| tmux split-window -v 'watch -n 1 -d sensors' | |
| # tmux -2 attach-session -d | |
| tmux -2 attach-session -d |