An Exercise in Uneven Data

Slides:



Advertisements
Similar presentations
AP Statistics Section 3.2 C Coefficient of Determination
Advertisements

CITS2401 Computer Analysis & Visualisation
Exercise Exercise3.1 8 Exercise3.1 9 Exercise
Exercise Exercise Exercise Exercise
Exercise Exercise Exercise Exercise
Exercise Exercise6.1 7 Exercise6.1 8 Exercise6.1 9.
Leadership Training Unit 6: Navigation Part 2. 2 BWV Walk Leader Training Unit 6 – Navigation Now, here’s a picture familiar to most of you.
Lecture 20 “Preformed” Concentrations Lecture 19 – Summary 1) The concentration of any bioactive element can be considered the sum of preformed and remineralized.
Coastal Upwelling Equatorward winds along a coastline lead to offshore Ekman transport Mass conservation requires these waters replaced by cold, denser.
What else do maps tell us?. Maps tell us where places are located - but they also contain lots more information. What other information does the map provide.
Ordinance Survey Maps.
Section 8.3 – Systems of Linear Equations - Determinants Using Determinants to Solve Systems of Equations A determinant is a value that is obtained from.
CMPS1371 Introduction to Computing for Engineers NUMERICAL METHODS.
Subject: Geography Topic: Where are we?--- Basic Map Reading Skills
Uncontrolled copy not subject to amendment Basic Navigation Using Map and Compass.
The Land Around Us An Introduction to Maps By: Mrs. Miles.
Drawing Linear Graphs Starter: Multiplying Negative Numbers (1) -3 x 4 = (4) = (7) -6 x = (10) -3 x 3 +9 = (13) 7 x = (16) 4 x
Mr.Sassine Duration: Eight weeks starting Changing Australian Communities at the end of the term Investigating Australia’s physical environments.
How are tides produced and what is their pattern.
赴国际水稻所访学情况汇报 长江大学农学院 邢丹英 2010 年 6 月. 学习目的 学习时间、地点 学习内容 学习收获 几点体会 汇报提纲.
Plan Waves -What are they -How do they happen -What do they do Tides -What they are -How they happen -Tide mapping assignment (different beaches)
Chapters 2 & 3 MATLAB Skills This tutorial revisits Examples 3.1 to 3.4 to show how MATLAB can be used to solve the same problems 1.Scatter Plots 2.Other.
Interpolation.
Computers in Civil Engineering 53:081 Spring 2003 Lecture #15 Spline Interpolation.
Scale and Distance. Map Scales Large scale maps show the most detail but only cover a small area e.g. road maps, town plans. Small scale maps show less.
Lesson Six Six-figure Grid References. Locate the school using an online map How can we pinpoint places on an Ordnance Survey map? How could you describe.
Locating Epicenters and Earthquake Depths
Tides.
y=a+bx Linear Regression: Method of Least Squares slope y intercept y
AUSTRALIAN POPULATION DISTRIBUTION. Australia’s Population Distribution Australia has an uneven population distribution Australia's average population.
What is wrong with this picture?. What would a vector arrow look like for someone traveling 35 mph?
Ch. 11 Sec. 1 Distance & Displacement. Frame of Reference Describing motion accurately requires a Frame of Reference Describing motion accurately requires.
Distance and Displacement In One Dimension
Reducing a Set Covering Matrix. S I T E S Cost Areas
Graphing Oceanographic Data. The Ocean is a Variable Ecosystem The ocean is a huge and highly variable environment –Changes with time (daily, seasonally,
南水北调东线第一期工程山东段 情况简介. 主要汇报内容 二、南水北调山东段工程总体布置 三、山东段工程项目划分及工程主 要建设内容 一、南水北调东线工程概况 四、前期工作及工程建设进展情况 五、工程总投资.
Marking your own work from Exercise A 1. Arthur’s Bench 2. Mitchell’s Autos 3. Playground 4. Post Office Exercise B 1. True 2. False 3. False 4. True 5.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Applied Numerical Methods With MATLAB ® for Engineers.
Lecture 29: Modeling Data. Data Modeling Interpolate between data points, using either linear or cubic spline models Model a set of data points as a polynomial.
CORPUS CHRISTI CATHOLIC COLLEGE – GEOGRAPHY DEPARTMENT
Rotation and Revolution Notes
Uncontrolled copy not subject to amendment
Principles of a Grid Reference
Representing Motion Graphically
KIDS Strategy for Solving Word Problems
The Changes of Concentration with Time
Understanding Longitude & Latitude.
Measuring Distances and Directions
Managing Human Resources and Labor Relations.
1) You run from your house to a friend's house that is 3 miles away
10.8 Compare Linear, Exponential, and Quadratic Models
Scale and Distance.
10.8 Compare Linear, Exponential, and Quadratic Models
y=a+bx Linear Regression: Method of Least Squares slope y intercept y
Parts of Maps.
10.8 Compare Linear, Exponential, and Quadratic Models
Chapter 2 Excel Fundamentals
Compare Linear, Exponential, and Quadratic Models
Understanding Longitude & Latitude.
10.8 Compare Linear, Exponential, and Quadratic Models
Section 1 Distance and Displacement
Place your puzzle and free fall practice problems on your desk #
Objective: To know the equations of simple straight lines.
Section 3.1 Understanding Linear Trends and Relationships
LT Anna C. (Christy) Bryant
Incentive Schedule 8:00 - 8:23 HR/MIRP 8:23 - 9:26 B1 9: :31 B2
Position, Speed and Velocity
What is a scale? Scale is the ratio of the size of objects on a map compared to their size in the real world. 4 cm:1 km For example on a map with the scale.
Position and speed as a function of time
Objective: To know the equations of simple straight lines.
Presentation transcript:

An Exercise in Uneven Data Compiling Nutrient Data on CalCofi Line 67 for a Spring and Fall Cruise. Or: An Exercise in Uneven Data LT Anna C. (Christy) Bryant

CalCofi Grid

The Data None of the data was square Linear interpolation was used to square it Organization of data was critical for interpolation functions Not all cruises covered the same distances One was 425 km, one was 275 km Occasional instances of ‘no data’ Use of Linear Interpolation helped this for interior points

How Linear Interp Works Profile1=interp1(deep1,prof1,depth); where deep1 is your uneven data and depth is a matrix of your desired outcome: depth=[0:-5:-200]; Basically, you tell Matlab to create straight lines between the data points and get a value at distinct points along the line

“Squaring Data”

Some Data Points “no data”

Other “no data” points were treated...

Simple Static Displays Areas of No Data

Then to Animate... Animation of NO3 concentrations along CalCofi67 from the coast (east) to west for 425km Depth (m) NO3 Concentration

Creating Custom Animations..

Summary Data that is uneven in every respect becomes labor intensive to organize Display, once organized, is highly versatile using MatLab Keep the program should it ever happen to you!