Skip to content

Instantly share code, notes, and snippets.

View keichan34's full-sized avatar
👋
Hello!

Keitaroh Kobayashi keichan34

👋
Hello!
View GitHub Profile
@keichan34
keichan34 / README.md
Created January 31, 2023 02:22
地図タイルとそのタイルの子孫を

tile_children

あるタイルの子孫の一覧を取得する

USAGE

chmod +x tile_children.py
./tile_children.py [parent tile] [maxzoom] [suffix]
@keichan34
keichan34 / README.md
Last active February 10, 2023 07:47
法務省データもろもろ
cp -r moj_data/ ./
mkdir all_zips
find . -name '*.zip' -maxdepth 1 | xargs -P 16 -I '{}' unzip '{}' -d ./all_zips

ここで all_zips に展開されたzipがある 次は任意座標と公共座標系を分ける

@keichan34
keichan34 / build.sh
Last active March 13, 2023 06:46
Shapefileが入ったディレクトリを一括で一つのmbtilesにアーカイブする
#!/bin/bash -e
input=${1}
outdir=$(mktemp -d)
echo "Output: $outdir"
for shp in $(find "$input" -name '*.shp'); do
name=$(basename "$shp" .shp)
out_geojson="${outdir}/${name}.ndgeojson"
@keichan34
keichan34 / index.ts
Created January 26, 2024 01:11
政令指定都市の自治体コード
// 政令指定都市 (元データでは行政区になっているが、私達は区域全体でまとめたい(東京23特別区以外))
// この配列は、行例指定都市の公共団体コードの頭3または4桁を含む
const DESIGNATED_CITIES = [
/^011/, // 北海道札幌市
/^041/, // 宮城県仙台市
/^111/, // 埼玉県さいたま市
/^121/, // 千葉県千葉市
/^141(?!3|5)/, // 神奈川県横浜市
/^1413/, // 神奈川県川崎市
/^1415/, // 神奈川県相模原市