Borrar filtros
Borrar filtros

Plot data from matrix longitude, latitude and variable

5 visualizaciones (últimos 30 días)
Pepe Grillo
Pepe Grillo el 11 de Mayo de 2021
Comentada: Pepe Grillo el 12 de Mayo de 2021
Hi!
I have the matrix, data_1 (attached), and I want to make a map from South Atlantic with coast lines. The matrix is longitude, latitude and the variable as columns. Each lat and lon represent positions where is data, but I would like to have an interpolation.
Thanks!

Respuesta aceptada

Chunru
Chunru el 12 de Mayo de 2021
x = linspace(min(data(:,1)), max(data(:,1)), 200);
y = linspace(min(data(:,2)), max(data(:,2)), 200);
[xg, yg] = meshgrid(x, y);
zg = griddata(data(:,1), data(:,2), data(:, 3), xg, yg);
p = pcolor(xg, yg, zg);
p.EdgeColor='none';

Más respuestas (0)

Categorías

Más información sobre Geodesy and Mapping en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by