@stdlib/datasets-us-states-capitals

A list of US state capitals in alphabetical order according to state name.

Usage no npm install needed!

<script type="module">
  import stdlibDatasetsUsStatesCapitals from 'https://cdn.skypack.dev/@stdlib/datasets-us-states-capitals';
</script>

README

US State Capitals

NPM version Build Status Coverage Status dependencies

A list of US state capitals.

Installation

npm install @stdlib/datasets-us-states-capitals

Usage

var capitals = require( '@stdlib/datasets-us-states-capitals' );

capitals()

Returns a list of US state capitals in alphabetical order according to state name.

var data = capitals();
/* returns
    [
        'Montgomery',
        'Juneau',
        'Phoenix',
        'Little Rock',
        'Sacramento',
        'Denver',
        'Hartford',
        'Dover',
        'Tallahassee',
        'Atlanta',
        'Honolulu',
        'Boise',
        'Springfield',
        'Indianapolis',
        'Des Moines',
        'Topeka',
        'Frankfort',
        'Baton Rouge',
        'Augusta',
        'Annapolis',
        'Boston',
        'Lansing',
        'Saint Paul',
        'Jackson',
        'Jefferson City',
        'Helena',
        'Lincoln',
        'Carson City',
        'Concord',
        'Trenton',
        'Santa Fe',
        'Albany',
        'Raleigh',
        'Bismarck',
        'Columbus',
        'Oklahoma City',
        'Salem',
        'Harrisburg',
        'Providence',
        'Columbia',
        'Pierre',
        'Nashville',
        'Austin',
        'Salt Lake City',
        'Montpelier',
        'Richmond',
        'Olympia',
        'Charleston',
        'Madison',
        'Cheyenne'
    ]
*/

Examples

var floor = require( '@stdlib/math-base-special-floor' );
var randu = require( '@stdlib/random-base-randu' );
var capitals = require( '@stdlib/datasets-us-states-capitals' );

var data = capitals();
var len = data.length;
var idx;
var i;

// Select random capitals from the list...
for ( i = 0; i < 100; i++ ) {
    idx = floor( randu()*len );
    console.log( data[ idx ] );
}

CLI

Installation

To use the module as a general utility, install the module globally

npm install -g @stdlib/datasets-us-states-capitals

Usage

Usage: us-states-capitals [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ us-states-capitals
Montgomery
Juneau
Phoenix
...

License

The data files (databases) are licensed under an Open Data Commons Public Domain Dedication & License 1.0 and their contents are licensed under Creative Commons Zero v1.0 Universal. The software is licensed under Apache License, Version 2.0.


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


Copyright

Copyright © 2016-2021. The Stdlib Authors.