OVERLAY POINTS IN A MAP

6 views (last 30 days)
Diana
Diana on 27 Mar 2012
I have a very simple black and white image of a region (map) and I would like to specify some areas in it (areas where the sondes were dropped, I have the latitude and longitude of them) and I was wondering if someone had an idea of an "easy" or less complicated way of doing this, if it is possible to do in Matlab. Any idea will be great.
thanks
  1 Comment
bym
bym on 27 Mar 2012
less complicated than 'what'?

Sign in to comment.

Accepted Answer

bym
bym on 28 Mar 2012
simple example plots 3 sondes off the coast of the North America
c = load('cape');
spy(c.X==1)
hold
plot([300,250,200],[150,150,150],'m*')
  2 Comments
Diana
Diana on 28 Mar 2012
Thanks a lot fr answering.. basically less complicated than everything... one question about your answer .. if I want to use my own picture how would that affect the rest of the code you wrote...sorry I'm just starting to use matlab and don't know much..
Diana
Diana on 28 Mar 2012
how will it know where to locate the dot in the image?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!