Learning to Make Slides with Beamer CSC Geographic Information - - PowerPoint PPT Presentation

learning to make slides with beamer
SMART_READER_LITE
LIVE PREVIEW

Learning to Make Slides with Beamer CSC Geographic Information - - PowerPoint PPT Presentation

Learning to Make Slides with Beamer CSC Geographic Information Systems Cornell College 10 November 2014 CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer Background We can use computers and software to


slide-1
SLIDE 1

Learning to Make Slides with Beamer

CSC Geographic Information Systems

Cornell College

10 November 2014

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer

slide-2
SLIDE 2

Background

We can use computers and software to make maps. Technology has also made it easier to use maps to solve problems.

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer

slide-3
SLIDE 3

Projections

◮ Azimuthal ◮ Cylindrical ◮ Conical

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer

slide-4
SLIDE 4

Algorithms

  • 1. Dijkstra’s shortest path algorithm
  • 2. Kruskal’s algorithm for constructing a minimum spanning tree
  • 3. Prim’s algorithm for constructing a minimum spanning tree
  • 4. Fortune’s algorithm for constructing a Voronoi diagram

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer

slide-5
SLIDE 5

Recursion

gcd(a, b) = gcd(b, a mod b) gcd(a, 0) = 0

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer

slide-6
SLIDE 6

Example

/∗ V a r i a t i o n

  • f

Hello , world program . ∗/ #i n c l u d e <s t d i o . h> int main ( int argc , char ∗∗ argv ){ p r i n t f ( ”Good morning !\ n” ) ; } // main ( int , char ∗∗ )

CSC Geographic Information Systems Cornell College Learning to Make Slides with Beamer