├── .eslintrc.json ├── .github ├── eslint.json └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── geo2svg.js ├── geograticule.js ├── geoproject.js ├── geoquantize.js ├── geostitch.js ├── read.js └── write.js ├── img ├── airy.png ├── aitoff.png ├── armadillo.png ├── august.png ├── baker.png ├── berghaus.png ├── bertin1953.png ├── boggs.png ├── bonne.png ├── bottomley.png ├── bromley.png ├── chamberlinAfrica.png ├── collignon.png ├── craig.png ├── craster.png ├── cylindricalEqualArea.png ├── cylindricalStereographic.png ├── eckert1.png ├── eckert2.png ├── eckert3.png ├── eckert4.png ├── eckert5.png ├── eckert6.png ├── eisenlohr.png ├── fahey.png ├── foucaut.png ├── foucautSinusoidal.png ├── gilbert.png ├── gingery.png ├── ginzburg4.png ├── ginzburg5.png ├── ginzburg6.png ├── ginzburg8.png ├── ginzburg9.png ├── gringorten.png ├── gringortenQuincuncial.png ├── guyou.png ├── hammer.png ├── hammerRetroazimuthal.png ├── healpix.png ├── hill.png ├── homolosine.png ├── hufnagel.png ├── hyperelliptical.png ├── interruptedBoggs.png ├── interruptedHomolosine.png ├── interruptedMollweide.png ├── interruptedMollweideHemispheres.png ├── interruptedQuarticAuthalic.png ├── interruptedSinuMollweide.png ├── interruptedSinusoidal.png ├── kavrayskiy7.png ├── lagrange.png ├── larrivee.png ├── laskowski.png ├── littrow.png ├── loximuthal.png ├── miller.png ├── modifiedStereographicAlaska.png ├── modifiedStereographicGs48.png ├── modifiedStereographicGs50.png ├── modifiedStereographicLee.png ├── modifiedStereographicMiller.png ├── mollweide.png ├── mtFlatPolarParabolic.png ├── mtFlatPolarQuartic.png ├── mtFlatPolarSinusoidal.png ├── naturalEarth.png ├── naturalEarth2.png ├── nellHammer.png ├── nicolosi.png ├── patterson.png ├── peirceQuincuncial.png ├── polyconic.png ├── polyhedralButterfly.png ├── polyhedralCollignon.png ├── polyhedralWaterman.png ├── rectangularPolyconic.png ├── robinson.png ├── satellite.png ├── sinuMollweide.png ├── sinusoidal.png ├── times.png ├── twoPointAzimuthalUsa.png ├── twoPointEquidistantUsa.png ├── vanDerGrinten.png ├── vanDerGrinten2.png ├── vanDerGrinten3.png ├── vanDerGrinten4.png ├── wagner.png ├── wagner4.png ├── wagner6.png ├── wagner7.png ├── wiechel.png └── winkel3.png ├── package.json ├── rollup.config.js ├── src ├── airy.js ├── aitoff.js ├── armadillo.js ├── august.js ├── baker.js ├── berghaus.js ├── bertin.js ├── boggs.js ├── bonne.js ├── bottomley.js ├── bromley.js ├── chamberlin.js ├── collignon.js ├── craig.js ├── craster.js ├── cylindricalEqualArea.js ├── cylindricalStereographic.js ├── eckert1.js ├── eckert2.js ├── eckert3.js ├── eckert4.js ├── eckert5.js ├── eckert6.js ├── eisenlohr.js ├── elliptic.js ├── fahey.js ├── foucaut.js ├── foucautSinusoidal.js ├── gilbert.js ├── gingery.js ├── ginzburg4.js ├── ginzburg5.js ├── ginzburg6.js ├── ginzburg8.js ├── ginzburg9.js ├── ginzburgPolyconic.js ├── gringorten.js ├── guyou.js ├── hammer.js ├── hammerRetroazimuthal.js ├── healpix.js ├── hill.js ├── homolosine.js ├── hufnagel.js ├── hyperelliptical.js ├── index.js ├── integrate.js ├── interrupted │ ├── boggs.js │ ├── homolosine.js │ ├── index.js │ ├── mollweide.js │ ├── mollweideHemispheres.js │ ├── quarticAuthalic.js │ ├── sinuMollweide.js │ └── sinusoidal.js ├── kavrayskiy7.js ├── lagrange.js ├── larrivee.js ├── laskowski.js ├── littrow.js ├── loximuthal.js ├── math.js ├── miller.js ├── modifiedStereographic.js ├── mollweide.js ├── mtFlatPolarParabolic.js ├── mtFlatPolarQuartic.js ├── mtFlatPolarSinusoidal.js ├── naturalEarth2.js ├── nellHammer.js ├── newton.js ├── nicolosi.js ├── noop.js ├── parallel1.js ├── patterson.js ├── polyconic.js ├── polyhedral │ ├── butterfly.js │ ├── collignon.js │ ├── cube.js │ ├── index.js │ ├── matrix.js │ ├── octahedron.js │ └── waterman.js ├── project │ ├── clockwise.js │ ├── contains.js │ └── index.js ├── quantize.js ├── quincuncial │ ├── gringorten.js │ ├── index.js │ └── peirce.js ├── rectangularPolyconic.js ├── robinson.js ├── satellite.js ├── sinuMollweide.js ├── sinusoidal.js ├── square.js ├── stitch.js ├── times.js ├── twoPoint.js ├── twoPointAzimuthal.js ├── twoPointEquidistant.js ├── vanDerGrinten.js ├── vanDerGrinten2.js ├── vanDerGrinten3.js ├── vanDerGrinten4.js ├── wagner.js ├── wagner4.js ├── wagner6.js ├── wagner7.js ├── wiechel.js └── winkel3.js ├── test ├── .eslintrc.json ├── airy-test.js ├── aitoff-test.js ├── armadillo-test.js ├── asserts.js ├── august-test.js ├── baker-test.js ├── berghaus-test.js ├── boggs-test.js ├── bottomley-test.js ├── compute-scale.js ├── craig-test.js ├── craster-test.js ├── data │ ├── stitched-antarctica.json │ ├── stitched-fiji.json │ ├── stitched-russia.json │ ├── unstitched-antarctica.json │ ├── unstitched-fiji.json │ └── unstitched-russia.json ├── gilbert-test.js ├── invert-test.js ├── mollweide-test.js ├── quantize-test.js ├── snapshot-test.js ├── snapshots.js ├── snapshots │ ├── airy.png │ ├── aitoff.png │ ├── armadillo.png │ ├── august.png │ ├── baker.png │ ├── berghaus.png │ ├── bertin1953.png │ ├── boggs.png │ ├── bonne.png │ ├── bottomley.png │ ├── bromley.png │ ├── chamberlinAfrica.png │ ├── collignon.png │ ├── craig.png │ ├── craster.png │ ├── cylindricalEqualArea.png │ ├── cylindricalStereographic.png │ ├── eckert1.png │ ├── eckert2.png │ ├── eckert3.png │ ├── eckert4.png │ ├── eckert5.png │ ├── eckert6.png │ ├── eisenlohr.png │ ├── fahey.png │ ├── foucaut.png │ ├── foucautSinusoidal.png │ ├── gilbert.png │ ├── gingery.png │ ├── ginzburg4.png │ ├── ginzburg5.png │ ├── ginzburg6.png │ ├── ginzburg8.png │ ├── ginzburg9.png │ ├── gringorten.png │ ├── gringortenQuincuncial.png │ ├── guyou.png │ ├── hammer.png │ ├── hammerRetroazimuthal.png │ ├── healpix.png │ ├── hill.png │ ├── homolosine.png │ ├── hufnagel.png │ ├── hyperelliptical.png │ ├── interruptedBoggs.png │ ├── interruptedHomolosine.png │ ├── interruptedMollweide.png │ ├── interruptedMollweideHemispheres.png │ ├── interruptedQuarticAuthalic.png │ ├── interruptedSinuMollweide.png │ ├── interruptedSinusoidal.png │ ├── kavrayskiy7.png │ ├── lagrange.png │ ├── larrivee.png │ ├── laskowski.png │ ├── littrow.png │ ├── loximuthal.png │ ├── miller.png │ ├── modifiedStereographicAlaska.png │ ├── modifiedStereographicGs48.png │ ├── modifiedStereographicGs50.png │ ├── modifiedStereographicLee.png │ ├── modifiedStereographicMiller.png │ ├── mollweide.png │ ├── mtFlatPolarParabolic.png │ ├── mtFlatPolarQuartic.png │ ├── mtFlatPolarSinusoidal.png │ ├── naturalEarth2.png │ ├── nellHammer.png │ ├── nicolosi.png │ ├── patterson.png │ ├── peirceQuincuncial.png │ ├── polyconic.png │ ├── polyhedralButterfly.png │ ├── polyhedralCollignon.png │ ├── polyhedralWaterman.png │ ├── rectangularPolyconic.png │ ├── robinson.png │ ├── satellite.png │ ├── sinuMollweide.png │ ├── sinusoidal.png │ ├── times.png │ ├── twoPointAzimuthalUsa.png │ ├── twoPointEquidistantUsa.png │ ├── vanDerGrinten.png │ ├── vanDerGrinten2.png │ ├── vanDerGrinten3.png │ ├── vanDerGrinten4.png │ ├── wagner.png │ ├── wagner4.png │ ├── wagner6.png │ ├── wagner7.png │ ├── wiechel.png │ └── winkel3.png ├── stitch-test.js └── winkel3-test.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/.github/eslint.json -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | dist/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/README.md -------------------------------------------------------------------------------- /bin/geo2svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/geo2svg.js -------------------------------------------------------------------------------- /bin/geograticule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/geograticule.js -------------------------------------------------------------------------------- /bin/geoproject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/geoproject.js -------------------------------------------------------------------------------- /bin/geoquantize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/geoquantize.js -------------------------------------------------------------------------------- /bin/geostitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/geostitch.js -------------------------------------------------------------------------------- /bin/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/read.js -------------------------------------------------------------------------------- /bin/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/bin/write.js -------------------------------------------------------------------------------- /img/airy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/airy.png -------------------------------------------------------------------------------- /img/aitoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/aitoff.png -------------------------------------------------------------------------------- /img/armadillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/armadillo.png -------------------------------------------------------------------------------- /img/august.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/august.png -------------------------------------------------------------------------------- /img/baker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/baker.png -------------------------------------------------------------------------------- /img/berghaus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/berghaus.png -------------------------------------------------------------------------------- /img/bertin1953.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/bertin1953.png -------------------------------------------------------------------------------- /img/boggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/boggs.png -------------------------------------------------------------------------------- /img/bonne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/bonne.png -------------------------------------------------------------------------------- /img/bottomley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/bottomley.png -------------------------------------------------------------------------------- /img/bromley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/bromley.png -------------------------------------------------------------------------------- /img/chamberlinAfrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/chamberlinAfrica.png -------------------------------------------------------------------------------- /img/collignon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/collignon.png -------------------------------------------------------------------------------- /img/craig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/craig.png -------------------------------------------------------------------------------- /img/craster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/craster.png -------------------------------------------------------------------------------- /img/cylindricalEqualArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/cylindricalEqualArea.png -------------------------------------------------------------------------------- /img/cylindricalStereographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/cylindricalStereographic.png -------------------------------------------------------------------------------- /img/eckert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert1.png -------------------------------------------------------------------------------- /img/eckert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert2.png -------------------------------------------------------------------------------- /img/eckert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert3.png -------------------------------------------------------------------------------- /img/eckert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert4.png -------------------------------------------------------------------------------- /img/eckert5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert5.png -------------------------------------------------------------------------------- /img/eckert6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eckert6.png -------------------------------------------------------------------------------- /img/eisenlohr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/eisenlohr.png -------------------------------------------------------------------------------- /img/fahey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/fahey.png -------------------------------------------------------------------------------- /img/foucaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/foucaut.png -------------------------------------------------------------------------------- /img/foucautSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/foucautSinusoidal.png -------------------------------------------------------------------------------- /img/gilbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/gilbert.png -------------------------------------------------------------------------------- /img/gingery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/gingery.png -------------------------------------------------------------------------------- /img/ginzburg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/ginzburg4.png -------------------------------------------------------------------------------- /img/ginzburg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/ginzburg5.png -------------------------------------------------------------------------------- /img/ginzburg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/ginzburg6.png -------------------------------------------------------------------------------- /img/ginzburg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/ginzburg8.png -------------------------------------------------------------------------------- /img/ginzburg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/ginzburg9.png -------------------------------------------------------------------------------- /img/gringorten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/gringorten.png -------------------------------------------------------------------------------- /img/gringortenQuincuncial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/gringortenQuincuncial.png -------------------------------------------------------------------------------- /img/guyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/guyou.png -------------------------------------------------------------------------------- /img/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/hammer.png -------------------------------------------------------------------------------- /img/hammerRetroazimuthal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/hammerRetroazimuthal.png -------------------------------------------------------------------------------- /img/healpix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/healpix.png -------------------------------------------------------------------------------- /img/hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/hill.png -------------------------------------------------------------------------------- /img/homolosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/homolosine.png -------------------------------------------------------------------------------- /img/hufnagel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/hufnagel.png -------------------------------------------------------------------------------- /img/hyperelliptical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/hyperelliptical.png -------------------------------------------------------------------------------- /img/interruptedBoggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedBoggs.png -------------------------------------------------------------------------------- /img/interruptedHomolosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedHomolosine.png -------------------------------------------------------------------------------- /img/interruptedMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedMollweide.png -------------------------------------------------------------------------------- /img/interruptedMollweideHemispheres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedMollweideHemispheres.png -------------------------------------------------------------------------------- /img/interruptedQuarticAuthalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedQuarticAuthalic.png -------------------------------------------------------------------------------- /img/interruptedSinuMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedSinuMollweide.png -------------------------------------------------------------------------------- /img/interruptedSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/interruptedSinusoidal.png -------------------------------------------------------------------------------- /img/kavrayskiy7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/kavrayskiy7.png -------------------------------------------------------------------------------- /img/lagrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/lagrange.png -------------------------------------------------------------------------------- /img/larrivee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/larrivee.png -------------------------------------------------------------------------------- /img/laskowski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/laskowski.png -------------------------------------------------------------------------------- /img/littrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/littrow.png -------------------------------------------------------------------------------- /img/loximuthal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/loximuthal.png -------------------------------------------------------------------------------- /img/miller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/miller.png -------------------------------------------------------------------------------- /img/modifiedStereographicAlaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/modifiedStereographicAlaska.png -------------------------------------------------------------------------------- /img/modifiedStereographicGs48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/modifiedStereographicGs48.png -------------------------------------------------------------------------------- /img/modifiedStereographicGs50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/modifiedStereographicGs50.png -------------------------------------------------------------------------------- /img/modifiedStereographicLee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/modifiedStereographicLee.png -------------------------------------------------------------------------------- /img/modifiedStereographicMiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/modifiedStereographicMiller.png -------------------------------------------------------------------------------- /img/mollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/mollweide.png -------------------------------------------------------------------------------- /img/mtFlatPolarParabolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/mtFlatPolarParabolic.png -------------------------------------------------------------------------------- /img/mtFlatPolarQuartic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/mtFlatPolarQuartic.png -------------------------------------------------------------------------------- /img/mtFlatPolarSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/mtFlatPolarSinusoidal.png -------------------------------------------------------------------------------- /img/naturalEarth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/naturalEarth.png -------------------------------------------------------------------------------- /img/naturalEarth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/naturalEarth2.png -------------------------------------------------------------------------------- /img/nellHammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/nellHammer.png -------------------------------------------------------------------------------- /img/nicolosi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/nicolosi.png -------------------------------------------------------------------------------- /img/patterson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/patterson.png -------------------------------------------------------------------------------- /img/peirceQuincuncial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/peirceQuincuncial.png -------------------------------------------------------------------------------- /img/polyconic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/polyconic.png -------------------------------------------------------------------------------- /img/polyhedralButterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/polyhedralButterfly.png -------------------------------------------------------------------------------- /img/polyhedralCollignon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/polyhedralCollignon.png -------------------------------------------------------------------------------- /img/polyhedralWaterman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/polyhedralWaterman.png -------------------------------------------------------------------------------- /img/rectangularPolyconic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/rectangularPolyconic.png -------------------------------------------------------------------------------- /img/robinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/robinson.png -------------------------------------------------------------------------------- /img/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/satellite.png -------------------------------------------------------------------------------- /img/sinuMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/sinuMollweide.png -------------------------------------------------------------------------------- /img/sinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/sinusoidal.png -------------------------------------------------------------------------------- /img/times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/times.png -------------------------------------------------------------------------------- /img/twoPointAzimuthalUsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/twoPointAzimuthalUsa.png -------------------------------------------------------------------------------- /img/twoPointEquidistantUsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/twoPointEquidistantUsa.png -------------------------------------------------------------------------------- /img/vanDerGrinten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/vanDerGrinten.png -------------------------------------------------------------------------------- /img/vanDerGrinten2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/vanDerGrinten2.png -------------------------------------------------------------------------------- /img/vanDerGrinten3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/vanDerGrinten3.png -------------------------------------------------------------------------------- /img/vanDerGrinten4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/vanDerGrinten4.png -------------------------------------------------------------------------------- /img/wagner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/wagner.png -------------------------------------------------------------------------------- /img/wagner4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/wagner4.png -------------------------------------------------------------------------------- /img/wagner6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/wagner6.png -------------------------------------------------------------------------------- /img/wagner7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/wagner7.png -------------------------------------------------------------------------------- /img/wiechel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/wiechel.png -------------------------------------------------------------------------------- /img/winkel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/img/winkel3.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/airy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/airy.js -------------------------------------------------------------------------------- /src/aitoff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/aitoff.js -------------------------------------------------------------------------------- /src/armadillo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/armadillo.js -------------------------------------------------------------------------------- /src/august.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/august.js -------------------------------------------------------------------------------- /src/baker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/baker.js -------------------------------------------------------------------------------- /src/berghaus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/berghaus.js -------------------------------------------------------------------------------- /src/bertin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/bertin.js -------------------------------------------------------------------------------- /src/boggs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/boggs.js -------------------------------------------------------------------------------- /src/bonne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/bonne.js -------------------------------------------------------------------------------- /src/bottomley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/bottomley.js -------------------------------------------------------------------------------- /src/bromley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/bromley.js -------------------------------------------------------------------------------- /src/chamberlin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/chamberlin.js -------------------------------------------------------------------------------- /src/collignon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/collignon.js -------------------------------------------------------------------------------- /src/craig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/craig.js -------------------------------------------------------------------------------- /src/craster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/craster.js -------------------------------------------------------------------------------- /src/cylindricalEqualArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/cylindricalEqualArea.js -------------------------------------------------------------------------------- /src/cylindricalStereographic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/cylindricalStereographic.js -------------------------------------------------------------------------------- /src/eckert1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert1.js -------------------------------------------------------------------------------- /src/eckert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert2.js -------------------------------------------------------------------------------- /src/eckert3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert3.js -------------------------------------------------------------------------------- /src/eckert4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert4.js -------------------------------------------------------------------------------- /src/eckert5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert5.js -------------------------------------------------------------------------------- /src/eckert6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eckert6.js -------------------------------------------------------------------------------- /src/eisenlohr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/eisenlohr.js -------------------------------------------------------------------------------- /src/elliptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/elliptic.js -------------------------------------------------------------------------------- /src/fahey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/fahey.js -------------------------------------------------------------------------------- /src/foucaut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/foucaut.js -------------------------------------------------------------------------------- /src/foucautSinusoidal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/foucautSinusoidal.js -------------------------------------------------------------------------------- /src/gilbert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/gilbert.js -------------------------------------------------------------------------------- /src/gingery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/gingery.js -------------------------------------------------------------------------------- /src/ginzburg4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburg4.js -------------------------------------------------------------------------------- /src/ginzburg5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburg5.js -------------------------------------------------------------------------------- /src/ginzburg6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburg6.js -------------------------------------------------------------------------------- /src/ginzburg8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburg8.js -------------------------------------------------------------------------------- /src/ginzburg9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburg9.js -------------------------------------------------------------------------------- /src/ginzburgPolyconic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/ginzburgPolyconic.js -------------------------------------------------------------------------------- /src/gringorten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/gringorten.js -------------------------------------------------------------------------------- /src/guyou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/guyou.js -------------------------------------------------------------------------------- /src/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/hammer.js -------------------------------------------------------------------------------- /src/hammerRetroazimuthal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/hammerRetroazimuthal.js -------------------------------------------------------------------------------- /src/healpix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/healpix.js -------------------------------------------------------------------------------- /src/hill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/hill.js -------------------------------------------------------------------------------- /src/homolosine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/homolosine.js -------------------------------------------------------------------------------- /src/hufnagel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/hufnagel.js -------------------------------------------------------------------------------- /src/hyperelliptical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/hyperelliptical.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/index.js -------------------------------------------------------------------------------- /src/integrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/integrate.js -------------------------------------------------------------------------------- /src/interrupted/boggs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/boggs.js -------------------------------------------------------------------------------- /src/interrupted/homolosine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/homolosine.js -------------------------------------------------------------------------------- /src/interrupted/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/index.js -------------------------------------------------------------------------------- /src/interrupted/mollweide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/mollweide.js -------------------------------------------------------------------------------- /src/interrupted/mollweideHemispheres.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/mollweideHemispheres.js -------------------------------------------------------------------------------- /src/interrupted/quarticAuthalic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/quarticAuthalic.js -------------------------------------------------------------------------------- /src/interrupted/sinuMollweide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/sinuMollweide.js -------------------------------------------------------------------------------- /src/interrupted/sinusoidal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/interrupted/sinusoidal.js -------------------------------------------------------------------------------- /src/kavrayskiy7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/kavrayskiy7.js -------------------------------------------------------------------------------- /src/lagrange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/lagrange.js -------------------------------------------------------------------------------- /src/larrivee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/larrivee.js -------------------------------------------------------------------------------- /src/laskowski.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/laskowski.js -------------------------------------------------------------------------------- /src/littrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/littrow.js -------------------------------------------------------------------------------- /src/loximuthal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/loximuthal.js -------------------------------------------------------------------------------- /src/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/math.js -------------------------------------------------------------------------------- /src/miller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/miller.js -------------------------------------------------------------------------------- /src/modifiedStereographic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/modifiedStereographic.js -------------------------------------------------------------------------------- /src/mollweide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/mollweide.js -------------------------------------------------------------------------------- /src/mtFlatPolarParabolic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/mtFlatPolarParabolic.js -------------------------------------------------------------------------------- /src/mtFlatPolarQuartic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/mtFlatPolarQuartic.js -------------------------------------------------------------------------------- /src/mtFlatPolarSinusoidal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/mtFlatPolarSinusoidal.js -------------------------------------------------------------------------------- /src/naturalEarth2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/naturalEarth2.js -------------------------------------------------------------------------------- /src/nellHammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/nellHammer.js -------------------------------------------------------------------------------- /src/newton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/newton.js -------------------------------------------------------------------------------- /src/nicolosi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/nicolosi.js -------------------------------------------------------------------------------- /src/noop.js: -------------------------------------------------------------------------------- 1 | export default () => {} 2 | -------------------------------------------------------------------------------- /src/parallel1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/parallel1.js -------------------------------------------------------------------------------- /src/patterson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/patterson.js -------------------------------------------------------------------------------- /src/polyconic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyconic.js -------------------------------------------------------------------------------- /src/polyhedral/butterfly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/butterfly.js -------------------------------------------------------------------------------- /src/polyhedral/collignon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/collignon.js -------------------------------------------------------------------------------- /src/polyhedral/cube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/cube.js -------------------------------------------------------------------------------- /src/polyhedral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/index.js -------------------------------------------------------------------------------- /src/polyhedral/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/matrix.js -------------------------------------------------------------------------------- /src/polyhedral/octahedron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/octahedron.js -------------------------------------------------------------------------------- /src/polyhedral/waterman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/polyhedral/waterman.js -------------------------------------------------------------------------------- /src/project/clockwise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/project/clockwise.js -------------------------------------------------------------------------------- /src/project/contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/project/contains.js -------------------------------------------------------------------------------- /src/project/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/project/index.js -------------------------------------------------------------------------------- /src/quantize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/quantize.js -------------------------------------------------------------------------------- /src/quincuncial/gringorten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/quincuncial/gringorten.js -------------------------------------------------------------------------------- /src/quincuncial/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/quincuncial/index.js -------------------------------------------------------------------------------- /src/quincuncial/peirce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/quincuncial/peirce.js -------------------------------------------------------------------------------- /src/rectangularPolyconic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/rectangularPolyconic.js -------------------------------------------------------------------------------- /src/robinson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/robinson.js -------------------------------------------------------------------------------- /src/satellite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/satellite.js -------------------------------------------------------------------------------- /src/sinuMollweide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/sinuMollweide.js -------------------------------------------------------------------------------- /src/sinusoidal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/sinusoidal.js -------------------------------------------------------------------------------- /src/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/square.js -------------------------------------------------------------------------------- /src/stitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/stitch.js -------------------------------------------------------------------------------- /src/times.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/times.js -------------------------------------------------------------------------------- /src/twoPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/twoPoint.js -------------------------------------------------------------------------------- /src/twoPointAzimuthal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/twoPointAzimuthal.js -------------------------------------------------------------------------------- /src/twoPointEquidistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/twoPointEquidistant.js -------------------------------------------------------------------------------- /src/vanDerGrinten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/vanDerGrinten.js -------------------------------------------------------------------------------- /src/vanDerGrinten2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/vanDerGrinten2.js -------------------------------------------------------------------------------- /src/vanDerGrinten3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/vanDerGrinten3.js -------------------------------------------------------------------------------- /src/vanDerGrinten4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/vanDerGrinten4.js -------------------------------------------------------------------------------- /src/wagner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/wagner.js -------------------------------------------------------------------------------- /src/wagner4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/wagner4.js -------------------------------------------------------------------------------- /src/wagner6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/wagner6.js -------------------------------------------------------------------------------- /src/wagner7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/wagner7.js -------------------------------------------------------------------------------- /src/wiechel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/wiechel.js -------------------------------------------------------------------------------- /src/winkel3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/src/winkel3.js -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/airy-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/airy-test.js -------------------------------------------------------------------------------- /test/aitoff-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/aitoff-test.js -------------------------------------------------------------------------------- /test/armadillo-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/armadillo-test.js -------------------------------------------------------------------------------- /test/asserts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/asserts.js -------------------------------------------------------------------------------- /test/august-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/august-test.js -------------------------------------------------------------------------------- /test/baker-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/baker-test.js -------------------------------------------------------------------------------- /test/berghaus-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/berghaus-test.js -------------------------------------------------------------------------------- /test/boggs-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/boggs-test.js -------------------------------------------------------------------------------- /test/bottomley-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/bottomley-test.js -------------------------------------------------------------------------------- /test/compute-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/compute-scale.js -------------------------------------------------------------------------------- /test/craig-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/craig-test.js -------------------------------------------------------------------------------- /test/craster-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/craster-test.js -------------------------------------------------------------------------------- /test/data/stitched-antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/stitched-antarctica.json -------------------------------------------------------------------------------- /test/data/stitched-fiji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/stitched-fiji.json -------------------------------------------------------------------------------- /test/data/stitched-russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/stitched-russia.json -------------------------------------------------------------------------------- /test/data/unstitched-antarctica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/unstitched-antarctica.json -------------------------------------------------------------------------------- /test/data/unstitched-fiji.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/unstitched-fiji.json -------------------------------------------------------------------------------- /test/data/unstitched-russia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/data/unstitched-russia.json -------------------------------------------------------------------------------- /test/gilbert-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/gilbert-test.js -------------------------------------------------------------------------------- /test/invert-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/invert-test.js -------------------------------------------------------------------------------- /test/mollweide-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/mollweide-test.js -------------------------------------------------------------------------------- /test/quantize-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/quantize-test.js -------------------------------------------------------------------------------- /test/snapshot-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshot-test.js -------------------------------------------------------------------------------- /test/snapshots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots.js -------------------------------------------------------------------------------- /test/snapshots/airy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/airy.png -------------------------------------------------------------------------------- /test/snapshots/aitoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/aitoff.png -------------------------------------------------------------------------------- /test/snapshots/armadillo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/armadillo.png -------------------------------------------------------------------------------- /test/snapshots/august.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/august.png -------------------------------------------------------------------------------- /test/snapshots/baker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/baker.png -------------------------------------------------------------------------------- /test/snapshots/berghaus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/berghaus.png -------------------------------------------------------------------------------- /test/snapshots/bertin1953.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/bertin1953.png -------------------------------------------------------------------------------- /test/snapshots/boggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/boggs.png -------------------------------------------------------------------------------- /test/snapshots/bonne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/bonne.png -------------------------------------------------------------------------------- /test/snapshots/bottomley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/bottomley.png -------------------------------------------------------------------------------- /test/snapshots/bromley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/bromley.png -------------------------------------------------------------------------------- /test/snapshots/chamberlinAfrica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/chamberlinAfrica.png -------------------------------------------------------------------------------- /test/snapshots/collignon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/collignon.png -------------------------------------------------------------------------------- /test/snapshots/craig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/craig.png -------------------------------------------------------------------------------- /test/snapshots/craster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/craster.png -------------------------------------------------------------------------------- /test/snapshots/cylindricalEqualArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/cylindricalEqualArea.png -------------------------------------------------------------------------------- /test/snapshots/cylindricalStereographic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/cylindricalStereographic.png -------------------------------------------------------------------------------- /test/snapshots/eckert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert1.png -------------------------------------------------------------------------------- /test/snapshots/eckert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert2.png -------------------------------------------------------------------------------- /test/snapshots/eckert3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert3.png -------------------------------------------------------------------------------- /test/snapshots/eckert4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert4.png -------------------------------------------------------------------------------- /test/snapshots/eckert5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert5.png -------------------------------------------------------------------------------- /test/snapshots/eckert6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eckert6.png -------------------------------------------------------------------------------- /test/snapshots/eisenlohr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/eisenlohr.png -------------------------------------------------------------------------------- /test/snapshots/fahey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/fahey.png -------------------------------------------------------------------------------- /test/snapshots/foucaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/foucaut.png -------------------------------------------------------------------------------- /test/snapshots/foucautSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/foucautSinusoidal.png -------------------------------------------------------------------------------- /test/snapshots/gilbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/gilbert.png -------------------------------------------------------------------------------- /test/snapshots/gingery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/gingery.png -------------------------------------------------------------------------------- /test/snapshots/ginzburg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/ginzburg4.png -------------------------------------------------------------------------------- /test/snapshots/ginzburg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/ginzburg5.png -------------------------------------------------------------------------------- /test/snapshots/ginzburg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/ginzburg6.png -------------------------------------------------------------------------------- /test/snapshots/ginzburg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/ginzburg8.png -------------------------------------------------------------------------------- /test/snapshots/ginzburg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/ginzburg9.png -------------------------------------------------------------------------------- /test/snapshots/gringorten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/gringorten.png -------------------------------------------------------------------------------- /test/snapshots/gringortenQuincuncial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/gringortenQuincuncial.png -------------------------------------------------------------------------------- /test/snapshots/guyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/guyou.png -------------------------------------------------------------------------------- /test/snapshots/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/hammer.png -------------------------------------------------------------------------------- /test/snapshots/hammerRetroazimuthal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/hammerRetroazimuthal.png -------------------------------------------------------------------------------- /test/snapshots/healpix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/healpix.png -------------------------------------------------------------------------------- /test/snapshots/hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/hill.png -------------------------------------------------------------------------------- /test/snapshots/homolosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/homolosine.png -------------------------------------------------------------------------------- /test/snapshots/hufnagel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/hufnagel.png -------------------------------------------------------------------------------- /test/snapshots/hyperelliptical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/hyperelliptical.png -------------------------------------------------------------------------------- /test/snapshots/interruptedBoggs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedBoggs.png -------------------------------------------------------------------------------- /test/snapshots/interruptedHomolosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedHomolosine.png -------------------------------------------------------------------------------- /test/snapshots/interruptedMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedMollweide.png -------------------------------------------------------------------------------- /test/snapshots/interruptedMollweideHemispheres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedMollweideHemispheres.png -------------------------------------------------------------------------------- /test/snapshots/interruptedQuarticAuthalic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedQuarticAuthalic.png -------------------------------------------------------------------------------- /test/snapshots/interruptedSinuMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedSinuMollweide.png -------------------------------------------------------------------------------- /test/snapshots/interruptedSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/interruptedSinusoidal.png -------------------------------------------------------------------------------- /test/snapshots/kavrayskiy7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/kavrayskiy7.png -------------------------------------------------------------------------------- /test/snapshots/lagrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/lagrange.png -------------------------------------------------------------------------------- /test/snapshots/larrivee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/larrivee.png -------------------------------------------------------------------------------- /test/snapshots/laskowski.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/laskowski.png -------------------------------------------------------------------------------- /test/snapshots/littrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/littrow.png -------------------------------------------------------------------------------- /test/snapshots/loximuthal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/loximuthal.png -------------------------------------------------------------------------------- /test/snapshots/miller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/miller.png -------------------------------------------------------------------------------- /test/snapshots/modifiedStereographicAlaska.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/modifiedStereographicAlaska.png -------------------------------------------------------------------------------- /test/snapshots/modifiedStereographicGs48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/modifiedStereographicGs48.png -------------------------------------------------------------------------------- /test/snapshots/modifiedStereographicGs50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/modifiedStereographicGs50.png -------------------------------------------------------------------------------- /test/snapshots/modifiedStereographicLee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/modifiedStereographicLee.png -------------------------------------------------------------------------------- /test/snapshots/modifiedStereographicMiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/modifiedStereographicMiller.png -------------------------------------------------------------------------------- /test/snapshots/mollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/mollweide.png -------------------------------------------------------------------------------- /test/snapshots/mtFlatPolarParabolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/mtFlatPolarParabolic.png -------------------------------------------------------------------------------- /test/snapshots/mtFlatPolarQuartic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/mtFlatPolarQuartic.png -------------------------------------------------------------------------------- /test/snapshots/mtFlatPolarSinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/mtFlatPolarSinusoidal.png -------------------------------------------------------------------------------- /test/snapshots/naturalEarth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/naturalEarth2.png -------------------------------------------------------------------------------- /test/snapshots/nellHammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/nellHammer.png -------------------------------------------------------------------------------- /test/snapshots/nicolosi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/nicolosi.png -------------------------------------------------------------------------------- /test/snapshots/patterson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/patterson.png -------------------------------------------------------------------------------- /test/snapshots/peirceQuincuncial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/peirceQuincuncial.png -------------------------------------------------------------------------------- /test/snapshots/polyconic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/polyconic.png -------------------------------------------------------------------------------- /test/snapshots/polyhedralButterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/polyhedralButterfly.png -------------------------------------------------------------------------------- /test/snapshots/polyhedralCollignon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/polyhedralCollignon.png -------------------------------------------------------------------------------- /test/snapshots/polyhedralWaterman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/polyhedralWaterman.png -------------------------------------------------------------------------------- /test/snapshots/rectangularPolyconic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/rectangularPolyconic.png -------------------------------------------------------------------------------- /test/snapshots/robinson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/robinson.png -------------------------------------------------------------------------------- /test/snapshots/satellite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/satellite.png -------------------------------------------------------------------------------- /test/snapshots/sinuMollweide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/sinuMollweide.png -------------------------------------------------------------------------------- /test/snapshots/sinusoidal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/sinusoidal.png -------------------------------------------------------------------------------- /test/snapshots/times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/times.png -------------------------------------------------------------------------------- /test/snapshots/twoPointAzimuthalUsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/twoPointAzimuthalUsa.png -------------------------------------------------------------------------------- /test/snapshots/twoPointEquidistantUsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/twoPointEquidistantUsa.png -------------------------------------------------------------------------------- /test/snapshots/vanDerGrinten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/vanDerGrinten.png -------------------------------------------------------------------------------- /test/snapshots/vanDerGrinten2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/vanDerGrinten2.png -------------------------------------------------------------------------------- /test/snapshots/vanDerGrinten3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/vanDerGrinten3.png -------------------------------------------------------------------------------- /test/snapshots/vanDerGrinten4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/vanDerGrinten4.png -------------------------------------------------------------------------------- /test/snapshots/wagner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/wagner.png -------------------------------------------------------------------------------- /test/snapshots/wagner4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/wagner4.png -------------------------------------------------------------------------------- /test/snapshots/wagner6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/wagner6.png -------------------------------------------------------------------------------- /test/snapshots/wagner7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/wagner7.png -------------------------------------------------------------------------------- /test/snapshots/wiechel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/wiechel.png -------------------------------------------------------------------------------- /test/snapshots/winkel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/snapshots/winkel3.png -------------------------------------------------------------------------------- /test/stitch-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/stitch-test.js -------------------------------------------------------------------------------- /test/winkel3-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/test/winkel3-test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d3/d3-geo-projection/HEAD/yarn.lock --------------------------------------------------------------------------------