Visualizing Energy Usage and Consumption of the World

Size: px
Start display at page:

Download "Visualizing Energy Usage and Consumption of the World"

Transcription

1 Visualizing Energy Usage and Consumption of the World William Liew Abstract As the world becomes more and more environmentally aware, a simple layman s visualization of worldwide energy use is needed to inform the public quickly and efficiently about worldwide energy use. This paper describes how this program efficiently and effectively represents energy usage around the world. I. Introduction The modern world cannot function without energy. It is easy to assume energy demand is growing rapidly, but how quickly and in which areas. As energy usage increases, it is important for this fact to be able to be communicated quickly and effectively. This project allows user to see which nations are growing quickly (energy usage wise) and which nations are stagnant. Being able to see where there is the most growth is crucial to understanding how to regulate supply for the constant demand of energy. This paper presents a way to effectively demonstrate where in the world energy demand will be the highest. It also presents an easy way to show en ergy usage growth in each nation. Although the data of energy usage is readily available, the human mind really is not meant to handle large numbers (i.e. any numbers greater than 100), this means although the data is available, the scale of the number is lost in transition. The program described will not only show exactly how much energy is used, but does it in a simple manner in which human can interpret it quickly. The project projects Earth onto the screen, with each country floating on top of the sphere. The farther away the country is from the globe, the more energy the country use. A color is also mapped onto the country based on energy usage. The most similar method I found actually exists on which is the source of my energy usage data. The website displays its energy data through a world map using a color-map. Although it is quick and effective, I believe color-maps are not instantaneous enough for human comprehension. Wikipedia and Google also provide energy usage information; however neither has a visual representation of the data. I did not find any other well-known provider of global energy usage data. Although the US census provides data of the United States, it does not provide any data for other nations.

2 II. Technical Detail OpenGL in C++ is the main display tool used due to my familiarity to it. Several short Java programs were created to find or parse data. The energy usage data is retrieved from as a Microsoft Excel sheet exported into a CSV file. Although the excel sheet contains many other data (such as energy from coal), only total Energy Usage was considered. All of the energy data was recorded with the unit: mtoe, or Metric Ton Oil Equivalent. The data recorded energy data from 1990 to 2010, each neatly aligned with its respective nation. However, to display this data in the format I wanted, I needed to be able to find out where each country is. At first I considered using GLUT to draw a sphere, apply texture map to represent the Earth, then using a Web API, find out where each nation is, then using a shader to transform the sphere. This was highly ineffective. Not only was texture mapping a sphere difficult, often came with obscure results, but finding out a position relative to the texture was even worse. I decided not to use the GLUT default sphere. A more accurate way to draw Earth was to use longitude and latitude data to draw Earth. A formula is used to convert longitude (ranging from -180 to 180) and latitude (-90 to 90) into an X, Y, and Z coordinate that can be used to display onto the screen. This means I could easily draw a sphere, but also just as easily locate a specific coordinate. The Algorithm is as followed: (R represents radius of the sphere) LAT = latitude * pi/180

3 LON = longitude * pi/180 x = -R * cos(lat) * cos(lon) y = R * sin(lat) z = R * cos(lat) * sin(lon) However, I still needed data on where each country is. At first I wanted to do this manually, however, if I use each integer as a data point, this would take me 64,800 checks. I decided to see if I could parse this data with my program. I found a C++ library called libcurl which would allow me to download data from a URL. I used an API for reverse-geocoding from The API allows me to see what country exist at a specific coordinate and returns a 2-character ISO Country Code. The API was not only very easy to use, but provided exactly what I needed. Then disaster struck. Although the API interface was fantastic and very easy to use, it only allowed a certain number of lookups every hour. It also performed very slowly, thus a real-time look up of 64,800 coordinates was just not practical. Thus, I had to create a file with all the data. I decided not to use the libcurl library and instead used the URL parser from Java.net library. The Java program was called Reverse Geocode, it looked up all 64,800 coordinates and then records the coordinates which returns the ISO Country Code. Due to the hourly limit of lookups, Reverse

4 Geocode left out many segments. Thus Reverse Geocode was manually tuned many times to lookup the missing segments of the world. It took a while but finally I have a complete set of world country data for my program to use. Figure 1: Segmented Incomplete Map Data I recorded all ISO Country Code in a 2D Array sized 360 by 180. Although this was not memory efficient, it was the quickest way to do it. It also allowed lookups to be done very quickly, thus the program can run more quickly in real-time. The program records any coordinate with a Country Code as landmass. After the program stores all Energy Data with their respective nation, it inputs it into 2 sets of arrays, one for the ISO Country Code, and the second for the list of yearly data. The program compares these country codes with the map data, locates the ones that are on the Energy Data, and draws them with different parameters.

