A list of US state capitals.
var capitals = require( '@stdlib/datasets/us-states-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'
]
*/
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 ] );
}
Usage: us-states-capitals [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ us-states-capitals
Montgomery
Juneau
Phoenix
...
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.
@stdlib/datasets/us-states-abbr
: A list of US state two-letter abbreviations in alphabetical order according to state name.@stdlib/datasets/us-states-capitals-names
: US state capitals and names.@stdlib/datasets/us-states-names
: A list of US state names in alphabetical order.@stdlib/datasets/us-states-names-capitals
: US state names and capitals.