Thomas Gratier

Results 72 comments of Thomas Gratier

Would prefer an approach on a built-in tool with in xsv. Otherwise, if restricted to adopt other tools, too many choice as there as numerous tools to run sql syntax...

The same output as Mapshaper produced by GDAL https://gist.github.com/ThomasG77/725ddcd24a42227a196e0cedf28ad1cc It's then possible to wait for an implementation directly in mapshaper or creating your own metadata.json file now. You may use...

Not sure how it's related to mapshaper. You can do it using Turf JavaScript library. With it, create a line then do a buffer. You can go on https://turfjs.org, open...

On a left join, with below tables: Table A ``` ID,col1,col2,colgeom 1,aze,fgh,geom1 2,qsd,wxc,geom2 3,shk,xnz,geom3 ``` TABLE B ``` ID,col3,col4 1,mqb,mlk 2,nxy,mbc ``` LEFT JOIN of tables A and N ```...

It worked on my side by taking file from https://raw.githubusercontent.com/deldersveld/topojson/master/countries/germany/germany-regions.json (the raw file) instead of https://github.com/deldersveld/topojson/blob/master/countries/germany/germany-regions.json. The second URL although ending with .json does not contains a TOPOJSON but a...

FYI, you can use `gdal.vectorTranslate` to do something similar to `ogr2ogr` using [node-gdal-async](https://github.com/mmomtchev/node-gdal-async) See small demo at

For the polylabel approach, there is now third-party command line utility "geojson-polygon-labels", presented as a "Command line tool to generate point labels from GeoJSON polygons" https://github.com/andrewharvey/geojson-polygon-labels You can do the...

I've made a server based on Makizushi at https://github.com/webgeodatavore/express-simplestyle-spec/

Did you try to replace in https://github.com/math2001/MarkdownLivePreview/blob/master/markdown2html.py#L20-L22 ``` markdowner = Markdown(extras=["fenced-code-blocks", "cuddled-lists"]) ``` by ``` markdowner = Markdown(extras=["fenced-code-blocks", "cuddled-lists", "tables"]) ``` If it works, maybe, let users choose in the...

Clearly annoying and did not find a simple solution. One approach below that works. Not closing as I would expect a simpler solution than my own solution if possible. ##...