CSE332: Data Abstractions Lecture 25: There is no lecture 25 Dan Grossman Spring 2010.

Slides:



Advertisements
Similar presentations
Earth Science Mr. Bimber
Advertisements

Latitude and Longitude Part II
Globes and Maps TEKS WG.13a; 21a-c,e; 22e
Maps and Map Projections
CSE341: Programming Languages Lecture 12 Equivalence Dan Grossman Spring 2013.
Systems for locating points on Earth 1. Latitude and Longitude
Uncontrolled copy not subject to amendment
Latitude longitude review
GPS to GIS: Collecting and Mapping Real-World Data Collect GPS data around your school, and import it into ArcView to create shapefiles and grids.
Add a File with X, Y coordinates to MapWindow
 You can use google docs to construct tests or surveys that can be given online.  Multiple choice, matching, or fill in one word answers work well with.
Chapter 1: The World of Geography
“Tool Box” Unit Part 2 – Where are you?. Global Grid Use the grid to give your coordinate address on earth Absolute Location vs relative location.
Journal: (Write 3-5 full & complete sentences) **pick up a new bell work from the stool up front** How are maps and globes different? When would it.
Type your question here. Type Answer Type your question here. Type Answer.
Globes and Maps SOL WG.1c. Globes Globes are three-dimensional, scale model representations of the earth.
GLOBES & MAP PROJECTIONS SEPTEMBER 8, DO NOW9/8/15 Using the Textbooks (p. 2-6) located in your desks: Please define the following key terms in.
Finding your way in the world. Latitude lines are imaginary lines that run EAST/WEST (horizontally) around the earth's surface. Think of latitude like.
Book Definition In your own words… Picture Latitude Distance in degrees north or south of the equator.
Taking the MAP Test.
Latitude and Longitude. Latitude and Longitude is one way of expressing absolute location. Houston, TX - They are imaginary lines that circle the globe.
Write about South Africa and say why it is great Copy and paste the flag from the first slide here. Create a word art with the words “South Africa”
Map Projections, Types of Maps Latitude and Longitude
Robinson Projection Map & Mercator Projection Map
MODELS OF EARTH Lesson 5. VOCABULARY  globe  map  map projection  symbol  key  scale  degree  equator  hemisphere  prime meridian  latitude.
Spatial Sense Map Package. Mercator Projection Miller Projection.
1.Parallels are lines of _________? 2.Meridians are lines of _________? 3.110ºW is a measurement of____? 4.30 º N is a measurement of ___? 5.The main.
Locating Positions on the Earth’s Surface
Mapdraw ats315. Today’s goal: Drawing a map in the graphics window! Drawing a map in the graphics window!
4th Grade Common Core Math Practice and Solutions for 4th Grade Common Core Math Standard 4.NF.7 Multiple Choice Set #1 without Answers Multiple Choice.
Maps. Compare the size of Greenland to Africa. Maps What is wrong with this map? It is flat. The longitude lines are parallel; in reality they should.
Topic 5 Topic 1 Topic 2 Topic 3 Topic
WASHINGTON Atlas - Page 60 North (top) – 50N South (bottom) – 45N.
Test1 Here some text. Text 2 More text.
Topic: Map Projections
Projection Identification
Add to Table of Contents
Globes and Maps TEKS WG.13a; 21a-c,e; 22e
Chapter 6: Maps as Models of the Earth
Type Topic in here! Created by Educational Technology Network
NYS Latitude & Longitude
Globes and Maps SOL WG.1c.
Globes and Maps TEKS WG.13a; 21a-c,e; 22e
Exporting REPORTS to excel and word from Tncis
Maps My favorite topic .
Table of Contents Title: Type of Maps Page #: 18 Date: 9/25/2012.
Global Map Skills Second Grade Common Assessment
Map Projections.
Chapter 1 Study Guide Review!
[type text here] [type text here] [type text here] [type text here]
Your text here Your text here Your text here Your text here Your text here Pooky.Pandas.
Midterm Evaluations Results from CELT
Your text here Your text here Your text here Your text here
[type text here] [type text here] [type text here] [type text here]
The World of Geography.
Type Topic in here! Created by Educational Technology Network
Map Projections.
Type Topic in here! Created by Educational Technology Network
Type Topic in here! Created by Educational Technology Network
Unit 1: Vocabulary Notes
Type Topic in here! Created by Educational Technology Network
Latitude and Longitude
Type Topic in here! Created by Educational Technology Network
2 Hours Minutes Seconds Insert Text Here.
CSE341: Programming Languages Lecture 12 Equivalence
Topic A Grade 1.
CSE341: Programming Languages Lecture 12 Equivalence
Globes and Maps SOL WG.1c.
Challenge Guide Grade Code Type Slides
Globes, Maps, and Projections
Presentation transcript:

CSE332: Data Abstractions Lecture 25: There is no lecture 25 Dan Grossman Spring 2010

Huh? We need most or all of the class to finish up concurrency, using the materials in lecture 24 We spent a few minutes at the beginning of class discussing a small change to project 3, using the next few slides Spring 20102CSE332: Data Abstractions

GUI Spring 20103CSE332: Data Abstractions Optional Fun Useful for testing against intuition Easy to use Not good for testing timing Not what we’ll grade against

Small change to code To get the GUI to: –Be accurate –Give the same answers as your text version We had to make a small change to the code provided to you –No change to your code or what you do –But does change the answers you will get! And slightly harder to compare against answers manually Spring 20104CSE332: Data Abstractions

Projections News update: The world is a globe and maps are flat Spring 20105CSE332: Data Abstractions To get a reasonable projection, we can basically change the latitude The map in our GUI uses a Mercator Projection So we’re changing the CensusGroup data to use the same projection…

Changed code class CensusGroup { int population; float latitude; float realLatitude; // ignore but may help test float longitude; CensusGroup(int pop, float lat, float lon) { population = pop; latitude = mercatorConversion(lat); realLatitude = lat; longitude = lon; } float mercatorConversion(float lat){ // math here } } Spring 20106CSE332: Data Abstractions

Bottom line You can swap in the new CensusGroup any time before next Tuesday Once you do, the latitude in the input file is not the latitude that will be used in your calculations –We did this for you –But will affect the result slightly: more so for data farther North –That’s all you have to understand Make sense? Spring 20107CSE332: Data Abstractions