Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to draw an 3D earth for use of clouds and I have the following questions:

1.How can I set the specific position of (longitude, latitude) of my own gray scale color.

2.I want to have an angle from which I look at the earth, the center horizontal line is 0.N and center vertical line is 85.E. How do I set the value of

campos([x y z]); 

3.Could I draw my own little image on the map at specific (longitude, latitude)?

Following is the code I have found:

cla reset;
load topo;
[x y z] = sphere(45);
s = surface(x,y,z,'FaceColor','texturemap','CData',topo);
colormap(topomap1); 
campos([1.3239  -14.4250  9.4954]);

How do I change the input or have to try other ways? Suppose I have a matrix A of 180*360 storing

the color value at A(longitude, latitude).

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.