Wanted to plot a map with the numbers. I am adding +1 to the value if any zero observations were made to that station. It would be nice to show columns instead of the circles.
% plot the station numbers on the mapload NYstation_data.matclose alllatlim = [40, 45];lonlim = [-80,-73];figureax = worldmap(latlim, lonlim);states = shaperead('usastatehi','UseGeoCoords', true, 'BoundingBox', [lonlim', latlim']); geoshow(ax, states, 'Facecolor', [1 1 0.9]);for jj = 1:41jj% textm(st_lat(jj),st_lon(jj), num2str(jj));plotm(st_lat(jj),st_lon(jj), jj,'o', 'MarkerEdgeColor','k','MarkerSize',dataavailable(jj)+ 1); hold ontextm(st_lat(jj),st_lon(jj), sprintf('%.1d', jj))end
No comments:
Post a Comment