Archaeological dates for island occupation in Australia

Dating Murujuga's Dreaming Archaeology PhD R

Thousands of dates from archaeolgical sites around the continent reveal a complex and persistent pattern of island and coastal occupation, spanning 50,000 years.

Patrick Morrison https://padmorrison.com (Centre for Rock Art Research + Management, University of Western Australia)https://www.crarm.uwa.edu.au/
2022-06-03

The Australian continent (Sahul) was first peopled by maritime voyagers 65,000 years ago. They crossed the ocean intentionally from Indonesia, with upwards of a thousand of people spending many days at sea - at one point crossing over 100km (Bird et al. 2019). Every possible route required island-hopping, and the evidence suggests this was enabled by a broad culture of maritime competency in the islands of Wallacea (O’Connor, Ono, and Clarkson 2011; Balme 2013).

When people reached Australia, they faced a landscape very different than today. Sea levels were about 80m lower than present, forming very different coastlines and archipelagos (Brooke et al. 2017). Arrival via the ‘southern route’ would have involved crossing from the island of Timor-Roti, to a huge archipelago now submerged off the Kimberley coast (Bird et al. 2018).I

In the northwest of Australia there is evidence of continuous occupation since this time (Veth et al. 2021), with a long-standing maritime component (Veth et al. 2017). Sea levels (mostly) stabilised 8,000 years ago, beginning the current coastal configuration (Brooke et al. 2017). The evidence from around Australia suggests that once islands were separated from the mainland, there was mostly a hiatus of occupation, followed by a resumption of access using watercraft in the last few thousand years (Bowdler 1995). In Murujuga (the focus of my PhD), this involved an increased maritime focus, and an incorporation of island marine resources into the economy and diet (McDonald and Berry 2016).

Since this pattern of occupation was last reviewed, thousands of radiocarbon and luminescence dates have been collected from coastal and island archaeological sites. These are included in the AustArch (Williams et al. 2014) and SahulArch (Codilean et al. 2022). databases, which can be analysed to investigate patterns of occupation. In this post, they will be considered in relation to the modern coastline and island geographies (GEODATA 2004).

Wadjemup (Rottnest Island), 19km off the coast of Western Australia.

Querying the AustArch and SahulArch databases

The AustArch database was an effort to catalogue every archaeologically-relevant date determination in the Australian continent, totalling over 5,000 radiocarbon dates and several hundred dates determined using other techniques, such as luminescence (Williams et al. 2014). The SahulArch database a more recent effort, which includes some dates that have been published since AustArch (Codilean et al. 2022). It also contains some useful additional information, such as island name.

This analysis starts with the SahulArch database, filtered by dates associated with occupation. It was filtered to include only 1) island sites, and 2) dates from within 50km of the modern Australian coastline, which we labelled ‘coastal’ sites. Additional dates from the AustArch database that are not yet in SahulArch were identified by unique lab codes. I filtered out dates that were flagged as unusable for time-series analysis.

Show code
library(tidyverse)
library(viridis)
library(sf)
library(leaflet)
library(patchwork)
theme_set(theme_bw())

sf::sf_use_s2(FALSE)

australia <- st_read('_external_data/geodata_coast/cstauscd_r.shp',
                     quiet=TRUE) %>%
  filter(FEAT_CODE %in% c('island', 'mainland')) %>% st_transform(3577)
mainland <- australia %>% filter(FEAT_CODE == 'mainland') %>% st_union() 
inland <- mainland %>% st_buffer(-50000) %>% st_as_sf() %>%
  mutate(landform = 'inland')
study_area <- st_bbox(australia) %>% st_as_sfc() %>%  st_buffer(500000) %>%
  st_difference(inland)

#Australian Albers
octopus <- st_read('_external_data/sahularch_c14/sahularch_c14.shp',
                   quiet=TRUE) %>%
  st_transform(3577) %>% 
  st_centroid() %>% 
  filter(CONTEXT == 'Occupation', CNTRY == "AUS") %>% 
  st_filter(study_area, .pred = st_within) %>% 
  filter(between(C14_AGE, 0, 50000))

octopus_map <- ggplot(octopus) +
  geom_sf(data=australia) +
  geom_sf(data=inland, fill = 'red', alpha = 0.1) +
  geom_sf(aes(colour = C14_AGE, fill = C14_AGE), alpha=0.5) +
  coord_sf()  + labs(title = 'SahulArch database') +
  scale_color_viridis(limits=c(0,50000), aesthetics = c('colour', "fill"),
                      name ='Age', option = 'cividis')

