I have a list of lat/lon coordinates and I would like to find the most common locations. Is there a built in function for this?
Thank you.

 採用された回答

Star Strider
Star Strider 2020 年 11 月 4 日

0 投票

Try this:
M = randi(5, 25, 2); % Create ‘LatLon’ Data
[Mu,~,idx] = unique(M, 'rows'); % Unique Rows
Tally = accumarray(idx, (1:numel(idx)).', [], @(x) {M(x,:)}); % Calculate Frequencies, Return Pairs By Group
pairs = cellfun(@(x)size(x,1), Tally); % Recover ‘LatLon’ Pairs
[~,ixs] = sort(pairs, 'descend'); % Sort Them
Result = table(Mu(ixs,:),pairs(ixs), 'VariableNames',{'LatLon','Frequency'}); % Output Table Of Pairs & Frequencies
I did my best to comment-document it. Use your own latitude & longitude coordinates for ‘M’. It may be necessary to use uniquetol with the 'ByRows' option if the coordinates are not exactly the same.

2 件のコメント

Erick Koenig
Erick Koenig 2020 年 11 月 4 日
Awesome! works perfectly. That's exactly what I was looking to do. Thank you.
Star Strider
Star Strider 2020 年 11 月 4 日
Thank you! As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by