US State Capitals
A list of US state 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
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.