Rust 2021 Edition.
This is a port d3-geo into RUST.
A collection of d3 sub packages is being ported to rust.
The majority of the library has been ported along with the associated tests.
The 1.0 release is close, within one week.
Currently I am reviewing the data structures, and looking for performance improvements before things become locked down and I support backwards compatibility guarentees.
The limits of the javascript library become obvious when developing interactive applications that process large datasets. For example the examples/globe applications operate on a 1:50M resolution map of the earth. On a desktop machine this is beyond the javascript version.
Supported Projections | ||
---|---|---|
Albers | Equidistant | Mercator |
AlbersUsa | Equirectangular | MercatorTansverse |
Aziumuthal Equal Area | Equal Area | Orthographic |
Azimuthal EquiDistant | Equal Earth | Stereographic |
Conformal | Gnomic |
These Examples are provided to help developers convert their existing javascript to rust. They can be found in the github reposository associated with this crate.
examples/globe/rotating This is a port into rust of this d3-geo example This globe is rendered to a HTML CANVAS element. For perfomance reasons this example is best viewed by running cargo build and then "cargo serve" which compiles the rust code using the --release flag. (Scale 1:50M) |
|
examples/globe/svg The globe is rendered as a SVG image. SVG are useful when the semantic meaning of the data needs to be preserved. The example shows how to load/parse/display the globe as indivdual SVG PATH elements. It also includes code samples that generates SVG graticules. (Scale 1:50M) |
|
examples/globe/dragandzoom This globe is rendered to a HTML CANVAS element It deliberately mixes typescript methods with rust.
The typescript is responsible for handling the mouse events and calculating the quaternion and finally calculating the appropiate change in rotation. In a typescript render loop calls to a rust function render the globe.(Scale 1:50M)
(Scale 1:50M) |
|
examples/projections This globe is rendered to a HTML CANVAS element As a confidence building exercise, this demo shows a side by side comparison of the all the projections rendered by in both javascript and rust. (Scale 1:50M) |
|
examples/globe/albers_usa The globe is rendered as a SVG image. Show all the counties in the USA. AlbersUSA is unlike the other projections. Alaska and Hawaii are rendered as insets. As can be see in the code a Multidrain must be used to gather the three projections. (Scale of 1:10M) |
|
examples/ring SVG example Sample code in both RUST and javascript that renders a complex multipolygon. ( Orthographic and Sterographic ) |
|