Elite Galaxy Online. API Documentation v Elite Galaxy Online. All rights reserved

Size: px
Start display at page:

Download "Elite Galaxy Online. API Documentation v Elite Galaxy Online. All rights reserved"

Transcription

1 Elite Galaxy Online API Documentation v2.1

2 Contents 1. Version Control Overview of Elite Galaxy Online API Retrieving Data from Elite Galaxy Online Retrieving Star System Data Overview Query Variables Return Values Example Usage Retrieving Object Data Overview Query Variables Return Values Example Usage Retrieving Galactic Record Data records/get_latest_records records/get_object_types records/get_ring_types records/get_record_categories records/get_record_names Retrieving List Data Submitting Data to Elite Galaxy Online... 22

3 1. Version Control Version Date Changes /09/2015 Initial Release /09/2015 Updated ego_system/get_details to also include object_id Added ego_system/get_details_full /09/2015 Added ego_system/get_system_list /11/2015 Added new submission entry to allow uploading images directly to the multi scanner Added new multiscan class to allow retrieval of information from the multiscanner /11/2015 Added support for third party use of the Elite Galaxy Online discovery scanner as an OCR engine for system view screenshots Added ability to retrieve the results of a scan submitted via the API /04/2017 Complete rewrite of the API to simplify and tie in with the new Ship Log Reader /5/2017 Increased object return limit on objects/get_data to 10,000

4 2. Overview of Elite Galaxy Online API The Elite Galaxy Online API is made up of two components: API endpoints which allow for retrieving data from the site using a GET http request. API endpoints which allow data to be submitted to the site using a POST http request. Retrieving Data Using the API to retrieve data from the site involves making a GET request to a specific URL. For example, to retrieve data for the Sol system you can use the following URL: Or alternatively, if you wish to retrieve data for Jupiter, you can use: Due to the public nature of this data, no API key is required to use these endpoints. All URL s which form part of the retrieval API are structured as follows: Each of the endpoints will generate an output in standard JSON format. Section 3 of this document describes the different endpoints which are currently available. Submitting Data Objects can be recorded at Elite Galaxy Online by submitting a POST request containing the Scan event from the Player Journal log file which is now created by Elite Dangerous. This scan event along with a few other variables such as the System Name will then be parsed at Elite Galaxy Online and recorded. This part of the api requires a user login and api key to be submitted as part of the POST request. See section 4 for more details.

5 3. Retrieving Data from Elite Galaxy Online 3.1. Retrieving Star System Data Overview The systems class can be used to retrieve information about any star systems which have been recorded at Elite Galaxy Online. It contains one method called get_data which accepts a number of query variables to allow only systems which match a certain set of criteria to be returned. URI: Note that for performance reasons, I have currently limited this api call to only return data for a maximum of 10,000 systems. This can be increased but I want to avoid any potential impact at this stage to the main site. Please contact me if this limit is preventing you from using the api in the way you might need to.

6 Query Variables The table below shows all of the optional query variables which can be used with the /systems/get_data/ api endpoint. All string type query variables can accept the asterix character * to use as a wildcard. For example, using /systems/get_data/?system_name=wredg* will return data for all systems that begin with wredg. Alternatively, multiple wildcard characters can be used for example, /systems/get_data/?system_name=*sector* will return data for all systems which contain sector in their name. Query Variable Type Description system_name string Applies a filter on system name first_recorded_by string Applies a filter on the first recorded by field this is the display name of the user who first recorded an object within this system

7 Return Values Return Value Definition status Indicates whether the call to the API is OK or has encountered an error query_parameters An array of the SQL WHERE statements which have been generated and applied based on the url query variables number_of_systems_returned A count of the total number of systems which have been returned. Indicates if the max api return limit has been reached system_data system_link url linking to the system at Elite Galaxy Online system_name The name of the system system_description The description of the system as entered by the commander who first recorded an object within it at Elite Galaxy Online first_recorded_by The display name of the user who first recorded an object in this system orrery_status Indicates whether an orrery is currently available for this system galactic_coordinates Array containing the galactic coordinates of this system if recorded

8 Example Usage Return data for all systems containing sol in their system name Return data for all systems first recorded by commander wolzan wolzan

9 3.2. Retrieving Object Data Overview The objects class can be used to retrieve information about any objects which have been recorded at Elite Galaxy Online. It contains one method called get_data which accepts a number of query variables to allow only objects which match a certain set of criteria to be returned. URI: Note that for performance reasons, I have currently limited this api call to only return data for a maximum of 10,000 objects. This can be increased but I want to avoid any potential impact at this stage to the main site. Please contact me if this limit is preventing you from using the api in the way you might need to.

10 Query Variables The table below shows all of the optional query variables which can be used with the /objects/get_data/ api endpoint. All string type query variables can accept the asterix character * to use as a wildcard. For example, using /objects/get_data/?system_name=wredg* will return data for all objects which exist in systems that begin with wredg. Alternatively, multiple wildcard characters can be used for example, /objects/get_data/?system_name=*sector* will return data for all objects which exist in systems which contain sector in their name. Query Variable Type Description object_name string Applies a filter on object name system_name string Applies a filter on system name object_group string Applies a filter on object group i.e. Stars, Gas Giants / Water Giants or Terrestrial Planets object_type string Applies a filter on object type i.e. Class B Star first_discovered_by string Applies a filter on the first discovered by field note this is the name of the commander who first discovered the object in Elite Dangerous and not who first recorded it at Elite Galaxy Online. recorded_by string Applies a filter on the recorded by field this is the display name of the user who recorded the object at Elite Galaxy Online date_recorded_from datetime Applies a filter on the date recorded field to only show objects recorded from this date onwards. date_recorded_to datetime Applies a filter on the date recorded field to only show objects recorded up to an including this date min_surface_temp number Applies a filter on the surface temp field to only show objects with a surface temperature above or equal to the min_surface_temp max_surface_temp number Applies a filter on the surface temp field to only show objects with a surface temperature below or equal to the max_surface_temp min_earth_mass number Applies a filter on the earth mass field to only show objects with an earth mass above or equal to the min_earth_mass - Note earth mass is only relevant for Gas Giants and Terrestrial Planets as Stars use the solar mass measurement max_earth_mass number Applies a filter on the earth mass field to only show objects with an earth mass below or equal to the max_earth_mass - Note earth mass is only relevant for Gas Giants and Terrestrial Planets as Stars use the solar mass measurement min_radius number Applies a filter on the radius field to only show objects with a radius above or equal to the min_radius - Note radius is only relevant for Gas Giants and Terrestrial Planets as Stars use the solar radius measurement max_radius number Applies a filter on the radius field to only show objects with a radius below or equal to the max_radius - Note radius is only relevant for Gas Giants and Terrestrial Planets as Stars use the solar radius measurement

