Fare un'interpolazione con geobubble
Mostra commenti meno recenti
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';
1 Commento
Image Analyst
il 11 Dic 2021
You forgot to attach 'tsunamis.xlsx'
Risposte (0)
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!