Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Projections #30

Closed
13 tasks done
mbostock opened this issue Jun 16, 2016 · 2 comments
Closed
13 tasks done

Projections #30

mbostock opened this issue Jun 16, 2016 · 2 comments
Assignees

Comments

@mbostock
Copy link
Member

mbostock commented Jun 16, 2016

  • d3.geo.albers
  • d3.geo.albersUsa
  • d3.geo.azimuthalEqualArea
  • d3.geo.azimuthalEquidistant
  • d3.geo.conicConformal
  • d3.geo.conicEquidistant
  • d3.geo.conicEqualArea
  • d3.geo.equirectangular
  • d3.geo.gnomonic
  • d3.geo.mercator
  • d3.geo.orthographic
  • d3.geo.stereographic
  • d3.geo.transverseMercator
@mbostock mbostock changed the title d3.geo.albers Projections Jun 16, 2016
@mbostock mbostock self-assigned this Jun 17, 2016
@curran
Copy link
Contributor

curran commented Jun 18, 2016

Here's a workaround for using projections from 3.X in 4.X in the mean time (example).

<script src="//d3js.org/d3.v3.min.js"></script>
<script> var d3GeoMercator = d3.geo.mercator;</script>

<script src="//d3js.org/d3.v4.0.0-alpha.49.min.js"></script>
<script> d3.geoMercator = d3GeoMercator; </script>

@mbostock
Copy link
Member Author

Done!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants