d3.geoInterpolate()

d3.geoInterpolate(a, b) Returns an interpolator function given two points a and b. Each point must be specified as a two-element array [longitude, latitude] in degrees. The returned interpolator function takes a single argument t, where t is a number ranging from 0 to 1; a value of 0 returns the point a, while a value of 1 returns the point b. Intermediate values interpolate from a to b along the great arc that passes through both a and b. If a and b are antipodes, an arbitrary great arc is c

d3.geoNellHammerRaw

d3.geoNellHammer() d3.geoNellHammerRaw The Nell–Hammer projection.

d3.geoAzimuthalEquidistantRaw

d3.geoAzimuthalEquidistant() d3.geoAzimuthalEquidistantRaw The azimuthal equidistant projection.

d3.geoEckert6Raw

d3.geoEckert6() d3.geoEckert6Raw The Eckert VI projection.

continuous()

continuous(value) Given a value from the domain, returns the corresponding value from the range. If the given value is outside the domain, and clamping is not enabled, the mapping may be extrapolated such that the returned value is outside the range. For example, to apply a position encoding: var x = d3.scaleLinear() .domain([10, 130]) .range([0, 960]); x(20); // 80 x(50); // 320 Or to apply a color encoding: var color = d3.scaleLinear() .domain([10, 100]) .range(["brown", "

link.iterations()

link.iterations([iterations]) If iterations is specified, sets the number of iterations per application to the specified number and returns this force. If iterations is not specified, returns the current iteration count which defaults to 1. Increasing the number of iterations greatly increases the rigidity of the constraint and is useful for complex structures such as lattices, but also increases the runtime cost to evaluate the force.

d3.schemeGreens

d3.interpolateGreens(t) d3.schemeGreens Given a number t in the range [0,1], returns the corresponding color from the “Greens” sequential color scheme represented as an RGB string.

log.base()

log.base([base]) If base is specified, sets the base for this logarithmic scale to the specified value. If base is not specified, returns the current base, which defaults to 10.

d3.geoPeirceQuincuncial()

d3.geoPeirceQuincuncial() The Peirce quincuncial projection is the quincuncial form of the Guyou projection.

d3.geoGinzburg6Raw

d3.geoGinzburg6() d3.geoGinzburg6Raw The Ginzburg VI projection.