11 Query Variable Type Description min_mean_density number Applies a filter on the mean density field to only show objects with a mean density above or equal to the min_mean_density max_mean_density number Applies a filter on the mean density field to only show objects with a mean density below or equal to the max_mean_density min_surface_gravity number Applies a filter on the surface gravity field to only show objects with a surface gravity above or equal to the min_ surface gravity Note surface gravity is not present for Stars max_surface_gravity number Applies a filter on the surface gravity field to only show objects with a surface gravity below or equal to the max_ surface gravity Note surface gravity is not present for Stars min_age number Applies a filter on the age field to only show objects with an age above or equal to the min_age Note age only exists for Stars max_age number Applies a filter on the age field to only show objects with an age below or equal to the max_age Note age only exists for Stars min_solar_mass number Applies a filter on the solar mass field to only show objects with a solar mass above or equal to the min_solar_mass Note solar mass only exists for Stars max_ solar_mass number Applies a filter on the solar mass field to only show objects with a solar mass below or equal to the max_solar_mass Note solar mass only exists for Stars min_solar_radius number Applies a filter on the solar radius field to only show objects with a solar radius above or equal to the min_solar_ radius Note solar radius only exists for Stars max_ solar_radius number Applies a filter on the solar radius field to only show objects with a solar radius below or equal to the max_solar_ radius Note solar radius only exists for Stars min_abs_magnitude number Applies a filter on the absolute magnitude field to only show objects with an absolute magnitude above or equal to the min_abs_magnitude Note absolute magnitude only exists for Stars max_ abs_magnitude number Applies a filter on the absolute magnitude field to only show objects with an absolute magnitude below or equal to the max_abs_magnitude Note absolute magnitude only exists for Stars min_orbital_period number Applies a filter on the orbital period field to only show objects with an orbital period above or equal to the min_orbital_period max_orbital_period number Applies a filter on the orbital period field to only show objects with an orbital period below or equal to the max_orbital_period min_semi_major_axis number Applies a filter on the semi major axis field (measured in AU) to only show objects with a semi major axis above or equal to the min_semi_major_axis max_semi_major_axis number Applies a filter on the semi major axis field (measured in AU) to only show objects with a semi major axis below or equal to the max_semi_major_axis min_semi_major_axis_km number Applies a filter on the semi major axis km field (measured in km) to only show objects with a semi major axis km above or equal to the min_semi_major_axis_km max_semi_major_axis_km number Applies a filter on the semi major axis km field (measured in km) to only show objects with a semi major axis below or equal to the max_semi_major_axis_km min_orbital_eccentricity number Applies a filter on the orbital eccentricity field to only show objects with an orbital eccentricity above or equal to the min_orbital_

12 Query Variable Type Description eccentricity max_orbital_ eccentricity number Applies a filter on the orbital eccentricity field to only show objects with an orbital eccentricity below or equal to the max_orbital_ eccentricity min_orbital_inclination number Applies a filter on the orbital inclination field to only show objects with an orbital inclination above or equal to the min_orbital_ inclination max_orbital_ inclination number Applies a filter on the orbital inclination field to only show objects with an orbital inclination below or equal to the max_orbital_ inclination min_arg_of_periapsis number Applies a filter on the argument of periapsis field to only show objects with an argument of periapsis above or equal to the min_arg_of_periapsis max_ arg_of_periapsis number Applies a filter on the argument of periapsis field to only show objects with an argument of periapsis below or equal to the max_arg_of_periapsis min_rotational_period number Applies a filter on the rotational period field to only show objects with a rotational period above or equal to the min_rotational_period max_rotational_period number Applies a filter on the rotational period field to only show objects with a rotational period below or equal to the max_rotational_period min_axial_tilt number Applies a filter on the axial tilt field to only show objects with an axial tilt above or equal to the min_axial_tilt max_axial_tilt number Applies a filter on the axial tilt field to only show objects with an axial tilt below or equal to the max_axial_tilt

13 Return Values Return Value Definition status Indicates whether the call to the API is OK or has encountered an error query_parameters An array of the SQL WHERE statements which have been generated and applied based on the url query variables number_of_objects_returned A count of the total number of objects which have been returned. Indicates if the max api return limit has been reached object_data object_link url linking to the object at Elite Galaxy Online object_name The name of the object system_name The name of the system in which the object is located object_description The description of the object as entered by the commander who recorded it at Elite Galaxy Online object_group The group classification of the object i.e. Star, Gas Giant or Terrestrial Planet object_type The object type classification of the object first_discovered_by The name of the commander who first discovered the object in game (if known) recorded_by The display_name of the commander who recorded the object at Elite Galaxy Online date_recorded The data the object was recorded at Elite Galaxy Online. main_data An array of the main recorded data for an object. Note that the fields in this array vary depending on whether the object is classified as a Star, Gas Giant or Terrestrial Planet. orbit_data An array of the orbital data which has been recorded for an object. Note that stars which are the system centre of mass will not have orbital data solid_composition_data An array of the solid compositional information for an object. Note this will only be available for terrestrial planet type objects and will return null for stars and gas giants. atmosphere_composition_data An array of the atmospheric compositional information for an object. Note that this will only be available for terrestrial planets with atmospheres and gas giants. ring_data An array of the ring information which has been recorded for an object if applicable.

14 Example Usage Return data for all objects within the Liaedin system Return data for all objects in systems where the system name begins with wred Return data for all objects in systems where the system name contains sector Return data for all high metal content planets which have been recorded by Commander Wolzan metal content planet&recorded_by=commander wolzan Return data for all Terrestrial Planets with a surface temperature ranging from 200K to 240K inclusive and a surface gravity equal to 1.5g or above Planet&min_surface_temp=200&max_surface_temp=240&min_surface_gravity=1.5

15 3.3. Retrieving Galactic Record Data The records class can be used to retrieve information about the current galactic records held at Elite Galaxy Online The records class contains the following API endpoints: Method Query Variables Description get_latest_records object_type, ring_type, category, Returns information for every galactic record currently held at Elite Galaxy Online record_name get_object_types None Returns the list of object types as used in the galactic records get_ring_types None Returns the list of ring types as used in the galactic records get_record_categories None Returns the list of record categories as used in the galactic records get_record_names None Returns the list of record names as used in the galactic records

16 records/get_latest_records URI: Description: Returns information for every galactic record currently held at Elite Galaxy Online Query Variables: object type (optional), ring_type (optional), category (optional), record_name (optional) The Query Variables can be used to filter down the records as required Return Values: Return Value Definition status Indicates whether the call to the API is OK or has encountered an error records object_type The object type classification which the record is associated with ring_type The ring type if any which the record is associated with category The record category record_name The name of the record current_value The currently held value including the units current_value_no_units The currently held value excluding the units current_number_of_objects The current number of objects holding the record Example Usage: M Star Returns:

