The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org.

Size: px
Start display at page:

Download "The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org."

Transcription

1 2014 Schema.Org Sports Vocab Proposal Version: 3.2 Overview The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org. Author Jason Johnson (Microsoft) Contributors Alice Swanberg (Yahoo) Jennifer Cooper (Microsoft) Markus Renstrom (Yahoo) Paul Kelly (XML Team / IPTC) Tom Grahame (BBC) Vicki Tardif Holland (Google) Editors Dan Brickley (Google) Jason Douglas (Google) Principals The approach taken for this proposal included the following principles: Extend the existing vocabulary within Schema.Org, adding and updating only where needed Leverage the existing work done by BBC, SportsML, and ESPN in the area of sports vocabularies Focus on supporting the 'head' of sports vocabularies while keeping in mind the 'body' and 'tail' Think globally Targeted Sports The collaborators of the proposal jointly landed on the following sports as initial targets for support: Professional Sports Team Sports Baseball American Football

2 Association Football Basketball Rugby Cricket Hockey Individual Sports Tennis Golf Nascar Horseracing Boxing Olympic Sports (additive) Summer Team Volleyball Individual Swimming Track Gymnastics Winter Individual Skiing Snowboarding Background Members of the collaboration team have researched the target sports and shared the results of their research in the form of recommendations for classes and properties required to support their associated description. These recommendations were reviewed by the other collaborators and further revised and updated as needed. The latest versions for this sports research can be found in the appendix of this document. As a result of this research and review, the group identified the need to broadly established the concepts of sports organizations, people, events and statistics. Once these primary concepts were identified, the group then developed the associated set of classes and properties required to define them, leveraging the prior sports research to make sure primary description scenarios would be supported. This latest version of the proposal takes advantage of the recently introduced Role vocabulary as a means for addressing the temporal aspects of many sporting relationships. For example, in Major League Baseball, a given athlete may be a member of multiple teams, playing multiple positions, with each combination being finite and varied in length. Roles enable us to support describing this type of relationship.

3 Proposal 1. Sports Events and Event Results (Decisions) A new CompetitionEvent superclass for SportsEvent is added and introduces two new properties for describing the competitors in an event and any decisions made as a result of actions associated with the event. Although a near innumerable number of decisions may take place over the course of an event, in most cases we expect the most decisions described to be those associated with individual or team competitors winning, losing, or placing in an event. New properties are also added to SportsEvent to allow for describing the home and away team when applicable to a sporting event CompetitionEvent class: CompetitionEvent comment: This class is being introduced as an intermediate class between the existing Event and SportsEvent classes. Its purpose is to support competition events that are not traditionally in the form of a sport (e.g. beauty contests) and serves as the initial container for the new competitor property. subclassof: Event property: competitor property: resultdecision 1 1 We can imagine some point in the future where we want to attach the generic concept of a result at the Event level. At that point, the expectation is that we would update resultdecision to be a subproperty of result. This would be a non breaking change to the ontology. property: competitor comment: A person or organization that competes in an event. domain: CompetitionEvent range: Person, Organization property: resultdecision comment: An intangible entity that represents the judgment of a participant s actions in an event.

4 domain: CompetitionEvent range: Decision // example: "CompetitionEvent", "name": "2013 NFC Championship", "competitor": [ "name": "Seattle Seahawks", "name": "San Francisco 49ers" ] 1.2. SportsEvent class: SportsEvent comment: The existing SportsEvent class as defined today with the addition of new properties to support defining the home and away team for a sports event. subclassof: CompetitionEvent property: hometeam property: awayteam property: hometeam comment: The home team in a sports event. domain: SportsEvent range: SportsTeam 1 superproperty: competitor property: awayteam comment: The away team in a sports event. domain: SportsEvent range: SportsTeam 1 superproperty: competitor

5 1 There may be a valid usage scenario in which something other than a sports team is considered the home and away but none come to mind. If valid scenarios exists, we can consider making these properties more encompassing by using the term competitor instead of team (i.e. property: homecompetitor [Thing]). // example: "@type": "SportsEvent", "name": "2013 NFC Championship", "hometeam": "name": "Seattle Seahawks", "awayteam": "name": "San Francisco 49ers" 1.3. Decision class: Decision comment: This represents the most generic type of decision that can result from an event or action. subclassof: Intangible property: competitor class: PlaceDecision comment: A more specific type of decision in which a place or rank is established as part of a competition decision. subclassof: Decision property: place property: numberedposition comment: A numerical rank, place, or position. For example, '1' would represent 1st place in a competitive event. domain: PlaceDecision range: Number class: WinDecision comment: A type of competition decision. subclassof: Decision

6 class: LoseDecision comment: A type of competition decision. subclassof: Decision class: DidNotFinishDecision comment: A type of competition decision. subclassof: Decision class: QualifyDecision comment: A type of competition decision. subclassof: Decision class: DisqualifyDecision comment: A type of competition decision. subclassof: Decision

7 // example: "SportsEvent", "name": "2013 NFC Championship", "hometeam": "name": "Seattle Seahawks", "awayteam": "name": "San Francisco 49ers", resultdecision: [ "@type": "WinDecision", "competitor": "name": "Seattle Seahawks", "@type": "LoseDecision", "competitor": "name": "San Francisco 49ers" ] // example: "@type": "SportsEvent", "name": "2010 Winter Olympics Snowboarding Finals", resultdecision: [ "@type": "PlaceDecision", "place": "1", "competitor": "@type": "Person", "name": "Maelle Ricker"

8 , "PlaceDecision", "place": "2", "competitor": "Person", "name": "Deborah Anthonioz", "DidNotFinishDecision", "competitor": "Person", "name": "Jane Doe" ] 1.4. EventStatusType Enumerations class: EventInProgress comment: A status indicating that an event has started and has not been delayed, postponed, canceled, or completed. typeof: EventStatusType class: EventDelayed comment: A status indicating that an event has started but is delayed. It has not yet been postponed, canceled, or completed. typeof: EventStatusType class: EventCompleted comment: A status indicating that an event has completed. typeof: EventStatusType // example: "@type": "CompetitionEvent", "name": "2013 NFC Championship", "eventstatus": "

9 2. Sports Organizations A new superclass of SportsTeam is being introduced to describe organizations in the domain of sports that aren t necessarily teams. New properties for describing the athletes and coaches on a sports team are also being added Sports Organization property: memberof comment: In order to support mapping sports teams to the conferences, leagues, and divisions they are members of, we are extending the domain of the memberof property to Organization. domain: Person, Organization range: Organization class: SportsOrganization comment: A new intermediate class that represents the collection of all sports organizations, including sports teams, governing bodies, and sports associations. property: sport subclassof: Organization property: sport comment: The specific sport an organization is involved in. domain: SportsOrganization range: Text // example: "@type": "SportsOrganization", "name": "National Football Conference", "memberof": "National Football League", "sport": " Sports Team

10 class: SportsTeam comment: This extends the existing SportsTeam class to include new properties and restructures it as a subclass of the newly proposed SportsOrganization class. subclassof: SportsOrganization property: coach [Person] property: athlete [Person] property: coach comment: A person that acts in a coaching role for a sports team. domain: SportsTeam range: Person property: athlete comment: A person that acts as performing member of a sports team; a player as opposed to a coach. domain: SportsTeam range: Person // example: "name": "Seattle Seahawks", "memberof": "National Football League", "memberof": "National Football Conference", "sport": " "coach": "@type": "Person", "name": "Steve Carroll", "athlete": [ "@type": "Person", "name": "Russell Wilson", "@type": "Person", "name": "Marshawn Lynch" ]

11 3. Sports Statistics Within the domain of sports, statistics are calculations based on the actions and result of actions performed by athletes or organizations. A pitch is thrown, a batter swings his bat, and the result is a hit, strike, or foul ball. We may count the number of pitches thrown, the number of strikes (decisions), or calculate an earned run average (ERA) based on a combination of these and other counts. Sports statistics are almost always time or event bound. For example, we may describe the number of hits a player made during a game (event), over the course of a specific month (a time period to indicate how hot they are), or over the course of their life (time). Our proposal for statistics attempts to meet the well understood and practical needs of the sports domain while still considering more generic and theoretical future use cases. In doing so, we also aim to make describing statistics as simple as possible. This is especially important because of the innumerable nature of statistics. Major League Baseball is a great example to help illustrate, where according to wikipedia.org, there are over 110 common statistics maintained about players. This does not include statistics about the teams as a whole. Although it might be argued that most statistics described within the domain of sports would be associated with an event, organization, or person, for simplicity we are adding a hasstatistic property to Thing. Finally, it is important to note when describing a statistic, an event can serve two roles; the timeframe over which the statistic was calculated or the subject of the statistic itself. For example, if you were describing the attendance at the NFL Superbowl, the subject of that statistic is the event. If you were describing the number of interceptions the Seahawks achieved during the Superbowl, the event would serve as the timeframe with the subject being the Seahawks. When describing a statistic in a preferred markup, it s important to understand in which role you are using it to make sure the relationship chain is maintained. The examples provided in this document should hopefully illustrate this Statistic and hasstatistics property: hasstatistic comment: A numerical data point or statistic associated with a person or organization. domain: Thing range: Statistic

12 class: Statistic comment: This class allows capturing statistics with a focus on those associated with a person or organization, scoped to a certain timeframe. subclassof: Intangible property: thingmeasured property: measuredvalue property: startdate property: enddate property: duringevent property: thingmeasured comment: A 'thing' being measured. For example, in major league baseball statistics, examples of these 'things' include 'hits', 'pitches', and 'runs'. domain: Statistic range: Thing property: measuredvalue comment: The numerical amount or value resulting from a measurement. domain: Statistic range: Number property: duringevent comment: A timeframe represented by an event. domain: Statistic range: Event // example: "name": "Seattle Seahawks", "hasstatistic": [ "@type": "Statistic", "thingmeasured": " "measuredvalue": "2", "duringevent": "@type": "SportsEvent", "name": "2013 NFC Championship"

13 ] // example // same as above, but within context of the Statistic itself "Statistic", "thingmeasured": " "measuredvalue": "2", "duringevent": "SportsEvent", "name": "2013 NFC Championship", "hasstatistic": "name": "Seattle Seahawks"

14 // example // same as two above, but within context of the event "SportsEvent", "name": "2013 NFC Championship", [ "duringevent": "Statistic", "thingmeasured": " "measuredvalue": "2", "hasstatistic" "name": "Seattle Seahawks", "duringevent": "Statistic", "thingmeasured": "Touchdown", "measuredvalue": "7", "hasstatistic" "name": "Seattle Seahawks" ]

15 // INVALID EXAMPLE // FAILURE TO BIND EVENT TO STATISTIC "SportsEvent", "name": "2013 NFC Championship", "competitor": "name": "Seattle Seahawks", "hasstatistic": [ "@type": "Statistic", "thingmeasured": " "measuredvalue": "2"

16 Change Log /02/06 [correction] renamed SportsResult to CompetitionResult within context of defining the domain of the statistics property /02/12 [change] removed statistics as a property of Person, SportsTeam, and CompetitionEvent. It now only resides as a property of CompetitionResult. [change] removed startdate, enddate, and duringevent properties of Statistics as this temporal information will always be implied due to the new, sole usage of Statistics within the context of CompetitionResult (which in turn is always bound to an event). [change] removed the calculated statistic types (e.g. gamesbehind ) [change] renamed resulttype in CompetionResult to decision [change] renamed ResultType to CompetitionDecision to more accurate reflect the intended semantics [change] updated examples to reflect changes to associated schemas /04/23 added additional paragraph to background section describing dependence upon Roles [format] expressed properties independently from classes to allow for specific descriptions [change] removed section under SportsTeam which define sport specific subclasses as a way to support the potential large number sport specific binary properties describing positions in that sport a person might fill [change] removed organizingbody as a proposed new property of Event [change] removed statistic as a property of CompetitionResult ; that relationship will be defined via the proposed, inherited datum property of Thing [change] completely re wrote section on Statistics and removed SportsStatistics class /05/09 changed schema annotation for enums from subclassof to typeof to avoid confusion /05/12 fixed example of Role /05/13 removed classes / properties associated with ordered events; these will be handled via the proposed ItemList based model updated example for CompetitionEvent

