Question about PLOTTING over MAPS
이전 댓글 표시
I am using a code to generate the maps, but I'm still having a little trouble adding my own data. What I need is very simple, I have a data file with latitude, longitudes and the number of times that lightning struck on that location (Basically I need a density plot). Any comments will be very helpful.
Thank you, Diana
답변 (1개)
Walter Roberson
2012년 7월 17일
pointsize = 8;
scatter(lat(:), long(:), pointsize, numstrikes(:))
colorbar
댓글 수: 12
Diana
2012년 7월 17일
Diana
2012년 7월 17일
Diana
2012년 7월 17일
Walter Roberson
2012년 7월 17일
Do you have a "hold on" command? You should.
Also if I recall correctly, there is a scatterm() in the mapping toolbox that can be used with map projection. You would still need "hold on" between the two plots.
Diana
2012년 7월 17일
Walter Roberson
2012년 7월 17일
편집: Walter Roberson
2012년 7월 17일
scatterm() does exist http://www.mathworks.com/help/toolbox/map/ref/scatterm.html . But possibly not in your version. Which version are you using?
I am not familiar with how the mapping toolbox draws the maps. Which drawing command are you using? I'm thinking that if that command is creating its own axes then one of the two axes would be on top, hiding the other one. A quick test for that would be to draw the scatter plot second, then set(gca, 'Color', 'none')
Diana
2012년 7월 17일
Diana
2012년 7월 17일
Walter Roberson
2012년 7월 17일
The Mapping Toolbox is an optional add-on product for the Student Version (just as it is for the other versions). It has the same functionality in the student version as in the professional version. See http://www.mathworks.com/academia/student_version/companion.html
If that is not what you are using, please indicate where you found the mapping software you are using.
Diana
2012년 7월 17일
Walter Roberson
2012년 7월 17일
That package is a bit big for me to "sight read", and unfortunately I do not have access to MATLAB for the next bit of time (waiting for a new computer to arrive...)
I don't think I will be able to assist with that toolbox within a reasonable time.
Diana
2012년 7월 17일
카테고리
도움말 센터 및 File Exchange에서 Interact with Maps에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!