17 records/get_object_types URI: Description: Returns the list of object types as used in the galactic records Query Variables: None Return Values: Return Value status object_types Definition Indicates whether the call to the API is OK or has encountered an error The list of object types which can be used as filters in the get_latest_records endpoint

18 records/get_ring_types URI: Description: Returns the list of ring types as used in the galactic records Query Variables: None Return Values: Return Value status ring_types Definition Indicates whether the call to the API is OK or has encountered an error The list of ring types which can be used as filters in the get_latest_records endpoint

19 records/get_record_categories URI: Description: Returns the list of record categories as used in the galactic records Query Variables: None Return Values: Return Value status record_categories Definition Indicates whether the call to the API is OK or has encountered an error The list of record categories which can be used as filters in the get_latest_records endpoint

20 records/get_record_names URI: Description: Returns the list of record names as used in the galactic records Query Variables: None Return Values: Return Value status record_names Definition Indicates whether the call to the API is OK or has encountered an error The list of record names which can be used as filters in the get_latest_records endpoint

21 3.4. Retrieving List Data The lists class can be used to retrieve information about the various lists such as volcanism types and atmosphere types which are used at Elite Galaxy Online The lists class contains the following API endpoints: Method Query Variables Description object_groups None Returns the list of object groups star_types None Returns the list of star classifications gas_giant_types None Returns the list of gas giant classifications terrestrial_planet_types None Returns the list of terrestrial planet classifications atmospheric_elements None Returns the list of atmospheric elements solid_elements None Returns the list of solid composition elements terraform_status_types None Returns the list of terraform status types atmosphere_types None Returns the list of atmosphere types volcanism_types None Returns the list of volcanism types ring_types None Returns the list of ring types ring_reserves_types None Returns the list of ring reserves types Example Usage: Returns:

22 4. Submitting Data to Elite Galaxy Online New objects can be recorded at Elite Galaxy Online via the API by submitting a Scan event from the player journal logs which are now created by Elite Dangerous. The Scan event will then be parsed and recorded at the site and the api will return the outcome including whether the object broke a galactic record. To submit a scan event in this way, you must submit a POST request to the following URL. The body of your post request should contain a JSON object of field value pairs containing the information being submitted An example of a typical post request is shown below: There are 9 inputs required for this submission as described below: Input ID Input Name Description input_1 user_login Should contain a valid Elite Galaxy Online user login input_2 user_api_key Should contain a valid Elite Galaxy Online user api key for the user specified in input_1 input_3 application_id A unique id number to identify the application which is submitting the object input_4 application_auth_code A unique authorisation code for the application as defined in input_3 input_5 Scan event The full Scan event line taken from the player journal file with the

23 double quotation characters escaped Input_6 system_name The name of the system in which the scan was performed Input_7 X coordinate of the system The x coordinate of the system Input_8 Y coordinate of the system The y coordinate of the system Input_9 Z coordinate of the system The z coordinate of the system Notes on these input fields Input_1 and input_2 contain the users Elite Galaxy Online user login and user api key. This is required so the discovery can be recorded against the correct account. These should be unique to each user of your application. Input_3 and input_4 contain the application_id and application_auth_code. I have added these to the api for 3 reasons as follows: I want to be able to track usage of which discoveries are coming from which external applications When an object is recorded via an external application, the object is tagged with a source which then shows up across the site as shown in the example below where an object has been recorded using the Elite Galaxy Online Comms Link application. This looks pretty cool and the image can be linked to your external application. If you are interested in making your external application submit discoveries to Elite Galaxy Online using this api then please get in touch with me at commander.wolzan@elitegalaxyonline.com and i ll generate an application_id and authorisation code for you. These should then be stored in your application in a way that is not visible to your users.

24 Return Values on Successful Submission Once a successful POST request is made to this api, you will receive back a confirmation as shown below: [ response ][ is_valid ] indicates whether the submission passed the initial data checks or not. If a field failed validation then [ response ][ validation_messages ] will contain details of any failures as shown below: On successful submission, the response object will contain [ response ][ confirmation_message ]. This contains the outcome of the api submission and contains the following fields. field Is_valid message object_id unique_record_holder object_link system_link description Indicates whether the object was successfully recorded or whether it failed for some reason i.e. object already exists. 1 = valid, 0 = not valid Message describing the outcome of the submission The internal object_id at Elite Galaxy Online associated with the submission Indicates whether the new discovery is a unique record holder i.e. broke a a galactic record url link to the Elite Galaxy Online page to view the object url link to the Elite Galaxy Online page to view the system containing the object

Mass Asset Additions. Overview. Effective mm/dd/yy Page 1 of 47 Rev 1. Copyright Oracle, All rights reserved.

Mass Asset Additions.  Overview. Effective mm/dd/yy Page 1 of 47 Rev 1. Copyright Oracle, All rights reserved. Overview Effective mm/dd/yy Page 1 of 47 Rev 1 System References None Distribution Oracle Assets Job Title * Ownership The Job Title [list@yourcompany.com?subject=eduxxxxx] is responsible for ensuring

More information

LED Lighting Facts: Product Submission Guide

LED Lighting Facts: Product Submission Guide LED Lighting Facts: Product Submission Guide NOVEMBER 2017 1 P a g e L E D L i g h t i n g F a c t s : M a n u f a c t u r e r P r o d u c t S u b m i s s i o n G u i d e TABLE OF CONTENTS Section 1) Accessing

More information

LED Lighting Facts: Manufacturer Guide

LED Lighting Facts: Manufacturer Guide LED Lighting Facts: Manufacturer Guide 2018 1 P a g e L E D L i g h t i n g F a c t s : M a n u f a c t u r e r G u i d e TABLE OF CONTENTS Section 1) Accessing your account and managing your products...

More information

Weighing a Supermassive Black Hole Marc Royster & Andrzej Barski

Weighing a Supermassive Black Hole Marc Royster & Andrzej Barski Weighing a Supermassive Black Hole Marc Royster & Andrzej Barski Purpose The discovery of Kepler s Laws have had a tremendous impact on our perspective of the world as a civilization. Typically, students

More information

You are here! The Solar System! Jo-Anne Brown

You are here! The Solar System! Jo-Anne Brown You are here! * The Solar System! Jo-Anne Brown Outline Questions! Earth, Moon, Sun A little, teeny, tiny bit of history... Terrestrial planets Gas Giants Poor Pluto Magnetic fields Tell me what you know!