17 /06/04 updated Role section to match latest Role design removed Role from range of athlete and coach since it will be implied in new data model /06/05 remove attendance as a property from this proposal updated event model to leverage result / resultdecision concept added new Decision model in place of old CompetitionDecision model updated Statistic to apply to Thing re wrote almost all examples /06/06 remove paragraph re: using URL for value of a text field updated Statistic to include measuredvalue and thingmeasured removed entire Role section; this will be addressed in generic Role proposal

The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org.

The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org. 2014 Schema.Org Sports Vocab Proposal Version: 3.0 Overview The purpose of this proposal is to introduce an expanded vocabulary for describing sports information within schema.org. Contributors Alice Swanberg

More information

The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary.

The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary. 204 Schema.Org Sports Extension Proposal Version: 2.0 Overview The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary. Contributors Alice Swanberg

More information

The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary.

The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary. 204 Schema.Org Sports Extension Proposal Version:.0 Overview The purpose of this proposal is to extend support for describing sports content within the Schema.Org vocabulary. Contributors Alice Swanberg

More information

CHAPTER. Working Out: Sports and Fitness in the United States

CHAPTER. Working Out: Sports and Fitness in the United States CHAPTER 3 Working Out: Sports and Fitness in the United States 51 52 Discovering American Culture, 2nd ed. Match each team name with the correct description based on the history or background of the team.

More information

Mathematics in Sports

Mathematics in Sports Mathematics in Sports Although not always realized, mathematics plays a very important role in sports. Whether discussing a players statistics, a coaches formula for drafting certain players, or even a

More information

Winning Isn t Everything: Putting the Sports in Sportsmanship

Winning Isn t Everything: Putting the Sports in Sportsmanship Winning Isn t Everything: Putting the Sports in Sportsmanship Sportsmanship is part of every sport. It means to have good character during the game so that everyone can enjoy it. Honesty, courage, cooperation,

More information

Encyclopedia of World Sport

Encyclopedia of World Sport Encyclopedia of World Sport Building Background Your Favorite Sport Vocabulary Various Sports What is your favorite sport? Make a chart about it. Name of your favorite sport: Read the definitions and write

More information

BAA Playoff Formats (Revised, November 2018)

BAA Playoff Formats (Revised, November 2018) 1 BAA Playoff Formats (Revised, November 2018) PART 1 - Playoff Format: Basketball, Volleyball, *Soccer Playoffs Day 1: CWOSSA Qualifying Day 1a: CWOSSA Qualifying - 'A' (odd year), 'AA' (even year) Day

More information

Lawn Tennis And Badminton, The Official Organ Of The Lawn Tennis Association Dec By Various

Lawn Tennis And Badminton, The Official Organ Of The Lawn Tennis Association Dec By Various Lawn Tennis And Badminton, The Official Organ Of The Lawn Tennis Association Dec. 1 1956 By Various If searched for the book by Various Lawn Tennis and Badminton, The Official Organ of the Lawn Tennis

More information

Overview of the NCAA Playing Rules Process

Overview of the NCAA Playing Rules Process Overview of the NCAA Playing Rules Process Basics NCAA Playing Rules cover situations: 1. On the competition area (e.g., field, court, etc.); 2. When game officials are present; and 3. When the competition

More information

Lesson 2 - Pre-Visit Swinging for the Fences: Newton's 2nd Law

Lesson 2 - Pre-Visit Swinging for the Fences: Newton's 2nd Law Physical Science: Science on the Sandlot: Level 2 Lesson 2 - Pre-Visit Swinging for the Fences: Newton's 2nd Law Objective: Students will be able to: Investigate the relationship between force, mass, and

More information

Understanding Games by Playing Games An Illustrative Example of Canada s PlaySport Program

Understanding Games by Playing Games An Illustrative Example of Canada s PlaySport Program Understanding Games by Playing Games An Illustrative Example of Canada s PlaySport Program Presented at: Teaching Sport and Physical Education for Understanding Melbourne, Australia December 12 th, 11:30

More information

Big 12 Baseball Replay Protocol

Big 12 Baseball Replay Protocol Big 12 Baseball Replay Protocol The NCAA Baseball Rules Committee approved the use of the video replay rule for all regular season games and conference championship games prior to the 2017 baseball season.

More information

Any team member may pitch, subject to the restrictions of the pitch count as recommended

Any team member may pitch, subject to the restrictions of the pitch count as recommended 2018 BASEBALL RULEBOOK CHANGES DESCRIPTION: AGE CHANGE RULE: 4E & T2D, PAGE 13 & 29 RULE CHANGE: Birthdate chart to reflect August 31 cutoff date. DESCRIPTION : USABAT APPROVED BATS EFFECTIVE JANUARY 1,

More information

RULES AND REGULATIONS OF FIXED ODDS BETTING GAMES

RULES AND REGULATIONS OF FIXED ODDS BETTING GAMES RULES AND REGULATIONS OF FIXED ODDS BETTING GAMES Royalhighgate Public Company Ltd. 04.04.2014 Table of contents SECTION I: GENERAL RULES... 6 ARTICLE 1 - GENERAL REGULATIONS... 6 ARTICLE 2 - THE HOLDING

More information

IOF JUNIOR WORLD SKI ORIENTEERING CHAMPIONSHIPS 2020 (JWSOC) AND EUROPEAN YOUTH SKI ORIENTEERING CHAMPIONSHIPS 2020 (EYSOC)

IOF JUNIOR WORLD SKI ORIENTEERING CHAMPIONSHIPS 2020 (JWSOC) AND EUROPEAN YOUTH SKI ORIENTEERING CHAMPIONSHIPS 2020 (EYSOC) INTERNATIONAL ORIENTEERING FEDERATION IOF JUNIOR WORLD SKI ORIENTEERING CHAMPIONSHIPS 2020 (JWSOC) AND EUROPEAN YOUTH SKI ORIENTEERING CHAMPIONSHIPS 2020 (EYSOC) Guidance notes for applicants 2020 These

More information

C.M.S. Press. Superbowl Edition. Colonia Middle School. Volume 1. Issue 1. CMS PRESS Advisors: Mrs. Lauri and Ms. Wilson. Editor In Chief Jason Muller

C.M.S. Press. Superbowl Edition. Colonia Middle School. Volume 1. Issue 1. CMS PRESS Advisors: Mrs. Lauri and Ms. Wilson. Editor In Chief Jason Muller Colonia Middle School CMS PRESS Advisors: Mrs. Lauri and Ms. Wilson Editor In Chief Jason Muller Staff: Zachary P., Akhil P., Zion M., Adam M., Megan A. C.M.S. Press Superbowl Edition Volume 1 Issue 1

