how can we plot data for particular lat, long from net. file in matlab

1 view (last 30 days)
using below program i am getting plot for all lat, long.
clwcData = ncread('ciwc_july.nc','clwc');
Lon = ncread('ciwc_july.nc','longitude');
Lat = ncread('ciwc_july.nc','latitude');
Level = double(ncread('ciwc_july.nc','level'));
time = double(ncread('ciwc_july.nc','time'));
%%
% m = mean(mean(mean(clwcData(:,:,:,:),1),2),4);
% p= squeeze(m);
% plot(p,Level);
how can i plot for particular lat, long
  1 Comment
Walter Roberson
Walter Roberson on 18 Dec 2019
masklon = Lon >= minimum_lon_to_plot & Lon <= maximum_lon_to_plot;
masklat = Lat >= minimum_lat_to_plot & Lat <= maximum_lat_to_plot;
ClwcData(mask_lon, mask_lat, :, :) %guessing about the order of variables

Sign in to comment.

Answers (0)

Categories

Find more on Line Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!