5 A point and three of its neighbors is taken to create a polygon (after transforming it from longitude/ latitude algorithm to XYZ-coordinates). This is repeated until an entire sphere is created. For countries which do have an energy usage data, the radius of the sphere they re projected on is increased, based on the value of the energy usage. This means every layer of energy value is on its own sphere. This makes the map look much cleaner. I included a few more features other than just looking at the globe. First I decided to create a map view; this made it simpler to look at all the energy data as a whole. This is done by using longitude and latitude as X-coordinate and Y-coordinate. I also decided to include a scaling option, so that energy usage of smaller nations can become more apparent (relative to other small nations). I made sure countries without data was still displayed on the map so that the geographic importance of the globe is not lost. In the end the program takes two files, a map file (included as country.txt ) and a formatted CSV data. III. Results The result of the visualization was spectacular. Not only could I tell which countries had the most energy growth by stepping through the years, but I can also see which region of the world that grew similarly. Coupled with the knowledge of historical significance of the years, I was actually surprised at some of the findings from this visualization. One of the more obvious facts is that China had the most growth. In the 1990s its energy usage was much lower than that of a normal, developed nation. Factoring its massive population, one can tell that China did not start as prosperous as other nations. However, stepping from 1990 to 2010 reveals that China s energy spending grew rapidly. As Chinese population moved from rural to urban areas, energy usage shot up, eventually overtaking the United States as the nation with the highest energy usage. It should also be mentioned that India is also seeing quick growth in energy usage. Another interesting fact was that Russian energy usage declined and then increased. It was actually one of the only nations in the world with an energy decline. It also saw one of the most massive energy declines in that of any nation. This is most likely due to the fall of the Berlin wall, which occurred in 1989, which caused Russia to fall into a state of economic recession and chaos for the next decade. This explains why Russian energy use started growing at a steady rate again after A surprising fact I found was that the energy usage of the United States grew very slowly. In 20 years, the total energy use is very low. This means either the United States energy growth is either stagnant, or that the United States is becoming more efficient. Europe actually uses very little energy per country. This surprises me because it seems energy usage and economy seems to be strongly correlated. Germany has one of the strongest economies in the world; yet, the energy usage in Germany does not even come close to that of Russia, US, and China. My guess is that developing country with high population will tend to have explosive energy usage growth.

6 A very disappointing fact was that because the energy usage between super-power nations (i.e. Russia, United States, and China) far out used any other nations. This makes it very difficult to differentiate energy usage of smaller nations. However, the resolution method makes the energy usage easier to differentiate. I was also disappointed that the dataset from enerdata.org was not as large as I liked. There were only about nations with recorded data, with India missing data from IV. Conclusion The visualization came out generally how I envisioned it. I thought I would have to compromise and not be able to raise the borders of each nation. However, because of the geoname.org API I found, I could have an accurate map that can be swapped between countries. Given more time I would like to have found a better way to import map data. On geoname.org it was actually possible to download the dataset they used, however, I did not research enough on how to parse that data into the useful format I needed it to be. Another feature I would have added is the ability to read in XML files for Country Data. That would give me more data about each nation (full name, which continent the country exist in, etc). This will allow me to display continental energy usage, which was provided in the dataset. Being able to parse XML file easily would also allow me to take data from multiple sources, including Wikipedia. I really wish I had time to gather the data for population from 1990 to This will allow me to see energy usage per capita rather than just total energy usage. This might even mean that the United States, due to population rising faster than energy usage, is actually lowering energy usage per capita each yeah. It might also mean the smaller European nations will show signs of growth that is otherwise overshadowed by the huge total usage from the superpower nations. I have no doubt both China and India will still show rapid growth per capita, but their current energy usage per capita will still be much lower than that of United States. References [1] Enerdata.org. The main data used in each individual country data. Available from [2] Geonames.org. Used to parse country data to show the globe, available from

GIS Functions and Integration. Tyler Pauley Associate Consultant

GIS Functions and Integration. Tyler Pauley Associate Consultant GIS Functions and Integration Tyler Pauley Associate Consultant Contents GIS in AgileAssets products Displaying data within AMS Symbolizing the map display Display on Bing Maps Demo- Displaying a map in

More information

Orbital Insight Energy: Oil Storage v5.1 Methodologies & Data Documentation

Orbital Insight Energy: Oil Storage v5.1 Methodologies & Data Documentation Orbital Insight Energy: Oil Storage v5.1 Methodologies & Data Documentation Overview and Summary Orbital Insight Global Oil Storage leverages commercial satellite imagery, proprietary computer vision algorithms,

More information

Data Structures & Database Queries in GIS

Data Structures & Database Queries in GIS Data Structures & Database Queries in GIS Objective In this lab we will show you how to use ArcGIS for analysis of digital elevation models (DEM s), in relationship to Rocky Mountain bighorn sheep (Ovis

More information

Chapter 2 - Lessons 1 & 2 Studying Geography, Economics

Chapter 2 - Lessons 1 & 2 Studying Geography, Economics Chapter 2 - Lessons 1 & 2 Studying Geography, Economics How does geography influence the way people live? Why do people trade? Why do people form governments? Lesson 1 - How Does Geography Influence the

More information

... Asia. Based on Bloom s Taxonomy. Human & Movement. Location Place. Regions. Environment. Interactions

... Asia. Based on Bloom s Taxonomy. Human & Movement. Location Place. Regions. Environment. Interactions ... Asia Location Place Human & Environment Interactions Movement Regions LEVEL 1 Knowledge Match Show or Label List Information Recall Details (5Ws + H) Find Information LEVEL 2 Comprehension LEVEL 3

More information

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II

Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II ARCH1291 Visual Studies II Week 8, Spring 2013 Assignment 7 GIS I Prof. Alihan Polat Visual Studies Exercise, Assignment 07 (Architectural Paleontology) Geographic Information Systems (GIS), Part II Medium:

More information

Section III - Designing Models for 3D Printing

Section III - Designing Models for 3D Printing Section III - Designing Models for 3D Printing In this section of the Jmol Training Guide, you will become familiar with the commands needed to design a model that will be built on a 3D Printer. As you

More information

Where on Earth are We? Projections and Coordinate Reference Systems

Where on Earth are We? Projections and Coordinate Reference Systems Where on Earth are We? Projections and Coordinate Reference Systems Nick Eubank February 11, 2018 If I told you that there was a treasure chest buried at the coordinates p2, 5q, your first response might

More information

C1: From Weather to Climate Looking at Air Temperature Data

C1: From Weather to Climate Looking at Air Temperature Data C1: From Weather to Climate Looking at Air Temperature Data Purpose Students will work with short- and longterm air temperature data in order to better understand the differences between weather and climate.

More information

Central Valley School District Social Studies Curriculum Map Grade 7. August - September

Central Valley School District Social Studies Curriculum Map Grade 7. August - September August - September Geographical/Historical Skills Identify and analyze timelines. Construct and use cause and effect charts. Differentiate between fact and opinion. Use of word webs, flip charts, outlines

More information

Intro to GIS In Review

Intro to GIS In Review Intro to GIS In Review GIS Analysis Winter 2016 GIS A quarter in review Geographic data types Acquiring GIS data Projections / Coordinate systems Working with attribute tables Data classification Map design

More information

Google Earth. Overview: Targeted Alaska Grade Level Expectations: Objectives: Materials: Grades 5-8

Google Earth. Overview: Targeted Alaska Grade Level Expectations: Objectives: Materials: Grades 5-8 Overview: Students become familiar with using the Google Earth interface to navigate around the planet. Using the zoom and tilt features, students practice moving around the planet with the navigation

More information

DATA 301 Introduction to Data Analytics Geographic Information Systems

DATA 301 Introduction to Data Analytics Geographic Information Systems DATA 301 Introduction to Data Analytics Geographic Information Systems Dr. Ramon Lawrence University of British Columbia Okanagan ramon.lawrence@ubc.ca DATA 301: Data Analytics (2) Why learn Geographic

More information

Trouble-Shooting Coordinate System Problems

Trouble-Shooting Coordinate System Problems Trouble-Shooting Coordinate System Problems Written by Barbara M. Parmenter. Revised on October 2, 2018 OVERVIEW OF THE EXERCISE... 1 COPYING THE MAP PROJECTION EXERCISE FOLDER TO YOUR H: DRIVE OR DESKTOP...

More information

GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research

GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research GIS Visualization: A Library s Pursuit Towards Creative and Innovative Research Justin B. Sorensen J. Willard Marriott Library University of Utah justin.sorensen@utah.edu Abstract As emerging technologies

More information

Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do?

Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do? Name: Date: Period: #: Chapter 1: Outline Notes What Does a Historian Do? Lesson 1.1 What is History? I. Why Study History? A. History is the study of the of the past. History considers both the way things

More information

About the Geo-referencing of BIM models

About the Geo-referencing of BIM models About the Geo-referencing of BIM models Abdoulaye Diakité 3D geoinformation, Delft University of Technology Abstract This report is willing to give an overview of the situation regarding the geo-referencing

More information

Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ

Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ Evaluating Physical, Chemical, and Biological Impacts from the Savannah Harbor Expansion Project Cooperative Agreement Number W912HZ-13-2-0013 Annual Report FY 2018 Submitted by Sergio Bernardes and Marguerite

More information

Chapter 2: Studying Geography, Economics, and Citizenship

Chapter 2: Studying Geography, Economics, and Citizenship Chapter 2: Studying Geography, Economics, and Citizenship Lesson 2.1 Studying Geography I. Displaying the Earth s Surface A. A globe of the Earth best shows the sizes of continents and the shapes of landmasses

More information

Introducing GIS analysis

Introducing GIS analysis 1 Introducing GIS analysis GIS analysis lets you see patterns and relationships in your geographic data. The results of your analysis will give you insight into a place, help you focus your actions, or

More information

SocViz: Visualization of Facebook Data

SocViz: Visualization of Facebook Data SocViz: Visualization of Facebook Data Abhinav S Bhatele Department of Computer Science University of Illinois at Urbana Champaign Urbana, IL 61801 USA bhatele2@uiuc.edu Kyratso Karahalios Department of

More information

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 4) Visualizing with Maps

MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 4) Visualizing with Maps MIS 0855 Data Science (Section 005) Fall 2016 In-Class Exercise (Week 4) Visualizing with Maps Objective: Learn how to use Tableau s powerful mapping tools Learning Outcomes: Learn at what levels (e.g.

More information

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 18, 1998 WIT Press,   ISSN GIS in the process of road design N.C. Babic, D. Rebolj & L. Hanzic Civil Engineering Informatics Center, University ofmaribor, Faculty of Civil Engineering, Smetanova 17, 2000 Maribor, Slovenia. E-mail:

More information

V1.0. Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth. Pier-Giorgio Zaccheddu

V1.0. Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth. Pier-Giorgio Zaccheddu Session: Labelled Maps Verification, entering names into a GIS and Google Maps/Earth V1.0 Pier-Giorgio Zaccheddu Federal Agency for Cartography and Geodesy (BKG) Richard-Strauss-Allee 11 60598 Frankfurt

More information

Theory, Concepts and Terminology

Theory, Concepts and Terminology GIS Workshop: Theory, Concepts and Terminology 1 Theory, Concepts and Terminology Suggestion: Have Maptitude with a map open on computer so that we can refer to it for specific menu and interface items.

More information

GIS Semester Project Working With Water Well Data in Irion County, Texas

GIS Semester Project Working With Water Well Data in Irion County, Texas GIS Semester Project Working With Water Well Data in Irion County, Texas Grant Hawkins Question for the Project Upon picking a random point in Irion county, Texas, to what depth would I have to drill a

More information

caused displacement of ocean water resulting in a massive tsunami. II. Purpose

caused displacement of ocean water resulting in a massive tsunami. II. Purpose I. Introduction The Great Sumatra Earthquake event took place on December 26, 2004, and was one of the most notable and devastating natural disasters of the decade. The event consisted of a major initial

More information

Using Geographic Information Systems and Remote Sensing Technology to Analyze Land Use Change in Harbin, China from 2005 to 2015

Using Geographic Information Systems and Remote Sensing Technology to Analyze Land Use Change in Harbin, China from 2005 to 2015 Using Geographic Information Systems and Remote Sensing Technology to Analyze Land Use Change in Harbin, China from 2005 to 2015 Yi Zhu Department of Resource Analysis, Saint Mary s University of Minnesota,

More information

A Reconstruction of Regional and Global Temperature for the Past 11,300 Years Marcott et al STUDENT ACTIVITY

A Reconstruction of Regional and Global Temperature for the Past 11,300 Years Marcott et al STUDENT ACTIVITY A Reconstruction of Regional and Global Temperature for the Past 11,300 Years Marcott et al. 2013 STUDENT ACTIVITY How do we reconstruct global average temperatures? Learning Objective: This activity explores

More information

Is Greenland Really That Big?

Is Greenland Really That Big? Details Learning Resources Completion Time: About one period Permission: Download, Share, and Remix Is Greenland Really That Big? Overview NASA s Operation IceBridge images Earth s polar ice in unprecedented

More information

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows)

What are the five components of a GIS? A typically GIS consists of five elements: - Hardware, Software, Data, People and Procedures (Work Flows) LECTURE 1 - INTRODUCTION TO GIS Section I - GIS versus GPS What is a geographic information system (GIS)? GIS can be defined as a computerized application that combines an interactive map with a database

More information

Prosurv LLC Presents

Prosurv LLC Presents Prosurv LLC Presents An Enterprise-Level Geo-Spatial Data Visualizer Part IV Upload Data Upload Data Click the Upload Data menu item to access the uploading data page. Step #1: Select a Project All Projects