More information

Name Date. Baseball Vocabulary Word Search

Name Date. Baseball Vocabulary Word Search Vocabulary Word Search Find the words. g p s i n n i n g t r j b h s b r h a d c y e w u m p i r e a s o j f q z v r n d l n s p s g r h t e h y d i o a f k o e s t r i k e n r f b t j l u b r s e b j

More information

Teaching Games For Understanding (TGfU)

Teaching Games For Understanding (TGfU) Teaching Games For Understanding (TGfU) Steps of the TGfU model are: 1. Game: All students are able to play the game. 2. Game Appreciation: Students learn to know and respect the necessity of rules because

More information

SPORTS LESSON PLAN. TITLE/AIM: Help students identify sports with the season the sport is played.

SPORTS LESSON PLAN. TITLE/AIM: Help students identify sports with the season the sport is played. SPORTS LESSON PLAN TITLE/AIM: Help students identify sports with the season the sport is played. LEVEL: Intermediate OBJECTIVE: Students will be able to describe favorite sports. MATERIALS: Pictures of

More information

Lesson 2 Pre-Visit Step Up to the Plate for Baseball Idioms

Lesson 2 Pre-Visit Step Up to the Plate for Baseball Idioms Lesson 2 Pre-Visit Step Up to the Plate for Baseball Idioms Objective: Students will be able to: Demonstrate understanding of idioms by creating and interpreting simple examples. Create a PowerPoint show

More information

Orientation and Conferencing Plan Stage 4

Orientation and Conferencing Plan Stage 4 Orientation and Conferencing Plan Stage 4 Orientation Ensure that you have read about using the plan in the Program Guide. Book summary Read the following summary to the student. What is a snurfer? What

More information

How percentages are used in sports

How percentages are used in sports How percentages are used in sports By Gale, Cengage Learning, adapted by Newsela staff on 04.25.18 Word Count 887 Level 1060L Image 1. Kevin Durant goes up for a dunk against the Phoenix Suns in 2018,

More information

Planning for Assessment in Primary PE

Planning for Assessment in Primary PE Planning for Assessment in Primary PE Bernie Holland, ACHPER Victoria Michelle Vincitorio, Springside P-9 College August 18, 2017 Brisbane HPE Conference 1 Overview This session will encourage you to:

More information

Arizona Cardinals 2018 Calendar

Arizona Cardinals 2018 Calendar Arizona Cardinals 2018 Calendar 1 / 6 2 / 6 3 / 6 Arizona Cardinals 2018 Calendar Visit ESPN to view the Arizona Cardinals team schedule for the current and previous seasons 2019 Arizona Cardinals Schedule

More information

5 Holidays. 6 Holidays. 13 Holidays. 12 Holidays. 19 Holidays. 20 Holidays. 26 Holidays

5 Holidays. 6 Holidays. 13 Holidays. 12 Holidays. 19 Holidays. 20 Holidays. 26 Holidays ~ January 7 ~ 2 3 4 5 6 7 0 2 3 4 5 6 7 2 22 23 24 25 26 27 2 2 30 3 Notes: CIS Baseball Noms ~ February 7 ~ AICES Tennis Noms 2 3 CIS Girls Cricket Noms 4 5 CIS Officials Noms 6 7 CIS New Convenors Meeting

More information

TRUE or FALSE. Rules: 2.00 PERSON, TOUCH, STRIKE (e) and 6.05(f) 2. The batter-runner must turn to his right after over-running first base.

