EOS 423 // EOS 518: Advanced Sedimentology and Stratigraphy

Lecture 1: Course Introduction | Jan 9, 2023

Welcome to Advanced Topics: Sedimentology and Stratigraphy! Here is the plan for today:

  1. introductions
  2. overview of course outline
  3. overview of course content
  4. first assigment:
    • make sure Python is installed on your computer (due Jan. 12, 2023)
  5. surface transport

1a. Introductions: Blake Dyer

Interested in:

  1. Earth history
  2. Sea level and climate change
  3. Isotope geochemistry of carbonates
  4. Machine learning
  5. Bayesian inversion
No description has been provided for this image Bob Wright A433
blakedyer@uvic.ca
No description has been provided for this image

A Mathematical Theory of Communication
Claude Shannon 1948

1c. Introductions: who are you¶

In [33]:
#let's get some help from Python for class introductions

import numpy as np
class_list=['Stacey','Kai','Kristyn','Grace','Andrea','Liam','Matthew','Noa','Matteo','Izzy','Rhys','Felix']

def pick_someone(class_list):
    if len(class_list)>0:
        person=np.random.choice(class_list)
        toprint="%s, please introduce yourself!" % person 
        toprint='#####\n'+toprint+'\n#####\n'
        print(toprint)
        class_list.remove(person)
    return class_list
In [46]:
class_list=pick_someone(class_list)

2a. Course outline¶

Course description and objectives: In this course, we will explore how geologic and Earth surface processes, including tectonic, sea level and climate changes, are recorded and preserved in the stratigraphic record. Focus will be on modern and ancient case studies, with topics including basin analysis, cyclostratigraphy, process sedimentology and paleo-environmental reconstruction. Problem sets emphasize computational skills, including introductory time-series analysis, geospatial analysis and remote sensing. Pre-requisites: EOS 225, 201.

*If someone does not have one of these pre-reqs, please contact Blake ASAP!*

Course Materials: There is no required textbook. Readings will be made available through the course website. Students are required to have a computer work on assignments.

2b. Course outline¶

Course structure: The course will meet twice a week (M/Th) for lectures and on Fridays to work on the weekly assignment.

  • On Monday each week we will begin with a flipped classroom: I will randomly select at least two students to informally present their progress on the current weekly assignment.
  • Any remaining time on Monday and all of Thursday will be used for lectures on new material or guided group discussions of assigned readings.

2c. Course outline¶

Grading: Your grade will be determined primarily by your performance on assignments. Although I will not track participation in lecture, I expect that the assignments will be significantly easier to complete for those who participate.

  • Students enrolled in the graduate version of the course (EOS 518) will be expected to complete an alternative final assignment that includes a greater amount of self-direction.
  • Below is a breakdown of the course assessment:
EOS 491 (Undergraduate Students) EOS 518 (Graduate Students)
Assignments 60% Assignments 60%
Assignment presentations 10% Assignment presentations 10%
Final assignment 30% Final project 30%

3a. Sedimentary transport & building stratigraphy¶

In [30]:
from IPython.display import HTML, IFrame
HTML('<iframe style="display: block;border-style:none; margin:auto;" width="1200" height="675" src="https://www.youtube.com/embed/VRXR86uRnUY"></iframe></p>')
Out[30]:

3b. Geospatial analysis & surface processes¶

Which way is the wind blowing?

In [31]:
from IPython.display import HTML

HTML("""
    <video alt="test" controls>
        <source src="images/learning.mp4" type="video/mp4">
    </video>
""")
Out[31]:

3c. Carbon systems & chemistry¶

3d. Stratigraphic correlation¶

  • correlation = building age models
  • how is time distributed in sedimentary rocks?

3d. Stratigraphic correlation¶

  • correlation = building age models
  • how is time distributed in sedimentary rocks?

3d. Stratigraphic correlation¶

  • correlation = building age models
  • how is time distributed in sedimentary rocks?

3e. Data synthesis & sediment cycling¶

a decaying rock record?
I look at the natural geological record, as a history of the world imperfectly kept, and written in a changing dialect; of this history we possess the last volume alone, relating only to two or three countries. Of this volume, only here and there a short chapter has been preserved; and of each page, only here and there a few lines.
-- Charles Darwin

3e. Data synthesis & sediment cycling¶

a decaying rock record?
I look at the natural geological record, as a history of the world imperfectly kept, and written in a changing dialect; of this history we possess the last volume alone, relating only to two or three countries. Of this volume, only here and there a short chapter has been preserved; and of each page, only here and there a few lines.
-- Charles Darwin

3e. Data synthesis & sediment cycling¶

macrostrat.org: 1,534 chronostratigraphic columns | 35,461 rock units | 2,540,323 map polygons | 12,935,471 TDM-ready papers

4. First assignment (due before next class):¶

Install Python on your local machine¶

  • One of the easiest ways to install and manage python on your local machine is through Anaconda: https://www.anaconda.com/products/individual
  • There are two versions of python, version 2 and version 3. *You should install Python 3*.
  • sediment supply to the basin
  • transport of sediment within the basin
  • available space (accomodation space)