More information

Temporal Evolution of the ScientificCollaboration Network in Europe

Temporal Evolution of the ScientificCollaboration Network in Europe Temporal Evolution of the ScientificCollaboration Network in Europe Jori Jämsä 23.3.2015 Instructor: Ph.D Raj Kumar Pan Supervisor: Prof. Harri Ehtamo This work can be saved and published in Aalto University

More information

Using Ice Thickness and Bed Topography to Pick Field Sites Near Swiss Camp, Greenland

Using Ice Thickness and Bed Topography to Pick Field Sites Near Swiss Camp, Greenland Lauren Andrews 6 May 2010 GEO 386G: GIS final project Using Ice Thickness and Bed Topography to Pick Field Sites Near Swiss Camp, Greenland Problem Formulation My primary goal for this project is to map

More information

A Study on Trade of Complementarity among Xinjiang and Its Neighboring Countries

A Study on Trade of Complementarity among Xinjiang and Its Neighboring Countries A Study on Trade of Complementarity among injiang and Its Neighboring Countries inshu Gong School of Economics & Trade, Shihezi University Shihezi 832003, China Tel: 86-993-205-8996 E-mail: gxsjm10@sohu.com

More information

DATA SOURCES AND INPUT IN GIS. By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore

DATA SOURCES AND INPUT IN GIS. By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore DATA SOURCES AND INPUT IN GIS By Prof. A. Balasubramanian Centre for Advanced Studies in Earth Science, University of Mysore, Mysore 1 1. GIS stands for 'Geographic Information System'. It is a computer-based

More information

Lauren Jacob May 6, Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons

Lauren Jacob May 6, Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons Lauren Jacob May 6, 2010 Tectonics of the Northern Menderes Massif: The Simav Detachment and its relationship to three granite plutons I. Introduction: Purpose: While reading through the literature regarding

More information

Working with Map Projections

Working with Map Projections Working with Map Projections Rachel Applebaum and Margaret M. Maher Author of Lining Up Data in ArcGIS: a guide to map projections Second edition Some common problems that prevent data from aligning correctly

More information

AUTOMATED METERED WATER CONSUMPTION ANALYSIS

AUTOMATED METERED WATER CONSUMPTION ANALYSIS AUTOMATED METERED WATER CONSUMPTION ANALYSIS Shane Zhong 1, Nick Turich 1, Patrick Hayde 1 1. Treatment and Network Planning, SA Water, Adelaide, SA, Australia ABSTRACT Water utilities collect and store

More information

GeoPostcodes. Grecia

GeoPostcodes. Grecia Grecia - Grecia About.com Launched in 2007, website offers comprehensive and reliable databases of localities, streets, administrative regions, ZIP/postal codes and lots of other information for all countries.

More information

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth

Lesson Plan 2 - Middle and High School Land Use and Land Cover Introduction. Understanding Land Use and Land Cover using Google Earth Understanding Land Use and Land Cover using Google Earth Image an image is a representation of reality. It can be a sketch, a painting, a photograph, or some other graphic representation such as satellite

More information

Introduction to Google Mapping Tools

Introduction to Google Mapping Tools Introduction to Google Mapping Tools Google s Mapping Tools Explore geographic data. Organize your own geographic data. Visualize complex data. Share your data with the world. Tell your story and educate

More information

Software requirements * :

Software requirements * : Title: Product Type: Developer: Target audience: Format: Software requirements * : Using GRACE to evaluate change in Greenland s ice sheet Part I: Download, import and map GRACE data Part II: View and

More information

CentropeSTATISTICS Working Interactively with Cross-Border Statistic Data Clemens Beyer, Walter Pozarek, Manfred Schrenk

CentropeSTATISTICS Working Interactively with Cross-Border Statistic Data Clemens Beyer, Walter Pozarek, Manfred Schrenk Clemens Beyer, Walter Pozarek, Manfred Schrenk (Dipl.-Ing. Clemens Beyer, CEIT ALANOVA, Concorde Business Park 2/F, 2320 Schwechat, Austria, c.beyer@ceit.at) (Dipl.-Ing. Walter Pozarek, PGO Planungsgemeinschaft

More information

Dynamic Maps and Historical Context

Dynamic Maps and Historical Context Dynamic Maps and Historical Context Jeanette Zerneke International Joint GIS-IDEAS and PNC/ECAI Conference December 2008 Dynamic Maps Roles and Functions of Dynamic Maps in Cultural Collections and Atlases

More information

ADDRESSING A HOW TO LOOK AT GIS ADDRESSING 9/13/2017

ADDRESSING A HOW TO LOOK AT GIS ADDRESSING 9/13/2017 ADDRESSING A Look at Creating & Updating Point Files A HOW TO LOOK AT GIS ADDRESSING Creating points using LAT/LONG fields from WINGAP Creating addressing location (GPS/Latitude & Longitude) points using

More information

GPS Worldwide Laboratory: a community of knowledge-seekers spanning the globe

GPS Worldwide Laboratory: a community of knowledge-seekers spanning the globe Laboratory B: (predicting and verifying satellite visibility) Lab Date: 1 November 2014 1 day depending on your time zone). YOU MUST DO THIS PARTICULAR LAB ON THE SPECIFIED DAY. Lab Goals: Predict when

More information

The Night Sky [Optional - only for those interested] by Michael Kran - Thursday, 2 October 2008, 03:49 PM

The Night Sky [Optional - only for those interested] by Michael Kran - Thursday, 2 October 2008, 03:49 PM The Night Sky [Optional - only for those interested] by Michael Kran - Thursday, 2 October 2008, 03:49 PM A question sometimes arises: "What's up in the sky at a particular moment?" There are several ways

More information

ArcGIS for Applied Economists Session 2

ArcGIS for Applied Economists Session 2 ArcGIS for Applied Economists Session 2 Mark Westcott LMU Munich June 15, 2015 1 / 31 Topics for this session: Geographic Coordinate Systems Projections Projected Coordinate Systems Geocoding 2 / 31 Some

More information

DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N

DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N DisDirToXYplus: program&interface b y R o n P e n n d e r s, P A 2 I O N 2 0 1 7 Abstract DisDir2XY converts geographic vector coordinates into other units and azimuth projections. - Input is manually

More information

Atlas Historical World Atlas By Rand Mcnally

Atlas Historical World Atlas By Rand Mcnally Atlas Historical World Atlas By Rand Mcnally If searched for a book by Rand Mcnally Atlas Historical World Atlas in pdf format, then you've come to faithful site. We present the complete option of this

More information

Peoples, Places and Cultures in Africa, Asia and the Southwest Pacific

Peoples, Places and Cultures in Africa, Asia and the Southwest Pacific GRADE 7 Peoples, Places and Cultures in Africa, Asia and the Southwest Pacific Course 0470-07 Students in seventh grade explore the history, geography, government, economic systems, current issues, and

More information

Welcome! Power BI User Group (PUG) Copenhagen

Welcome! Power BI User Group (PUG) Copenhagen Welcome! Power BI User Group (PUG) Copenhagen Making Maps in Power BI Andrea Martorana Tusa BI Specialist Welcome to Making maps in Power BI Who am I? First name: Andrea. Last name: Martorana Tusa. Italian,

More information

Geography 281 Map Making with GIS Project Eight: Comparing Map Projections

Geography 281 Map Making with GIS Project Eight: Comparing Map Projections Geography 281 Map Making with GIS Project Eight: Comparing Map Projections In this activity, you will do a series of projection comparisons using maps at different scales and geographic extents. In this

More information

Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition

Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition Answer Key 1 Answer key for chapter questions in Getting to Know ArcGIS Desktop, 5th edition Exercise 3a Q: Two countries display populations greater than 500 million. Can you name them? A: China and India

More information

Virtual Beach Building a GBM Model

Virtual Beach Building a GBM Model Virtual Beach 3.0.6 Building a GBM Model Building, Evaluating and Validating Anytime Nowcast Models In this module you will learn how to: A. Build and evaluate an anytime GBM model B. Optimize a GBM model

More information

Year 34 B2 Geography - Continents and Oceans 2018 Key Skills to be covered: Taken from Level 3 Taken from Level 4

Year 34 B2 Geography - Continents and Oceans 2018 Key Skills to be covered: Taken from Level 3 Taken from Level 4 Key Skills to be covered: Taken from Level 3 Taken from Level 4 Geographical Enquiry: I ask, Which PHYSICAL features does this place have? I ask, Which HUMAN features does this place have? I give reasons

More information

Catchment Delineation Workflow

Catchment Delineation Workflow Catchment Delineation Workflow Slide 1 Given is a GPS point (Lat./Long.) for an outlet location. The outlet could be a proposed Dam site, a storm water drainage culvert on a rural highway, or any other

More information

Learning Target : Describe the purposes and uses of different types of maps.

Learning Target : Describe the purposes and uses of different types of maps. Learning Target : Describe the purposes and uses of different types of maps. Directions: 1. Below, place a where you think you are located. 2. In which continent are you located? 3. In which country are

More information

Spatial Extension of the Reality Mining Dataset

