Enviada


LIMA Landsat Image Mosaic of Antarctica
Plot the Landsat Image Mosaic of Antarctica

más de 11 años hace | 3 descargas |

5.0 / 5
Thumbnail

Respondida
How can I (quickly) buffer a river centerline with constant width to compute banks?
The <http://www.mathworks.com/matlabcentral/fileexchange/39796-xy2sn |xy2sn|> function may be useful. Convert your river xy coo...

más de 11 años hace | 0

Respondida
Problems with showing geolocated data with geoshow. Error in Zdata
Use |meshgrid|. [latgrid,longrid] = meshgrid(lat,lon); geoshow(latgrid,longrid,cot,'DisplayType','texturemap')

más de 11 años hace | 0

| aceptada

Respondida
Very slow ginput in 2014b
I made a function <http://www.mathworks.com/matlabcentral/fileexchange/49727-finput |finput|> that creates a temporary set of ax...

más de 11 años hace | 0

Enviada


finput
A faster ginput.

más de 11 años hace | 1 descarga |

1.0 / 5

Respondida
How to plot mean averages
I see some semicolons where perhaps there should be colons. Should |avU(;,n)| be |avU(:,n)|, and should |nanmean(residulaV(;,n)...

más de 11 años hace | 0

Respondida
How to match GeoTiff file with Shapefile?
Two possible solutions: Given some polygon described by the arrays |lat| and |lon|, you could use Aslak Grinsted's <http://w...

más de 11 años hace | 0

Respondida
Plotting irregular column data in 2D global map pcolor plot
An easy solution is to use <http://www.mathworks.com/matlabcentral/fileexchange/8998-surface-fitting-using-gridfit |gridfit|> or...

más de 11 años hace | 0

Enviada


How to drape Landsat images over Bedmap2 topography
A quick how-to example file.

más de 11 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
How could I get the spatial coordinates for each pixel of a Landsat scene?
The easiest way is to use Aslak Grinsted's <http://www.mathworks.com/matlabcentral/fileexchange/46904-geoimread/content/geoimrea...

más de 11 años hace | 0

Respondida
Sir, How to extract data from an netcdf file based on latilute and longitude range?
The answer depends on your example.nc file. Load the lat and lon variables with |ncread| and find the indices of lat and lon co...

más de 11 años hace | 1

Respondida
plotting world map contour onto spatial data plot with different (long, lat)
Assuming you have the Mapping Toolbox, worldmap('world') % initializes map contourm(lat,lon,z) % plots contours...

más de 11 años hace | 0

Respondida
long and lat map plot
If you have the Mapping Toolbox and you have a map initialized already, plotm(30.45,-91.14,'rp') If you do not have the...

más de 11 años hace | 0

| aceptada

Respondida
geolocation plot time series
Your |plot| command specifies blue circle markers with |'bo'|. If you want blue circle markers _and_ a line, use |'bo-'|. If y...

más de 11 años hace | 0

| aceptada

Respondida
FOR loop and keep every 10th iteration
A few things: First, try to avoid using |i| as a variable, because by default in Matlab |i = sqrt(-1)|. I'm going to switch...

más de 11 años hace | 0

| aceptada

Respondida
How to plot a 2D bathymetric contour map
First, a minor request: when posting code, format it using the "Code" button. Monospaced code is easier to read. Regarding ...

más de 11 años hace | 0

| aceptada

Respondida
Eliminating visible lines from surfnorm
Does this work? surfnorm(X,Y,Z,'linestyle','none')

más de 11 años hace | 0

Respondida
File Exchange - Quickly see comments?
Does <http://www.mathworks.com/matlabcentral/fileexchange/feedbacks?utf8=%E2%9C%93&term=authorid%3A10584 this> work?

más de 11 años hace | 2

| aceptada

Respondida
drawing several graphs or charts in a row
Do you want to create a new figure window for each plot? If so, use a |figure| command before each |candle| call: figure(...

más de 11 años hace | 1

| aceptada

Respondida
How can I plot a colormap with user-defined color scale and x-y value in longitude-latitude?
|pcolor| does throw a way a row and column of data, and offsets it by half a pixel. But if you use |shading interp|, you'll get...

más de 11 años hace | -1

| aceptada

Enviada


label
label data directly on a plot

más de 11 años hace | 2 descargas |

4.7 / 5
Thumbnail

Respondida
Hourly Averaging over 10s Data
It's hard to see what exactly is going on because we don't have your source data and your variable names are not intuitive. ...

más de 11 años hace | 0

| aceptada

Respondida
Problem with plot function
You only have one value for |r| (3.7), but you have many values for |y|. The |plot| function wants exactly one |r| value for ea...

más de 11 años hace | 0

| aceptada

Respondida
Geospatial mapping: map one state from data from the continental US
Use <http://www.mathworks.com/help/matlab/ref/inpolygon.html |inpolygon|>. If you have lat/lon data given by ( |latdata|, |lond...

más de 11 años hace | 0

| aceptada

Respondida
Contour labels SOMETIMES disappear when plotting contour over pcolor
This is sometimes a result of the figure renderer acting funny. Try cycling through the different renderers to see if any of th...

más de 11 años hace | 0

Respondida
How to change figure size?
For full-screen figures, you can use <http://www.mathworks.com/matlabcentral/fileexchange/48071-fullfig/content/fullfig/html/ful...

más de 11 años hace | 8

Respondida
comparing time series data
<http://www.mathworks.com/help/matlab/ref/corrcoef.html |[R,P] = corrcoef(testData,controlData);|> will return a correlation bet...

más de 11 años hace | 0

Respondida
Determining whether a point on earth (given latitude and longitude) is on land or ocean
<http://www.mathworks.com/matlabcentral/fileexchange/48661-landmask/content/landmask/html/landmask_documentation.html |landmask(...

más de 11 años hace | 0

Enviada


shadem
Easily turn flat pcolor, pcolorm, surf, or surfm data into a hillshade-style shaded relief map.

más de 11 años hace | 1 descarga |

5.0 / 5
Thumbnail

Respondida
longitude and latitude plot map
Have you tried this? plot(lon,lat,'k-') grid on xlabel('longitude') ylabel('latitude')

más de 11 años hace | 1

Cargar más