d3.geoSatellite()

d3.geoSatellite() d3.geoSatelliteRaw(P, omega) The satellite (tilted perspective) projection.

map.set()

map.set(key, value) Sets the value for the specified key string. If the map previously had an entry for the same key string, the old entry is replaced with the new value. Returns the map, allowing chaining. For example: var map = d3.map() .set("foo", 1) .set("bar", 2) .set("baz", 3); map.get("foo"); // 1

pow.exponent()

pow.exponent([exponent]) If exponent is specified, sets the current exponent to the given numeric value. If exponent is not specified, returns the current exponent, which defaults to 1. (Note that this is effectively a linear scale until you set a different exponent.)

pack.size()

pack.size([size]) If size is specified, sets this pack layout’s size to the specified two-element array of numbers [width, height] and returns this pack layout. If size is not specified, returns the current size, which defaults to [1, 1].

d3.curveCatmullRom()

d3.curveCatmullRom(context) Produces a cubic Catmull–Rom spline using the specified control points and the parameter alpha, which defaults to 0.5, as proposed by Yuksel et al. in On the Parameterization of Catmull–Rom Curves, with one-sided differences used for the first and last piece.

color.darker()

color.darker([k]) Returns a darker copy of this color. If k is specified, it controls how much darker the returned color should be. If k is not specified, it defaults to 1. The behavior of this method is dependent on the implementing color space.

path.toString()

path.toString() Returns the string representation of this path according to SVG’s path data specficiation.

selection.node()

selection.node() Returns the first (non-null) element in this selection. If the selection is empty, returns null.

d3.namespaces

d3.namespaces The map of registered namespace prefixes. The initial value is: { svg: "http://www.w3.org/2000/svg", xhtml: "http://www.w3.org/1999/xhtml", xlink: "http://www.w3.org/1999/xlink", xml: "http://www.w3.org/XML/1998/namespace", xmlns: "http://www.w3.org/2000/xmlns/" } Additional prefixes may be assigned as needed to create elements or attributes in other namespaces.

log.nice()

log.nice() Like continuous.nice, except extends the domain to integer powers of base. For example, for a domain of [0.201479…, 0.996679…], and base 10, the nice domain is [0.1, 1]. If the domain has more than two values, nicing the domain only affects the first and last value.