Selecting parts of gridded data- I Need Help. I want to know it's possible or not?

3 次查看(过去 30 天)
Hey all hope you have a good time,
I have a (1 x 1171) cell which includes tables. Each table has a specific latitude and longitude (columns). All 1171 tables latetudes and longitudes together represent gridded precipitation data over the whole country in the 0.5 x 0.5 degree (longitude x latitude).
I also have some points data (in the form of a table with columns of longitude, latitude, and precipitation).
I want to delete each grid in my cell that doesn't have at least one of my points inside it.
For example: If red dots are my points (in the table that I mentioned above), I want to keep each grid that has at least one red dot inside it (I would like to keep grid if more than one point is in it). So from 130 grids in this figure below I want to keep only nine grids that have points. So if my cell was 130x336 now it is just 9x336.
I attach my cell and my points.
Thank you so much for your valuable advice.
  3 个评论
darova
darova 2020-2-16
编辑:darova 2020-2-16
It would be great if you will make a simple drawing of the result you want to see
BN
BN 2020-2-16
Dear darova,
First of all, I want to appreciate you for reading my question. I upload grid again in this comment with the same format as points.
It would be great if you will make a simple drawing of the result you want to see
I have gridded_datamat.mat when I plot them I see a 0.5 x 0.5 degree (lon x lat) pixels (grids) on map. On the other hand, I have points.mat (scatter) that when I add them on this grids, some of the grids has owned one, two, or more point inside and some grids haven't any point inside itself. I want to delete these grids that don't match with any of the points from gridded_datamat.mat.
The output is something like the gridded_datamat.mat that I uploaded here but with lower row than 1171 because undoubtedly many of grids haven't a chance to own at least one the points (I want to save each grid that at least has one point or higher).
I truly appreciate you. Please don't hesitate to contact me if something I've written isn't clear.
Best Regards

请先登录,再进行评论。

采纳的回答

darova
darova 2020-2-17
Here is my achievement
clc,clear
load points.mat
load grid_datamat.mat
p = table2array(Points);
g = table2array(grid_data(:,2:3));
x = floor( (p(:,2)-24.25)/0.5 )*0.5+24.25;
y = floor( (p(:,3)-44.25)/0.5 )*0.5+44.25;
plot(p(:,2),p(:,3),'.r')
hold on
plot([x x+0.5 x+0.5 x x]',[y y y+0.5 y+0.5 y]','.-b','markersize',15)
plot(g(:,2),g(:,1),'.g')
hold off
  7 个评论
darova
darova 2020-3-18
I believe it happens because of new mesh (0.025)
>> g(1,:)
ans =
44.0250 24.0250
Little improvement
x0 = g(1,2) + 0.25;
y0 = g(1,1) + 0.25;
x = floor( (p(:,2)-x0)/0.5 )*0.5+x0;
y = floor( (p(:,3)-y0)/0.5 )*0.5+y0;
looks equal

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by