Posts

Showing posts from March 10, 2019

Nefling

Image
Nefling Stadt Neunburg vorm Wald 49.358585 12.430213 500 Koordinaten: 49° 21′ 31″  N , 12° 25′ 49″  O Höhe: 500 m ü. NHN Einwohner: 27  (31. Dez. 1990) Postleitzahl: 92431 Vorwahl: 09672 Lage von Nefling in Bayern Nefling ist ein Ortsteil der Stadt Neunburg vorm Wald im Landkreis Schwandorf in Bayern. Inhaltsverzeichnis 1 Geographie 2 Geschichte 3 Literatur 4 Einzelnachweise Geographie | Nefling liegt circa fünf Kilometer nordöstlich von Neunburg vorm Wald und nördlich der Staatsstraße 2151, die Neunburg vorm Wald mit der B 22 in Rötz verbindet. [1] Geschichte | Der Name Nefling (früher Nebolvinge, Nebolfing, Nevalding) deutet auf einen Gründer namens Nebulf oder Nebolf hin. Die sogenannten „ing-Orte“ entstammen einer frühen Besiedlungsepoche in der die Baiern aus dem böhmischen Kessel nach Westen einwanderten. Bei dieser Besiedlung wurden die Namen der Orte aus dem Namen des Gründers mit angehängtem -

Reduce each node of tree into list of tips of tree

Image
1 2 Here is the runnable code: https://gist.github.com/the1mills/61d53438a3dce1da32640d3e05a611a6 (I couldn't figure out how to load the async library using JSBin or RequireBin online, maybe someone knows how to do that). I have this tree structure: const animals = { canines: { dogs: { poodle: { val: true } }, fox:{ val: true }, wolf: { northwestern:{ val: true }, arctic: { val: true } }, raccoon:{ val: true } }, porpoises: { vaquita:{ val: true }, harbor: { val: true } }, }; For each node in the tree, I want to get a description of each branch from that node, reducing the branch keys into one key, so that I get: // canines node: