Kate Bagnall's Avatar

Kate Bagnall

@baibi.bsky.social

Currently: Exhausted by long COVID. Usually: Histories of migration, citizenship, family and the law. Australia, New Zealand and beyond. Senior Lecturer in Humanities at UTAS. Always: Missing south China and wishing my Cantonese was better.

1,434 Followers  |  476 Following  |  171 Posts  |  Joined: 11.08.2023  |  2.2159

Latest posts by baibi.bsky.social on Bluesky


Post image

Delicious post-archives lunch today at my favourite Hobart yum cha place, Hometown Secret 家鄉味 – we were so full we had to take these daan taat home for afternoon tea. Nom nom nom.

18.02.2026 09:18 — 👍 6    🔁 1    💬 1    📌 0
An illustration of a cute, smiling brown horse on a red background with Chinese characters reading 馬到成功

An illustration of a cute, smiling brown horse on a red background with Chinese characters reading 馬到成功

Wishing all my friends health, happiness and prosperity in the Year of the Horse!

馬年到了,祝福各位朋友前程似錦,身體健康,幸福快樂!

17.02.2026 08:42 — 👍 8    🔁 0    💬 2    📌 0
Preview
Hedberg Writer-in-Residence Program

Expressions of Interest for the 2026 @utas.edu.au Hedberg Writer-in-Residence Program are now open!

The Hedberg is a three-month fellowship valued at $32,500, open to established writers resident in Australia. With a work space in the beautiful new Forest building! www.utas.edu.au/community-an...

