tissot

Project Tissot indicatrices on map axes

Syntax

h = tissot
h =天梭(spec)
h =天梭(spec,linestyle)
h =天梭(linestyle)
h =天梭(spec,PropertyName,PropertyValue,...)
h =天梭(linestyle,PropertyName,PropertyValue,...)

Description

h = tissotplots the default Tissot diagram, as described above, on the current map axes and returns handles for the displayed indicatrices.

h =天梭(spec)allows you to specify plotting parameters of the displayed Tissot diagram as described above.

h =天梭(spec,linestyle)andh =天梭(linestyle)wherelinestyledefines the style of the Tissot indicatrices, specified as alinespec.

h =天梭(spec,PropertyName,PropertyValue,...)andh =天梭(linestyle,PropertyName,PropertyValue,...)allow the specification of any property and value recognized by thelinefunction.

Background

Tissot indicatrices are plotting symbols that are useful for understanding the various distortions of a given map projection. The indicatrices are circles of identical true radius on the Earth's surface. When plotted on a map projection, they indicate whether the projection has certain features. If the plotted indicatrices all enclose the same area, the projection is equal area (for example, a Sinusoidal projection would have this feature). If they all remain circular, then conformality is indicated (a Mercator projection has this property). Distortions in meridional or parallel distance are exhibited by flattened or stretched indicatrices. Many projections will show very even, circular indicatrices in some regions, often near the center, and wildly distorted indicatrices in others, such as near the edges. The Tissot diagram is therefore very useful in analyzing the appropriateness of a projection to a given purpose or region.

The general layout of the Tissot diagram is defined by the specification vectorspec.

spec = [Radius] spec = [Latint,Longint] spec = [Latint,Longint,Radius] spec = [Latint,Longint,Radius,Points]

Radiusis the small circle radius of each indicatrix circle. If entered, it should be in the same units as the map axesGeoid. The default radius is 1/10th the radius of the sphere.

Latintis the latitude interval between indicatrix circle centers. If entered it should be in the map axesAngleUnits. The default value is one circle every 30º of latitude (that is, 0º, +/-30º, etc.).

Longintis the longitude interval between indicatrix circle centers. If entered it should be in the map axesAngleUnits. The default value is one circle every 30º of latitude (that is, 0º, +/-30º, etc.).

Pointsis the number of plotting points per circle. The default is 100 points.

Examples

axesm sinusoid; framem tissot

The Sinusoidal projection is equal area.

setm(gca,'MapProjection','Mercator')

The Mercator projection is conformal.

Introduced before R2006a