Modified http://bl.ocks.org/mbostock/3887118 until it had a ordinal Y-axis. I had no idea what I was doing so please tell me how to improve this if you can.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2022-08 Johannes Kröger (WhereGroup), GPLv3 | |
# Silly interface to interactively adjust (project) variable | |
# values in real time. Meant to be used with expressions. | |
# Use @variable_name in expressions and have a go at it. | |
# - Displays widgets for editing int/float project variables | |
# - Refreshes canvas after any change in value | |
# WIP, might make it a plugin some day |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Abraham Borenstejn 10.047498,53.5500243 | |
Abraham Freimann 9.9826325,53.5701544 | |
Abraham Gutfreund 9.956541,53.56011 | |
Abraham Schwarzschild 9.9813335,53.568457 | |
Abram Widawski 10.0342976,53.5573667 | |
Adam Molinnus 10.0409189,53.5557051 | |
Ada Seligmann geb. Löwenstein 9.9877389,53.5920567 | |
Adele Cohn geb. Isaak 9.9812636,53.5718909 | |
Adele Elias 10.042956,53.5469898 | |
Adele Friedberg geb. Goldschmidt 9.9829959,53.56978 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# rename TMS tiles to the XYZ schema | |
# no quoting, since all files have simple numeric names | |
# do not run this anywhere else than INSIDE your tiles directory | |
# run it like this: find . -name "*.png" -exec ./tms2xyz.sh {} \; | |
filename=$1 | |
tmp=${filename#*/} # remove to first / |