In MATLAB, display specific data from a CSV file and show an image when selecting GPS points marked on a map
1 回表示 (過去 30 日間)
古いコメントを表示
Hello! I have marked some GPS points on a map (in a scatter plot). Now I want to display specific data from a CSV file (from which I also have the GPS points) and also plot an image when I select one of these points. However, I am still a beginner in MATLAB and have no idea how to achieve this.
0 件のコメント
回答 (1 件)
Sangesh Pv
2023 年 10 月 13 日
from what i can understand you want to make a map from the csv file, you can replace the gps with you preferred name and and change the filename.csv to your file
gps = readtable('filename.csv');
gps = geoscatter(gps,"Latitude","Longitude","filled");
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!