TRUE or FALSE. Rules: 2.00 PERSON, TOUCH, STRIKE (e) and 6.05(f) 2. The batter-runner must turn to his right after over-running first base. TRUE or FALSE 1. The hands are considered part of the bat. The hands are part of a person's body. If a pitch hits the batter's hands the ball is dead; if he swung at the pitch, a strike is called (NOT

More information

Transfer Composition of Division I Teams July 2018

Transfer Composition of Division I Teams July 2018 Transfer Composition of Division I Teams July 201 Summary The percentage of women who transferred into a Division I school from another four-year college (6.73%) has edged above the percentage of 4-4 transfers

More information

This document provides information about all data that comes available for every sport.

This document provides information about all data that comes available for every sport. XML Contents by Sport XML Contents by Sport This document provides information about all data that comes available for every sport. Contact Email: support@scorespro.com Last Update: Date 01 Jun 2018 Distribution

More information

SPORTS LESSON PLAN. MATERIALS: Pictures of sports figures, playoffs, coach with team PROCEDURES

SPORTS LESSON PLAN. MATERIALS: Pictures of sports figures, playoffs, coach with team PROCEDURES SPORTS LESSON PLAN LEVEL: Advanced MATERIALS: Pictures of sports figures, playoffs, coach with team VOCABULARY: Choose sports from the following list. Do NOT attempt to teach all of them. You may ask class

More information

Lesson Plans for ESL Kids Teachers

Lesson Plans for ESL Kids Teachers Lesson: General: Time: Objectives: Structures: Target Vocab: 40 mins - 1 hour Talking about playing different sports "What sports do you play?" "I play ~" and "I don't play ~" "To play (tennis) you have

More information

Table of Contents. Basic Math - Sports

Table of Contents. Basic Math - Sports Table of Contents Sports Problems... 2 Problem 1: Points Scored... 3 Problem 2: Mean Scoring... 4 Problem 3: Batting Average... 5 Problem 4: Average Yards Gained... 6 Problem 5: Runner... 7 Problem 6:

More information

A bet Score by sets is offered. The correspondent columns in the line are entitled: 2:0, 2:1, etc.

A bet Score by sets is offered. The correspondent columns in the line are entitled: 2:0, 2:1, etc. Sport betting Tennis The handicaps and the total on a tennis match are mentioned in games. A bet Score by sets is offered. The correspondent columns in the line are entitled: 2:0, 2:1, etc. In case of

More information

Sports Survey for Chinese Students

Sports Survey for Chinese Students Sports Survey for Chinese Students Four Primary Schools Sunnybrae Normal School Sunnynook Primary School Takapuna Primary School Willow Park Primary School Prepared by Harbour Sport s ActivAsian Team 8

More information

CESA Sustainability Guideline Document and Reporting Process Checklist

CESA Sustainability Guideline Document and Reporting Process Checklist CESA Sustainability Guideline Document and Reporting Process Checklist Lee Scott, Wal-Mart CEO: Sustainability is the single biggest business opportunity of the 21 st century.it will be the next source

More information

Q: What do gardeners pull up by hand? A: Weeds. Q: What is a popular sport played with an oblong ball? A: Football

Q: What do gardeners pull up by hand? A: Weeds. Q: What is a popular sport played with an oblong ball? A: Football Q: What do gardeners pull up by hand? A: Weeds Q: What is a popular sport played with an oblong ball? A: Football Q: What sport is played on ice? A: Ice hockey Q: For what sport do you need a birdie, racquets,

More information

New England Diamond Gems. Indoor Training Facility Field Rental for

New England Diamond Gems. Indoor Training Facility Field Rental for New England Diamond Gems Indoor Training Facility Field Rental for 2015-2016 Request for Proposal Friday, January 09, 2015 N e w E n g l a n d D i a m o n d G e m s C o n f i d e n t i a l P a g e 1 Table

More information

ATHLETE ASSISTANCE PROGRAM

ATHLETE ASSISTANCE PROGRAM ATHLETE ASSISTANCE PROGRAM CONTACT: ASSIGNED SPORT DEVELOPMENT OFFICER Kristin Albo - 925-5911 Kristin.albo@sportmanitoba.ca Greg Guenther - 925-5695 greg.guenther@sportmanitoba.ca Fred Schneider - 925-5933

More information

100Yards.com. MIS 510, Project Report Spring Chandrasekhar Manda Rahul Chahar Karishma Khalsa

100Yards.com. MIS 510, Project Report Spring Chandrasekhar Manda Rahul Chahar Karishma Khalsa 100Yards.com MIS 510, Project Report Spring 2009 Chandrasekhar Manda Rahul Chahar Karishma Khalsa TABLE OF CONTENTS INTRODUCTION... 3 ABOUT NFL... 3 POPULARITY OF NFL... 3 BUSINESS MODEL... 4 COMPETITIVE

More information

Physical Education Curriculum Map (Kdg.-2 nd )

Physical Education Curriculum Map (Kdg.-2 nd ) Carrollton Exempted Village School District Carrollton, Ohio OHIO COMMON CORE STATE STANDARDS Physical Education Curriculum Map (Kdg.-2 nd ) Course Title: Baseball/Softball Month: April Academic Year:

More information

FOR MORE INFORMATION FOR MORE INFORMATION. Jr.HRD Headquarters c/o LEJ Sports Group 4015 Wetherburn Way Norcross, GA JrHRD.

FOR MORE INFORMATION FOR MORE INFORMATION. Jr.HRD Headquarters c/o LEJ Sports Group 4015 Wetherburn Way Norcross, GA JrHRD. www.jrhrd.com FOR MORE INFORMATION Jr.HRD Headquarters c/o LEJ Sports Group 4015 Wetherburn Way Norcross, GA 30092 JrHRD@mlb.com JrHRD.com FOR MORE INFORMATION Jr.HRD Headquarters c/o LEJ Sports Group

More information

4.7 Leave for Sporting Fixtures

4.7 Leave for Sporting Fixtures 4.7 Leave for Sporting Fixtures a) Leave to participate in sporting fixtures is available to teachers who participate in the following sports at the highest level: Summer Olympic Sports Rio 2016 Aquatics

More information

Agreement between. The London Organising Committee of the Olympic Games and Paralympic Games. and

Agreement between. The London Organising Committee of the Olympic Games and Paralympic Games. and LOCOG: taking action to ensure respect for workers rights in global supply chains Agreement between The London Organising Committee of the Olympic Games and Paralympic Games and Trades Union Congress on

More information

CEFR A2 STEP TO. Elementary Student Book. Revised & Updated. Offi cial preparation material for Anglia ESOL International Examinations.

CEFR A2 STEP TO. Elementary Student Book. Revised & Updated. Offi cial preparation material for Anglia ESOL International Examinations. CEFR A2 STEP TO Elementary Student Book Revised & Updated Offi cial preparation material for Anglia ESOL International Examinations John Ross Step To Elementary Student Book Developed and Published by:

More information

Wythenshawe Games. Health Enjoyment Fun. Personal Best. Help us bring the olympic spirit to the Wythenshawe community

Wythenshawe Games. Health Enjoyment Fun. Personal Best. Help us bring the olympic spirit to the Wythenshawe community Wythenshawe Games Wythenshawe Games is an initiative which capitalises on the momentum of the Olympics to inspire local residents to engage in sport, physical activity and healthy lifestyles in one of

More information

Top3 Fantasy Sports Rules. General. Eligibility AGE PLACE OF RESIDENCE: pg. 1

Top3 Fantasy Sports Rules. General. Eligibility AGE PLACE OF RESIDENCE: pg. 1 Top3 Fantasy Sports Rules General Eligibility AGE PLACE OF RESIDENCE: pg. 1 Contests CONTEST ENTRY Entry Fees pg. 2 Winning Ties and Tie Breakers pg. 3 Contests - Player Selections Game Play Time Period

More information

Fastball Baseball Manager 2.5 for Joomla 2.5x

Fastball Baseball Manager 2.5 for Joomla 2.5x Fastball Baseball Manager 2.5 for Joomla 2.5x Contents Requirements... 1 IMPORTANT NOTES ON UPGRADING... 1 Important Notes on Upgrading from Fastball 1.7... 1 Important Notes on Migrating from Joomla 1.5x

More information

Sports Survey for Chinese Students

Sports Survey for Chinese Students Sports Survey for Chinese Students Four Primary Schools Sunnybrae Normal School Sunnynook Primary School Takapuna Primary School Willow Park Primary School Prepared by Harbour Sport s ActivAsian Team 11

More information

In November 2016 the International Paralympic Committee (IPC) began the role out of a rebrand of Para sport terminology across all sports.

In November 2016 the International Paralympic Committee (IPC) began the role out of a rebrand of Para sport terminology across all sports. 1 Terminology Guide Introduction In November 2016 the International Paralympic Committee (IPC) began the role out of a rebrand of Para sport terminology across all sports. Paralympics New Zealand (PNZ)

More information