Spatial Extension of the Reality Mining Dataset R&D Centre for Mobile Applications Czech Technical University in Prague Spatial Extension of the Reality Mining Dataset Michal Ficek, Lukas Kencl sponsored by Mobility-Related Applications Wanted! Urban

More information

Search for the Dubai in the remap search bar:

Search for the Dubai in the remap search bar: This tutorial is aimed at developing maps for two time periods with in Remap (). In this tutorial we are going to develop a classification water and non-water in Dubai for the year 2000 and the year 2016.

More information

Traffic accidents and the road network in SAS/GIS

Traffic accidents and the road network in SAS/GIS Traffic accidents and the road network in SAS/GIS Frank Poppe SWOV Institute for Road Safety Research, the Netherlands Introduction The first figure shows a screen snapshot of SAS/GIS with part of the

More information

Reaxys Medicinal Chemistry Fact Sheet

Reaxys Medicinal Chemistry Fact Sheet R&D SOLUTIONS FOR PHARMA & LIFE SCIENCES Reaxys Medicinal Chemistry Fact Sheet Essential data for lead identification and optimization Reaxys Medicinal Chemistry empowers early discovery in drug development

More information

GeoPostcodes. Trinidad & Tobago

GeoPostcodes. Trinidad & Tobago Trinidad & Tobago Trinidad & Tobago About.com Launched in 2007, website offers comprehensive and reliable databases of localities, streets, administrative regions, ZIP/postal codes and lots of other information

More information

GeoPostcodes. Litauen

GeoPostcodes. Litauen Litauen - Litauen About.com Launched in 2007, website offers comprehensive and reliable databases of localities, streets, administrative regions, ZIP/postal codes and lots of other information for all

More information

Trouble-Shooting Coordinate System Problems

Trouble-Shooting Coordinate System Problems Trouble-Shooting Coordinate System Problems Written by Barbara M. Parmenter, revised 2/25/2014 OVERVIEW OF THE EXERCISE... 1 COPYING THE MAP PROJECTION EXERCISE FOLDER TO YOUR H: DRIVE OR DESKTOP... 2

More information

New Nuclear In Europe: 2030 Outlook By Stephen Tarlton

New Nuclear In Europe: 2030 Outlook By Stephen Tarlton New Nuclear In Europe: 2030 Outlook By Stephen Tarlton If you are searching for a book by Stephen Tarlton New Nuclear in Europe: 2030 Outlook in pdf format, in that case you come on to correct website.

More information

The Rain in Spain - Tableau Public Workbook

The Rain in Spain - Tableau Public Workbook The Rain in Spain - Tableau Public Workbook This guide will take you through the steps required to visualize how the rain falls in Spain with Tableau public. (All pics from Mac version of Tableau) Workbook

More information

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer

Performing. Geospatial Analysis. Using Latitude and Longitude Data. Ginger Ni - Software Engineer Performing Geospatial Analysis Using Latitude and Longitude Data Ginger Ni - Software Engineer Hewlett Packard Enterprise confidential information This is a rolling (up to three year) roadmap and is subject

More information

3/4/2010. ESRI Education Community. CommunityWeb Mapping Tools

3/4/2010. ESRI Education Community.     CommunityWeb Mapping Tools Sketch-A-Map Reading, Writing and Math from a Different Perspective Education Community at ESRI Web Mapping Tools ESRI Education Community http://edcommunity.esri.com CommunityWeb Mapping Tools http://edcommunity.esri.com/maps/index.cfm

More information

Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi

Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi Energy Efficiency, Acoustics & Daylighting in building Prof. B. Bhattacharjee Department of Civil Engineering Indian Institute of Technology, Delhi Lecture - 05 Introduction & Environmental Factors (contd.)

More information

FS2004 / Ultimate Terrain Landclass Primer

FS2004 / Ultimate Terrain Landclass Primer FS2004 / Ultimate Terrain Landclass Primer Overview Scenery Solutions is providing this technical overview of FS2004 landclass and its impact on Ultimate Terrain for the benefit of our customers. Landclass

More information

QGIS FLO-2D Integration

QGIS FLO-2D Integration EPiC Series in Engineering Volume 3, 2018, Pages 1575 1583 Engineering HIC 2018. 13th International Conference on Hydroinformatics Karen O Brien, BSc. 1, Noemi Gonzalez-Ramirez, Ph. D. 1 and Fernando Nardi,

More information

Features and Benefits

Features and Benefits Autodesk LandXplorer Features and Benefits Use the Autodesk LandXplorer software family to help improve decision making, lower costs, view and share changes, and avoid the expense of creating physical

More information

Geographic Analysis of Linguistically Encoded Movement Patterns A Contextualized Perspective