austarch <- read_csv("_external_data/Austarch_1-3_and_IDASQ_28Nov13-1.csv")
provided <- read_csv("additional_dates.csv")

additional <- austarch %>%
  mutate(across(c(LONGITUDE, LATITUDE, AGE,
                  ERROR, DEPTH_FROM_SURFACE_CM),
                as.numeric)) %>% 
  add_row(provided) %>% 
  filter(!(LAB_CODE %in% octopus$LABID)) %>%
  mutate(`Data pertinent for time-series analysis or calibration` =
           replace_na(`Data pertinent for time-series analysis or calibration`
                      , 'NA')) %>% 
  filter(`Data pertinent for time-series analysis or calibration` != 'Unusable') %>% 
  drop_na(LONGITUDE, LATITUDE, AGE) %>% 
  filter(between(AGE, 0, 50000)) %>% 
  st_as_sf(coords = c('LONGITUDE', 'LATITUDE'), crs = 4283) %>%
  st_transform(3577) %>% 
  st_filter(study_area, .pred = st_within)

#write_csv(additional, 'islands_austarch.csv')

austarch_map <- ggplot(additional) +
  geom_sf(data=australia) +
  geom_sf(aes(colour = AGE, fill = AGE), alpha=0.5) +
  geom_sf(data=inland, fill = 'red', alpha = 0.1) +
  coord_sf() + labs(title = 'Additional dates from AustArch') +
  scale_color_viridis(limits=c(0,50000), aesthetics = c('colour', "fill"),
                      name ='Age', option = 'cividis')

octopus_map + austarch_map +
  plot_layout(guides = 'collect')

Mapping island dates across the continent

Some named islands were not offshore, but instead islands in the middle of rivers, so these were relabelled as coastal. AustArch does not have island names, and some of the regions were not aligned with the current IBRA7 specification, so these were manually edited.

In total, this resulted in 3406 dates for analysis. The map below shows the 415 dates from offshore islands. There are many dates from the north and east of the continent, but the south west of Australia is understudied, despite the presence of many islands and archipelagos. I’ve also included the related the IBRA regions, which will help with interpreting the graph of dates below.

Show code
dates <-  octopus %>% 
  add_row(
  transmute(
    left_join(additional, read_csv('islands_austarch.csv')),
         C14_AGE = AGE,
         IBRAREGION = IBRA_REGION,
    ISL_NAME = ISL_NAME,
    METANAME = SITE,
    C14_ERRPOS = as.numeric(ERROR),
    C14_ERRNEG = as.numeric(ERROR),
    geometry=geometry)
  ) %>% 
  mutate(
    ISL_NAME = na_if(ISL_NAME, 'NA'),
    ISL_NAME = replace_na(ISL_NAME, 'Coastal'),
    IBRAREGION = case_when(
      ISL_NAME == "Campbell Island" ~ "Carnarvon",
      ISL_NAME == "Great Glennie Island" ~ "Furneaux",
      IBRAREGION == "Southern East Queensland" ~ "South Eastern Queensland",
      IBRAREGION == "Victoria Volcanic Plain" ~ "Southern Volcanic Plain",
      IBRAREGION == "Brigalow Belt North (coastal)" ~ "Brigalow Belt North",
      IBRAREGION == "Pilbara (coast)" ~ "Pilbara",
      TRUE ~ IBRAREGION
    ),
      ISL_NAME = case_when(
      ISL_NAME == "Lindsay Island" ~ "Coastal",
      ISL_NAME == "Berry Island" ~ "Coastal",
      ISL_NAME == "Goodwood Island" ~ "Coastal",
      METANAME == "Murujuga Rockshelter" ~ "Dampier Island",
      METANAME == "Pistol Range (P2772) midden (Burrup)" ~ "Dampier Island",
      METANAME == "Burrup Peninsula P2314" ~ "Dampier Island",
      METANAME == "Burrup Peninsula middens and rockshelter" ~ "Dampier Island",
      TRUE ~ ISL_NAME
    )
    )
#this is an island in the middle of a river - not really of interest

regions <- dates %>%
  filter(ISL_NAME != 'Coastal') %>%
  pull(IBRAREGION) %>%
  unique()

ibra <- st_read('_external_data/IBRA7_regions/ibra7_regions.shp',
                quiet = TRUE) %>%
  filter(REG_NAME_7 %in% regions) %>% 
  st_simplify(preserveTopology = TRUE, dTolerance = .01) %>% 
  st_as_sf() %>% st_transform(4326) 