More information

Extrasolar planets. Lecture 23, 4/22/14

Extrasolar planets. Lecture 23, 4/22/14 Extrasolar planets Lecture 23, 4/22/14 Extrasolar planets Extrasolar planets: planets around other stars Also called exoplanets 1783 exoplanets discovered as of 4/21/14 Orbitting 1105 different stars Number

More information

Sell2Wales Supplier User Guide Quick Quote

Sell2Wales Supplier User Guide Quick Quote Sell2Wales Supplier User Guide Quick Quote Table of Contents What is Quick Quote?... 2 How do I get selected for a Quick Quote?... 2 How do I access my Quick Quote?... 2 How do I know I ve been invited

More information

Prentice Hall EARTH SCIENCE

Prentice Hall EARTH SCIENCE Prentice Hall EARTH SCIENCE Tarbuck Lutgens 23.1 The Solar System The Planets: An Overview The terrestrial planets are planets that are small and rocky Mercury, Venus, Earth, and Mars. The Jovian planets

More information

Uranus & Neptune, The Ice Giants

Uranus & Neptune, The Ice Giants Uranus & Neptune, The Ice Giants What We Will Learn Today How & When were Uranus & Neptune discovered? How are the interiors and weather on these planets? Why is Neptune as warm as Uranus? What are their

More information

Directive 030: Digital Data Submission of the Annual Oilfield Waste Disposition Report

Directive 030: Digital Data Submission of the Annual Oilfield Waste Disposition Report Directive 030 Directive 030: Digital Data Submission of the Annual Oilfield Waste Disposition Report February 1, 2006 Effective June 17, 2013, the Energy Resources Conservation Board (ERCB) has been succeeded

More information

Astronomy 330 HW 2. Outline. Presentations. ! Alex Bara

Astronomy 330 HW 2. Outline. Presentations. ! Alex Bara Astronomy 330 This class (Lecture 10): Origin of the Moon Ilana Strauss Next Class: Our Planet Scott Huber Thomas Hymel HW 2! Alex Bara http://userpages.bright.net/~phobia/main.htm! Margaret Sharp http://hubpages.com/hub/proof-that-ufos-exist---

More information

9.2 - Our Solar System

9.2 - Our Solar System 9.2 - Our Solar System Scientists describe our solar system as the Sun and all the planets and other celestial objects, such as moons, comets, and asteroids, that are held by the Sun s gravity and orbit

More information

Preliminary Cycle 6 Proposal Submission Statistics. Joint ALMA Observatory May 13, 2018

Preliminary Cycle 6 Proposal Submission Statistics. Joint ALMA Observatory May 13, 2018 Preliminary Cycle 6 Proposal Submission Statistics Joint ALMA Observatory May 13, 2018 Number of Submitted Proposals and Time Requested Time requested (hours) Number 12-m 7-m Total Power All proposals

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

LEVEL 7. for EARTH SCIENCE

LEVEL 7. for EARTH SCIENCE LEVEL 7 for EARTH SCIENCE Table of Contents Historic Firsts... 1 Gems from the Earth... 2 Nature s Soil Builder... 4 Nature s Movers and Shapers... 6 Volcanic Eruptions... 8 Telling Earth s History...

More information

From Kerbal Space Program Wiki

From Kerbal Space Program Wiki From Kerbal Space Program Wiki is the second of the five natural satellites of Jool. Like the other large Joolian moons, Laythe and Tylo (of which is the smallest), is tidally locked to its parent. Synchronous

More information

PAID INVOICE TAX REPORT

PAID INVOICE TAX REPORT PAID INVOICE TAX REPORT The documentation in this publication is provided pursuant to a Sales and Licensing Contract for the Prophet 21 System entered into by and between Prophet 21 and the Purchaser to

More information

Open Notify API. Release 0.2. Nathan Bergey

Open Notify API. Release 0.2. Nathan Bergey Open Notify API Release 0.2 Nathan Bergey Mar 15, 2017 Contents 1 International Space Station Current Location 3 2 International Space Station Pass Predictions 5 3 Open APIs From Space 7 3.1 APIs:...................................................

More information

Learning Objectives. they differ in density (composition, core), atmosphere, surface age, size, geological activity, magnetic field?

Learning Objectives. they differ in density (composition, core), atmosphere, surface age, size, geological activity, magnetic field? Mercury and Venus Learning Objectives! Contrast the Earth, the Moon, Venus and Mercury. Do they differ in density (composition, core), atmosphere, surface age, size, geological activity, magnetic field?!

More information

ASTR 310 Tutorial 3: A Human Orrery

ASTR 310 Tutorial 3: A Human Orrery ASTR Tutorial : A Human Orrery An orrery is a mechanical model of the Solar System. When you turn a crank, the planets and moons orbit the Sun at correctly-scaled distances with correctly-scaled periods.

More information

Data from: The Extrasolar Planet Encyclopaedia.

Data from: The Extrasolar Planet Encyclopaedia. Data from: The Extrasolar Planet Encyclopaedia http://exoplanet.eu/ 2009->10 Status of Exoplanet Searches Direct Detection: 5->9 planets detected Sensitive to large planets in large orbits around faint

More information

Spatial Data Infrastructure Concepts and Components. Douglas Nebert U.S. Federal Geographic Data Committee Secretariat

Spatial Data Infrastructure Concepts and Components. Douglas Nebert U.S. Federal Geographic Data Committee Secretariat Spatial Data Infrastructure Concepts and Components Douglas Nebert U.S. Federal Geographic Data Committee Secretariat August 2009 What is a Spatial Data Infrastructure (SDI)? The SDI provides a basis for

More information

10/16/ Detecting Planets Around Other Stars. Chapter 10: Other Planetary Systems The New Science of Distant Worlds

10/16/ Detecting Planets Around Other Stars. Chapter 10: Other Planetary Systems The New Science of Distant Worlds 10/16/17 Lecture Outline 10.1 Detecting Planets Around Other Stars Chapter 10: Other Planetary Systems The New Science of Distant Worlds Our goals for learning: How do we detect planets around other stars?

More information

Manual Railway Industry Substance List. Version: March 2011

Manual Railway Industry Substance List. Version: March 2011 Manual Railway Industry Substance List Version: March 2011 Content 1. Scope...3 2. Railway Industry Substance List...4 2.1. Substance List search function...4 2.1.1 Download Substance List...4 2.1.2 Manual...5

More information

Name Class Date. For each pair of terms, explain how the meanings of the terms differ.

Name Class Date. For each pair of terms, explain how the meanings of the terms differ. Skills Worksheet Chapter Review USING KEY TERMS For each pair of terms, explain how the meanings of the terms differ. 1. terrestrial planet and gas giant 2. asteroid and comet 3. meteor and meteorite Complete

