How to calculate the points of a line which lies inside polygons?
2 views (last 30 days)
Show older comments
Hi all,
I have GPS coordinates of an off-road vehicle and I have to check when the vehicle lies on a road or on a field. I have downloaded the shape file of my region, where there are the bounding box of each field. Below, you will find my code, that is very slow because in the shape file there are around 3e5 polygons. How could I speed up the code? In my opinion, the calculation could be speeded up, if I can avoud the inner for, but I do not know how can I do it.
for i=1:length(GPSData)
OnField{i}=zeros(size(GPSData(i).Longitude));
for iS=1:length(FieldUseSHP)
a=inpolygon(GPSData(i).Longitude*pi/180,GPSData(i).Latitude*pi/180,FieldUseSHP(iS).Lon,FieldUseSHP(iS).Lat);
if any(a)==1
OnField{i}=iS.*a;
end
end
end
Thank you in advance
Best regards,
Pietro
4 Comments
Adam Danz
on 3 Apr 2019
I see. What does the data look like that produces the image you shared? In other words, the brown field contains ~20 line segments and the yellow field contains 4 segments. Do you have the 20 (x,y) coordinates that produce the brown field and the 4 (x,y) coordinates that produce the yellow field?
If yes, are those coordinates used to define the polygon used in inpolygon()?
Also, what are your two loops? You should have a set of (x,y) coordinates that define the tractor's trajectory and those whould be the first inuts to the inpolygon() function.
Answers (1)
Matt J
on 3 Apr 2019
fconv=@(z) z(:).';
Longitude=cell2mat( cellfun( fconv, {GPSData.Longitude},'uni',0) )*pi/180;
Latitude=cell2mat( cellfun( fconv, {GPSData.Latitude},'uni',0) )*pi/180;
Onfield=cell(1,length(FieldUseSHP));
for iS=1:length(FieldUseSHP)
a=inpolygon(Longitude, Latitude,FieldUseSHP(iS).Lon,FieldUseSHP(iS).Lat);
OnField{iS}=iS.*a;
end
0 Comments
See Also
Categories
Find more on Vehicle Scenarios in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!