Skip to content

Commit 2543501

Browse files
committed
more relative links
1 parent 6f720ce commit 2543501

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

docs/ex/d3/orthographic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="2" type="text/markdown">
55
# Orthographic
66

7-
The [orthographic projection](https://en.wikipedia.org/wiki/Orthographic_projection#Cartography) is a perspective (azimuthal) projection, like the [stereographic](./stereographic) and [gnomonic](https://observablehq.com/@d3/gnomonic) projections. It "depicts a hemisphere of the globe as it appears from outer space, where the horizon is a great circle." See also the [general perspective projection](https://observablehq.com/@d3/satellite) and an [animated world tour](./world-tour).
7+
The [orthographic projection](https://en.wikipedia.org/wiki/Orthographic_projection#Cartography) is a perspective (azimuthal) projection, like the [stereographic](./stereographic) and [gnomonic](./gnomonic) projections. It "depicts a hemisphere of the globe as it appears from outer space, where the horizon is a great circle." See also the [general perspective projection](https://observablehq.com/@d3/satellite) and an [animated world tour](./world-tour).
88
</script>
99
<script id="1" type="module" pinned="">
1010
const projection = d3.geoOrthographic().rotate([110, -40]);

docs/ex/d3/scatterplot-tour.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="2" type="text/markdown">
55
# Scatterplot tour
66

7-
This notebook implements an animated tour of a scatterplot using zoom transitions. The tour zooms in on each cluster's [bounding box](https://observablehq.com/@d3/zoom-to-bounding-box) in succession before zooming back out to the overview. To improve rendering performance, the circles are drawn as zero-length strokes with round caps.
7+
This notebook implements an animated tour of a scatterplot using zoom transitions. The tour zooms in on each cluster's [bounding box](./zoom-to-bounding-box) in succession before zooming back out to the overview. To improve rendering performance, the circles are drawn as zero-length strokes with round caps.
88
</script>
99
<script id="3" type="module">
1010
const input = Inputs.radio(new Map(transforms), {value: transforms[0][1]});

docs/ex/d3/treemap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="5" type="text/markdown">
55
# Treemap
66

7-
Use [d3.stratify](https://d3js.org/d3-hierarchy/stratify) to compute a [treemap](https://observablehq.com/@d3/treemap/2) from a flat list of references in CSV format, instead of a hierarchical JSON format.
7+
Use [d3.stratify](https://d3js.org/d3-hierarchy/stratify) to compute a [treemap](https://d3js.org/d3-hierarchy/treemap) from a flat list of references in CSV format, instead of a hierarchical JSON format.
88
</script>
99
<script id="3" type="module">
1010
const tile = view(Inputs.select(

docs/ex/d3/world-tour.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="1" type="text/markdown">
55
# World tour
66

7-
This animation uses [d3.geoInterpolate](https://d3js.org/d3-geo/math#geoInterpolate) to interpolate a path along great arcs, and [spherical linear interpolation](https://en.wikipedia.org/wiki/Slerp) to rotate the [orthographic](https://observablehq.com/@d3/orthographic) projection.
7+
This animation uses [d3.geoInterpolate](https://d3js.org/d3-geo/math#geoInterpolate) to interpolate a path along great arcs, and [spherical linear interpolation](https://en.wikipedia.org/wiki/Slerp) to rotate the [orthographic](./orthographic) projection.
88
</script>
99
<script id="2" type="text/html">
1010
<b style="display: block; text-align:center; line-height: 33px;">${country?.properties.name ?? "\xa0"}

docs/ex/d3/zoomable-icicle.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="1" type="text/markdown">
55
# Zoomable icicle
66

7-
This variant of an [icicle diagram](https://observablehq.com/@d3/icicle/2) shows only three layers of the hierarchy at a time. Click a node to zoom in, or the left column to zoom out. Compare to a [sunburst](https://observablehq.com/@d3/zoomable-sunburst).
7+
This variant of an [icicle diagram](https://observablehq.com/@d3/icicle/2) shows only three layers of the hierarchy at a time. Click a node to zoom in, or the left column to zoom out. Compare to a [sunburst](./zoomable-sunburst).
88
</script>
99
<script id="2" type="module" pinned="">
1010
// Specify the chart’s dimensions.

docs/ex/d3/zoomable-sunburst.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="1" type="text/markdown">
55
# Zoomable sunburst
66

7-
This variant of a [sunburst diagram](https://observablehq.com/@d3/sunburst/2) shows only two layers of the hierarchy at a time. Click a node to zoom in, or the center to zoom out. Compare to an [icicle](https://observablehq.com/@d3/zoomable-icicle).
7+
This variant of a [sunburst diagram](https://observablehq.com/@d3/sunburst/2) shows only two layers of the hierarchy at a time. Click a node to zoom in, or the center to zoom out. Compare to an [icicle](./zoomable-icicle).
88
</script>
99
<script id="2" type="module" pinned="">
1010
// Specify the chart’s dimensions.

docs/ex/plot/arc-diagram.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="1" type="text/markdown">
55
# Arc diagram
66

7-
This diagram places nodes in a vertical line with circular arcs for links. Unlike other network visualizations such as a [force layout](https://observablehq.com/@d3/force-directed-graph), the appearance (and usefulness) of an arc diagram is highly dependent on the order of nodes.
7+
This diagram places nodes in a vertical line with circular arcs for links. Unlike other network visualizations such as a [force layout](./force-directed-graph), the appearance (and usefulness) of an arc diagram is highly dependent on the order of nodes.
88
</script>
99
<script id="5" type="module" pinned="">
1010
Plot.plot({

docs/ex/plot/area-chart-with-gradient.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<script id="1" type="text/markdown">
55
# Area chart with gradient
66

7-
A custom [function mark](https://observablehq.com/plot/features/marks) returns a svg gradient (generated with [Hypertext Literal](https://observablehq.com/@observablehq/htl)), that can be referenced as a [funciri](https://developer.mozilla.org/en-US/docs/Web/SVG/Content_type#funciri) color in the [area](https://observablehq.com/plot/marks/area) mark.
7+
A custom [function mark](https://observablehq.com/plot/features/marks) returns a svg gradient (generated with [Hypertext Literal](https://github.com/observablehq/htl)), that can be referenced as a [funciri](https://developer.mozilla.org/en-US/docs/Web/SVG/Content_type#funciri) color in the [area](https://observablehq.com/plot/marks/area) mark.
88
</script>
99
<script id="5" type="module" pinned="">
1010
Plot.plot({

0 commit comments

Comments
 (0)