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

5 Ansichten (letzte 30 Tage)
Leon
Leon am 30 Aug. 2021
Kommentiert: Leon am 30 Aug. 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.

Akzeptierte Antwort

Chunru
Chunru am 30 Aug. 2021
% Assume the elevation data is E
Mask = E>0;

Weitere Antworten (0)

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by