マインクラフト 染料のレシピ
flowchart LR
white_dye[白色の染料]
bone_meal[骨粉] --> white_dye
lily_of_the_valley[スズラン] --> white_dye
light_gray_dye[薄灰色の染料]
black_dye --> bw_light_gray_dye
-- erq <matsudo-population-density.erq > matsudo-population-density.svg | |
topojson_feature(readfile('r2ka12207.topojson'), 'town') | |
{*, unpack properties {KEY_CODE, AREA, JINKO}} | |
{*, population_density: JINKO / AREA * 1000000} | |
output vega lite svg with | |
projection mercator, | |
mark geoshape, | |
encoding { | |
color: population_density q {title: "人口密度[人/km²]"} | |
}, |
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"width": 500, | |
"height": 300, | |
"data": { | |
"url": "https://geoshape.ex.nii.ac.jp/ka/topojson/2020/12/r2ka12207.topojson", | |
"format": { | |
"type": "topojson", | |
"feature": "town" | |
} |
-- erq <jazh-consonants.erq >jazh-consonants.svg | |
attach '/Users/mandel59/ws/mojidata/packages/mojidata/dist/moji.db' as mojidata;; | |
with ja as (k: unihan_kJapaneseOn join o: string_split(k.value, ' ') {UCS, ja_c: ifnull(regexp_substr(lower(o.value), '^(ch|ts|sh|[hfbmtdnrszjkgwy])'), '∅') }) | |
with zh as (k: unihan_kMandarin join p: string_split(k.value, ' ') {UCS, zh_c: ifnull(regexp_substr(p.value, '^(zh|ch|sh|[bpmfdtnlzcsrjqxgkhwy])'), '∅') }) | |
joyo { UCS: 漢字 } join ja using (UCS) join zh using (UCS) { ja_c, zh_c => count: count(distinct UCS) } | |
output vega lite svg with | |
encoding { | |
x: ja_c n sort['h','f','b','m','t','ch','ts','d','n','r','s','sh','z','j','k','g','w','y','∅'], | |
y: zh_c n sort['b','p','m','f','d','t','n','l','zh','ch','sh','z','c','s','j','q','x','r','g','k','h','w','y','∅'] | |
}, |
No. | 文字情報基盤漢字 | 変更前UCS | 変更前漢字 | 変更先UCS | 変更先漢字 | |
---|---|---|---|---|---|---|
1 | MJ006392 | U+4E54 | 乔 | U+215E4 | 𡗤 | |
2 | MJ011878 | U+617A | 慺 | U+2284C | 𢡌 | |
3 | MJ016697 | U+720B | 爋 | U+24455 | 𤑕 | |
4 | MJ026224 | U+9094 | 邔 | U+2866C | 𨙬 | |
5 | MJ031376 | U+20778 | 𠝸 | U+2D136 | 𭄶 | |
6 | MJ031861 | U+20A44 | 𠩄 | U+2B826 | 𫠦 | |
7 | MJ034361 | U+21C79 | 𡱹 | U+21C8F | 𡲏 | |
8 | MJ034394 | U+21CAA | 𡲪 | U+21978 | 𡥸 | |
9 | MJ036619 | U+229FA | 𢧺 | U+229E3 | 𢧣 |
㐄 | B,H,M,S,U,V,X,Z,UCS2003 | |
---|---|---|
㐮 | K | |
㑒 | G,K,M,T,U | |
㒹 | Z | |
㕓 | G,S,T,Z | |
㕯 | Z | |
㚇 | B,H,J,U,V,X | |
㞷 | B | |
㠯 | S,U,X,Z | |
㡀 | S,X,Z |
From 5744eee9f8eae1f499d024631eedddea114d64e6 Mon Sep 17 00:00:00 2001 | |
From: Ryusei Yamaguchi <mandel59@gmail.com> | |
Date: Sun, 7 Aug 2022 04:06:49 +0900 | |
Subject: [PATCH] Fix 7 entries | |
U+5448, U+59C9, U+8821, U+947D, U+9855, U+20957, U+2BAA2 | |
--- | |
IDS.TXT | 14 +++++++------- | |
1 file changed, 7 insertions(+), 7 deletions(-) |
-- 常用漢字と規範字の対応表 | |
with joyo_itaiji (常用漢字, 異体字) as (joyo_kangxi {漢字, 康熙字典体}; joyo {漢字, 漢字} distinct) | |
with joyo_zvar (常用漢字, 異体字) as ( | |
j: joyo_itaiji | |
join u: unihan_variant on u.property = 'kZVariant' and u.UCS = j.異体字 | |
{常用漢字, 異体字}; | |
j: joyo_itaiji | |
join m: mjsm_JIS包摂規準UCS統合規則 on j.異体字 = m.縮退UCS | |
join mji on mji.MJ文字図形名 = m.MJ文字図形名 | |
[実装したUCS is not null] |
-- SQLite | |
WITH | |
joyo_itaiji (常用漢字, 異体字) AS ( | |
SELECT DISTINCT joyo_kangxi.漢字 AS 常用漢字, joyo_kangxi.康熙字典体 AS 異体字 | |
FROM joyo_kangxi | |
UNION | |
SELECT DISTINCT joyo.漢字, joyo.漢字 | |
FROM joyo | |
), | |
joyo_zvar (常用漢字, 異体字) AS ( |
flowchart LR
white_dye[白色の染料]
bone_meal[骨粉] --> white_dye
lily_of_the_valley[スズラン] --> white_dye
light_gray_dye[薄灰色の染料]
black_dye --> bw_light_gray_dye