16.02.2026 06:13 — 👍 4    🔁 5    💬 0    📌 0
Preview
I’m in the process of tying up all the documentation relating to my time as Creative Technologist-in-Residence at the State Library of Victoria LAB. But as I was looking through the list of outputs, I realised I’d never written anything about the interface I created to explore georeferenced maps from the SLV collection. I also remembered that there were a few improvements I wanted to make to the interface. So instead of spending a few hours writing up a blog post, I’ve spent several days completely overhauling the Georeferenced Maps Explorer. I’m pretty happy with how it’s working now. **Have a play!** Wilson's Prom made up of a patchwork of georeferenced maps and aerial photographs using the Georefrenced Maps Explorer. Try it now! To get started, just click on the basemap. Details of all georeferenced maps within 50km of your selected point will be displayed in the right-hand column. As you move your mouse over the list of results, the boundaries of the georeferenced maps will be displayed on the basemap. This gives you a preview of their location and size. Click on one of the results to display the georeferenced map as a layer on top of the modern basemap. Hover over a result to see the map boundaries You can add as many maps as you like. If your selected maps overlap, you can change the order in which they’re shown. Click on the layers icon in the top left of the basemap. You’ll see a list of the maps that are currently displayed. Use the arrow buttons to move a map backwards or forwards. You can also use the sliders to adjust the opacity of each map. This can make it easier to examine the relationship between maps. For example, you might want to compare the features of a historic map with those of the underlying basemap. Stitch together multiple maps like this series of seven photomaps, and change the opacity to see the features underneath The Explorer’s url updates with every selection you make, so you can bookmark or share a url to return to the same position and collection of maps. For example, this link will take you to the collection of maps of Wilson’s Prom shown above. ## The background If you missed the start of this journey back in November last year, you might be wondering what the georeferenced maps are and where they come from. During my SLV LAB residency, I found a way of hooking the SLV’s digitised maps up to a tool called Allmaps that helps you identify points that connect historic maps to our modern coordinate system. When enough points have been identified, the historic maps can be positioned on a modern basemap. This is known as georeferencing, georectifying, or ‘map warping’, as the results can often appear skewed or warped. Once I had connected things up, I invited the world (or at least the tiny part of it that follows me on social media) to help turn the SLV’s maps into data. And they did! As of today, **1,447** of the SLV’s digitised maps have been georeferenced. This dashboard displays current georeferencing progress. The total number of SLV maps georeferenced over time. It's still going up! There’s still plenty more to do. If you’d like to help, the full instructions are available here. Georeferencing is pretty fun, so why not have a go? You can explore the current collection of georeferenced maps in a few different ways. There’s a dataset you can download or search that gets updated every two hours. This data is loaded into a spatial database that’s used by the Georeferenced Maps Explorer. As part of my recent improvements, I’ve automated this process as well, so the database should be updated with the latest additions every 24 hours. You can also search for georeferenced maps using the my place app. You just enter an address and my place pulls together data from a variety of sources – mixing the georeferenced maps up with parish maps, newspapers, photos, and entries from the Sands & MacDougall’s directories. Georeferenced maps in my place results ## The interface The Georeferenced Maps Explorer uses MapLibre and the Allmaps MapLibre plugin to display the georeferenced maps. You might notice that it looks pretty similar to the Newspapers Explorer and the CUA Browser, both of which use MapLibre, as well as Bulma for CSS. I’ve been trying to settle on a fairly standard set of tools that I can use to create and maintain these sorts of interfaces without too much fuss. Basically I just cut and paste a lot of stuff, then modify as needed. When you click on the basemap in the Explorer, the coordinates are sent off to the spatial database to retrieve details of georeferenced maps within 50km. The spatial database runs in Datasette, which has a built-in JSON API that I use with a set of predefined ‘canned’ queries to pull back the data I need. The results are displayed in the right-hand column, along with square thumbnails generated by the SLV’s IIIF service. The metadata includes distance and area measures. These are used to find and sort the results. There are two distance measures, one from your selected point to the closest boundary of a map, and the other to the centre of a map. If the point is contained within a map’s boundaries, then the ‘bounds’ distance is zero. The search query finds maps whose closest boundaries are within 50km. Originally I sorted the results by this distance and the area of the maps. But this meant that large scale maps that included the selected point (such as maps of the whole of Victoria) appeared above nearby local maps. To make it easier to find maps within an area, I added the ‘centre’ distance and now sort the results using that. This allows nearby maps that don’t include the current point to bubble up towards the top of the search results, above many of the large scale maps. It’s far from perfect, but I think it strikes an ok balance. The data also includes the boundaries of each map as GeoJSON. I use this to generate a MapLibre layer that contains all the boundaries as polygons. The boundaries are hidden until you hover over the corresponding search result, then the opacity of the boundary is flipped to `1` and it magically appears. When you click on a search result, a request is fired off to Allmaps for the full georeferencing data. The Allmaps plugin uses this to retrieve the map image from the SLV’s IIIF service and display the warped map in MapLibre. I looked around for quite a while to find a good way of changing the opacity and order of the warped maps in MapLibre. I eventually found the Map Libre GL Layer Manager which did a lot of what I wanted. I forked the repository and modified the code to get the opacity slider to work with warped map layers. Warped map layers already have a `setOpacity` method, it was just a matter of checking for ‘custom’ layers, then finding where the warped map was in the layer object. if (type == "custom") { layer.implementation.setOpacity(opacity); I also made a few cosmetic changes, such as renaming the tooltips on the reorder buttons from ‘move up’ and ‘move down’ to ‘send back’ and ‘bring forward’ – up and down just confused me. I tried for a long time to find some way of adding tooltips or popups to the warped maps that would show their details when you moved the mouse over them. I found that if you were displaying multiple maps that looked similar, such as the photomaps above, it was difficult to know which map was which. After a chat with the Allmaps developers in their IIIF Slack channel, I realised that this approach wouldn’t work as the warped map layers don’t currently listen to mouse events. Instead I decided to add hover events to the list of results, rather than the maps, and use them to display the map boundaries as described above. This way I get the connection between the map and metadata that I wanted, as well as a useful way of previewing results. I think I’ve probably stopped fiddling with the interface for now. I hope you find it useful! ## The future? There’s more that I’d like to do with the georeferenced maps. In particular, I’ve been thinking about an interface with a slider that showed the changing patchwork of maps over time… **Related resources:** * the code for the Georeferenced Newspapers Explorer and all the other apps and sites I created during my residency is in this GitHub repository * the code to harvest the georeferenced data from Allmaps and build the dashboard is in this GitHub repository * there’s also the full list of all the apps, code, posts, and talks created during my residency

For lovers of maps and/or Victorian history, I wrote up some notes about exploring georeferenced maps from the State Library of Victoria. https://updates.timsherratt.org/2026/02/12/exploring-georeferenced-maps-from-the.html #localHistory #spatialHistory #ozHist

13.02.2026 00:23 — 👍 5    🔁 6    💬 2    📌 0
Preview
No Trace: ASIO and the End of the White Australia Policy This contribution to the special issue studies the history of the White Australia Policy through an exploration of the intersections between national security, immigration restriction and social re...

Have a read of the recent article 'No Trace: ASIO and the End of the White Australia Policy' by Sean Brawley: doi.org/10.1080/0308...

02.02.2026 11:35 — 👍 7    🔁 2    💬 0    📌 1
Preview
What’s in a name? Historical Chinese Australian names throw up all sorts of challenges – from the ubiquity of ‘Ah’ to confusion of name order – but in my recent research on Chinese Tasmanian history, it&…

new blogpost by @baibi.bsky.social
chineseaustralia.org/whats-in-a-n...

05.02.2026 01:07 — 👍 4    🔁 1    💬 0    📌 0

