You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[<imgsrc="./img/faceted-map.png"width="930"alt="A dot map of Walmart store openings faceted by decade">](https://observablehq.com/@observablehq/plot-geo)
[<imgsrc="./img/vector-map.png"width="640"alt="An arrow map showing the county-level vote margins in the 2020 U.S. presidential election; a margin for Biden is shown as a blue left-pointing arrow, and a margin for Trump is shown as a red right-pointing arrow">](https://observablehq.com/@observablehq/plot-projections)
[<imgsrc="./img/beagle.png"width="640"alt="A map of the route of the HMS Beagle, 1831–1836; color indicates direction, with the ship initially departing London and heading southwest before circumnavigating the globe">](https://observablehq.com/@observablehq/plot-projections)
72
+
68
73
```js
69
74
Plot.plot({
70
75
projection:"equal-earth",
71
76
marks: [
72
77
Plot.geo(land, {fill:"currentColor"}),
73
78
Plot.graticule(),
74
-
Plot.line(beagle.coordinates, {stroke: (d, i) => i, z:null, strokeWidth:2}),
75
-
Plot.geo(london, {fill:"red", r:5}),
79
+
Plot.line(beagle, {stroke: (d, i) => i, z:null, strokeWidth:2}),
76
80
Plot.sphere()
77
81
]
78
82
})
79
83
```
80
84
81
85
Projected transforms (hexbin aggregation).
82
86
87
+
[<imgsrc="./img/hexbin-map.png"width="640"alt="A bivariate hexbin map of Walmart store openings; within each hexagonal area, size indicates the number of Walmart store openings, and color indicates the year of the first opening">](https://observablehq.com/@observablehq/plot-projections)
0 commit comments