This is a demo of the Customizable Wagner, using the d3-geo scripts with
d3.geoWagner().poleline(67.5).parallels(75).inflation(0).ratio(205.128)
A variation of Wagner VII, presented by Karlheinz Wagner himself in 1941 (along with that variant that
is called Wagner VII nowadays). It shows a shorter pole line, a stronger curvature of the parallels and is stretched
horizontally while keeping the equal-area property.
vii@67.5-75-60-0-205.128
.
Show in WVG-7.
For more information about Wagner’s transformation method, read this blogpost or the notes at the Wagner Variations Generator (WVG-7) or the article Das Umbeziffern – The Wagner Transformation Method.
<div id="svgs" class="svg-container"></div>
<script>
var width = 1000,
height = 660;
var projection = d3.geoWagner()
.scale(170)
.translate([width / 2, height / 2.2])
.precision(.1)
.poleline(67.5)
.parallels(75)
.inflation(0)
.ratio(205.128)
var path = d3.geoPath()
.projection(projection);
var graticule = d3.geoGraticule()
.step([10,10]);
var svg = d3.select("#svgs").append("svg")
.attr("id", "image_PID_")
.attr("preserveAspectRatio", "xMinYMin meet")
.attr("viewBox", "0 0 1000 660")
.classed("svg-content", true)
.append("g");
svg.append("defs").append("path")
.datum({type: "Sphere"})
.attr("id", "sphere")
.attr("d", path);
svg.append("use")
.attr("class", "stroke")
.attr("xlink:href", "#sphere");
svg.append("use")
.attr("class", "fill")
.attr("xlink:href", "#sphere");
svg.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
d3.json("world-50m.json").then(function(json) {
world = json;
svg.insert("path", ".graticule")
.datum(topojson.feature(world, world.objects.land))
.attr("class", "land")
.attr("d", path);
});
d3.select('#svg').style("height", height + "px");
</script>
Released under the GNU General Public License, version 3.
map-projections.net: Home · Legal Disclosure · Privacy Policy