Flexible work arrangements make it possible for me to continue in paid employment.

I just wouldn’t be able to work if I had to be in the office all the time (which sucks, because I really like my colleagues and the social aspects of my work!).

#longCOVID

23.01.2026 02:34 — 👍 5    🔁 2    💬 2    📌 0

Thanks, I’ve done some initial rubbings of this gravestone but am keen to explore some more techy possibilities too

23.01.2026 02:22 — 👍 0    🔁 0    💬 0    📌 0

Thanks for the suggestions! I look forward to exploring once I’ve finished writing the article I’m procrastinating about…

23.01.2026 02:19 — 👍 1    🔁 0    💬 1    📌 0

Oooh, thanks, I’ll give that a try!

22.01.2026 09:40 — 👍 1    🔁 0    💬 1    📌 0
Old gravestone with the name Claude Nan Shing and other faint Chinese and English words on it

Old gravestone with the name Claude Nan Shing and other faint Chinese and English words on it

View of Claude Nam Shing’s grave among other graves in Cornelian Bay cemetery

View of Claude Nam Shing’s grave among other graves in Cornelian Bay cemetery

There’s valuable information recorded in Chinese on Tasmania’s old Chinese headstones that is gradually disappearing, like on Claude Nam Shing’s headstone in Cornelian Bay Cemetery. I’ve worked out some of the characters, but not all of them. Any thoughts, clever people? 🗃️ #EverdayHeritage

21.01.2026 07:46 — 👍 37    🔁 22    💬 2    📌 0

Heartbroken about last night’s events in my beautiful, sparkling hometown. Hard to comprehend such hatred and violence.

14.12.2025 20:17 — 👍 9    🔁 1    💬 0    📌 0
Post image

Join us for a three-weeks Hong Kong History Centre Accredited summer programmes in summer 2026!

More details please see:
www.bristol.ac.uk/centre-for-s...

18.11.2025 11:23 — 👍 2    🔁 1    💬 0    📌 1

‘What is Taiwan and why is it important?’ Great article by Macquarie Uni’s Mei-fen Kuo

04.12.2025 22:11 — 👍 1    🔁 0    💬 0    📌 0
Preview
How to 'hack' a library website – a video tutorial by Tim Sherratt | SLV LAB Learn how to hack a web browser to view and access online collections in different ways

I recorded a video for my #SLVResidency on hacking the SLV website. It talks about looking beneath the hood of #GLAM websites to try and imagine alternatives & fix problems. https://lab.slv.vic.gov.au/resources/hack-website-video-tim-sherratt #libraries #digitalHumanities

25.11.2025 03:13 — 👍 17    🔁 14    💬 2    📌 0

It’s DECRA Day – I can remember the feeling of finding out, ten years ago, that I was successful in my application for a #DECRA. It was a truly life-changing moment for me as an ‘independent scholar’ (and public servant), providing a pathway to a career back in academia.

25.11.2025 02:59 — 👍 8    🔁 0    💬 0    📌 0

+ featuring contributions from @commonplacejrnl.bsky.social @oah.org @smithsonianmag.bsky.social @katewagner.wehwalt.net @urbanhistorya.bsky.social @baibi.bsky.social @lmansley.bsky.social & @historians.org @paulhetzler.bsky.social & @satevepost.bsky.social @readingthepictures.media.web.brid.gy +

09.11.2025 12:59 — 👍 4    🔁 1    💬 1    📌 0
Preview
#ScholarSunday Thread 249 (11/9/25) – Black and White and Read All Over Here it is, my 249th #ScholarSunday thread of great public scholarly writing & work, podcast episodes, new & forthcoming books from the last week. Add more below in comments, please share as widely as...

Here it is, my 249th #ScholarSunday thread of great public scholarly writing & work, podcast episodes, new & forthcoming books from the last week. Add more below in comments, please share as widely as possible, & enjoy, all! 🗃️

blackwhiteandread.com/scholarsunda...

09.11.2025 12:59 — 👍 53    🔁 36    💬 3    📌 11
Post image Post image Post image Post image

Where are my old-ish French handwriting readers?

How did Freycinet's people describe the landscape around today's New Norfolk in Tasmania? I have bits and pieces, but some words are defeating me.

Full map available from: nla.gov.au/nla.obj-2323...

#history #archives

10.11.2025 00:46 — 👍 4    🔁 2    💬 2    📌 0

Looking forward to reading it!

07.11.2025 12:21 — 👍 0    🔁 0    💬 0    📌 0
Preview
Who was Tie Cum Ah Chung? If you have wandered past the library on the corner of Murray and Bathurst streets, Hobart, you might have noticed a billboard featuring arresting black-and-white portraits of a young Asian woman i…