NFL1. Do you think television shows, in general, are getting better or getting worse?

NFL1. Do you think television shows, in general, are getting better or getting worse? 1350 Willow Rd, Suite 102 Menlo Park, CA 94025 www.knowledgenetworks.com Interview dates: January 21 January 26, 2011 Total Interviews: 1,125 adults NFL Fans: 482 adults Sampling margin of error for a

More information

Medium Term Planning: Physical Education: Year /18

Medium Term Planning: Physical Education: Year /18 Medium Term Planning: Physical Education: Year 8 2017/18 Termly Terms 1 2 Terms 3, 4 5 Terms 4 5 Terms 1, 2, 3 4 Terms 1 2 Rotations Sports Netball Health-Related Exercise Football Dance Rugby Basketball

More information

CG TECHNOLOGY RACE & SPORTS BOOK HOUSE RULES

CG TECHNOLOGY RACE & SPORTS BOOK HOUSE RULES Contents General Rules... 2 Auto Racing... 5 Baseball/Softball... 5 Basketball... 6 Boxing/MMA (Mixed Martial Arts)... 7 Football... 8 Golf... 8 Hockey... 9 Olympics... 9 Soccer... 10 Tennis... 10 Non

More information

Categories of sports

Categories of sports Unit 2 Categories of sports Individual: cycling, chess, athletics, gymnastics Team: volleyball, football, basketball, hockey Summer: golf, swimming, surfing Winter: skiing, skating, curling, snowboarding

More information

THE VILLAGES DIVISION ONE RECREATIONAL PROGRAM SOFTBALL RULES (March 28, 2015-Revision Date, September 25, 2017) TABLE OF CONTENTS

THE VILLAGES DIVISION ONE RECREATIONAL PROGRAM SOFTBALL RULES (March 28, 2015-Revision Date, September 25, 2017) TABLE OF CONTENTS A. INTRODUCTION B. QUALIFICATIONS C. EQUIPMENT D. LINE-UP SHEETS THE VILLAGES DIVISION ONE RECREATIONAL PROGRAM SOFTBALL RULES (March 28, 2015-Revision Date, September 25, 2017) E. COURTESY RUNNERS F.

More information

A PRIMER ON BAYESIAN STATISTICS BY T. S. MEANS

A PRIMER ON BAYESIAN STATISTICS BY T. S. MEANS A PRIMER ON BAYESIAN STATISTICS BY T. S. MEANS 1987, 1990, 1993, 1999, 2011 A PRIMER ON BAYESIAN STATISTICS BY T. S. MEANS DEPARTMENT OF ECONOMICS SAN JOSE STATE UNIVERSITY SAN JOSE, CA 95192-0114 This

More information

National and Sport-Group APR Averages, Trends and Penalties

National and Sport-Group APR Averages, Trends and Penalties National and Sport-Group APR Averages, Trends and Penalties May 2011 Average Four- APRs Includes 2006-07 through 2009-10 Academic s Four- Average Overall 970 (+3) Baseball 959 (+5) Men s Basketball 945

More information

RIVIERA LITTLE LEAGUE 2018 NATIONAL DIVISION RULES

RIVIERA LITTLE LEAGUE 2018 NATIONAL DIVISION RULES A. Philosophy The National Division introduces Riviera Little League players to competitive baseball. It is the responsibility of managers to balance competition with fairness, learning, sportsmanship

More information

Key Stage 3 Curriculum Plan Year 8

Key Stage 3 Curriculum Plan Year 8 Year 8 Block 1 Key Topics What will ALL students learn? What will the most able students learn? Boys - Football Girls - Netball will learn how to: Play a range of passing techniques and control the ball

More information

REPORT OF THE NCAA SOFTBALL RULES COMMITTEE JUNE 18-20, 2018, MEETING

REPORT OF THE NCAA SOFTBALL RULES COMMITTEE JUNE 18-20, 2018, MEETING REPORT OF THE NCAA SOFTBALL RULES COMMITTEE JUNE 18-20, 2018, MEETING ACTION ITEMS. 1. Legislative items. None. 2. Nonlegislative items. The NCAA Softball Rules Committee approved the following rules change

More information

1 game for every 2 additional yellows Suspended for season

1 game for every 2 additional yellows Suspended for season NAIA Conduct in Competition Suspension Rubric In the NAIA, any ejection in any sport carries a mandatory suspension of at least one game (see NAIA Bylaws Article VI, Section B, Item 7). In addition, the

More information

All of the following statements are FALSE. Read the explanations and rule references to fully understand why.

All of the following statements are FALSE. Read the explanations and rule references to fully understand why. Top 40 Baseball Rule Myths All of the following statements are FALSE. Read the explanations and rule references to fully understand why. NOTE: The rule references are based on the 2011 Edition of the Official

More information

seahawks logo 4A8AA4E32EAD373DFDE69B972D51D0CE Seahawks Logo 1 / 6

seahawks logo 4A8AA4E32EAD373DFDE69B972D51D0CE Seahawks Logo 1 / 6 Seahawks Logo 1 / 6 2 / 6 3 / 6 Seahawks Logo Seattle Seahawks Home: The official source of the latest Seahawks headlines, news, videos, photos, tickets, rosters, and gameday information Seahawks Official

More information

+ Hockey. Tom Farrey Executive Director Sports & Society Program

+ Hockey. Tom Farrey Executive Director Sports & Society Program + Hockey Tom Farrey Executive Director Sports & Society Program Hockey + Where to from here? How can hockey continue to lead? How to grow the game? Sports & Fitness Industry Association (SFIA) data Provided

More information

NCAA CHAMPIONSHIPS TELEVISION RIGHTS OVERVIEW

NCAA CHAMPIONSHIPS TELEVISION RIGHTS OVERVIEW 2017-18 NCAA CHAMPIONSHIPS TELEVISION RIGHTS OVERVIEW The NCAA and our primary broadcast partners, Turner, CBS, ESPN, Golf Channel, own all television and digital / Internet video streaming rights for

More information

Curriculum Map for PE. Games Gym Dance Swimming Athletics OAA

Curriculum Map for PE. Games Gym Dance Swimming Athletics OAA Curriculum Map for PE Games Gym Dance Swimming OAA Year 3 Invasion: Tag Rugby; Passing and receiving, basic rules, drills/practices, introduction to tagging, small sided game (3v3) with adapted rules.

