Is there a list or database of standardised projections (that can be applied in d3.js) used to create "nice-looking" maps of invidiual countries (e.g. UK, France, Germany) or geographic regions (e.g. Europe, Middle East or North America)?
e.g. in this mapping tutorial for the UK, the author uses the projection
var projection = d3.geo.albers()
.center([0, 55.4])
.rotate([4.4, 0])
.parallels([50, 60])
.scale(6000)
.translate([width / 2, height / 2]);
Are these values a standard set used by many map-makers to display the UK, or did the author find them by trial and error?
Whilst it's useful to have these values for the UK, no further projections are given for other countries in the world. Do other countries have standardised map projections which map-makers tend to use, for instance set by national mapping agencies e.g. the Ordnance Survey?