More information

Pluto. Touring our Solar System. September 08, The Solar System.notebook. Solar System includes: Sun 8 planets Asteroids Comets Meteoroids

Pluto. Touring our Solar System. September 08, The Solar System.notebook. Solar System includes: Sun 8 planets Asteroids Comets Meteoroids Touring our Solar System Solar System includes: Sun 8 planets Asteroids Comets Meteoroids Jan 4 5:48 PM Jan 4 5:50 PM A planet's orbit lies in an inclined orbital plane Planes of seven planets lie within

More information

mylab: Chemical Safety Module Last Updated: January 19, 2018

mylab: Chemical Safety Module Last Updated: January 19, 2018 : Chemical Safety Module Contents Introduction... 1 Getting started... 1 Login... 1 Receiving Items from MMP Order... 3 Inventory... 4 Show me Chemicals where... 4 Items Received on... 5 All Items... 5

More information

COMPOUND REGISTRATION

COMPOUND REGISTRATION CONTENTS: Register a New Compound Register a New Batch Search for a Compound Edit a Batch/Create a New Lot Create a New Salt and Isotope Upload an Analytical File Validation Errors Contact Us www.schrodinger.com

More information

HELCOM-VASAB Maritime Spatial Planning Working Group Twelfth Meeting Gdansk, Poland, February 2016

HELCOM-VASAB Maritime Spatial Planning Working Group Twelfth Meeting Gdansk, Poland, February 2016 HELCOM-VASAB Maritime Spatial Planning Working Group Twelfth Meeting Gdansk, Poland, 24-25 February 2016 Document title HELCOM database for the coastal and marine Baltic Sea protected areas (HELCOM MPAs).

More information

OECD QSAR Toolbox v.3.4. Example for predicting Repeated dose toxicity of 2,3-dimethylaniline

OECD QSAR Toolbox v.3.4. Example for predicting Repeated dose toxicity of 2,3-dimethylaniline OECD QSAR Toolbox v.3.4 Example for predicting Repeated dose toxicity of 2,3-dimethylaniline Outlook Background Objectives The exercise Workflow Save prediction 2 Background This is a step-by-step presentation

More information

Please click the link below to view the YouTube video offering guidance to purchasers:

Please click the link below to view the YouTube video offering guidance to purchasers: Guide Contents: Video Guide What is Quick Quote? Quick Quote Access Levels Your Quick Quote Control Panel How do I create a Quick Quote? How do I Distribute a Quick Quote? How do I Add Suppliers to a Quick

More information

ASTR 200 : Lecture 6 Introduction to the Solar System Pearson Education Inc., publishing as Addison-Wesley

ASTR 200 : Lecture 6 Introduction to the Solar System Pearson Education Inc., publishing as Addison-Wesley ASTR 200 : Lecture 6 Introduction to the Solar System 1 2004 Pearson Education Inc., publishing as Addison-Wesley ANNOUNCEMENTS Keep up with reading! Always posted on course web site. Reading material

More information

Phys 214. Planets and Life

