geo-albers-usa-territories icon indicating copy to clipboard operation
geo-albers-usa-territories copied to clipboard

A map projection including all US overseas possessions

Results 8 geo-albers-usa-territories issues
Sort by recently updated
recently updated
newest added

Just like the input json, I am looking for the final albers output with adjusted locations of territories in geojson format. Is there anyway I can export the final output?...

I think it would be more useful if the territories were larger. For Puerto Rico, it looks like a larger version would fit in the Gulf of Mexico between TX...

I notice this projection does not implement `fitExtent`.

It would be lovely to be able to select specific territories to use in the projection, for example, only Puerto Rico. If you selected certain territories, the projection could change...

Related to https://github.com/d3/d3-geo/issues/217 Closes #6

Currently you need to say ```js const projection = geoAlbersUsaTerritories.geoAlbersUsaTerritories(); ``` Ideally it would be: ```js const projection = geoAlbersUsaTerritories(); ``` ... or maybe ```js const projection = d3.geoAlbersUsaTerritories(); ```

Idea: the projection should be made available as an NPM package. How to get there: * [x] Initialize `package.json` * [x] use Rollup to generate CommonJS and Browser builds. *...

As a TypeScript user, I want to be able to import this library without issue. This works: `geo-albers-usa-territories.d.ts` ```ts import { GeoProjection } from "d3-geo"; declare module "geo-albers-usa-territories" { export...