2018-06-23 09:26:44 +00:00
|
|
|
PixelCanvas.io downloader
|
|
|
|
=========================
|
2018-06-23 06:06:29 +00:00
|
|
|
|
|
|
|
This utility lets you download the http://pixelcanvas.io bitmap and export regions of it to .png files.
|
|
|
|
|
2020-12-24 03:56:07 +00:00
|
|
|
## Requirements
|
2018-06-23 06:06:29 +00:00
|
|
|
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
2020-12-24 03:56:07 +00:00
|
|
|
## Usage
|
2018-06-23 06:06:29 +00:00
|
|
|
|
|
|
|
This tool is run from the command line, where you provide the coordinates you
|
|
|
|
want to download and render.
|
|
|
|
|
|
|
|
The format for typing coordinates is `UPPERLEFT--LOWERRIGHT`. The format for
|
|
|
|
each of those pieces is `X.Y`.
|
|
|
|
|
|
|
|
Sometimes, argparse gets confused by negative coordinates because it thinks
|
|
|
|
you're trying to provide another argument. Sorry.
|
|
|
|
If this happens, use a tilde `~` as the negative sign instead.
|
|
|
|
|
|
|
|
Remember, because this is an image, up and left are negative;
|
|
|
|
down and right are positive.
|
|
|
|
|
|
|
|
Commands:
|
|
|
|
|
2018-06-30 07:05:18 +00:00
|
|
|
- **update**: Download chunks into the database.
|
2018-06-23 06:06:29 +00:00
|
|
|
|
2018-06-30 07:05:18 +00:00
|
|
|
`> pixelcanvas.py update ~100.~100--100.100`
|
2018-06-23 06:19:49 +00:00
|
|
|
|
2018-06-30 07:05:18 +00:00
|
|
|
- **render**: Export a region as PNG.
|
2018-06-23 06:06:29 +00:00
|
|
|
|
2018-06-30 07:05:18 +00:00
|
|
|
`> pixelcanvas.py render 0.0--100.100 <flags>`
|
2018-06-23 06:19:49 +00:00
|
|
|
|
|
|
|
|
2018-06-23 06:06:29 +00:00
|
|
|
So, for example:
|
|
|
|
|
|
|
|
> pixelcanvas.py update 0.0--100.100
|
|
|
|
> pixelcanvas.py update ~100.~100--100.100
|
|
|
|
> pixelcanvas.py update ~1200.300--~900.600
|
|
|
|
|
|
|
|
> pixelcanvas.py render 0.0--100.100
|
|
|
|
> pixelcanvas.py render ~1200.300--~900.600 --show
|
2018-06-30 07:05:18 +00:00
|
|
|
> pixelcanvas.py render ~2000.2000--2000.2000 --scale 0.25
|
2018-06-23 06:06:29 +00:00
|
|
|
|
2020-12-24 03:56:07 +00:00
|
|
|
## To do
|
2018-06-23 06:06:29 +00:00
|
|
|
|
|
|
|
Here are some things we might like to improve:
|
|
|
|
|
|
|
|
- Some way to get a statistics overview or visual map of which chunks we have in the database, so we know what we're missing.
|
2018-06-30 07:05:18 +00:00
|
|
|
- Render the image as it appeared at some point in the past, taking advantage of the `updated_at` column.
|
2018-06-23 06:06:29 +00:00
|
|
|
- Probably never going to happen: A GUI application to browse the db just like the site.
|
2020-12-16 06:28:35 +00:00
|
|
|
|
2020-12-24 03:56:07 +00:00
|
|
|
## Mirrors
|
|
|
|
|
2020-12-16 06:28:35 +00:00
|
|
|
https://github.com/voussoir/pixelcanvasdl
|
|
|
|
|
|
|
|
https://gitlab.com/voussoir/pixelcanvasdl
|
|
|
|
|
|
|
|
https://codeberg.org/voussoir/pixelcanvasdl
|