Phys 214. Planets and Life Phys 214. Planets and Life Dr. Cristina Buzea Department of Physics Room 259 E-mail: cristi@physics.queensu.ca (Please use PHYS214 in e-mail subject) Lecture 8. The scale of time and nature of worlds (Page

More information

PC Control / Touch Control

PC Control / Touch Control PC Control / Touch Control Version 6.0 / 5.840.0150 New Features Manual 8.840.8007EN Metrohm AG CH-9101 Herisau Switzerland Phone +41 71 353 85 85 Fax +41 71 353 89 01 info@metrohm.com www.metrohm.com

More information

The asteroids. Example for the usage of the Virtual Observatory

The asteroids. Example for the usage of the Virtual Observatory Example for the usage of the Virtual Observatory The asteroids Florian Freistetter, ZAH, Heidelberg florian@ari.uni-heidelberg.de Asteroids in the solar system There are not only planets in our solar system.

More information

Databases Exam HT2016 Solution

Databases Exam HT2016 Solution Databases Exam HT2016 Solution Solution 1a Solution 1b Trainer ( ssn ) Pokemon ( ssn, name ) ssn - > Trainer. ssn Club ( name, city, street, streetnumber ) MemberOf ( ssn, name, city ) ssn - > Trainer.

More information

Appendix 4 Weather. Weather Providers

Appendix 4 Weather. Weather Providers Appendix 4 Weather Using weather data in your automation solution can have many benefits. Without weather data, your home automation happens regardless of environmental conditions. Some things you can

More information

Pluto, the Kuiper Belt, and Trans- Neptunian Objects

Pluto, the Kuiper Belt, and Trans- Neptunian Objects Pluto, the Kuiper Belt, and Trans- Neptunian Objects 1 What about Pluto? Pluto used to be considered a planet Pluto is one of a large number of Trans-Neptunian Objects, not even the largest one! Discovery

More information

Label next 2 pages in ISN Gas Giants. Make sure the following assignments are turned in:

Label next 2 pages in ISN Gas Giants. Make sure the following assignments are turned in: Do Now: Label next 2 pages in ISN Gas Giants Make sure the following assignments are turned in: A3K Article Analysis Small Group Test Corrections Form (if applicable) Astronomical Bodies in The Solar System

More information

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems Survey of the Solar System The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems Definition of a dwarf planet 1. Orbits the sun 2. Is large enough to have become round due to the

More information

UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System

UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System UNIT 7: Kilo Hōkū - Astronomy & Navigation Teacher s Notes for: The Ordered Solar System Before the students can begin their Tour Through the Solar System they need to have a roadmap. This exercise provides

More information

Universe Celestial Object Galaxy Solar System

Universe Celestial Object Galaxy Solar System ASTRONOMY Universe- Includes all known matter (everything). Celestial Object Any object outside or above Earth s atmosphere. Galaxy- A large group (billions) of stars (held together by gravity). Our galaxy

More information

Extrasolar Planets. Today. Dwarf Planets. Extrasolar Planets. Next week. Review Tuesday. Exam Thursday. also, Homework 6 Due

Extrasolar Planets. Today. Dwarf Planets. Extrasolar Planets. Next week. Review Tuesday. Exam Thursday. also, Homework 6 Due Extrasolar Planets Today Dwarf Planets Extrasolar Planets Next week Review Tuesday Exam Thursday also, Homework 6 Due will count best 5 of 6 homeworks 2007 Pearson Education Inc., publishing as Pearson

More information

DiscoveryGate SM Version 1.4 Participant s Guide

DiscoveryGate SM Version 1.4 Participant s Guide Citation Searching in CrossFire Beilstein DiscoveryGate SM Version 1.4 Participant s Guide Citation Searching in CrossFire Beilstein DiscoveryGate SM Version 1.4 Participant s Guide Elsevier MDL 14600

More information

System Brief: Neubayern

System Brief: Neubayern System Brief: Neubayern PHYSAL DATA Neubayern was the name applied to the Groombridge 1618 star system by Bavarian settlers. The system was first visited by a Bavarian probe in 2142, and colonized in 2169.

More information

The Search for Extraterrestrial Intelligence (SETI)

The Search for Extraterrestrial Intelligence (SETI) The Search for Extraterrestrial Intelligence (SETI) Our goals for learning What is the Drake equation? How many habitable planets have life? How many civilizations are out there? How does SETI work? Can

More information

Basics HTTP. requests. Ryan E. Freckleton. PySprings. May 24, 2016

Basics HTTP. requests. Ryan E. Freckleton. PySprings. May 24, 2016 PySprings May 24, 2016 >>> import r e q u e s t s >>> r = r e q u e s t s. g e t ( h t t p s : / / a p i. g i t h u b. com/ u s e r, auth=( u s e r, p a s s ) ) >>> r. status_code 401 >>> r. h e a d e

More information

Directed Reading B. Section: The Outer Planets

Directed Reading B. Section: The Outer Planets Skills Worksheet Directed Reading B Section: The Outer Planets 1. What is one way that gas giants differ from the terrestrial planets? a. They are much smaller. b. They are rocky and icy. c. They are made

More information

The Jovian Planets. Why do we expect planets like this in the outer reaches of the solar system?(lc)

The Jovian Planets. Why do we expect planets like this in the outer reaches of the solar system?(lc) The Jovian Planets Beyond Mars and the Asteroid belt are the Jovian or Gas Giant Planets that are totally different than the terrestrial planets: They are composed almost entirely of gas They do not have

More information

ASTR 200 : Lecture 6 Introduction to the Solar System Pearson Education Inc., publishing as Addison-Wesley

ASTR 200 : Lecture 6 Introduction to the Solar System Pearson Education Inc., publishing as Addison-Wesley ASTR 200 : Lecture 6 Introduction to the Solar System 1 2004 Pearson Education Inc., publishing as Addison-Wesley Comparative Planetology Studying the similarities among and differences between the planets

More information

Our Solar System and Its Place in the Universe

Our Solar System and Its Place in the Universe Our Solar System and Its Place in the Universe The Formation of the Solar System Our Solar System includes: Planets Dwarf Planets Moons Small Solar System bodies Sun Outer portion created Planets and their

More information

Lecture 38. The Jovian Planets; Kuiper Belt. Tides; Roche Limit; Rings Jupiter System Saturn, Uranus, Neptune rings Plutinos and KBO's

Lecture 38. The Jovian Planets; Kuiper Belt. Tides; Roche Limit; Rings Jupiter System Saturn, Uranus, Neptune rings Plutinos and KBO's Lecture 38 The Jovian Planets; Kuiper Belt Tides; Roche Limit; Rings Jupiter System Saturn, Uranus, Neptune rings Plutinos and KBO's Apr 26, 2006 Astro 100 Lecture 38 1 Jovian System Jovian System Solar

More information

AST101: Our Corner of the Universe Lab 4: Planetary Orbits

AST101: Our Corner of the Universe Lab 4: Planetary Orbits AST101: Our Corner of the Universe Lab 4: Planetary Orbits Name: Partners: Student number (SUID): Lab section number: 1 Introduction Objectives The Planetary Orbits Lab reviews used the Planetary Orbit

More information

ASTRONOMY 202 Spring 2007: Solar System Exploration. Instructor: Dr. David Alexander Web-site:

ASTRONOMY 202 Spring 2007: Solar System Exploration. Instructor: Dr. David Alexander Web-site: ASTRONOMY 202 Spring 2007: Solar System Exploration Instructor: Dr. David Alexander Web-site: www.ruf.rice.edu/~dalex/astr202_s07 Class 37: Life in the Universe [4/18/07] Announcements Habitability of

More information

HCA Tech Note 111: Using Weather Underground with HCA

HCA Tech Note 111: Using Weather Underground with HCA HCA Tech Note 111: Using Weather Underground with HCA Before you can use Weather Underground ( WU ) as a weather provider you need to sign up as a developer. What WU is doing is making weather data available

More information

Mars Attacked! 2011 ICTSA Programming Challenge

Mars Attacked! 2011 ICTSA Programming Challenge Mars Attacked! 2011 ICTSA Programming Challenge Christian Colombo, Gordon J. Pace, Chris Porter and Sandro Spina February 2011 Abstract This document outlines the programming challenge task that has to

More information

SOLAR SYSTEM. planet feature cards

SOLAR SYSTEM. planet feature cards SOLAR SYSTEM planet feature cards PLANET space FEATURE grab bag CARDS The Largest Space Volcano Shuttle in Challenger Solar System explodes (Olympus 73 Mons) seconds after launch, causing a nearly three-year

More information

Science Olympiad Astronomy C Division Event National Exam

Science Olympiad Astronomy C Division Event National Exam Science Olympiad Astronomy C Division Event National Exam University of Nebraska-Lincoln May 15-16, 2015 Team Number: Team Name: Instructions: 1) Please turn in all materials at the end of the event. 2)

More information

Earth 110 Exploration of the Solar System Assignment 6: Exoplanets Due in class Tuesday, March 3, 2015

Earth 110 Exploration of the Solar System Assignment 6: Exoplanets Due in class Tuesday, March 3, 2015 Name: Section: Earth 110 Exploration of the Solar System Assignment 6: Exoplanets Due in class Tuesday, March 3, 2015 Up until the mid 1990 s, we did not know if planets existed around other stars. Advancements

More information

The Problem. Until 1995, we only knew of one Solar System - our own

The Problem. Until 1995, we only knew of one Solar System - our own Extrasolar Planets Until 1995, we only knew of one Solar System - our own The Problem We had suspected for hundreds of years, and had confirmed as long ago as the 1800s that the stars were extremely distant

More information

AY2 Winter 2017 Midterm Exam Prof. C. Rockosi February 14, Name and Student ID Section Day/Time

AY2 Winter 2017 Midterm Exam Prof. C. Rockosi February 14, Name and Student ID Section Day/Time AY2 Winter 2017 Midterm Exam Prof. C. Rockosi February 14, 2017 Name and Student ID Section Day/Time Write your name and student ID number on this printed exam, and fill them in on your Scantron form.

More information

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.1 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

M E R C E R W I N WA L K T H R O U G H

