Comparing tabular data and glyphs.
Place git projects
next to each other to work. Resulting in a directory structure like this:
projects/
├── glyphs/
│ ├── css/
│ └── js/
└── glyphstudy/
├── css/
├── data/ --> study data
└── js/
Loading local files with http://requirejs.org/ via Text plugin http://requirejs.org/docs/api.html#text
require(['text!../data/events.json'], function (events) {
var json = JSON.parse(events);
alert (json[0]._source.foundEventNamesAsString);
});
Tabellen mit D3 plotten: http://bl.ocks.org/jfreels/6814721
Table Styles: http://codepen.io/alassetter/pen/cyrfB
jq-win64.exe -c ".[]" events.json > events.jsonlines
Link: https://stedolan.github.io/jq/download/
Online Regex-Tester: https://regex101.com/
- Finden (Regex):
(""")([^"]+)(")+([^"]+)(""")
- Ersetzen:
$1$2$4$5
- Finden (Regex):
(""")([^"]+)(")+(.*)(")+([^"]+)(""")
- Ersetzen:
$1$2$4$6$7