Función D3.js geohiperelíptica()

La biblioteca de JavaScript D3.js brinda visualizaciones de datos dinámicas e interactivas para páginas web que utilizan HTML5, gráficos vectoriales escalables y hojas de estilo en cascada.
La función geoHyperelliptical() en la biblioteca d3.js se usa para dibujar la proyección pseudocilíndrica de homolosina de Goode de áreas iguales.

Sintaxis:

d3.geoHyperelliptical( k, alpha ,gamma)

Parámetros: Este método acepta tres parámetros como se mencionó anteriormente y se describe a continuación.

  • k: El exponente de la superelipse (o curva de Lamé) que define la forma de los meridianos. El valor predeterminado es 2,5.
  • alfa: Rige el peso de la proyección cilíndrica que se promedia con la superelipse. El valor predeterminado es 0.
  • gamma: La relación de aspecto. El valor predeterminado es 1,183136.

Valor de retorno: este método crea una proyección hiperelíptica a partir de los datos JSON proporcionados.

Ejemplo 1: El siguiente ejemplo dibuja una proyección hiperelíptica del mundo con centro en (0,0) y rotación 0.

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content=
        "width=device-width, initial-scale=1.0" />
    <script src="https://d3js.org/d3.v4.js"></script>
    <script src=
    "https://d3js.org/d3-geo-projection.v2.min.js">
    </script>
</head>
  
<body>
    <div style="width:700px; height:600px;">
        <svg width="700" height="400">
        </svg>
    </div>
  
    <script>
        var svg = d3.select("svg"),
            width = +svg.attr("width"),
            height = +svg.attr("height");
  
        // Hyperelliptical projection
        // Center(0,0) and no rotation 
        var gfg = d3.geoHyperelliptical()
            .scale(width / 2.0 / Math.PI)
            .rotate([0, 0])
            .center([0, 0])
            .translate([width / 2, height / 2])
  
        // Loading the json data
        // Used json file stored at 
        // https://raw.githubusercontent.com/janasayantan
        // datageojson/master/world.json
        d3.json("https://raw.githubusercontent.com/
            + "janasayantan/datageojson/master/world.json",
            function (data) {
  
                // Draw the map
                svg.append("g")
                    .selectAll("path")
                    .data(data.features)
                    .enter().append("path")
                    .attr("fill", "seagreen")
                    .attr("d", d3.geoPath()
                        .projection(gfg)
                    )
                    .style("stroke", "#ffff")
            })
    </script>
</body>
  
</html>

Producción:

Ejemplo 2: El siguiente ejemplo dibuja una proyección hiperelíptica del mundo después de alterar el centro y la rotación.

HTML

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content=
    "width=device-width, initial-scale=1.0" />
    <script src="https://d3js.org/d3.v4.js"></script>
    <script src=
    "https://d3js.org/d3-geo-projection.v2.min.js">
    </script>
</head>
  
<body>
    <div style="width:700px; height:600px;">
        <svg width="700" height="400"></svg>
    </div>
  
    <script>
  
        var svg = d3.select("svg"),
            width = +svg.attr("width"),
            height = +svg.attr("height");
  
        // Hyperelliptical projection
        // Center(-10,-10) and 30 degree 
        // rotation with respect to Y axis
        var gfg = d3.geoHyperelliptical(
            k = 3.0, alpha = 2, gamma = 2)
            .scale(width / 2.0 / Math.PI)
            .rotate([30, 0])
            .center([-10, -10])
            .translate([width / 2, height / 2])
  
        // Loading the json data
        // Used json file stored at 
        // https://raw.githubusercontent.com
        // /janasayantan/datageojson/master/world.json
  
        d3.json("https://raw.githubusercontent.com/"
            + "janasayantan/datageojson/master/world.json",
            function (data) {
  
                // Draw the map
                svg.append("g")
                    .selectAll("path")
                    .data(data.features)
                    .enter().append("path")
                    .attr("fill", "seagreen")
                    .attr("d", d3.geoPath()
                        .projection(gfg)
                    )
                    .style("stroke", "#ffff")
            })
    </script>
</body>
  
</html>

Producción:

Publicación traducida automáticamente

Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *