Socket
Socket
Sign inDemoInstall

vega-projection

Package Overview
Dependencies
Maintainers
4
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-projection

Projections for cartographic mapping.


Version published
Maintainers
4
Created
Source

vega-projection

Projections for cartographic mapping.

This package provides a projection method for managing registered cartographic projections. By default, the projection registry includes all projection types provided by the d3-geo module.

API Reference

# vega.projection(type[, projection]) <>

Registry function for adding and accessing projection constructor functions. The type argument is a String indicating the name of the projection type. If the projection argument is not specified, this method returns the matching projection constructor in the registry, or null if not found. If the projection argument is provided, it must be a projection constructor function to add to the registry under the given type name.

By default, the projection registry includes entries for all projection types provided by the d3-geo module. Projections created using the constructor returned by this method are augmented with the following additional properties:

  • type: A string value indicating the projection type.
  • path: A D3 geoPath instance configured to use the projection. When using this path instance, be sure to set the path context as needed.
  • copy: A zero-argument function the produces a copy of the projection.
// mercator projection
var mercator = vega.projection('mercator');
var proj = mercator().translate([400, 200]);
scale.type; // 'mercator'
scale([0, 0]); // [400, 200] center point

Keywords

FAQs

Package last updated on 14 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc