npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

d3-es-geohashgrid

v0.1.3

Published

A drop in chart to display information from elasticsearch's geohashgrid aggregation

Downloads

11

Readme

d3-es-geohashgrid

A reusable d3 chart to display data from an elasticsearch GeoHash grid Aggregation.

d3-es-geohashgrid

Installing

If you use NPM, npm install d3-es-geohashgrid. Otherwise, download the latest release.

You will also need to have a json file of the map that you want to render, which is not included in this library. Odds are you are going to want this file but the library can work with any topojson parseable file.

Behavior

The library is in chart of drawing the map and placing the pins on the svg, but does not concern itself with styling.

// data that you would get from elasticsearch

var sample_data = {my_aggregation: {
  buckets: [{
    'key': 'svz',
    'doc_count': 10964
  }, {
    'key': 'sv8',
    'doc_count': 3198
  }]
}};

var width = 960,
    height = 480;

// remember that this json file is not included with the library
// you will need to find your own
d3.json('./world-50m.json', function(error, topology) {

  var geo_chart = d3_es_geohashgrid.geohashgrid()
                .data(sample_data.my_aggregation)
                .topology(topology)
                .width(width)
                .height(height);


  // draw the chart
  var svg = d3.select('body').append('svg')
    .attr('width', width)
    .attr('height', height)
    .call(geo_chart);

  // style the pins at needed
  svg.selectAll('.pin')
    .attr('r', 5)
    .style('fill', function(d) {
      return d.doc_count > 5000 ? 'red' : 'green';
    });
});

API Reference

d3_es_geohashgrid.geohashgrid()

Returns a function callable by d3 to render a world chart of locations from the geohashgrid aggregation.

var chart = d3_es_geohashgrid.geohashgrid();

.width([val])

Sets or returns the width of the chart.

.height([val])

Sets or returns the height of the chart.

.topology([val])

Sets or returns the topology (parseable by topojson) to render to the map. Note that there is no topology included with this library and you will need to find one yourself to make this useful to you.

.landClass([val = 'land'])

Sets or returns the class assigned to the svg path that draws the land.

.borderClass([val = 'border'])

Sets or returns the class assigned to the svg path that draws country borders.

.pinClass([val = 'pin'])

Sets or returns the class assigned to the svg circle that draw the aggregation points.

.data([val])

Sets or returns the data that will be used to place the pins.

License

MIT