How to create a land/sea mask based on an XYZ bathymetry database?

8 vues (au cours des 30 derniers jours)
Leon
Leon le 30 Août 2021
Commenté : Leon le 30 Août 2021
I have a gridded global bathymetric database with X, Y, and E. X is longitude, Y is latitude, and E is the elevation. E can be positive numbers (elevation of land, mountains, etc.), or negative numbers (depth of the ocean). They all share the same size of 8640 x 4320.
How do I use this database to create a land/sea mask, i.e., a value of 1 (land) or 0 (sea) for each point on a global grid like the below:
[X, Y] = ndgrid([-180:0.125:180], [-90:0.125:90]);
Any ideas would be greatly appreciated!
Many thanks.

Réponse acceptée

Chunru
Chunru le 30 Août 2021
% Assume the elevation data is E
Mask = E>0;

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by