New blog post from me - ‘Who was Tie Cum Ah Chong?’ - in which I consider the curious early life of a young immigrant Chinese woman in Tasmania 120 years ago.

chineseaustralia.org/tie-cum-ah-c...

#ChineseTasmanianStories #EverydayHeritage 🗃️

07.11.2025 12:17 — 👍 4    🔁 2    💬 0    📌 0
Preview
Amendments to Non-European Naturalisation Policy, 1956–1957: Differentiating Between Intention and Effect This article challenges benign depictions of the gradual and intentional liberalisation of the ‘White Australia policy’ during the Menzies government through an analysis of the quick series of amen...

Hot off the press & #OpenAccess, check out 'Amendments to Non-European Naturalisation Policy, 1956–1957: Differentiating Between Intention and Effect' by Nathan Gardner Molina: doi.org/10.1080/0308...

09.10.2025 08:13 — 👍 9    🔁 4    💬 0    📌 0
Preview
Long COVID patients seeking help 'let down by the system' Patients are calling for better access to long COVID care after the closure of one of the country's last public clinics.

In awe of the team at Clinic Nineteen treating adults & children for long COVID & related diseases. COVID infection is commonplace in the community & repeat infections increase your chances of getting LC so do your best to avoid infection. Indoor air quality is key.

www.abc.net.au/news/2025-11...

31.10.2025 20:54 — 👍 81    🔁 29    💬 2    📌 2

Agree that ideally I would be seen in person by a long COVID specialist in my home city or even state, but Clinic 19 have been a lifeline for me, providing thoughtful, informed care when I struggled to find even a good GP close to home.

31.10.2025 23:41 — 👍 8    🔁 0    💬 1    📌 0

Section 3(m) of the 1901 Act, relating to the entry of wives and minor children

31.10.2025 19:01 — 👍 1    🔁 0    💬 0    📌 0

This week I’ve got stuck into working on a piece of research I started writing up in 2012 – it’s on my favourite short-lived paragraph of the Immigration Restriction Act 1901. My last attempt at finishing it was in 2020, but this time it’s for real! #slowscholarship 🗃️

31.10.2025 07:53 — 👍 8    🔁 1    💬 2    📌 0
Screenshot of a webpage headed "Georeferencing maps from the State Library of Victoria". The page includes an image of a historic map overlaid on a modern digital basemap, and a big blue button that invites visitors to "View the project dashboard to see the latest progress". The introductory text reads: "This is an experimental project developed during my time as Creative Technologist-in-Residence at the SLV LAB. While playing around with IIIF and AllMaps, I wondered if it might be possible to connect a few things up and make it easy for people to georeference SLV's digitised maps. This is the result!".

Screenshot of a webpage headed "Georeferencing maps from the State Library of Victoria". The page includes an image of a historic map overlaid on a modern digital basemap, and a big blue button that invites visitors to "View the project dashboard to see the latest progress". The introductory text reads: "This is an experimental project developed during my time as Creative Technologist-in-Residence at the SLV LAB. While playing around with IIIF and AllMaps, I wondered if it might be possible to connect a few things up and make it easy for people to georeference SLV's digitised maps. This is the result!".

Help me turn the State Library Victoria's digitised maps into data!

As part of my residency at the SLV LAB, I've been experimenting with using Allmaps and @IIIF to georeference the Library's maps. Georeferencing relates a digitised map to real world […]

[Original post on hcommons.social]

30.10.2025 23:50 — 👍 14    🔁 11    💬 2    📌 0
Grant - Grants Data Portal

Great to hear about the successful funding of ‘The See Yup Temple: Chinese Australian Collections, Recovery, Conservation’ in the most recent round of ARC Discovery Projects dataportal.arc.gov.au/NCGP/Web/Gra... 🗃️

30.10.2025 08:26 — 👍 2    🔁 0    💬 0    📌 0
Preview
Not just another flu: Covid-19 complacency risks lives The days of lockdowns and social distancing may be long gone but Covid-19 is still wreaking havoc and is definitely not “just another flu”.

“Wearing a mask is just so simple … it doesn’t take a lot when it’s a kindness to other people.”

#CovidIsntOver #COVIDHegemony

25.10.2025 22:28 — 👍 35    🔁 15    💬 0    📌 0

I recently went to a community history talk, on a topic in my area of research expertise, that was heavily and enthusiastically illustrated with AI-generated images and videos. It was clunky and cringe-worthy at best, and painfully stereotypical at worst.

24.10.2025 05:48 — 👍 7    🔁 2    💬 1    📌 0

@baibi is following 20 prominent accounts