-
Notifications
You must be signed in to change notification settings - Fork 0
Geo Projections
# d3.geo.mercator()
Construct a new spherical Mercator projection.
# mercator(position)
Project the specified position.
# mercator.scale([scale])
Get or set the projection's scale factor.
# mercator.translate([offset])
Get or set the projection's translate offset.
# d3.geo.albers()
Construct a new Albers equal-area conic projection.
# albers(position)
Project the specified position.
# albers.origin([origin])
Get or set the projection's origin.
# albers.parallels([parallels])
Get or set the projection's two standard parallels.
# albers.scale([scale])
Get or set the projection's scale factor.
# albers.translate([offset])
Get or set the projection's translate offset.
# d3.geo.albersUsa()
Construct a new composite Albers projection for the United States.
# albersUsa(position)
Project the specified position.
# albersUsa.scale([scale])
Get or set the projection's scale factor.
# albersUsa.translate([offset])
Get or set the projection's translate offset.
# d3.geo.azimuthal()
Construct a new Azimuthal (orthographic or stereographic) projection.
# azimuthal(position)
Project the specified position.
# azimuthal.mode([mode])
Get or set the projection's mode (orthographic or stereographic).
# azimuthal.origin([origin])
Get or set the projection's origin.
# azimuthal.scale([scale])
Get or set the projection's scale factor.
# azimuthal.translate([offset])
Get or set the projection's translate offset.