Stereographic plot of Sea Surface Temperature Data around Antarctica.

10 views (last 30 days)
I have Sea Surface Temperature(SST) data of the waters surrounding the antarctic. I would like to make a stereographic plot of the same. information available is longitude [1x360], latitude[1x30] and sst [360x30x12].
Can you please let me know the steps involved between reading the data and making a stereographic plot out of it ( A rough algorithm would be of great help). Based on the steps I will write the required code.

Answers (1)

Chad Greene
Chad Greene on 20 Sep 2021
Hi Ravi,
There are a couple of ways to do this. Here's one way:
Turn your vectors of latitude,longitude coordinates into 2D grids, where each grid cell in Lat,Lon will correspond to a grid cell in SST:
[Lat,Lon] = meshgrid(latitude,longitude);
Use the Antarctic Mapping Tools function pcolorps to create a pcolor plot of the first slice of SST data:
h = pcolorps(Lat,Lon,SST(:,:,1));
I'm guessing the 12 slices of your SST data cube correspond to months of the year. If you want to loop through each slice to create an animation, you could adjust the CData values of the pcolorps plot like this:
for k = 1:12
h.CData = SST(:,:,k);
title(datestr(datenum(0,k,15),'mmm'))
pause(0.1)
end
  1 Comment
Arnav Gupta
Arnav Gupta on 17 Jun 2022
Hey is there any way we can plot SST data as a stereographic projection using stereo function? I have data for lat, longitudes and SST

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!