Mattijn van Hoek

Results 77 issues of Mattijn van Hoek

See this notebook: https://observablehq.com/@mattijn/single-point-has-no-extent Basically: ```javascript p = d3.geoMercator() p.fitExtent( [[0,0],[500,500]], {"type": "Feature", "geometry": {"type": "Point", "coordinates": [4.8885, 52.4039]}} ) p.scale() // Infinity p.translate() // [-Infinity, Infinity] ``` Not sure...

Requirements of your great package are fixed. `install_requires=['scipy==0.18.1', 'numpy==1.11.2']` Is it possible that the installation just requires `scipy` and `numpy` without mentioning the version or usage of greather then symbols?

This issue is linked to this comment: https://github.com/vega/vega-lite/issues/8230#issuecomment-1201358652. Example is based on a repeated chart such as this example: https://vega.github.io/vega-lite/examples/interactive_layered_crossfilter.html Upon manually defining a `"name":"CHART"` property for the view defining...

Bug :bug:

This might in the end already be possible, but let me create an issue anyway. To add a basemap to your projected data seems currently only documented to be possible...

Enhancement :tada:
P4
Area - Map

Given a simple bar chart with embedded data, for which I like to color encode the values using a `quantize` `type` `scale` ([VL-docs](https://vega.github.io/vega-lite/docs/scale.html#quantize)): ```json { "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": { "values":...

Enhancement :tada:
Area - Docs :book:

It would be great if we can could extent the scales with a `jenks` type, next to the existing `quantize`, `quantile` and `threshold`. The following image presents it nicely: Taken...

feature-request

Hi all, new MODFLOW user here! According to the [documentation](https://water.usgs.gov/water-resources/software/MODFLOW-6/mf6io_6.1.0.pdf#page=25) of MF6 it is possible to link a MF6-model to a MT3D-USGS model as long as it is a regular...

enhancement

As raised in https://github.com/mattijn/topojson/issues/110#issuecomment-829226754, it might be good to study if Numba can be optionally used to speed up processes within computations.

Congrats on the new (beta) release! One question: by changing to morphcharts as replacement of deck.gl will this also means that other functionalities from http://morphcharts.com will become possible? Especially the...

Thanks for your work on these simplification algorithms! Line simplification can be done using the Douglas-Pecker or Visvalingam-Whyatt algorithm. They both operate through an epsilon/tolerance parameter. Depending on the algorithm...