More information

SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES

SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES INDEX SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES SPORT CATALOGUE AND PAGES Rugby 1-36, Winter Various 3, 4, 6, 8, 10, 11-13 Summer 32-36, Winter Various 3, 5, 6, 7, 8, 10-12 Gridiron Football

More information

Greater Manchester School Games Sponsorship Opportunities

Greater Manchester School Games Sponsorship Opportunities Greater Manchester School Games 2016 Greater Manchester School Games The Greater Manchester School Games is one of the largest events of its kind in the Country, in 2014/2015 it captured the imagination

More information

Practices start april 2 nd Opening day is may 5 th end of season t-ball parade is june 30 th

Practices start april 2 nd Opening day is may 5 th end of season t-ball parade is june 30 th Ages 2-18 years Supervisor: jason buckholtz 815.886.6222 jbuckholtz@romeoville.org Practices start april 2 nd Opening day is may 5 th end of season t-ball parade is june 30 th Baseball Season Begins in

More information

The programme is open to all National Olympic Committees (NOCs). However, priority will be given to the NOCs with the greatest needs.

The programme is open to all National Olympic Committees (NOCs). However, priority will be given to the NOCs with the greatest needs. 1/5 Objective Offer training possibilities at different levels for coaches officially recognised by their national federation (NF) and working in their own country. Beneficiaries The programme is open

More information

1 st Ejection 2 nd Ejection 3 rd Ejection Protests

1 st Ejection 2 nd Ejection 3 rd Ejection Protests NAIA Conduct in Competition Suspension Rubric In the NAIA, any ejection in any sport carries a mandatory suspension of at least one game (see NAIA Bylaws Article VI, Section B, Item 7). In addition, the

More information

Scoring dynamics across professional team sports: tempo, balance and predictability

Scoring dynamics across professional team sports: tempo, balance and predictability Scoring dynamics across professional team sports: tempo, balance and predictability Sears Merritt 1 and Aaron Clauset 1,2,3 1 Dept. of Computer Science, University of Colorado, Boulder, CO 80309 2 BioFrontiers

More information

III. PowerPoint Presentation Makeover 1. Present'tl PROJECT #24. To give an existing PowerPoint presentation a makeover

III. PowerPoint Presentation Makeover 1. Present'tl PROJECT #24. To give an existing PowerPoint presentation a makeover PROJECT #24 Approximate Completion Time: 3 hours PowerPoint Presentation Makeover 1 To give an existing PowerPoint presentation a makeover In this activity, you will practice how to: 1. apply a design

More information

Westlake Girls High School. Spor t

Westlake Girls High School. Spor t Westlake Girls High School Spor t Westlake Girls High School Sport Westlake Girls is one of New Zealand s leading sporting schools, with a strong commitment to sporting excellence. All our students are

More information

Participation: Once a week for 30 minutes at moderate intensity

Participation: Once a week for 30 minutes at moderate intensity Participation: Once a week for 30 minutes at moderate intensity Pivotal to Sport England's 2008-11 strategy is the funding and delivery of national governing bodies of sport (NGBs). NGBs contribute to

More information

CHANGES and CORRECTIONS/2011 ATHLETIC MANUAL

CHANGES and CORRECTIONS/2011 ATHLETIC MANUAL CHANGES and CORRECTIONS/2011 ATHLETIC MANUAL Please Note: The athletic manual is available online at www.grpa.org. It is located under the athletics tab and you must be logged in to gain access. PROPOSED

More information

Lincolnshire Sport Insight Pack Lincoln City

Lincolnshire Sport Insight Pack Lincoln City 2014 shire Sport Insight Pack City Published: May 2014 (Version 1) E: chris.johnson@lincolnshiresport.com T: 01522 585580 W: www.lincolnshiresport.com Demographics overview The City of has a current population

More information

BASEBALL 2. AIM OF THE GAME

BASEBALL 2. AIM OF THE GAME BASEBALL 1. INTRODUCTION 2. AIM OF THE GAME 3. ORIGINS 4. BASIC RULES 5. BASEBALL SKILLS 6. BASEBALL PITCH 7. BASEBALL TOOLS 8. SCHOOL BASEBALL (SOFTBALL) 9. TERMINOLOGY (USEFUL VOCABULARY) 2. AIM OF THE

More information

Rule Book Changes for Revised bold

Rule Book Changes for Revised bold Rule Book Changes for 2013-2014 Revised Following are the changes (shown in bold) to the rules portion of 2012-2013 Rules and Interpretations which is on the CFO/Arbiter site under NCAA Rules Information.

More information

THE OLYMPICS: HISTORY

THE OLYMPICS: HISTORY Franklin Watts downloadables for every child s learning journey THE OLYMPICS is a four-book series that gets behind the scenes at the world s greatest sporting spectacle. In The Olympics: History travel

More information

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem

Background Information. Project Instructions. Problem Statement. EXAM REVIEW PROJECT Microsoft Excel Review Baseball Hall of Fame Problem Background Information Every year, the National Baseball Hall of Fame conducts an election to select new inductees from candidates nationally recognized for their talent or association with the sport of

More information

ISCORE INTEGRATION IOS SCORING GUIDE

ISCORE INTEGRATION IOS SCORING GUIDE ISCORE INTEGRATION IOS SCORING GUIDE TABLE OF CONTENTS TABLE OF CONTENTS... 2 INTRODUCTION... 4 INTEGRATION REQUIRMENTS... 4 GETTING STARTED... 4 Discover Games... 4 GAME INFO... 5 Game Info Options...

More information

ASHWAUBENON YOUTH BASEBALL Little League AA By-Laws Updated June 2017

ASHWAUBENON YOUTH BASEBALL Little League AA By-Laws Updated June 2017 ASHWAUBENON YOUTH BASEBALL Little League AA By-Laws Updated June 2017 ELIGIBILITY & SPORTSMANSHIP Residents of Ashwaubenon, students enrolled in the Ashwaubenon School District or students enrolled in

More information

2018 Sampson County Parks and Recreation

2018 Sampson County Parks and Recreation 2018 Sampson County Parks and Recreation Developmental Baseball/Softball Local Guidelines and Rules 1:00 DIVISIONS: Tee Ball: Coach Pitch Baseball: Coach Pitch Softball: Ages 4-5 years Ages 6-8 years Ages

