Skip to content

Files

Latest commit

Mar 10, 2019
9e80501 · Mar 10, 2019

History

History
112 lines (68 loc) · 4.65 KB

notes.md

File metadata and controls

112 lines (68 loc) · 4.65 KB

Some notes useful for me.

Polish Python Coder Group (in Polish language)

Notes from old thread about downloading maps (2014/2015)

Original script: pobieracz_mapy_wroc.py

(Copy in folder pobieracz_mapy_wroc)

Maps (zoomify):

dezoomify.py

dezoomify.py -b 'http://dk.bu.uni.wroc.pl/midas/manu/tiles//0/03/036/0369/03690/03690015/ImageProperties.xml' output.jpg

New maps (2019):

zoomify:

krpano:

http://fbc.pionier.net.pl/id/oai:kpbc.umk.pl:21499

After digging in HTML/HTTP (using DevTools in Firefox) I found url to ImageProperties.xml

http://kpbc.umk.pl/norestr/mapy/M_4772/files/ImageProperties.xml

which works with old dezoomify (using -b).

dezoomify.py -b 'http://kpbc.umk.pl/norestr/mapy/M_4772/files/ImageProperties.xml' output.jpg

Sometimes it have problem with timeout

urllib.error.URLError: <urlopen error [Errno 110] Connection timed out>

but it works with less threads ie. one thread -t 1

dezoomify.py -t 1 -b 'http://kpbc.umk.pl/norestr/mapy/M_4772/files/ImageProperties.xml' mapa-1.jpg

After digging in HTML/HTTP (using DevTools in Firefox) I found url to ImageProperties.xml

http://bc.biblio.olesnica.pl/Content/70/scan425_kreis_oels/ImageProperties.xml?noCacheSfx=1551659522092

and after skiping ?noCacheSfx=1551659522092 it works with old dezoomify (using -b).

dezoomify.py -t 1 -s -b 'http://bc.biblio.olesnica.pl/Content/70/scan425_kreis_oels/ImageProperties.xml' output.jpg

Info for old dezoomify

https://sourceforge.net/p/dezoomify/wiki/Troubleshooting/

https://commons.wikimedia.org/wiki/User:F%C3%A6/dezoomify

On-line dezoomify (JavaScript):

It can download zoomify, krpano and many other formats