M E R C E R W I N WA L K T H R O U G H H E A L T H W E A L T H C A R E E R WA L K T H R O U G H C L I E N T S O L U T I O N S T E A M T A B L E O F C O N T E N T 1. Login to the Tool 2 2. Published reports... 7 3. Select Results Criteria...

More information

Habitability Outside the Solar System. A discussion of Bennett & Shostak Chapter 11 HNRS 228 Dr. H. Geller

Habitability Outside the Solar System. A discussion of Bennett & Shostak Chapter 11 HNRS 228 Dr. H. Geller Habitability Outside the Solar System A discussion of Bennett & Shostak Chapter 11 HNRS 228 Dr. H. Geller 1 Chapter Overview Distant Suns (11.1) Life cycle of stars and their habitability zones Extrasolar

More information

Homework 13 (not graded; only some example ques!ons for the material from the last week or so of class)

Homework 13 (not graded; only some example ques!ons for the material from the last week or so of class) Homework 13 (not graded; only some example ques!ons for the material from the last week or so of class)! This is a preview of the draft version of the quiz Started: Apr 28 at 9:27am Quiz Instruc!ons Question

More information

1 The Solar System. 1.1 a journey into our galaxy

1 The Solar System. 1.1 a journey into our galaxy 1 The Solar System Though Pluto, and the far-flung depths of the Solar System, is the focus of this book, it is essential that Pluto is placed in the context of the planetary system that it inhabits our

More information

23.1 The Solar System. Orbits of the Planets. Planetary Data The Solar System. Scale of the Planets The Solar System

23.1 The Solar System. Orbits of the Planets. Planetary Data The Solar System. Scale of the Planets The Solar System 23.1 The Solar System Orbits of the Planets The Planets: An Overview The terrestrial planets are planets that are small and rocky Mercury, Venus, Earth, and Mars. The Jovian planets are the huge gas giants

More information

Astronomy 241: Review Questions #2 Distributed: November 7, 2013

Astronomy 241: Review Questions #2 Distributed: November 7, 2013 Astronomy 241: Review Questions #2 Distributed: November 7, 2013 Review the questions below, and be prepared to discuss them in class. For each question, list (a) the general topic, and (b) the key laws

More information

Lecture Outlines. Chapter 15. Astronomy Today 7th Edition Chaisson/McMillan Pearson Education, Inc.

Lecture Outlines. Chapter 15. Astronomy Today 7th Edition Chaisson/McMillan Pearson Education, Inc. Lecture Outlines Chapter 15 Astronomy Today 7th Edition Chaisson/McMillan Chapter 15 The Formation of Planetary Systems Units of Chapter 15 15.1 Modeling Planet Formation 15.2 Terrestrial and Jovian Planets

More information

An optimal search strategy for Trojan asteroids and science follow-up of GAIA alerts with the Zadko Telescope, Western Australia

An optimal search strategy for Trojan asteroids and science follow-up of GAIA alerts with the Zadko Telescope, Western Australia An optimal search strategy for Trojan asteroids and science follow-up of GAIA alerts with the Zadko Telescope, Western Australia Michael Todd May 4, 2011 M. Todd 1, D. Coward 2 and M.G. Zadnik 1 Email:

More information

Copyright 2014 Edmentum - All rights reserved.

Copyright 2014 Edmentum - All rights reserved. Study Island Copyright 2014 Edmentum - All rights reserved. Generation Date: 04/03/2014 Generated By: Cheryl Shelton Title: Grade 8 Earth & Space Science 1. Astronomers classify galaxies by their shape.

More information

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from

Lecture 44. Better and successive approximations x2, x3,, xn to the root are obtained from Lecture 44 Solution of Non-Linear Equations Regula-Falsi Method Method of iteration Newton - Raphson Method Muller s Method Graeffe s Root Squaring Method Newton -Raphson Method An approximation to the

More information

5. How did Copernicus s model solve the problem of some planets moving backwards?

5. How did Copernicus s model solve the problem of some planets moving backwards? MODELS OF THE SOLAR SYSTEM Reading Guide: Chapter 27.2 (read text pages 691-694) 1k. Recognize the cumulative nature of scientific evidence. 1n. Know that when an observation does not agree with an accepted

More information

Lab #8. The Moons of the Outer Planets

Lab #8. The Moons of the Outer Planets Lab #8 The Moons of the Outer Planets Introduction In this lab, we will explore the outer planets and their fascinating moons using the latest information on the Web. There are several processes at work

More information

MxVision WeatherSentry Web Services Content Guide

MxVision WeatherSentry Web Services Content Guide MxVision WeatherSentry Web Services Content Guide July 2014 DTN 11400 Rupp Drive Minneapolis, MN 55337 00.1.952.890.0609 This document and the software it describes are copyrighted with all rights reserved.

More information

9/4/2016 WELCOME TO THE ONLY HOME YOU CAN HAVE SINCE YOU CANNOT TERRAFORM. RVBautista. Where are we? Out, alone (afaik) in inhospitable void

9/4/2016 WELCOME TO THE ONLY HOME YOU CAN HAVE SINCE YOU CANNOT TERRAFORM. RVBautista. Where are we? Out, alone (afaik) in inhospitable void WELCOME TO THE ONLY HOME YOU CAN HAVE SINCE YOU CANNOT TERRAFORM Where are we? Out, alone (afaik) in inhospitable void 1 What do we know? Third planet from Sun Only planet with life Has water and good

More information

Chapter 13 Other Planetary Systems. Why is it so difficult to detect planets around other stars? Size Difference. Brightness Difference

Chapter 13 Other Planetary Systems. Why is it so difficult to detect planets around other stars? Size Difference. Brightness Difference Chapter 13 Other Planetary Systems Why is it so difficult to detect planets around other stars? Size Difference Planets are small compared to interstellar distances 10 billion to 1 scale Sun is size of

More information

Extrasolar Planets. Materials Light source to mimic star Ball to mimic planet Light meter Interface

Extrasolar Planets. Materials Light source to mimic star Ball to mimic planet Light meter Interface Name: Date: Extrasolar Planets Objectives: Learn about Extrasolar planets planets orbiting other stars Explain how astronomers detect and characterize Extrasolar planets Materials Light source to mimic

More information

Our Solar System. Lesson 5. Distances Between the Sun and the Planets

Our Solar System. Lesson 5. Distances Between the Sun and the Planets Our Solar System Lesson 5 T he Solar System consists of the Sun, the Moon, planets, dwarf planets, asteroids, comets, meteors and other celestial bodies. All these celestial bodies are bound to the Sun

More information

Lecture 23: Jupiter. Solar System. Jupiter s Orbit. The semi-major axis of Jupiter s orbit is a = 5.2 AU