Geographic Analysis of Linguistically Encoded Movement Patterns A Contextualized Perspective Geographic Analysis of Linguistically Encoded Movement Patterns A Contextualized Perspective Alexander Klippel 1, Alan MacEachren 1, Prasenjit Mitra 2, Ian Turton 1, Xiao Zhang 2, Anuj Jaiswal 2, Kean

More information

ARCGIS TRAINING AT KU GIS LABS: INTRODUCTION TO GIS: EXPLORING ARCCATALOG AND ARCGIS TOOLS

ARCGIS TRAINING AT KU GIS LABS: INTRODUCTION TO GIS: EXPLORING ARCCATALOG AND ARCGIS TOOLS PHASE 1_3 rd SESSION ARCGIS TRAINING AT KU GIS LABS: INTRODUCTION TO GIS: EXPLORING ARCCATALOG AND ARCGIS TOOLS 3 rd SESSION REPORT: 25 TH -27 TH JUNE 2014 SCHOOL OF ENVIRONMENTAL STUDIES COMPUTER LAB

More information

Moving into the information age: From records to Google Earth

Moving into the information age: From records to Google Earth Moving into the information age: From records to Google Earth David R. R. Smith Psychology, School of Life Sciences, University of Hull e-mail: davidsmith.butterflies@gmail.com Introduction Many of us

More information

for XPS surface analysis

for XPS surface analysis Thermo Scientific Avantage XPS Software Powerful instrument operation and data processing for XPS surface analysis Avantage Software Atomic Concentration (%) 100 The premier software for surface analysis

More information

Using a library of downscaled climate projections to teach climate change analysis

Using a library of downscaled climate projections to teach climate change analysis Using a library of downscaled climate projections to teach climate change analysis Eugene Cordero, Department of Meteorology San Jose State University Overview of Dataset Climate change activity Applications

More information

GeoPostcodes. Denmark

GeoPostcodes. Denmark Denmark Denmark About.com Launched in 2007, website offers comprehensive and reliable databases of localities, streets, administrative regions, ZIP/postal codes and lots of other information for all countries.

More information

Exploring Visualization of Geospatial Ontologies Using Cesium

Exploring Visualization of Geospatial Ontologies Using Cesium Exploring Visualization of Geospatial Ontologies Using Cesium Abhishek V. Potnis, Surya S. Durbha Centre of Studies in Resources Engineering, Indian Institue of Technology Bombay, India abhishekvpotnis@iitb.ac.in,

More information

Free Webinar: Regionalized LCIA in openlca 1.5. Cristina Rodríguez GreenDelta GmbH May 2016

Free Webinar: Regionalized LCIA in openlca 1.5. Cristina Rodríguez GreenDelta GmbH May 2016 Free Webinar: Regionalized in openlca 1.5 Cristina Rodríguez GreenDelta GmbH May 2016 Using GoToWebinar: Practical information Raise your hand Download documentation Write a question Agenda Adding GIS

More information

The Application of 3D Web GIS In Land Administration - 3D Building Model System

The Application of 3D Web GIS In Land Administration - 3D Building Model System The Application of 3D Web GIS In Land Administration - 3D Building Model System Hui-Wen Chen *, Wen-Yuan Ku *, Lan-Kun Chung *, Tien-Yin Chou *, Li-Min Yi2 ** * Feng Chia University, Taiwan, ** Land Department

More information

-ASTR 204 Application of Astroimaging Techniques

-ASTR 204 Application of Astroimaging Techniques Lab 5 - JPL Ephemeris, Binary Maker 3 In Lab 5 we ll look at another ephemeris generating tool; Horizons Web-Interface from JPL, and Binary Maker 3 program for generating radial velocity curves and 3-D

More information

Preparing Spatial Data

Preparing Spatial Data 13 CHAPTER 2 Preparing Spatial Data Assessing Your Spatial Data Needs 13 Assessing Your Attribute Data 13 Determining Your Spatial Data Requirements 14 Locating a Source of Spatial Data 14 Performing Common

More information

Map your way to deeper insights

Map your way to deeper insights Map your way to deeper insights Target, forecast and plan by geographic region Highlights Apply your data to pre-installed map templates and customize to meet your needs. Select from included map files

More information

Land-Line Technical information leaflet

Land-Line Technical information leaflet Land-Line Technical information leaflet The product Land-Line is comprehensive and accurate large-scale digital mapping available for Great Britain. It comprises nearly 229 000 separate map tiles of data

More information

Important Developments in International Coke Markets

Important Developments in International Coke Markets Important Developments in International Coke Markets Andrew Jones Resource-Net South Africa China Coke Market Congress Xuzhou, Jiangsu September 2018 Introduction to Presentation Resource-Net produces

More information