world-data 0.3.1

Bundled country shapes, capital city positions and more.
Documentation

world-data

A rust crate containing country shapes as polygons, capital city positions and more.

Usage

fn main() {
    let data = world_data::load();
    let country_us = data.countries.get("US").unwrap();
    println!("{}", country_us.official_name)
}

Sources