Clear Filters
Clear Filters

Fare un'interpolazione con geobubble

1 view (last 30 days)
Alessandro Mura
Alessandro Mura on 9 Dec 2021
Commented: Image Analyst on 11 Dec 2021
Ciao, partendo da questo script vorrei fare un'interpolazione di punti(pallini) e in particolare vorrei cambiare colore solamente ad uno Stato/regione, come potrei fare?
tsunamis = readtable('tsunamis.xlsx');
tsunamis.Cause = categorical(tsunamis.Cause);
figure
gb = geobubble(tsunamis,'Latitude','Longitude', ...
'SizeVariable','MaxHeight','ColorVariable','Cause', ...
'Basemap','colorterrain')
geolimits([10 65],[-180 -80])
title 'Tsunamis in North America';
gb.SizeLegendTitle = 'Maximum Height';

Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!