island_dates <- dates %>% filter(ISL_NAME != 'Coastal')


island_dates %>% 
  st_transform(4326) %>% 
leaflet() %>%
  addProviderTiles(providers$CartoDB.Voyager,
                   options = providerTileOptions(
                     minZoom = 2, maxZoom = 7)) %>%
  addPolygons(data = ibra, label =~REG_NAME_7, color = '#2D85CD',
              opacity = 0.2, fillOpacity = 0.1, weight = 1) %>% 
  addCircleMarkers(color = '#48497F',
    clusterOptions = markerClusterOptions(
    maxClusterRadius = 30),
    label = ~ISL_NAME)

Seeking patterns over time

I am exploring the details of this pattern elsewhere, but it is obvious that the model of post-separation hiatus followed by Late Holocene reoccupation is broadly supported(Bowdler 1995). Here the dates are presented by IBRA region, arranged clockwise around the continent. A vertical line is plotted for 7,000 years ago, which broadly coincides with modern sea levels (but this is subject to regional variation).

Some patterns to see are:

Show code
order <- c("Carnarvon", "Pilbara", "Northern Kimberley", "Tiwi Cobourg",
           "Arnhem Coast", "Gulf Coastal","Gulf Plains",
           "Cape York Peninsula",  "Wet Tropics", "Brigalow Belt North",
           "Central Mackay Coast", "South Eastern Queensland",
           "NSW North Coast", "Sydney Basin",
           "South East Corner", "South East Coastal Plain", "Southern Volcanic Plain", 
           "Furneaux", "Tasmanian South East", "Tasmanian West", "King",
           "Flinders", "Kanmantoo",
           "Swan Coastal Plain")

dates %>% 
  filter(IBRAREGION %in% regions) %>% 
  arrange(ISL_NAME) %>% 
    mutate(
    ISL_NAME = fct_rev(fct_relevel(ISL_NAME, sort)),
    ISL_NAME = fct_relevel(ISL_NAME, "Coastal"),
    IBRAREGION = fct_relevel(IBRAREGION, order)) %>% 
ggplot() +
  geom_point(aes(y= ISL_NAME, x = C14_AGE,
                 colour = ISL_NAME == 'Coastal'), alpha = 0.6) +
  geom_segment(aes(y= ISL_NAME, yend=ISL_NAME,
                   x = C14_AGE + C14_ERRPOS, xend = C14_AGE - C14_ERRNEG),
               alpha = 0.2) +
  facet_grid(rows = vars(IBRAREGION), scales="free_y", space = "free_y") +
  geom_vline(xintercept = 8000) + 
  scale_colour_manual(values = c('TRUE' = 'grey', 'FALSE' = '#48497F'),
                      guide='none') + 
  theme(strip.text.y.right = element_text(angle = 0)) + 
  labs(title = 'Dated evidence for island and coastal occupation in Australia',
       x= 'C14 Age', y = 'Island name and IBRA region') +
    scale_x_continuous(limits=c(0, 40000), expand = c(0, 0), name = 'Age')
