New evidence of how the Norse became long-distance mariners
According to the saga of Erik the Red, “shipworm will not bore into the wood which has been smeared with the seal-tar”. Viking scholars debate the precise meaning of “seal” in “seal-tar”. One interpretation is that the Scandinavian conquerors mixed tar, or pitch, with animal fat and some experiments suggest this may indeed keep shipworm at bay. What is clear is that tar was an important marine technology, and new finds suggest that a vast industry making it emerged at the beginning of the Viking era, helping enable their conquests.
The oldest tar pits in Sweden date from around 100AD to 400AD. The first were discovered in the early 2000s, and are found close to old settlements, suggesting that the tar was for coating houses and household items. It was made by stacking pine wood into conical pits a metre or two across, setting the wood on fire and covering it with turf and charcoal to encourage a slow combustion. In this way, the wood’s resin would turn to tar and drip out of the cone’s bottom into a buried container.
However, as Andreas Hennius, an archaeologist at Uppsala University, reports in this month’s Antiquity, around the eighth century something shifted. The pits got much bigger—reaching eight to ten metres in diameter—and moved far into the forest. These pits could have made between 200 and 300 litres of tar in a single production cycle.
Mr Hennius argues that the builders needed all this tar for ships. The eighth century was when sails arrived in Scandinavia. That, in his view, is no coincidence. Tar has been found on hulls, rigging and small fragments of sails from Viking vessels. It was used to waterproof the hulls and windproof the sails. It was also, according to Morten Ravn of Viking Ship Museum in Roskilde, Denmark, mixed with pigments such as ochre to give sails colour and offer protection from damaging ultraviolet rays.
Sailing suddenly expanded people’s maritime reach, creating opportunities both for long-distance trade and for the large, swift attacks that define the Viking age. Vikings conquered half of England and part of northern France. They raided as far as the Mediterranean and left monks in coastal monasteries quaking in their cassocks. “From the fury of the Northmen, O Lord, deliver us!” these monks prayed. From their tar pits, too.

L165的更多相关文章

  1. NET微信公众号开发-5.0微信支付(待测试)

    开发前准备. 1.0微信支付官方开发者文档 2.0官方demo下载 我们用c#所以选择.net版本 不过这个官方的demo根本跑步起来 3.0官方demo运行起来解决方案 4.0微信支付官方.net版 ...

  2. SVG2PNG(前台和后台将SVG转换为PNG)--amcharts导出png

    在项目中用到了amcharts,amcharts图标统计插件是利用SVG实现的,其自带下载png功能,但是不支持IE以下浏览器.因此研究了SVG转换为png,最终实现的效果是将amcharts生成一张 ...

  3. Edit the AlarmClock in AOSP with android-studio

    1. git the AlarmClock source code on AOSP 2. select 'import project' by android-studio & we will ...

  4. Deeplearning知识蒸馏

    Deeplearning知识蒸馏 merge paddleslim.dist.merge(teacher_program, student_program, data_name_map, place, ...

随机推荐

  1. 20145201李子璇《网络对抗》逆向及Bof基础实践

    20145201李子璇<网络对抗>逆向及Bof基础实践 实践目标 本次实践的对象是一个名为pwn1的linux可执行文件. 该程序正常执行流程是:main调用foo函数,foo函数会简单回 ...

  2. 机器学习:让我们彻底搞懂CNN【转】

    本文转载自:http://115.com/182920/T1266078.html 机器学习:让我们彻底搞懂CNN 上世纪科学家们发现了几个视觉神经特点,视神经具有局部感受眼,一整张图的识别由多个局部 ...

  3. DOS/BAT批处理if exist else 语句的几种用法

    在DOS批处理命令中常常会通过if语句来进行判断来执行下面的命令, 那么批处理if语句怎么用呢,下面学无忧小编就来说说有关批处理if以及if exist else语句的相关内容.一.批处理if书写格式 ...

  4. PyTorch源码解读之torch.utils.data.DataLoader(转)

    原文链接 https://blog.csdn.net/u014380165/article/details/79058479 写得特别好!最近正好在学习pytorch,学习一下! PyTorch中数据 ...

  5. Ubuntu+apache安装redmin

    公司要迁移redmin,本来以为是一个很简单的项目,想不到整整搞了一天加一个晚上. 首先是对ruby的安装不熟悉,现在明白了ruby的安装顺序是先安装rvm版本管理,然后用rvm安装ruby,安装好后 ...

  6. POJ 1985 Cow Marathon(树的直径模板)

    http://poj.org/problem?id=1985 题意:给出树,求最远距离. 题意: 树的直径. 树的直径是指树的最长简单路. 求法: 两遍BFS :先任选一个起点BFS找到最长路的终点, ...

  7. Android -- 两个activity界面的切换, 显示Intent 和 隐式Intent,putExtra传递数据

    1. 两个Activity之间可以通过Intent切换, 包括显示Intent 和 隐式Intent. 实例代码 MainActivity.java public class MainActivity ...

  8. 【Python】深入浅出学习Python的yield和generator

    背景 之前走马观花接触过Python协程的概念,这两天和一个同事聊到了协程,死活想不起来曾经看过的东西,就记得一个yield,概念不清: 所以想捋一捋相关的东西,此篇作为学习的记录. Generato ...

  9. Memory Manager surface area changes in SQL Server 2012

    here were various changes to memory related DMVs, DBCC memory status, and Perfmon counters in SQL Se ...

  10. [Vue]组件——.sync 修饰符实现对prop 进行“双向绑定”

    一.同时设置1个 prop 1.以 update:my-prop-name 的模式触发事件,如对于title属性: this.$emit('update:title', newTitle) 2.然后父 ...