Takuya Miyashita
This site
Web
Start:
*GeographicAxesでpatch的なポリゴンの色塗り [#w23bc218]
**概要 [#gbc296ca]
[[geoaxes>https://jp.mathworks.com/help/matlab/ref/geoaxe...
**方法 [#ebf3f221]
#codeprettify(lang-matlab){{
% lon_poly と lat_poly はどちらも Nx1 配列だとして
fig = figure;
gax = geoaxes;
shape = geopolyshape([lat_poly; lat_poly(1)], [lon_poly; ...
pg = geoplot(shape);
pg.FaceColor = 'r'; % ここで塗りたい色を入力
pg.FaceAlpha = 0.8;
pg.EdgeColor = 'none';
}}
緯度経度それぞれに配列の最初の座標(1)を足しているのは,囲...
End:
*GeographicAxesでpatch的なポリゴンの色塗り [#w23bc218]
**概要 [#gbc296ca]
[[geoaxes>https://jp.mathworks.com/help/matlab/ref/geoaxe...
**方法 [#ebf3f221]
#codeprettify(lang-matlab){{
% lon_poly と lat_poly はどちらも Nx1 配列だとして
fig = figure;
gax = geoaxes;
shape = geopolyshape([lat_poly; lat_poly(1)], [lon_poly; ...
pg = geoplot(shape);
pg.FaceColor = 'r'; % ここで塗りたい色を入力
pg.FaceAlpha = 0.8;
pg.EdgeColor = 'none';
}}
緯度経度それぞれに配列の最初の座標(1)を足しているのは,囲...
Page:
Edit with a page name which already exists