Effacer les filtres
Effacer les filtres

How can I count the numbers of NaNs in some determined coordinates when you use the comand 'coastlines'?

1 vue (au cours des 30 derniers jours)
This program gives me the numer of NaNs in all the world but not in one particular country.
worldmap('Spain')
load coastlines
sum(sum(isnan(coastlat)))

Réponses (1)

Chidvi Modala
Chidvi Modala le 30 Déc 2020
You may use shaperead function to get latitudes and longitudes of a particular country. You can refer to the following example to count the numbers of NaNs in a particular country coordinates
Val = shaperead('landareas', 'UseGeoCoords', true,...
'Selector',{@(name) strcmp(name,'Africa and Eurasia'), 'Name'});
sum(isnan(Val.Lat));

Tags

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by