5 Pages

Matlab tips

Course: ECON 8107, Fall 2008
School: Minnesota
Rating:
 
 
 
 
 

Word Count: 1060

Document Preview

8107 ECON - MACRO 3 TIPS FOR USING MATLAB CTIRAD SLAVIK 1. Introductory tips Tip 1: Always have a benchmark case with analytical solution to verify your code or do 2 different procedures. Example: In dynamic programming use log utility and Cobb-Douglas production function with full depreciation. Tip 1: Use a lot of comments so that other peope know what you are doing. Tip 3: How to use help. Besides standard...

Register Now

Unformatted Document Excerpt

Coursehero >> Minnesota >> Minnesota >> ECON 8107

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
8107 ECON - MACRO 3 TIPS FOR USING MATLAB CTIRAD SLAVIK 1. Introductory tips Tip 1: Always have a benchmark case with analytical solution to verify your code or do 2 different procedures. Example: In dynamic programming use log utility and Cobb-Douglas production function with full depreciation. Tip 1: Use a lot of comments so that other peope know what you are doing. Tip 3: How to use help. Besides standard help, you can type help 'command' and you will get description of the command plus related commands. Example: type help * and you will get the description of most algebraic operations. Tip 4: A code: clear all; clears all variables in register tic; starts measuring time define variables the code itself toc; stops measuring time and displays time 1 C. Slavik ECON 8107 - Recitation 3 2. Programming in Matlab 2.1. Objects in Matlab. 1 Every object has its name that you define it with, of course you cannot use the same name for 2 objects of the same type (e.g. vectors) neither for 2 objects of different type (e.g. a vector and a matrix). (1) Scalars - defines simply as beta = 0.96; The semicolon guarantees that the number will not be printed out when the code is running. (2) Vectors - e.g. a = [1,1,2,5,6]; or a = [1 1 2 5 6]; (3) Matrices - similarly, e.g. A = [1 1 2 5 6, 3 4 6 7 7, 1 5 4 2 1] Useful trick: A = zeros(n, m) or A = ones(i, j, k, l). (4) Grid - basic object, in some vague sense it defines values that the particular variable can take. In fact it is just a vector. Example: the grid for capital holdings: (0, 0.1, 0.2, ..., 10) will be defined as: K = (0 : 0.1 : 10) or K = linspace(0, 10, 101) You may want to define a grid that is finer close to zero (i.e. because you believe there is more non-linearity there). K = (0 : 0.1 : or K = logspace(0, 1, 101) - 1 Note: the dot denotes element by element operations. (5) Functions of one variable are just vectors. E.g. define Y = K. (1-alpha). Functions of more variables are appropriately sized matrices. Example1 in Matlab. Note: piecewise linear approximations. 10). 2 1We will not discuss symbolic toolbox that is also available for Matlab. 2 C. Slavik ECON 8107 - Recitation 3 2.2. Basic procedures in Matlab. (1) Finding maxima and minima of a vector, a matrix or a function on the grid. See Example 1 above, type help max. (2) How to iterate, do loops and plots. Throughout below. (3) Finding x : f (x) = 0. Note: this can be used also to find f (x) = 0, i.e. finding a maximum of a function that is not restricted to lie on the grid. Consider the following problem taken from Growth PS3: (l)3 s.t. c,l 3 c (1 + r)a + w z l We will assume r = 0.01, w = 1, z denotes the agent's labor productivity shock and a his asset holding. What kind of problem is this? max log(c) - wz = l2 (1 + r)a + wzl 0 = wzl3 + (1 + r)al2 - wz =: f (l) How to find the l [0, 1] that solves this equation for all possible (a, z)? (a) Matlab has a function fsolve. Example2 and Example3 and function fun in Matlab. (b) Brute force method. The same example as before. We know f (0) < 0, f (1) > 0, the function is continuous, thus the x that we are looking for lies between 0 and 1. Procedure: let a1 = 0, b1 = 1, compute f ( a1 +b1 ). If f ( a1 ) +b1 > 0 2 2 then let a2 = a1 and b2 = a1 +b1 . Compute f ( a2 +b2 ). Iterate. 2 2 Example4 in Matlab. Compare the outcomes and the time it takes. Discuss problems. (c) Gauss-Newton method for the same example as before. Procedure: let x1 be given. Set x2 = x1 - if close enough to 0. Iterate. f (x1 ) f (x1 ) . FOC: Check f (x2 ). Stop f Alternative: let x1 be given. Set x2 = x1 - f (x1 )) , (0, 1). Iterate (x1 as above. Compare the outcomes and the time it takes. Discuss problems. 3 C. Slavik 3. Further examples ECON 8107 - Recitation 3 3.1. Value function iteration. Recall one of the past homeworks. Consider the following sequential problem: v (k0 ) := {ct ,kt }t=0 max t log ct s.t. t=0 kt+1 + ct kt + (1 - )k kt , ct 0, k0 given Assume = 0.6, = 0.3, = 20, = 0.5. (1) Let capital take values for the discrete grid (0.05, 0.1, ..., 9.95, 10). Make the original guess that k : v(k) = 0, perform the value function iterations until: max |vi+1 (k) - vi (k)| < 10-5 k How many iterations does it take? Report the value function and the policy function for k that you obtain. (2) Apply Howard's improved algorithm. Compare the speed, number of iterations and the results. Example6 in Matlab. Discussion: (1) How to do it if is a random variable following a first order Markov process. (2) Problems associated with these procedures - i.e. forcing the policy to lie on the grid, time ... 3.2. Negishi algorithm. Consider the following problem, similar to the one in the homework. There are 2 agents in the economy. Each has endowment 1 in every period. Preferences of agent i are: t t=0 c1-i it 1 - i Solve for the ADE using Negishi algorithm, assume 1 = 4, 2 = 2. Procedure: (1) Solve the SPP with weight on agent 1 being and on agent 2 being 1. Express c1 as a function of . (2) Compute the prices using the FOC of agent 1 and the allocations calculated above. (3) Compare the value of agent 1'...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Earlham - GEOS - 211
End of Cheap Oil @ National Geographic Magazinehttp:/magma.nationalgeographic.com/ngm/0406/feature5/NGM June 2004 Site Index6End of Cheap OilStep into the world of writers and photographers as they tell you about the best, worst, and quirkie
Earlham - GEOS - 211
USGSNational Tsunami Hazard Mitigation Program Prepared in cooperation with Universidad Austral de Chile, the University of Tokyo, the University of Washington, the Geological Survey of Japan, and the Pacific Tsunami MuseumSurviving a Tsunami-Less
Earlham - GEOS - 211
Geosciences 211 Physical Geology Study Guide for Test # 1, Feb 3rd, 2005 February 1, 2005 Please note: I modified this study guide to reflect 2 things. 1.) Addition of Hot Spots, and 2.) Removal of the end portion of Igneous Rocks. The subject areas
Earlham - GEOS - 211
Geology 211, Physical Geology First Exam February 5, 2004NamePART 1: Multiple choice: (60 points) Please circle the letter that best answers or completes the question. 1. Which boundary is the surface upon which lithospheric plates move? A. The M
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.955 107.913 -73.390 42.589 -70.954 42.482 2.296 -72.172 42.536 67.669 -60.000 191.190 103.183 -73.371 42.3
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 198.858 107.321 -73.317 42.832 -71.027 42.240 11.517 -72.172 42.536 67.669 -60.000 189.528 102.286 -73.427 42.577 -71.357 41
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.871 107.868 -73.385 42.627 -70.959 42.444 3.883 -72.172 42.536 67.669 -60.000 192.080 103.663 -73.508 42.1
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.374 107.600 -73.355 42.744 -70.989 42.327 8.531 -72.172 42.536 67.669 -60.000 197.466 106.570 -73.442 42.5
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.813 107.837 -73.382 42.646 -70.962 42.425 4.668 -72.172 42.536 67.669 -60.000 195.121 105.304 -73.490 42.2
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 197.858 106.781 -71.373 41.869 -72.971 43.203 15.756 -72.172 42.536 67.669 -60.000 243.575 131.454 -72.951 43.4
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 198.526 107.142 -72.779 41.763 -71.565 43.308 13.081 -72.172 42.536 67.669 -60.000 196.105 105.835 -73.046 41.9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 197.911 106.810 -73.197 43.006 -71.147 42.065 15.560 -72.172 42.536 67.669 -60.000 191.635 103.423 -73.197 42.9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 197.884 106.795 -72.961 41.862 -71.383 43.209 15.661 -72.172 42.536 67.669 -60.000 194.533 104.987 -72.963 41.9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 198.289 107.014 -73.260 42.145 -71.084 42.927 14.090 -72.172 42.536 67.669 -60.000 197.839 106.771 -73.220 42.1
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 197.824 106.763 -72.985 43.193 -71.359 41.878 15.879 -72.172 42.536 67.669 -60.000 202.041 109.039 -72.995 43.2
Harvard - MM - 545
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;NoSuchKey&lt;/Code&gt;&lt;Message&gt;The specified key does not exist.&lt;/Message&gt;&lt;Key&gt;1b4ab5fee493cead478cc9dca0883b865af0f908.txt&lt;/Key&gt;&lt;RequestId&gt;CD4F4F8B1291BE80&lt;/RequestId&gt;&lt;HostId&gt;Jv7vEylFxDCBNjuVHRUVfeIcjGhq
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 198.060 106.891 -71.441 41.827 -72.903 43.245 14.996 -72.172 42.536 67.669 -60.000 197.090 106.367 -72.865 43.2
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.736 107.795 -71.931 41.655 -72.413 43.416 5.545 -72.172 42.536 67.669 -60.000 217.002 117.113 -72.242 41.6
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 198.045 106.882 -72.908 41.829 -71.436 43.242 15.056 -72.172 42.536 67.669 -60.000 198.172 106.951 -72.601 41.7
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] 0.000 199.868 107.866 -73.385 42.628 -70.959 42.444 3.916 -72.172 42.536 67.669 -60.000 215.709 116.415 -73.519 42.3
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.691 106.691 -73.088 43.115 -71.256 41.957 16.353 -72.172 42.536 67.669 4V8 1B9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.058 106.889 -73.226 42.971 -71.118 42.1 15.005 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;NoSuchKey&lt;/Code&gt;&lt;Message&gt;The specified key does not exist.&lt;/Message&gt;&lt;Key&gt;2bf3fc852dccab2ba56b827d8f3430b815398e5a.txt&lt;/Key&gt;&lt;RequestId&gt;46B9FDA8F435AF8B&lt;/RequestId&gt;&lt;HostId&gt;dWLK/+sJIDmZidhqz2bm/MEMBxbZ
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.374 107.6 -73.355 42.744 -70.989 42.327 8.534 -72.172 42.536 67.669 DDH BOS
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.156 106.942 -73.242 42.12 -71.102 42.951 14.623 -72.172 42.536 67.669 GBR LWM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.596 107.18 -73.294 42.874 -71.05 42.197 12.765 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.006 107.401 -73.329 42.808 -71.015 42.264 10.748 -72.172 42.536 67.669 DDH BOS
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.54 107.15 -73.288 42.883 -71.056 42.188 13.016 -72.172 42.536 67.669 DDH OWD ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.12 106.923 -73.236 42.959 -71.108 42.113 14.766 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.04 106.879 -73.223 42.975 -71.121 42.096 15.076 -72.172 42.536 67.669 DDH OWD ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 200 107.937 -73.392 42.539 -70.952 42.532 0.148 -72.172 42.536 67.669 PSF BVY
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.618 107.192 -73.296 42.201 -71.048 42.87 12.667 -72.172 42.536 67.669 GBR LWM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.073 107.437 -73.334 42.275 -71.01 42.797 10.381 -72.172 42.536 67.669 GBR LWM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.985 107.929 -73.392 42.504 -70.952 42.567 1.338 -72.172 42.536 67.669 PSF BVY ORE ORE
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.237 106.986 -73.253 42.135 -71.091 42.936 14.3 -72.172 42.536 67.669 GBR LWM ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.865 107.325 -73.318 42.831 -71.026 42.241 11.485 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.865 106.785 -73.186 43.019 -71.158 42.053 15.728 -72.172 42.536 67.669 DDH 1B9
Harvard - MM - 545
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;NoSuchKey&lt;/Code&gt;&lt;Message&gt;The specified key does not exist.&lt;/Message&gt;&lt;Key&gt;caca94b9412c801a4ac162c0224e9ec0565acacc.txt&lt;/Key&gt;&lt;RequestId&gt;776FEE47E4AB9B75&lt;/RequestId&gt;&lt;HostId&gt;gKu9m4x0MqFA5IevLuAbE5qo1zDN
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.789 107.823 -73.381 42.418 -70.963 42.653 4.96 -72.172 42.536 67.669 PSF BVY ORE ORE
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.029 107.413 -73.331 42.804 -71.013 42.268 10.624 -72.172 42.536 67.669 DDH BOS
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.883 107.874 -73.386 42.622 -70.958 42.449 3.688 -72.172 42.536 67.669 PSF BOS ORE ORE
Harvard - MM - 545
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;NoSuchKey&lt;/Code&gt;&lt;Message&gt;The specified key does not exist.&lt;/Message&gt;&lt;Key&gt;943b6b2a28f57a16e8cf45f11a2b415258498429.txt&lt;/Key&gt;&lt;RequestId&gt;A88BD4E3894E1E6C&lt;/RequestId&gt;&lt;HostId&gt;ttK43XX543rDwqGfKWk5I8keBmxZ
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.641 107.744 -71.891 41.662 -72.453 43.409 6.462 -72.172 42.536 67.669 5B3 CNH
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.964 107.918 -72.084 41.639 -72.26 43.433 2.054 -72.172 42.536 67.669 IJD CNH
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.839 107.851 -72.359 41.648 -71.985 43.424 4.332 -72.172 42.536 67.669 IJD CNH ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.096 107.45 -71.714 41.706 -72.63 43.365 10.251 -72.172 42.536 67.669 5B3 VSF ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.89 107.878 -72.326 41.644 -72.018 43.427 3.572 -72.172 42.536 67.669 IJD CNH ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.889 106.798 -73.192 42.06 -71.152 43.012 15.641 -72.172 42.536 67.669 GBR MHT GDM ORE
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.805 106.753 -72.993 41.884 -71.351 43.188 15.948 -72.172 42.536 67.669 BDL CON ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.041 106.88 -73.223 42.975 -71.121 42.096 15.07 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;Error&gt;&lt;Code&gt;NoSuchKey&lt;/Code&gt;&lt;Message&gt;The specified key does not exist.&lt;/Message&gt;&lt;Key&gt;2fa1e55cbfa774981b5277d6e491e58194b096d2.txt&lt;/Key&gt;&lt;RequestId&gt;3B9A2EFFAA5EEACF&lt;/RequestId&gt;&lt;HostId&gt;CKW3cjMwulE5BLQgfOA/qqFeSoEX
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.054 107.427 -71.703 41.71 -72.641 43.361 10.485 -72.172 42.536 67.669 5B3 VSF
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.572 107.706 -71.864 41.668 -72.48 43.404 7.061 -72.172 42.536 67.669 5B3 VSF
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.99 107.932 -72.218 41.637 -72.126 43.434 1.061 -72.172 42.536 67.669 IJD CNH
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.28 107.009 -73.259 42.928 -71.085 42.143 14.125 -72.172 42.536 67.669 DDH OWD
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 199.727 107.79 -72.417 41.656 -71.927 43.416 5.639 -72.172 42.536 67.669 HFD CNH
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.697 106.694 -73.068 43.131 -71.276 41.941 16.334 -72.172 42.536 67.669 4V8 1B9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 197.833 106.768 -72.981 43.196 -71.363 41.875 15.846 -72.172 42.536 67.669 4V8 RI9
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.149 106.939 -73.241 42.953 -71.103 42.119 14.651 -72.172 42.536 67.669 DDH OWD ORE GDM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.931 107.361 -73.323 42.252 -71.021 42.82 11.142 -72.172 42.536 67.669 GBR LWM
Harvard - MM - 545
time[min] xsec[km] xsec[nmi] x1.1st y1.1st x2.1st y2.1st xsec2[nmi] ctr.x ctr.y dpease[nmi] arpt1.1st arpt2.1st arpt1.2nd arpt2.2nd0 198.457 107.105 -72.796 43.3 -71.548 41.771 13.382 -72.172 42.536 67.669 VSF PVD ORE GDM