Contrary to the arguments of some (that much of the pacific was settled by Polynesians accidentally marooned after being lost and adrift), it seems reasonable (that this feat was accomplished by deliberate colonization expeditions that set out fully stocked with food and domesticated plants and animals.)

许多太平洋小岛被波西米亚人偶然的定居,这些波西米亚人在被遗弃和漂泊之后偶然地孤立无援。与这个观点相反的是,(故意的殖民远航者在太平洋小岛上定居,这些远航者携带着丰富的食物和国内植物和动物)这个理论是理性的。

it seems reasonable that this feat was accomplished by deliberate colonization expeditions that set out fully stocked with food and domesticated plants and animals.

Contrary to The pacific was settled by PolynesiansThe pacific was accomplished by expeditions .

不是波西米亚人定居太平洋,而是被远航者定居太平洋。

adrift漂泊的

stock提供货物

=========================================================================

Some people have argued that the Pacific was settled by traders who became lost while transporting domesticated plants and animals.

the Pacific was settled by traders----错误,Some people认为波西米亚人在太平洋定居。

==========================================================================

The original Polynesian settlers were probably marooned on the islands, but they may have been joined later by carefully prepared colonization expeditions.

Polynesian settlers were probably marooned on the islands, but they may have been joined later ---错误,主要讲reasonable的例子

marooned孤立无援的

=======================================================================

Although it seems reasonable to believe that colonization expeditions would set out fully stocked, this is contradicted by much of the evidence.-----------错误,转折相反

contradicted 反驳

=======================================================================

The settlement of the Pacific islands was probably intentional and well planned rather than accidental as some people have proposed.

The settlement of the Pacific islands was probably intentional and well planned rather than accidental as some people have proposed.

intentional 有意的

Proposed 提出

太平洋小岛上的定居者是有意的且计划好的,而不是像一些人提出的偶然性的定居者。

TPO5-2 The Origin of Pacific Island People的更多相关文章

  1. python绘制世界人口地图

    最近看了<python编程:从入门到实践>,里边设计的项目拿来学习学习,绘制世界人口地图. 首先,下载数据,http://data.okfn.org/ ,从这里下载population_d ...

  2. Codeforces GYM 100114 B. Island 水题

    B. Island Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100114 Description O ...

  3. LightOJ 1418 Trees on My Island (Pick定理)

    题目链接:LightOJ 1418 Problem Description I have bought an island where I want to plant trees in rows an ...

  4. [LeetCode] Island Perimeter 岛屿周长

    You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represen ...

  5. [LeetCode] Pacific Atlantic Water Flow 太平洋大西洋水流

    Given an m x n matrix of non-negative integers representing the height of each unit cell in a contin ...

  6. 463. Island Perimeter

    https://leetcode.com/problems/island-perimeter/ 在一个N×N的矩阵中,N<100,1代表岛,0代表海,岛内没有海,求岛的周长 [[0,1,0,0] ...

  7. homebrew update 出现Failure while executing: git pull --quiet origin refs/heads/master:refs/remotes/origin/master解决方案

    具体可以参考https://github.com/Homebrew/homebrew/issues/21002 cd /usr/local git status git reset --hard or ...

  8. Leetcode-463 Island Perimeter

    #463. Island Perimeter You are given a map in form of a two-dimensional integer grid where 1 represe ...

  9. Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:9001/api/size/get. (Reason: CORS header 'Access-Control-Allow-Origin' missing).

    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http:/ ...

随机推荐

  1. MySQL新增数据,存在就更新,不存在就添加

    1.插入一条数据,存在就更新,不存在就更新(必须现有唯一键)使用insert ignore语句: insert ignore into table(col1,col2) values ('a','b' ...

  2. 《新标准C++程序设计》1.1-1.6(C++学习笔记1)

    1.cout输出 cout<<待输出项<<待输出项2<<···; 2.cin输入 cin>>变量1>>变量2>>···; 3.C ...

  3. NumPy - 数组(定义,拼接)

    NumPy 教程(数组) set_printoptions(threshold='nan') NumPy的数组中比较重要ndarray对象属性有: ndarray.ndim:数组的维数(即数组轴的个数 ...

  4. POJ 1651:Multiplication Puzzle 矩阵相乘式DP

    Multiplication Puzzle Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7118   Accepted:  ...

  5. java正则 读取html 获取标题/超链接/链接文本/内容

    java正则 读取html 获取标题/超链接/链接文本/内容 参考链接:http://yijianfengvip.blog.163.com/blog/static/175273432201142785 ...

  6. Emoji表情符号兼容方案

    Emoji表情符号兼容方案 一 什么是Emoji    emoji就是表情符号:词义来自日语(えもじ,e-moji,moji在日语中的含义是字符) 表情符号现已普遍应用于手机短信和网络聊天软件. em ...

  7. RaspBerry--解决无法用 ssh 直接以 root 用户登录

    参考:https://www.cnblogs.com/xwdreamer/p/6604593.html 以普通用户登录,然后切换至 root 用户. 编辑 /etc/ssh/sshd_config 添 ...

  8. Java 面向对象的帮助文档制作(6)

    set classPath=c:\myclass; 设置path路径

  9. 解决ubuntu16.04 ‘E: 无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资源暂时不可用) ’ 问题

    问题: 当运行sudo apt-get install/update/其他命令时,会出现如下提示: E: 无法获得锁 /var/lib/dpkg/lock-frontend - open (11: 资 ...

  10. Python说文解字_杂谈07

    1. 深入dict from collections.abc import Mapping,MutableMapping # dict 属于mapping类型 a = {} print(isinsta ...