Lecture 23: Jupiter. Solar System. Jupiter s Orbit. The semi-major axis of Jupiter s orbit is a = 5.2 AU Lecture 23: Jupiter Solar System Jupiter s Orbit The semi-major axis of Jupiter s orbit is a = 5.2 AU Jupiter Sun a Kepler s third law relates the semi-major axis to the orbital period 1 Jupiter s Orbit

More information

Gravitational microlensing. Exoplanets Microlensing and Transit methods

Gravitational microlensing. Exoplanets Microlensing and Transit methods Gravitational microlensing Exoplanets Microlensing and s Planets and Astrobiology (2016-2017) G. Vladilo May take place when a star-planet system crosses the visual of a background star, as a result of

More information

Astr 5465 Feb. 6, 2018 Today s Topics

Astr 5465 Feb. 6, 2018 Today s Topics Astr 5465 Feb. 6, 2018 Today s Topics Stars: Binary Stars Determination of Stellar Properties via Binary Stars Classification of Binary Stars Visual Binaries Both stars visible Only one star visible Spectroscopic

More information

Initial Conditions: The temperature varies with distance from the protosun.

Initial Conditions: The temperature varies with distance from the protosun. Initial Conditions: The temperature varies with distance from the protosun. In the outer disk it is cold enough for ice to condense onto dust to form large icy grains. In the inner solar system ice can

More information

AST 105. Overview of the Solar System

AST 105. Overview of the Solar System AST 105 Overview of the Solar System Scale of the Solar System Earth Voyager 1, 1991, distance = 4 billion miles Recap: The Solar System in Scale If the Solar System were the size of a football

More information

Venus Climate Orbiter Akatsuki Level 3 Variable Description

Venus Climate Orbiter Akatsuki Level 3 Variable Description Venus Climate Orbiter Akatsuki Level 3 Variable Description AKATSUKI Level 3 Team Version 00, 2018-09-05 1 1 A Note to the reader If the string L2 attribute is in comment attribute, the variable is copied

More information

TWO SMALL PIECES OF GLASS A Space Science Program for Grades 5-12

TWO SMALL PIECES OF GLASS A Space Science Program for Grades 5-12 Teacher Idea Kit TWO SMALL PIECES OF GLASS A Space Science Program for Grades 5-12 Presented by Funded in part by: Two Small Pieces of Glass Suggested for Grades 5-12 Objectives After visiting the planetarium

More information

OECD QSAR Toolbox v.3.4

OECD QSAR Toolbox v.3.4 OECD QSAR Toolbox v.3.4 Predicting developmental and reproductive toxicity of Diuron (CAS 330-54-1) based on DART categorization tool and DART SAR model Outlook Background Objectives The exercise Workflow

More information

Prentice Hall EARTH SCIENCE

Prentice Hall EARTH SCIENCE Prentice Hall EARTH SCIENCE Tarbuck Lutgens Chapter 23 Touring Our Solar System 23.1 The Solar System The Planets: An Overview The terrestrial planets are planets that are small and rocky Mercury, Venus,

More information

Configuring LDAP Authentication in iway Service Manager

Configuring LDAP Authentication in iway Service Manager Configuring LDAP Authentication in iway Service Manager LDAP authentication in iway Service Manager (ism) allows ism to authenticate against LDAP and associate an LDAP ism role to the user. ism includes

More information

Chapter 06 Let s Make a Solar System

Chapter 06 Let s Make a Solar System like? Big picture. Chapter 06 Let s Make a Solar System How did it come to be this way? Where did it come from? Will I stop sounding like the Talking Heads? The solar system exhibits clear patterns of

More information

What is Earth Science?

What is Earth Science? What is Earth Science? A.EARTH SCIENCE: the study of Earth and its history B. Earth science is divided into 4 main branches: 1. Geology: study of the lithosphere 2. Oceanography: study of oceans 3. Meteorology:

More information

[12] Overview of the Solar System (10/5/17)

[12] Overview of the Solar System (10/5/17) 1 [12] Overview of the Solar System (10/5/17) Upcoming Items Voyager Family Portrait 1. Read Ch. 8.1 & 8.2 by next class and do the self-study quizzes 2. Midterm #1 on Tuesday Good luck to all of you!

More information

How did it come to be this way? Will I stop sounding like the

How did it come to be this way? Will I stop sounding like the Chapter 06 Let s Make a Solar System How did it come to be this way? Where did it come from? Will I stop sounding like the Talking Heads? What does the solar system look like? Big picture. The solar system

More information

Theoretical Test Astronomy Time: 45 Minutes Maximum Marks: 28.5

Theoretical Test Astronomy Time: 45 Minutes Maximum Marks: 28.5 Theoretical Test Astronomy Time: 45 Minutes Maximum Marks: 28.5 Instructions: 1. Please write your student code on the cover page as well as on the top right of every page of answer sheet / calculations

More information

Who are we? Cesena Security and Network Applications. Why join CeSeNA?

Who are we? Cesena Security and Network Applications. Why join CeSeNA? Unexpected inputs: the danger of data and code injection Who are we? Cesena Security and Network Applications We like computer security and we want to share our knowledge. Founded by Marco Ramilli in 2005.

More information

Other Planetary Systems (Chapter 13) Extrasolar Planets. Is our solar system the only collection of planets in the universe?

Other Planetary Systems (Chapter 13) Extrasolar Planets. Is our solar system the only collection of planets in the universe? Other Planetary Systems (Chapter 13) Extrasolar Planets Is our solar system the only collection of planets in the universe? Based on Chapter 13 No subsequent chapters depend on the material in this lecture

More information

18 An Eclipsing Extrasolar Planet

18 An Eclipsing Extrasolar Planet Name: Date: 18 An Eclipsing Extrasolar Planet 18.1 Introduction One of the more recent new fields in astronomy is the search for (and discovery of) planets orbiting around stars other than our Sun, or

More information

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems

Survey of the Solar System. The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems Survey of the Solar System The Sun Giant Planets Terrestrial Planets Minor Planets Satellite/Ring Systems The Sun Mass, M ~ 2 x 10 30 kg Radius, R ~ 7 x 10 8 m Surface Temperature ~ 5800 K Density ~ 1.4

More information

Search for a location using the location search bar:

Search for a location using the location search bar: Remap () is an online mapping platform for people with little technical background in remote sensing. We developed remap to enable you to quickly map and report the status of ecosystems, contributing to

More information

1. Solar System Overview

1. Solar System Overview Astronomy 241: Foundations of Astrophysics I 1. Solar System Overview 0. Units and Precision 1. Constituents of the Solar System 2. Motions: Rotation and Revolution 3. Formation Scenario Units Text uses

More information