<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Oceanographer&#039;s Choice &#187; scale</title>
	<atom:link href="http://www.oceanographerschoice.com/tag/scale/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oceanographerschoice.com</link>
	<description>nekton, plankton, pings, and backscatter</description>
	<lastBuildDate>Mon, 23 Jan 2012 06:05:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>DIY Scale Dependence</title>
		<link>http://www.oceanographerschoice.com/2011/04/diy-scale-dependence/</link>
		<comments>http://www.oceanographerschoice.com/2011/04/diy-scale-dependence/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 04:02:37 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Quantitative]]></category>
		<category><![CDATA[birds]]></category>
		<category><![CDATA[foraging]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[random walk]]></category>
		<category><![CDATA[scale]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=1069</guid>
		<description><![CDATA[What&#8217;s the big deal about &#8220;scale?&#8221; It&#8217;s a word that I&#8217;ve written about before here, and one that certain types of ecologists can&#8217;t seem to stop talking about. But it can be an infuratingly vague word to pin down, given &#8230; <a href="http://www.oceanographerschoice.com/2011/04/diy-scale-dependence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>What&#8217;s the big deal about &#8220;scale?&#8221; It&#8217;s a word that I&#8217;ve written about before here, and one that certain types of ecologists can&#8217;t seem to stop talking about.  But it can be an infuratingly vague word to pin down, given that it can have more than one meaning, even in technical usage.  And the fact that scale-dependent thinking is applicable to such a staggeringly wide range of phenomena, while a testament to its relevance, hardly helps in nailing down what it means.  As a grad-student friend of mine, no slouch when it comes to quantitative reasoning, asked me recently, &#8220;What&#8217;s the deal with &#8216;scale?&#8217; It all just seems kinda theoretical to me.&#8221;</p>
<p>Let&#8217;s take a concrete example.  Say you&#8217;re interested in how seabirds forage for small fish, and so you put small GPS recorders on some birds which record their position every second. Examining the tracks, one of them looks like this:<br />
<span id="more-1069"></span></p>
<p><img alt="" src="http://www.oceanographerschoice.com/log/wp-content/bird_track.png" title="Random walk bird track" class="alignnone" width="550" height="550" /></p>
<p> Since I don&#8217;t have any real data, I had to make some up.  For simplicity&#8217;s sake, I used a random walk: at each step, the bird moves a random distance from its current position.<sup><a href="#note1">[1]</a></sup> The path starts on the right side near the middle, and then wanders around in a counterclockwise loop, ending up in the top right. This isn&#8217;t a terrible approximation of a bird swooping around its foraging grounds, searching for fish.  If you use R, you can reproduce the above using these commands.</p>
<pre>
set.seed(10)
x <- cumsum(rnorm(500, 0, 5))
y <- cumsum(rnorm(500, 0, 5))
plot(x, y, ty='o' , cex=0.2 , xlab='x (meters)' , ylab='y (meters)' )
</pre>
<p>An important question in foraging ecology is whether the animal is taking in more energy from eating than it is spending from running/swimming/flying around looking for food.  To get an estimate of how many calories the bird has burned, you calculate how far it has flown.  Figure out how much the <em>x</em> and <em>y</em> change between each time step, and use the pythagorean theorem to get the distance traveled.</p>
<pre>
distance <- sum(sqrt(diff(x)^2 + diff(y)^2))
</pre>
<p>This gives a total distance flown of 3114.4 meters.</p>
<p>But suppose that because of budget cuts to the National Science Foundation, your research grant was actually 30% smaller.  As a result, you could only afford a cheaper version of the GPS tag, which records the bird's position every 2 seconds instead of every one second.  No big deal, right? Calculate the distance, carry on:</p>
<pre>
subsample <- seq(0, 500, by=2)
x.2 <- x[subsample]
y.2 <- y[subsample]
distance.2 <- sum(sqrt(diff(x.2)^2 + diff(y.2)^2))
</pre>
<p>Whoa! That gives a total distance of only 2256.0 meters.  What happened?  The bird flew the <em>exact same path</em>, but when you sample every two seconds instead of one, it appears to have flown 858 meters less. How does that work?  Looking at the new path overlaid on the old one helps:</p>
<pre>
plot(x, y, col='grey' , ty='o' , cex=0.2, xlab='x (meters)' , ylab='y (meters)' )
lines(x.2, y.2, ty='o' , cex=0.2)
</pre>
<p><img alt="" src="http://www.oceanographerschoice.com/log/wp-content/bird_track2.png" title="New bird track" class="alignnone" width="550" height="550" /></p>
<p>Because it skips every other observation, the new path (in black) avoids some of the random squigglyness in the old one (grey).  The total measured length is 28% shorter.  This is important, because if you were calculating the energy use by the bird, you would get a very different answer with a 1-second and 2-second resolution.  Your conclusions would be incomplete at best, and wrong at worst.</p>
<p>But if you're a curious person, you might start wondering what the calculated distance would be at other resolutions.  Instead of waiting around passively for the next round of corporate tax cuts before enacting your experiment, you decide to be proactive, and rush to your computer.  After dashing off an angry email to your representative, you run a simple simulation, resampling the bird's track at different resolutions, and then plotting the total distance measured as a function of sampling scale. </p>
<pre>
scales <- 1:200
distances <- rep(0, length(scales))
for (i in 1:length(scales)) {
  subsample <- seq(1, 500, by=scales[i])
  x.sub <- x[subsample]
  y.sub <- y[subsample]
  distances[i] <- sum(sqrt(diff(x.sub)^2 + diff(y.sub)^2))
}
plot(scales, distances)
</pre>
<p><img alt="" src="http://www.oceanographerschoice.com/log/wp-content/dist_v_scale.png" title="Distance as a function of scale" class="alignnone" width="450" height="450" /></p>
<p>This graph shows very clearly what we mean when we talk about "scale-dependence."  The distance measured depends, in a very real sense, on the scale of measurement.  Fortunately, this relationship appears quite regular and predictable.  It is, in fact, an example of a <em>power law</em>.  Power laws are one of those mathematical relationships that show up all over the place in nature.  Ratio of heart rate to body size? Velocity spectrum in a turbulent flow? Distribution of income among the richest Americans?  Gravity?  All power laws.  In our case, the relationship looks like this:<br />
<center><img src="http://l.wordpress.com/latex.php?latex=D%20%3D%20a%20%5C%2C%20s%5Eb%20&#038;bg=001B82&#038;fg=FFFFFF&#038;s=2" title="D = a \, s^b " style="vertical-align:-20%;" class="tex" alt="D = a \, s^b " /></center><br />
...which means, simply, that the distance measured is proportional to the scale of measurement raised to a power <em>b</em>.  These constants, <em>a</em> and <em>b</em>, are easy to estimate. Taking the log of both sides of the equation, we can transform it from a power law to a straight line:<br />
<center><img src="http://l.wordpress.com/latex.php?latex=%5Cln%28D%29%20%3D%20%5Cln%28a%29%20%2B%20b%20%5Cln%28s%29&#038;bg=001B82&#038;fg=FFFFFF&#038;s=2" title="\ln(D) = \ln(a) + b \ln(s)" style="vertical-align:-20%;" class="tex" alt="\ln(D) = \ln(a) + b \ln(s)" /></center><br />
and from there, we can do a regular linear regression using R's "lm" function.</p>
<pre>
reg.distance <- lm(log(distances) ~ log(scales))
summary(reg.distance)
</pre>
<p>In this fit, because it is a log-transform of the real relationship, the slope (-0.528) is actually the value of the exponent in the power law, and the y-intercept (8.260) is the natural log of the coefficient <em>a</em>.  We transform it back to get the true power law relation.<br />
<center><img src="http://l.wordpress.com/latex.php?latex=D%20%3D%20e%5E%7B8.260%7D%20%5C%2C%20s%5E%7B-0.528%7D%20%20%3D%203867.331%20%5Ctimes%20s%5E%7B-0.528%7D&#038;bg=001B82&#038;fg=FFFFFF&#038;s=2" title="D = e^{8.260} \, s^{-0.528}  = 3867.331 \times s^{-0.528}" style="vertical-align:-20%;" class="tex" alt="D = e^{8.260} \, s^{-0.528}  = 3867.331 \times s^{-0.528}" /></center></p>
<p>This relationship can be generalized a bit further as follows:</p>
<p><center><img src="http://l.wordpress.com/latex.php?latex=%5Cfrac%7BD_1%7D%7BD_2%7D%20%3D%20%5Cleft%28%20%5Cfrac%7Bs_1%7D%7Bs_2%7D%20%5Cright%29%20%5E%20%7B-0.528%7D%20&#038;bg=001B82&#038;fg=FFFFFF&#038;s=2" title="\frac{D_1}{D_2} = \left( \frac{s_1}{s_2} \right) ^ {-0.528} " style="vertical-align:-20%;" class="tex" alt="\frac{D_1}{D_2} = \left( \frac{s_1}{s_2} \right) ^ {-0.528} " /></center><br />
What this says is that if you change the sampling resolution by a certain percentage, the percent change in measured distance is <em>not</em> the same&mdash;it is the proportional change in scale raised to the -0.528 power.  Assuming the relationship is the same for the other bird tracks (which we need to check), we now have a general expression for how the measured distance changes with the scale of measurement.  So no matter what scale we measure at, we can predict what the distance would have been had we measured at another scale.</p>
<p>In the real world, scaling relationships like this won't always appear, and when they do, they will usually only apply over a particular range of scales.  Still, if you can deduce a scaling relationship, it's a powerful tool for reasoning about your problem, and may clarify what used to look like inconsistencies.  Moral of the (somewhat artificial) story?  Sample at multiple scales, or at high enough resolution that you can resample your data at a lower resolution, as I did here.  And keep your mind open to the idea of different patterns and processes at different scales&mdash;what you see at first is not always the whole story!</p>
<p id="note1">[1] In physics, this kind of random walk is known as <a href="http://en.wikipedia.org/wiki/Brownian_motion">Brownian motion</a>, and has all kinds of interesting properties. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2011/04/diy-scale-dependence/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Matching Management to Fish and Fishers</title>
		<link>http://www.oceanographerschoice.com/2010/10/matching-management-to-fish-and-fishers/</link>
		<comments>http://www.oceanographerschoice.com/2010/10/matching-management-to-fish-and-fishers/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 06:23:26 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Research Blogging]]></category>
		<category><![CDATA[area management]]></category>
		<category><![CDATA[cod]]></category>
		<category><![CDATA[Downeast]]></category>
		<category><![CDATA[fisheries]]></category>
		<category><![CDATA[fisheries management]]></category>
		<category><![CDATA[groundfish]]></category>
		<category><![CDATA[Gulf of Maine]]></category>
		<category><![CDATA[lobster]]></category>
		<category><![CDATA[Maine]]></category>
		<category><![CDATA[NMFS]]></category>
		<category><![CDATA[PERC]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[Ted Ames]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=660</guid>
		<description><![CDATA[There are no truly universal laws in ecology. Every pattern and process takes place on its own scale in time and space, and truths that hold at one scale do not necessarily hold at another. This is a fact of &#8230; <a href="http://www.oceanographerschoice.com/2010/10/matching-management-to-fish-and-fishers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 5px;"><a href="http://www.researchblogging.org"><img alt="ResearchBlogging.org" src="http://www.researchblogging.org/public/citation_icons/rb2_large_gray.png" style="border:0;"/></a></span>There are no truly universal laws in ecology.  Every pattern and process takes place on its own scale in time and space, and truths that hold at one scale do not necessarily hold at another.  This is a fact of life anyone dealing with an ecosystem has to come to terms with, whether they are a scientist trying to understand it, a harvester trying to make a living from it, or a manager trying to translate between the two.  It is not an easy proposition.</p>
<p>I just got done reading a new paper <a href="http://www.penobscoteast.org/documents/C09-052.1GOMplan.pdf">[pdf]</a> by Ted Ames, McArthur fellow and founding director of the <a href="http://www.penobscoteast.org/Default.asp">Penobscot East Resource Center</a> in Stonington, Maine, which speaks directly to this question&mdash;namely, how to match the scale of fishing effort to the scale of fish stocks and populations.  PERC is an organization I have a personal connection to, having interned there the summer after my Junior year in college.  The paper, titled &#8220;Multispecies Coastal Shelf Recovery Plan: A Collaborative, Ecosystem-Based Approach,&#8221; proposes a new management paradigm for groundfish<a href='#footnote1'>[1]</a> in the eastern Gulf of Maine aimed at better matching fishery management to both fish and fishermen.</p>
<p>Groundfishing in the Gulf of Maine&mdash;in fact, in the entire Northwest Atlantic&mdash;has had a troubled past half-century.  Stocks collapsed in the late 80s and early 90s, due to a combination of foreign and domestic overfishing, overcapitalization, ineffective management, and, more likely than not, unfavorable ocean conditions.  That&#8217;s plenty of causes for a stock collapse, but a few more have become apparent since then, too.</p>
<p>For one, we have learned that cod and other groundfish have much more localized stock structure than was previously thought.  This is a problem because NMFS sets quotas for large areas, encompassing a number groundfish sub-populations.  Even if the overall quota is sustainable, it is still possible for large, mobile boats to fish down local stocks one after another.  Stocks in some areas of the Gulf of Maine have seen measured recoveries, but others haven&#8217;t.  Non-local fishing pressure on local stocks is probably at least partly responsible.</p>
<p>A second wrinkle is the effect particular types of quotas have on the fishing fleet.  After several false starts, NMFS settled on a days-at-sea system, with time on the water for fishing allotted based on historical catches.  Though it wasn&#8217;t the intention, this policy had the effect of shutting out smaller boats.  A skipper with too few days-at-sea will find it unprofitable to fish at all, since the majority of his allotted time will be spent steaming to and from the fishing grounds.  As a result of the poor recovery of the fish and the days-at-sea restriction, there is very little groundfishing in New England north of Portland, ME.  East of Rockland, there is virtually none.</p>
<p>Ames&#8217;s proposed management solution borrows a page from another Maine fishery that had a troubled first half of the century: lobster.  Maine lobster, <em>Homarus americanus</em>, suffered a collapse in the 1930s, driven by a canning industry that took all sizes of lobster from pre-reproduction juveniles to giant old spawners.  In the wake of that collapse, local groups of lobstermen began to self-enforce limits on the number of traps and the size of &#8220;keepers.&#8221;  This informal management regime was gradually folded into state regulations.  In 1997, Maine explicitly divided up the coast into seven lobster management zones, yielding considerable management authority in each zone to local lobstermens&#8217; councils.  This progression of local management regimes&mdash;none of which, by the way, require much data to run&mdash;have seen consistently high landings.  Just as importantly, they have let fishermen and managers see eye-to-eye when they otherwise might not.</p>
<p>Under the Multi-Species Coastal Shelf Recovery Plan (MSCRP), stocks within 25km of the coast would be limited to small, local boats using hooks or traps, to protect inshore stocks and habitat.  An intermediate layer would be open to larger craft with somewhat looser gear restrictions, and beyond 75km, the current federal rules would apply unmodified.</p>
<p>I would be very interested to see a quantitative management-strategy evaluation of this scheme.  From my reading and superficial knowledge of the area, it seems as though it could have a good chance at success, at least in allowing near-shore stocks and small-scale inshore fishing a chance to recover.  Off the top of my head, I don&#8217;t know of any other area where a similar management strategy with nested areas of increasingly local management and effort restrictions has been implemented (if anyone knows of any, please let me know). And in the meantime, I will keep an eye on Maine&#8217;s Downeast coast, where a first step towards this idea was <a href="http://www.workingwaterfront.com/articles/Groundfishing-under-a-new-management-system/13849/">implemented</a> this summer&mdash;allowing groups of fishermen from several areas to pool the new catch shares, preserving their access to the fishery. (These &#8220;sectors&#8221; are different from what Ames proposes, as they are attached to groups of fishermen, not to geographical areas.)   Optimism is not high, exactly, but it is undeniably present.  And when it comes to a fishery that has been more or less dead for as long as yours truly has been alive, any optimism at all is a good thing.</p>
<p id='footnote1'><em>&#8220;Groundfish&#8221; is a catchall term for fish that live on or near the bottom.  In the North Atlantic, these include cod, haddock, hake, halibut, and flounders, among others.</em></p>
<p><span class="Z3988" title="ctx_ver=Z39.88-2004&#038;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&#038;rft.jtitle=Marine+and+Coastal+Fisheries%3A+Dynamics%2C+Management%2C+and+Ecosystem+Science&#038;rft_id=info%3Adoi%2F10.1577%2FC09-052.1&#038;rfr_id=info%3Asid%2Fresearchblogging.org&#038;rft.atitle=Multispecies+Coastal+Shelf+Recovery+Plan%3A+A+Collaborative%2C+Ecosystem-Based+Approach&#038;rft.issn=1942-5120&#038;rft.date=2010&#038;rft.volume=2&#038;rft.issue=&#038;rft.spage=217&#038;rft.epage=231&#038;rft.artnum=http%3A%2F%2Fafsjournals.org%2Fdoi%2Fabs%2F10.1577%2FC09-052.1&#038;rft.au=Ames%2C+T.&#038;rfe_dat=bpr3.included=1;bpr3.tags=Biology%2CGeosciences%2COther%2COcean+Science%2C+Marine+Biology%2C+Sustainability">Ames, T. (2010). Multispecies Coastal Shelf Recovery Plan: A Collaborative, Ecosystem-Based Approach <span style="font-style: italic;">Marine and Coastal Fisheries: Dynamics, Management, and Ecosystem Science, 2</span>, 217-231 DOI: <a rev="review" href="http://dx.doi.org/10.1577/C09-052.1">10.1577/C09-052.1</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2010/10/matching-management-to-fish-and-fishers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Grain, Extent, and 8-bit Cities</title>
		<link>http://www.oceanographerschoice.com/2010/07/grain-extent-and-8-bit-cities/</link>
		<comments>http://www.oceanographerschoice.com/2010/07/grain-extent-and-8-bit-cities/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 04:57:56 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[8-Bit Cities]]></category>
		<category><![CDATA[extent]]></category>
		<category><![CDATA[grain]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[scope]]></category>
		<category><![CDATA[Seattle]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=586</guid>
		<description><![CDATA[A friend sent me a link to this cool website a couple of days ago: a guy named Brett Camper has coded it up to show zoomable maps of several major cities, pixellated à la old video game world maps. &#8230; <a href="http://www.oceanographerschoice.com/2010/07/grain-extent-and-8-bit-cities/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A friend sent me a link to this <a href="http://8bitcity.com/map">cool website</a> a couple of days ago: a guy named <a href="http://vector.io/">Brett Camper</a> has coded it up to show zoomable maps of several major cities, pixellated à la old video game world maps.  It&#8217;s visually neat, and it also illustrates how observed patterns change with changing scale of observation.  What exactly does &#8220;scale of observation&#8221; mean?  The &#8220;scale of observation&#8221; is not just one value&mdash;it comes in several parts.  These parts go by several different names; one of the common frustrations with trying to use scale as an organizing concept is that the terminology is often vague and varied.  For the purposes of this blog post, I&#8217;ll use the terms &#8220;grain&#8221; and &#8220;extent.&#8221;</p>
<p>&#8220;Grain&#8221; refers to the size of the most fundamental sampling unit: a pixel in a satellite image,  a net tow on an oceanographic cruise, or a single quadrat in an ecological field study.  Values for those examples might be 1 square km of the earth&#8217;s surface, 1000 cubic meters of seawater filtered, and a single square meter of a prairie soil, respectively.  Any variation within the grain will be averaged out: you can&#8217;t tell where the squashed creatures in your net&#8217;s cod end came from with any more specificity than that they came from somewhere in the net&#8217;s 1000-odd meter track.  (There is also the issue of how far apart the sampled units are.  In the satellite image, they are contigous, while the net tows might be tens of kilometers apart, and the quadrats separated by tens of meters.)</p>
<p>&#8220;Extent&#8221; is the total area or distance over which measurements are collected.  A satellite image might span a couple thousand kilometers from one side to the other.  A long cruise could likewise cover thousands of kilometers, while the prairie grass study would probably only span a few kilometers, at most.  Thinking about the grain and extent of your sampling, you can start to imagine the types of patterns and phenomena you would be capable of detecting.  To illustrate, look at this clip from 8-Bit Cities, centered above Seattle&#8217;s University District&mdash;specifically, my office in the UW&#8217;s Fishery Science Building.</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://8bitcity.com/embed?Seattle,-122.3166807,47.6527446,13"></iframe></p>
<p>At this zoom level, you can&#8217;t actually see the Fishery Science Building, but if you click the &#8220;+&#8221; button on the map four times, it will show up.  Being zoomed in, the real-world, geographical size of each tile is now smaller that it was zoomed out, and the geographical distance from one side of the map to the other is smaller as well.  Both the grain and extent have decreased, and as a result, finer-scale patterns are visible: surface streets and buildings, for example.  If you let your eyes go blurry and just look at the patterns as you zoom in and out, you will notice that they look quite different.</p>
<p>You may also notice that as you zoom in, the number of tiles doesn&#8217;t actually change.  There are always about 26 of them across the map.  Though the grain and extent have both changed, their ratio has not.  This ratio is known as the &#8220;scope,&#8221; and it is also an interesting one to ponder.  Scope is the extent divided by the grain, and characterizes how densely information is packed inside the boundaries of your measurements.  As an example, look at the image below, from Google Maps, showing the same area as the 8-bit map, but with a much smaller grain, and, therefore, a much larger scope (clicking the &#8220;+&#8221; button four times here will also zoom you in to the same area as above):</p>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/?ie=UTF8&amp;hq=&amp;hnear=1027+23rd+Ave+E,+Seattle,+King,+Washington+98112&amp;ll=47.652669,-122.315598&amp;spn=0.040472,0.072956&amp;t=k&amp;z=13&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com/?ie=UTF8&amp;hq=&amp;hnear=1027+23rd+Ave+E,+Seattle,+King,+Washington+98112&amp;ll=47.652669,-122.315598&amp;spn=0.040472,0.072956&amp;t=k&amp;z=13&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>Looks pretty different, huh?  We are fairly used to looking at maps, so the loss of relevant information with the 8-bit map is obvious.  But for some other space, or measurement, or phenomenon&mdash;say, the variance of fish density in space and time in some region&mdash;and it is not immediately obvious what the appropriate sampling scales should be to measure the things we&#8217;re interested in.</p>
<p>This is just scratching the surface of all the ways you can look at grain, extent, and scope.  You can consider them in space, as I did here, or in time, as I tend to do in my thesis work, or in both space <em>and</em> time, or in terms of spectral resolution, or taxonomy&#8230;the list goes on.  As Camper puts it on 8-Bit Cities:</p>
<blockquote><p>
Maps offer us visual architectures of the world, encouraging us to think about and interact with space in particularly constrained ways. Take some time to think about your surroundings a little differently. Set out on a quest. Be an adventurer.
</p></blockquote>
<p>And as <a href="http://en.wikipedia.org/wiki/Chuang_Chou">Chuang Chou</a> put it circa 300 B.C., in a truly awesome quote I found at the top of this <a href="http://muse.jhu.edu/demo/geographical_analysis/v034/34.1pereira.pdf">paper</a> [pdf]:</p>
<blockquote><p>
“This being so,” asked the Earl of the River, “may I take heaven and earth as the standard for what is large, and the tip of a downy hair as the standard for what is small?”</p>
<p>“No,” said the Overlord of the North Sea. “Things are limitless in their capacities, incessant in their occurrences, inconstant in their portions, uncertain in their beginning and ending. For this reason, great knowledge observes things at a relative distance; hence it does not belittle what is small or make much of what is big, knowing that their capacities are limitless.”
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2010/07/grain-extent-and-8-bit-cities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Methods of sampling and analysis and our concepts of ocean dynamics</title>
		<link>http://www.oceanographerschoice.com/2010/06/methods-of-sampling-and-analysis-and-our-concepts-of-ocean-dynamics/</link>
		<comments>http://www.oceanographerschoice.com/2010/06/methods-of-sampling-and-analysis-and-our-concepts-of-ocean-dynamics/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 07:33:01 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Research Blogging]]></category>
		<category><![CDATA[ocean observatories]]></category>
		<category><![CDATA[scale]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=563</guid>
		<description><![CDATA[I read a paper today (actually, more like an essay) by Peter Wangersky, a longtime chemical oceanographer. Titled &#8220;Methods of sampling and analysis and our concepts of ocean dynamics,&#8221; it is essentially a personable ramble through six decades of marine &#8230; <a href="http://www.oceanographerschoice.com/2010/06/methods-of-sampling-and-analysis-and-our-concepts-of-ocean-dynamics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 5px;"><a href="http://researchblogging.org/news/?p=1468"><img alt="This post was chosen as an Editor's Selection for ResearchBlogging.org" src="http://www.researchblogging.org/public/citation_icons/rb_editors-selection.png" style="border:0;"/></a></span>I read a paper today (actually, more like an essay) by Peter Wangersky, a longtime chemical oceanographer.  Titled &#8220;Methods of sampling and analysis and our concepts of ocean dynamics,&#8221; it is essentially a personable ramble through six decades of marine science, reflecting on the technical capabilities and sampling methods over time and the way those capabilities and methods influenced the assumptions that were made and the questions that were posed&mdash;in essence, the working mental picture we have of the ocean.  Things have indeed changed a lot since he began during World War II.  The paper is full of quotable nuggets:</p>
<blockquote><p>
Adding machines did exist, and some could even be made to multiply, after a fashion. They were strictly mechanical, however, and the wear and tear on various joints, machine and human, coupled with the high frequency of random inputs, discouraged us from the use of any but the most necessary statistical tools. Perhaps this is why most analytical chemists of this vintage believe that if one does the analyses right, there’s no need for statistics. This is a self-reinforcing fallacy; if you don’t do the statistics, you never discover your limitations or the limitations of your methods and the universe you are sampling.
</p></blockquote>
<p>He also talks about the analysis of water samples for salinity, in the days before CTDs could measure it in-situ with electrical conductivity:</p>
<blockquote><p>
A group of female technicians, the salinity girls, ran the Mohr-Knudsen silver nitrate titrations to a chromate endpoint for eight hours a day. Needless to say, there was a considerable turnover in this group. There was always a shortage of salinity girls, and the sample bottles kept coming in from the ships and stacking up in the hallways.
</p></blockquote>
<p>Those were different times&#8230;</p>
<p>The most interesting aspect of the paper is his discussion of the shift in emphasis starting to occur from ship-based sampling to automated sampling with collections of stationary instruments.  My thesis research is using a stationary echosounder, so I&#8217;ve done a fair amount of thinking about the differences between the traditional ship-based approach and the more recent ocean observatory approach.  I appreciated hearing about this shift from the perspective of someone who has seen the entire evolution of modern oceanography firsthand.  He doesn&#8217;t discuss it in the same vocabulary I might, but he comes to essentially similar conclusions.</p>
<p>Wangersky&#8217;s point is that our perception of the ocean and its dynamics is hugely dependent on the tools we have available to study it.   It will be a very interesting time in the coming years, as more types of sensors and instruments are deployed long-term at more locations around the world.  Just by virtue of observing the ocean at a new spatio-temporal scale, we&#8217;re likely to find stuff going on that we missed before.  In the old days, oceanographers generally assumed that the ocean was in a steady state.  When hydrographic samples were few and far between, and you had to bring them back to shore for the &#8220;salinity girls&#8221; to analyze before you knew what they meant, this assumption was kind of necessary.  These assumptions were also kind of wrong, which is the point that Stommel made in his famous 1963 paper (<a href="http://www.oceanographerschoice.com/2010/05/varieties-of-oceanographic-experience/">remember Stommel?</a>).</p>
<p>As instruments, methods, and computing power have increased, these types of oversimplifications have retreated, to the point where we now embrace variability and dynamic changes, and try to understand them in and of themselves, rather than as unwanted noise on top of some supposed equilibrium or steady state that isn&#8217;t really there.  Every advance in instrumentation and every expansion of the scope of our observations has yielded a new perspective on the oceans, adding on to an understanding that is slowly and gradually becoming more complete.  </p>
<p><span class="Z3988" title="ctx_ver=Z39.88-2004&#038;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&#038;rft.jtitle=Scientia+Marina&#038;rft_id=info%3A%2F10.3989%2Fscimar.2005.69s175&#038;rfr_id=info%3Asid%2Fresearchblogging.org&#038;rft.atitle=Methods+of+sampling+and+analysis+and+our+concepts+of+ocean+dynamics&#038;rft.issn=&#038;rft.date=2005&#038;rft.volume=69&#038;rft.issue=S1&#038;rft.spage=75&#038;rft.epage=84&#038;rft.artnum=http%3A%2F%2Fscientiamarina.revistas.csic.es%2Findex.php%2Fscientiamarina%2Farticle%2FviewArticle%2F295&#038;rft.au=Peter+J.+Wangersky&#038;rfe_dat=bpr3.included=1;bpr3.tags=Biology%2CGeosciences%2COther%2COcean+Science%2C+Oceanography%2C+Marine+Biology">Peter J. Wangersky (2005). Methods of sampling and analysis and our concepts of ocean dynamics <span style="font-style: italic;">Scientia Marina, 69</span> (S1), 75-84 : <a rev="review" href="10.3989/scimar.2005.69s175">10.3989/scimar.2005.69s175</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2010/06/methods-of-sampling-and-analysis-and-our-concepts-of-ocean-dynamics/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Varieties of Oceanographic Experience</title>
		<link>http://www.oceanographerschoice.com/2010/05/varieties-of-oceanographic-experience/</link>
		<comments>http://www.oceanographerschoice.com/2010/05/varieties-of-oceanographic-experience/#comments</comments>
		<pubDate>Mon, 17 May 2010 01:50:06 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Research Blogging]]></category>
		<category><![CDATA[Henry Stommel]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[Stommel diagram]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=512</guid>
		<description><![CDATA[I&#8217;ve been thinking a lot lately about issues of scale in ecology, both because I&#8217;m taking a fascinating seminar on the topic this quarter, and because my particular research is conducive to thinking about them. &#8220;Scale&#8221; came to the fore &#8230; <a href="http://www.oceanographerschoice.com/2010/05/varieties-of-oceanographic-experience/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><span style="float: left; padding: 5px;"><a href="http://researchblogging.org/news/?p=1399"><img alt="This post was chosen as an Editor's Selection for ResearchBlogging.org" src="http://www.researchblogging.org/public/citation_icons/rb_editors-selection.png" style="border:0;"/></a></span></p>
<p>I&#8217;ve been thinking a lot lately about issues of scale in ecology, both because I&#8217;m taking a fascinating seminar on the topic this quarter, and because my particular research is conducive to thinking about them.  &#8220;Scale&#8221; came to the fore as a topic of interest starting in the late 70&#8242;s, and is tied up with other concepts that were on the rise at that time, like chaos theory, fractal geometry, and nonlinear dynamics.  An example of one of these ties is Benoit Mandelbrot&#8217;s famous question, &#8220;how long is the coast of Britain?&#8221;  The answer, as he shows, depends on how long your ruler is.  This turns out to be a recurring conundrum: the pattern detected by an ecological study depends very strongly on the scale of the measurements.</p>
<p>In 1963, fifteen years before most other people started thinking about this stuff, a short paper was published in <em>Science</em> that, in just four pages, managed to lay out how and why we need to consider the scale of our measurements when designing an experiment to measure oceanographic phenomena.  It was written by <a href="http://en.wikipedia.org/wiki/Henry_Stommel">Henry Stommel</a>, which is not at all surprising if you know who he was.  For those who don&#8217;t, Stommel was one of the original badass physical oceanographers.  The kind of guy who could sit down with a pen and paper and demonstrate why the upper ocean circulates the way it is observed to.  Or  correctly derive the circulation of the deep ocean <em>before</em> it was observed.  No big deal.  But thanks to his 1963 paper, titled &#8220;Varieties of Oceanographic Experience,&#8221; he is cited far and wide to this day as one of the first scientists to explicitly consider the importance of scale to experimental design.</p>
<p>To illustrate why scale is important, take one of Stommel&#8217;s examples:  say we want to measure changes in the height of the sea surface from month to month.  At first glance, it would appear that only 12 measurements are necessary: go out once a month for a year, and you&#8217;re set.  At second glance, however, this is ridiculous on several levels.  The ocean has tides, for one.  Measuring sea level once a month would give you a near-random sample of different parts of the tidal cycle, and you wouldn&#8217;t be able to detect any long-term trends.  There are also shorter- and longer-term fluctuations: regular wind-driven waves, and sea-level deviations due to large oceanic eddies.  To resolve sea-level changes from month to month, you will <em>actually</em> need to measure it every hour or so.  Do it less frequently, and you will get results that are inconclusive or just plain wrong.</p>
<p>Choosing the right scale of measurement for your question of interest is very important. It is also not trivial,  especially when the measurement is not as straightforward as the water level on a ruler nailed to the dock.  Even today some people are prone to testing hypotheses using data collected at a scale inappropriate to the question.  If Stommel had stopped with this message, the paper might still have found a fair number of readers.  But the <em>coup de grace</em> was the graphic he came up with to make the message explicit:</p>
<div class="wp-caption alignnone" style="width: 510px"><a href="http://www.oceanographerschoice.com/log/wp-content/stommel_diagram.jpg"><img alt="Figure 1 from Stommel (1963)." src="http://www.oceanographerschoice.com/log/wp-content/stommel_diagram.jpg" title="Stommel Diagram" width="500"  /></a><p class="wp-caption-text">Figure 1 from Stommel (1963).</p></div>
<p>It&#8217;s a three-dimensional surface, with time along the x-axis and distance along the y.  Both are shown on a logarithmic scale, so that each tick mark is a factor of 10 larger than the one before it.  Various phenomena that make the sea level go up and down are located on this surface based on their typical size and duration.  The height of the surface at each point represents how much the sea level goes up or down&mdash;that is, how much energy or variability is concentrated at that space and time scale.</p>
<p>Gravity waves (aka wind waves, the normal ones that crash on the beach and make you seasick on boats) are typically several meters long and perturb the sea surface for a few seconds.  They can therefore be placed in the lower left corner.  Tides happen every 12-13 hours and affect the entire ocean basin, so they are located near the middle of the time axis, stretching from about a kilometer up to 10,000 km.    And every ten thousand years or so, we hit an ice age that lowers the surface of the ocean everywhere about 100 meters, allowing humans to do things like cross the Bering Strait into North America.  This figure is an elegant summary of all the different processes that perturb the sea surface, and of the spatio-temporal scales at which they all take place.</p>
<p>This kind of diagram (now known as a Stommel diagram) has found its way over the years into all kinds of different contexts.  One direct descendent near and dear to my own heart is the one drawn up by Haury et al. in 1978.  It is along similar lines, but shows variability in zooplankton abundance, not sea level.  The possibilities for these diagrams are nearly endless, and not limited to the ocean, or even the natural sciences.  Any system that has stuff going on over short and long distances and time spans can be clarified by sketching up a Stommel diagram.  Drawing a picture like this can help make it clear how to approach your research question, and will hopefully help you avoid screwing it up by choosing the wrong scale of measurements.  The hope, as Stommel put it in the last line of the paper, is to &#8220;look forward to a time when theory and observation will at last advance together in a more intimately related way.&#8221;  Amen.</p>
<p><span class="Z3988" title="ctx_ver=Z39.88-2004&#038;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&#038;rft.jtitle=Science&#038;rft_id=info%3Adoi%2F10.1126%2Fscience.139.3555.572&#038;rfr_id=info%3Asid%2Fresearchblogging.org&#038;rft.atitle=Varieties+of+Oceanographic+Experience%3A+The+ocean+can+be+investigated+as+a+hydrodynamical+phenomenon+as+well+as+explored+geographically&#038;rft.issn=0036-8075&#038;rft.date=1963&#038;rft.volume=139&#038;rft.issue=3555&#038;rft.spage=572&#038;rft.epage=576&#038;rft.artnum=http%3A%2F%2Fwww.sciencemag.org%2Fcgi%2Fdoi%2F10.1126%2Fscience.139.3555.572&#038;rft.au=Stommel%2C+H.&#038;rfe_dat=bpr3.included=1;bpr3.tags=Biology%2CGeosciences%2COther%2CEcology%2C+Marine+Biology%2C+Oceanography">Stommel, H. (1963). Varieties of Oceanographic Experience: The ocean can be investigated as a hydrodynamical phenomenon as well as explored geographically <span style="font-style: italic;">Science, 139</span> (3555), 572-576 DOI: <a rev="review" href="http://dx.doi.org/10.1126/science.139.3555.572">10.1126/science.139.3555.572</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2010/05/varieties-of-oceanographic-experience/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Two Views of the Ocean</title>
		<link>http://www.oceanographerschoice.com/2010/02/two-views-of-the-ocean/</link>
		<comments>http://www.oceanographerschoice.com/2010/02/two-views-of-the-ocean/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 08:59:15 +0000</pubDate>
		<dc:creator>Sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[depth]]></category>
		<category><![CDATA[scale]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://www.oceanographerschoice.com/?p=431</guid>
		<description><![CDATA[A significant part of my thesis research deals with scale. &#8220;Scale&#8221; is a very vague word, but in ecology, it connotes some very profound truths and problems about the natural world and our understanding of it. I hope to write &#8230; <a href="http://www.oceanographerschoice.com/2010/02/two-views-of-the-ocean/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A significant part of my thesis research deals with scale.  &#8220;Scale&#8221; is a very vague word, but in ecology, it connotes some very profound truths and problems about the natural world and our understanding of it.  I hope to write about the topic of scale in ecology in greater depth some time, but for now, I present two pictures I&#8217;ve seen online in the past couple of days.  The first shows the oceanic water column from top to bottom:</p>
<div class="wp-caption alignnone" style="width: 510px"><a href="http://www.oceanographerschoice.com/log/wp-content/oceandepth.jpeg"><img title="Ocean depth" src="http://www.oceanographerschoice.com/log/wp-content/oceandepthtop.jpg" alt="The Pacific Ocean, from top to bottom over the Marianas Trench. Click to see full water column." width="500"  /></a><p class="wp-caption-text">The Pacific Ocean, from top to bottom over the Marianas Trench. Click to see full water column.</p></div>
<p>And the second shows the Atlantic Ocean basin from west to east:</p>
<div class="wp-caption alignnone" style="width: 510px"><a href="http://www.oceanographerschoice.com/log/wp-content/oceanwidth.png"><img title="Ocean width" src="http://www.oceanographerschoice.com/log/wp-content/oceanwidth.png" alt="The Atlantic Ocean, from North America to Europe, drawn to scale.  Click for full-size image" width="500" /></a><p class="wp-caption-text">The Atlantic Ocean, from North America to Europe, drawn to scale.  Click for full-size image</p></div>
<p>It&#8217;s kind of humbling to look at one and then the other.  The first awes you with the immense depth of the ocean at its deepest point, and the second with the relative thinness of the ocean on the surface of the planet.  That thin wet film on our ball of rock has so much going on in it:  Currents, ecosystems, the lives and deaths as large as whales and as small as photosynthetic archaea.  That&#8217;s <em>deep</em>, man&#8230;but also <em>shallow</em>.  You dig?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.oceanographerschoice.com/2010/02/two-views-of-the-ocean/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