More information

The VFW Fields Complex is located at 100 Elm Street in Stoughton, MA. We will be offering a full concession menu and clean modern facilities.

The VFW Fields Complex is located at 100 Elm Street in Stoughton, MA. We will be offering a full concession menu and clean modern facilities. Welcome Tournament Participant, Attached is your tournament packet. In it you will find our tournament rules and guidelines. If there are any questions, please feel free to contact the tournament director.

More information

BPMN - IV. Rushikesh K Joshi IIT Bombay

BPMN - IV. Rushikesh K Joshi IIT Bombay BPMN - IV Rushikesh K Joshi IIT Bombay Event based Gateways: Use of intermediate events only one of the alternatives is chosen Acceptance Event based Gateway Rejection 3 days Event based Gateways: Use

More information

Staines Sports Calendar

Staines Sports Calendar TERM ONE CALENDAR 2016 Holidays = 28/03/16 08/04/2016 1 25/1 26/1 AUSTRALIA DAY HOLIDAY 27/1 28/1 29/1 2 1/2 2/2 18B Baseball 19B Cricket 19G Softball 19B&G Tennis 18B&G Water Polo MW 19 Tennis 3 8/2 9/2

More information

Informative/Explanatory Example Essays Grades 5-6

Informative/Explanatory Example Essays Grades 5-6 Informative/Explanatory Example Essays Grades 5-6 Essay scores are produced for the following grade ranges: 3-4, 5-6, 7-8, 9-10, and 11-12. Thus a fifth grade essay is compared to models for both fifth

More information

Top 40 Baseball Rule Myths

Top 40 Baseball Rule Myths Top 40 Baseball Rule Myths 1. HANDS The hands are considered part of the bat. 2. RIGHT TURN The batter-runner must turn to his right after over-running first base. 3. BREAKING WRISTS If the batter breaks

More information

A sports crossword 2.1 Vocabulary (sport)

A sports crossword 2.1 Vocabulary (sport) Resource 7 Student A Down 2 A sports crossword 2.1 Vocabulary (sport) 1 2 P L R 3 4 6 5 F E I 4 9 N 7 N H T 8 A 10 A C R Across 1 7 9 Student B Down 3 1 2 P L R 3 4 5 6 F E I 6 9 N 7 N H T 8 A 10 A C R

More information

Alignment and Integration: CS4L and the NCCP

Alignment and Integration: CS4L and the NCCP Alignment and Integration: CS4L and the NCCP Objectives SHARE Celebrate that all approved programs developed as part of the NCCP promote LTAD implementation APPLY Use the NCCP to support CS4L implementation

More information

CLASSIFIED ATHLETIC/ACTIVITY SALARY SCHEDULE. Senior High

CLASSIFIED ATHLETIC/ACTIVITY SALARY SCHEDULE. Senior High 2018 19 CLASSIFIED ATHLETIC/ACTIVITY SALARY SCHEDULE Senior High Baseball Head Coach 0 1 180 28.69 5165 Basketball Head Coach 0 1 198 28.44 5632 2 3 198 30.99 6136 4+ 198 33.77 6686 Ass't. Coach 0 1 198

More information

TAKING PART IN SPORT

TAKING PART IN SPORT UNIT 8 INVESTIGATING UNIT RIGHTS 19: Creating & RESPONSIBILITIES Business Documents AT WORK If you intend to start a career in sport and active leisure, it is important that you know about the various

More information

Grade 5 Lesson 1. Lesson Plan Page 2. Student Article Page 5. Opinion Practice Activity Handout Page 9

Grade 5 Lesson 1. Lesson Plan Page 2. Student Article Page 5. Opinion Practice Activity Handout Page 9 Grade 5 Lesson 1 Item Page Lesson Plan Page 2 Student Article Page 5 Opinion Practice Activity Handout Page 9 DETERMINING METHODS VISION-SETTING Marlins Think Tank: Fifth Grade Writing Lesson Plan #1 OBJECTIVE.

More information

Men s 5 on 5 Flag Football League Rules and Regulations Updated 3/10/11

Men s 5 on 5 Flag Football League Rules and Regulations Updated 3/10/11 Men s 5 on 5 Flag Football League Rules and Regulations Updated 3/10/11 POSTPONEMENTS: The team manager is responsible for calling the weather hotline at 402-597-2061 for any cancellations. Once the game

More information

2017 Youth Flag Football Bylaws & Playing Rules

2017 Youth Flag Football Bylaws & Playing Rules 2017 Youth Flag Football Bylaws & Playing Rules Purpose: The purpose of this league is to provide a non-competitive environment to play the game of flag football. This league is designed to teach the fundamentals

More information

2017 NFHS SOFTBALL RULES POWERPOINT

2017 NFHS SOFTBALL RULES POWERPOINT 2017 NFHS SOFTBALL RULES POWERPOINT National Federation of State High School Associations Take Part. Get Set For Life. Rules Changes Major Editorial Changes Points of Emphasis NATIONAL FEDERATION OF STATE

More information

Rules And How To Players Fantasy Football 2013 Espn Top 50

Rules And How To Players Fantasy Football 2013 Espn Top 50 Rules And How To Players Fantasy Football 2013 Espn Top 50 Matthew Berry provides his fantasy football rankings for the 2015 season. Top Events, Women's World Cup, Golf (M), MLB, NASCAR, WNBA, MLS, Tennis

More information

69.1 Massachusetts high school football shall be played under the NCAA Rules, with the following modifications:

69.1 Massachusetts high school football shall be played under the NCAA Rules, with the following modifications: 69. Football 69.1 Massachusetts high school football shall be played under the NCAA Rules, with the following modifications: 69.1.1 Goal Post uprights shall be a maximum of 23 feet, 4 inches inside to

More information

These cross-curriculum activities contribute to the achievement of the following:

These cross-curriculum activities contribute to the achievement of the following: LEVEL Upper primary LONDON 2012 SPORTS DESCRIPTION In these activities, students learn about the sports to be played at London 2012. They explore aspects including rules, equipment and game play be researching

More information

Team Sports Review for the Final

Team Sports Review for the Final Team Sports Review for the Final Vocabulary Study Guide for Grades 11-12 Final List #1- Vocabulary Words atrophy the wasting away or decrease in size of a body part, particularly muscle hypertrophy the

More information