Geo Paths - zziuni/d3 GitHub Wiki
Wiki βΈ API Reference βΈ Geo βΈ Geo Paths
For cartographic visualizations, D3 supports a handful of utilities for displaying and manipulating geographic data. These utilities are based on the GeoJSON formatβa standard way of representing geographic features in JavaScript. For example, GDAL includes the ogr2ogr tool which can convert binary shapefiles into GeoJSON; the shapefile is another common representation for geographic data, frequently used by the U.S. Census Bureau.
Some other tools you may be interested in:
- Shapely - manipulation of planar geometry objects.
- MapShaper and Bloch - shapefile simplification.
- ColorBrewer - color scales for maps.
- PostGIS - a geospatial database.
The primary mechanism for displaying geographic data is d3.geo.path. In many ways, this class is similar to d3.svg.line and the other SVG shape generators: given a geometry or feature object, it generates the path data string suitable for the "d" attribute of an SVG path element.
# d3.geo.path()
μ§λ¦¬ κ²½λ‘ μ λ€λ μ΄ν°λ₯Ό μλ‘ μμ±νλ€. κΈ°λ³Έκ°μ albersUsa ν¬μλ²κ³Ό λ°μ§λ¦ 4.5 ν½μ μ ν¬μΈνΈλ€.
# path(feature[, index])
Returns the path data string for the given feature, which may be any GeoJSON feature or geometry object:
- Point - a single position.
- MultiPoint - an array of positions.
- LineString - an array of positions forming a continuous line.
- MultiLineString - an array of arrays of positions forming several lines.
- Polygon - an array of arrays of positions forming a polygon (possibly with holes).
- MultiPolygon - a multidimensional array of positions forming multiple polygons.
- GeometryCollection - an array of geometry objects.
- Feature - a feature containing one of the above geometry objects.
- FeatureCollection - an array of feature objects.
For polygons, you should specify the style property "fill-rule" as "evenodd" on path elements. This ensures that geographic features with holes (such as South Africa surrounding Lesotho) are displayed correctly. To display multiple features, you can either place them in a single feature collection and a single path element, or create multiple distinct path elements:
vis.selectAll("path")
.data(features)
.enter().append("path")
.attr("d", d3.geo.path());
An optional index may be specified, which is passed along to the pointRadius accessor.
# path.projection([projection])
projection μΈμλ₯Ό μ§μ νλ©΄, ν¨μ€ μ λ€λ μ΄ν°λ‘ μ§μ ν projection ν¨μμ ν¬μλ² μ¬μ©νλ€. projection μΈμλ₯Ό μ§μ μνλ©΄, νμ¬ ν¬μλ²μ λ°ννλ€. κΈ°λ³Έκ°μ albersUsaλ€. μΌλ°μ μΌλ‘ ν¬μλ²μ D3μ λ΄μ₯λ projectionsμ€ νλμ§λ§ μ΄λ€ ν¨μλ μ¬μ©κ°λ₯νλ€. κ·Έ ν¨μλ [longitude(κ²½λ), latitude(μλ)]μ λ¨μΌ μ§μ μ’νλ₯Ό λνλ΄λ λκ°μ μμλ₯Ό κ°μ§ λ°°μ΄μ μΈμλ‘ λ°λλ€. κ·Έλ¦¬κ³ [x,y]μ ν¬μλ ν½μ μ§μ μ λνλ΄λ μμκ° λκ°μΈ λ°°μ΄μ λ°ννλ€. μλ₯Ό λ€μ΄ λ€μμ κΈ°μ΄μ μΈ κ΅¬λ©΄ Mercator ν¬μλ²(spherical Mercator projection)μ΄λ€.
function mercator(coordinates) {
return [
coordinates[0] / 360,
(-180 / Math.PI * Math.log(Math.tan(Math.PI / 4 + coordinates[1] * Math.PI / 360))) / 360
];
}
Proj4jsλ₯Ό μΆκ°νλ©΄ D3κ° μ§μνμ§ μλ ν¬μλ²μ μ¬μ©ν μ μλ€.
# path.area(feature)
Computes the projected area (in square pixels) for the specified feature. Point, MultiPoint, LineString and MultiLineString features are ignored, returning zero. For Polygon and MultiPolygon features, this method first computes the area of the exterior ring, and then subtracts the area of any interior holes.
# path.centroid(feature)
Computes the projected centroid (in pixels) for the specified feature. This method is currently only supported for Polygon and MultiPolygon features. This is handy for, say, labeling state or county boundaries, or displaying a symbol map. The noncontiguous cartogram example scales each state around its centroid.
# path.pointRadius([radius])
If radius is specified, sets the radius used to display Point and MultiPoint features to the specified number. If radius is not specified, returns the current radius. While the radius is commonly specified as a number constant, it may also be specified as a function which is computed per feature, being passed the feature and index arguments from the path function. For example, if your GeoJSON data has additional properties, you might access those properties inside the radius function to vary the point size; alternatively, you could d3.svg.symbol and a projection for more control over the display.
# d3.geo.bounds(feature)
Given a GeoJSON feature, returns the corresponding bounding box. The bounding box is represented by a two-dimensional array: [β[left, bottom], [right, top]β], where left is the minimum longitude, bottom is the minimum latitude, right is maximum longitude, and top is the maximum latitude.
# d3.geo.greatArc()
Constructs a new interpolator to approximate the shortest path between two geographic points, using a segment of a great circle.
# greatArc([β¦])
Returns a GeoJSON LineString approximating a great circle segment. If source and target accessors are in use, they will retrieve the source and target points from the given arguments. By default, they expect {source: β¦, target: β¦}
.
# greatArc.distance([β¦])
Returns the great circle distance along this great circle segment, in radians. If source and target accessors are in use, they will retrieve the source and target points from the given arguments. By default, they expect {source: β¦, target: β¦}
. To convert the angular distance to a linear one, simply multiply by the radius of the sphere, which is around 6,371km on average for Earth.
# greatArc.source([source])
If source is specified, sets the source-accessor to the specified function or constant point, [longitude, latitude]. If source is not specified, returns the current source-accessor. This accessor is invoked every time the interpolator is called. The default is function(d) { return d.source; }
.
# greatArc.target([target])
If target is specified, sets the target-accessor to the specified function or constant point, [longitude, latitude]. If source is not specified, returns the current target-accessor. This accessor is invoked every time the interpolator is called. The default is function(d) { return d.target; }
.
# greatArc.precision([precision])
If precision is specified, sets the maximum segment length of the interpolated path in degrees. If precision is not specified, returns the current precision, which defaults to 6Β°.
# d3.geo.greatCircle
# d3.geo.circle
Represents a geographic circle with arbitrary radius and origin, which can be used to clip geographic features. This is particularly useful for azimuthal projections.
# circle.origin([origin])
If origin is specified, sets the circle origin. A two-element coordinate array should be specified, or an accessor function. If origin is not specified, returns the current origin, which defaults to [0, 0]
.
# circle.angle([angle])
If angle is specified, sets the angular radius of the circle in degrees. If angle is not specified, returns the current radius, which defaults to 89.9Β°.
# circle.precision([precision])
If precision is specified, sets the precision of the interpolated circle segments in degrees. These interpolated segments are inserted when a feature is clipped by the circle.
If precision is not specified, returns the current precision, which defaults to 6Β°.
# circle.clip(feature[, index])
Clips a given GeoJSON feature or geometry object against this circle.