Rust D3 Geo

Rust 2021 Edition.

crates.io Docs

About

This is a port d3-geo into RUST. Not all projection have been implemented and there are number of known bugs that I am activley working on.

Here is a list of the currently supported projections. * AziumuthalEqualArea * AzimuthalEquiDistant * Equirectangular * Gnomic * Mercator * Orthographic * Stereographic

Examples

Examples are provided to help developers convert their existing javascript to rust. To run the example please follow the "Running the examples" below.

Description
examples/globe/canvasrotating50m

This is a port into rust of this d3-geo example www.d3indepth.com/geographic/.

For perfomance reasons this example is best viewed as a static web site, rather the running the development build.

examples/globe/svg

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.
examples/globe/dragandzoom

This is similar to the other globe applications. As an example it deliberatly mixes typescript methods with rust. The typescript is responsible for handling the mouse events and calculating the quaternion and finally calcuting the appropiate change in rotation. In a typescript render loop calls to a rust function render the globe.
examples/projections

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.

examples/ring
Renders a complex multipolygon.

When to use the rust version of the library

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 50m resolution map of the earth. On a desktop machine this is beyond the javascript version.

Current Status

The majority of the library has been ported along with the associated tests. The aim is to eventaully release this as a rust crate. but at the moment is this alpha grade software.


Here is a summary of things to-do before the crate is published.

Running the examples

See the details.


Requirements:


To view the application either create a devleopment build, or construct a static-web site as follows

### Start And Run A Development Build console git clone https://github.com/martinfrances107/rust_d3_geo.git cd rust_d3_geo/examples/ring/ cargo build npm install npm start

The last command "npm run start" will automatically open your default browser at http:://localhost::8080

Building A Static Site

Much better performance can be acheived by bulding a static web site and viewing that direclty.

console git clone https://github.com/martinfrances107/rust_d3_geo.git cd rust_d3_geo/examples/ring cargo build npm run build

This creates a static HTML site in the dist/ directory.

To view the site you cannot just point you browser at a location of the form file:://home/user/alice/dist/index.html

By security reasons, browsers prevent HTML pages with WASM files from being viewed this way. You must host the site first.

A way forward here is to use a npm package called serve

console sudo npm install --global serve serve dist

If everything works you will be given a locaation to view

For example http:://localhost::3000


Benchmarking

See the details. In this project, we have two benchmarks, based on the ring and graticule examples ( see above. )

Also rustd3geo_voronoi uses this library, and that project contains a benchmark which contains an exact port of a benchmark in d3-geo-voronoi . Based on that benchmark rust is 31% faster, or permits a 37% increase in throughput.


Future Multi thread support

See the details. On my todo list.


Architecture discussion

There is an aspect of the design that needs review. It related to the best way to implement a doubly-linked list which has cross links between nodes. A full discusion can be found here


Coding Standard

Unimplemented sections of the library.

See the details. Support for a custom projection is not yet supported. For an example of this see the test labelled "projection.fitExtent(…) custom projection"

I am trying to get a program of mine to run faster, but I want this to eventually be a true library port. So feel free to add suggestions to my todo list.

A complete list of all ported projections can be found in invert-test.rs. Out of the 15 distinct projections listed only 7 have been ported so far.


Other To-do's

See the details.

Document API changes such as

Finally

todo.md contains a more detailed list