Show code
ggsave('dates.png', height = 12, width = 7, bg='white')
Balme, Jane. 2013. Of boats and string: The maritime colonisation of Australia.” Quaternary International 285: 68–75. https://doi.org/10.1016/j.quaint.2011.02.029.
Bird, Michael I., Scott A. Condie, Sue O’Connor, Damien O’Grady, Christian Reepmeyer, Sean Ulm, Mojca Zega, Frédérik Saltré, and Corey J. A. Bradshaw. 2019. Early human settlement of Sahul was not an accident.” Scientific Reports 9 (1): 8220. https://doi.org/10.1038/s41598-019-42946-9.
Bowdler, Sandra. 1995. Offshore islands and maritime explorations in Australian prehistory.” Antiquity 69 (266): 945–58. https://doi.org/10.1017/s0003598x0008248x.
———. 2015. The Bass Strait Islands revisited.” Quaternary International 385: 206–18. https://doi.org/10.1016/j.quaint.2014.07.047.
Brooke, Brendan P., Scott L. Nichol, Zhi Huang, and Robin J. Beaman. 2017. Palaeoshorelines on the Australian continental shelf: Morphology, sea-level relationship and applications to environmental management and archaeology.” Continental Shelf Research 134: 26–38. https://doi.org/10.1016/j.csr.2016.12.012.
Clarke, Anne Fiona. 1994. Winds of change: an archaeology of contact in the Groote Eylandt archipelego, Northern Australia.” PhD thesis, Australian National University.
Codilean, Alexandru T., Henry Munack, Wanchese M. Saktura, Tim J. Cohen, Zenobia Jacobs, Sean Ulm, Paul P. Hesse, et al. 2022. OCTOPUS Database v.2.” Earth System Science Data Discussions 2022: 1–30. https://doi.org/10.5194/essd-2022-50.
Draper, Neale. 2015. Islands of the dead? Prehistoric occupation of Kangaroo Island and other southern offshore islands and watercraft use by Aboriginal Australians.” Quaternary International 385: 229–42. https://doi.org/10.1016/j.quaint.2015.01.008.
Lambrides, Ariana B. J., Ian J. McNiven, Samantha Aird, Kelsey A. Lowe, Patrick Moss, Cassandra Rowe, Clair Harris, et al. 2020. Changing use of Lizard Island over the past 4000 years and implications for understanding offshore island use on the Great Barrier Reef.” Queensland Archaeological Research 23 (0): 43–109. https://doi.org/10.25120/qar.23.2020.3778.
McDonald, Jo, and Megan Berry. 2016. Murujuga, Northwestern Australia: When Arid Hunter-Gatherers Became Coastal Foragers.” The Journal of Island and Coastal Archaeology 12 (1): 1–20. https://doi.org/10.1080/15564894.2015.1125971.
McNiven, Ian J., Nicole De Maria, Marshall Weisler, and Tara Lewis. 2014. Darumbal voyaging: intensifying use of central Queensland’s Shoalwater Bay islands over the past 5000 years.” Archaeology in Oceania 49 (1): 2–42. https://doi.org/10.1002/arco.5016.
O’Connor, Sue. 1999. 30,000 Years of Aboriginal Occupation : Kimberley, North West Australia. Canberra, ACT: Dept. of Archaeology; Natural History, The Australian National University.; Canberra, ACT : Centre for Archaeological Research, The Australian National University.
O’Connor, Sue, Rintaro Ono, and Chris Clarkson. 2011. Pelagic Fishing at 42,000 Years Before the Present and the Maritime Skills of Modern Humans.” Science 334 (6059): 1117–21. https://doi.org/10.1126/science.1207703.
Rowland, Michael J., Shelley Wright, and Robert Baker. 2015. The timing and use of offshore islands in the Great Barrier Reef Marine Province, Queensland.” Quaternary International 385: 154–65. https://doi.org/10.1016/j.quaint.2015.01.025.
Sim, Robin, and Lynley Wallis. 2016. Northern Australian Offshore Island Use During The Holocene: The Archaeology of Vanderlin Island, Sir Edward Pellew Group, Gulf of Carpentaria.” Australian Archaeology 67 (1): 95–106. https://doi.org/10.1080/03122417.2008.11681882.
Sullivan, M. E. 1982. Exploitation of Offshore Islands along the New South Wales Coastline.” Australian Archaeology 15 (1): 8–19. https://doi.org/10.1080/03122417.1982.12092853.
Veth, Peter, Sam Harper, Kane Ditchfield, Sven Ouzman, and Balanggarra Aboriginal. 2021. The case for continuity of human occupation and rock art production in the Kimberley, Australia.” In The Routledge Companion to Global Indigenous History, edited by Ann McGrath and Lynette Russell, 194–220. London; New York: Routledge. https://doi.org/10.4324/9781315181929-10.
Veth, Peter, Ingrid Ward, Tiina Manne, Sean Ulm, Kane Ditchfield, Joe Dortch, Fiona Hook, et al. 2017. Early human occupation of a maritime desert, Barrow Island, North-West Australia.” Quaternary Science Reviews 168: 19–29. https://doi.org/10.1016/j.quascirev.2017.05.002.
Williams, Alan, Sean Ulm, Mike Smith, and Jill Reid. 2014. AustArch: A Database of 14C and Non-14C Ages from Archaeological Sites in Australia - Composition, Compilation and Review (Data Paper).” Internet Archaeology, no. 36 (January). https://doi.org/10.11141/ia.36.6.

References

Citation

For attribution, please cite this work as

Morrison (2022, June 3). Patrick Morrison: Archaeological dates for island occupation in Australia. Retrieved from https://padmorrison.com/posts/2022-06-02-archaeological-dates-for-island-occupation-in-australia/

BibTeX citation

@misc{morrison2022archaeological,
  author = {Morrison, Patrick},
  title = {Patrick Morrison: Archaeological dates for island occupation in Australia},
  url = {https://padmorrison.com/posts/2022-06-02-archaeological-dates-for-island-occupation-in-australia/},
  year = {2022}
}