@endif
OSAA Heat Index Notifications
What Is a Notification
An OSAA Heat Index Notification is generated for areas around Oregon where the forecasted high temperature could indicate a high heat index that would require practice modifications. Notifications are sent out at 10:30 AM every day via e-mail and SMS to subscribers. Only those areas that have a forecasted high heat index of 95, or higher, receive alerts.
Schools are still bound by OSAA rule to use the Heat Index Calculator within one hour of the start of practice to determine the heat index for their area. OSAA Heat Index Notifications only alert subscribers to the likelihood that their area may have a high heat index and servers as a reminder of this rule, not a replacement.
Note: You must be logged in to your OSAA user account in order to subscribe to notifications.
@if (!Auth::check())
Please
log in to subscribe.
@else
Subscribe
Use this form to subscribe and receive daily OSAA Heat Index Notifications.
Type in your practice location's zip-code and select to receive alerts by e-mail and/or text message (SMS). If you subscribe to receive SMS alerts, your carrier's data rates may apply.
{{ Form::open(array('url' => url('/dev/subscribe-heat-index'), 'class' => 'login', 'id' => 'subscribe-heat-index')) }}
{{ Form::label('subscribe_place',
'Location',
array('class' => 'input_label',
'style' => 'width: 150px;')) }}
{{ Form::text('subscribe_place',
null,
array('style' => 'width: 200px;',
'placeholder' => 'zip-code')) }}
{{ Form::label('is_notify_email', 'Notify by E-mail', array('class' => 'input_label', 'style' => 'width:150px;')) }}
{{ Form::checkbox('is_notify_email', 'true', null)}}
{{ Form::email('email', Auth::user()->email, array('style' => 'width:200px;', 'disabled'=>'true'))}}
{{ Form::label('is_notify_sms', 'Notify by SMS', array('class' => 'input_label', 'style' => 'width:150px;')) }}
{{ Form::checkbox('is_notify_sms', 'true', null)}}
{{ Form::text('mobile', Auth::user()->getPhoneNumbers('M'), array('style' => 'width:120px;', 'class' => 'tooltip', 'title' => 'If you change this number here, we will remember it on your OSAA account.', 'placeholder' => 'mobile number'))}}
{{Form::select('carrier', array_merge(array('Select your carrier'), PhoneCarrier::all()->lists('name')));}}
{{ Form::submit('Subscribe', array('class' => 'submit')) }}
{{ Form::close() }}
@endif
Current
normal
notice
caution
warning
danger
Heat Index
{{ $weather['heat_index'] }}
@if ($weather['category'] == 1)
Normal
- Maximum of 5 hours of practice today.
- Provide ample amounts of water.
@endif
@if ($weather['category'] == 2)
Notice
- Maximum of 5 hours of practice today.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['category'] == 3)
Caution
- Maximum of 5 hours of practice today.
- OSAA Recommendation: Consider postponing practice to later in the day.
- Practice length a maximum of 3 hours.
- Mandatory 3 hour recovery period between practices.
- Contact sports and activities with additional equipment - Helmets and other possible equipment removed if not involved in contact or necessary for safety.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['category'] == 4)
Warning
- Maximum of 5 hours of practice today.
- OSAA Recommendation: Postpone practice to later in the day.
- Practice length a maximum of 3 hours.
- Mandatory 3 hour recovery period between practices.
- Alter uniform by removing items if possible - Allow for changes to dry t-shirts and shorts.
- Contact sports and activities with additional equipment - Helmets and other possible equipment removed if not involved in contact or necessary for safety.
- Reduce time of planned outside activity as well as indoor activity if air conditioning is unavailable.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['category'] == 5)
Danger
- OSAA Recommendation: Stop all outside activity in practice and/or play, and stop all inside activity if air conditioning is unavailable.
@endif
Forecast
normal
notice
caution
warning
danger
Heat Index
{{ $weather['max_heat_index'] }}
@if ($weather['max_category'] == 1)
Normal
- Maximum of 5 hours of practice today.
- Provide ample amounts of water.
@endif
@if ($weather['max_category'] == 2)
Notice
- Maximum of 5 hours of practice today.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['max_category'] == 3)
Caution
- Maximum of 5 hours of practice today.
- OSAA Recommendation: Consider postponing practice to later in the day.
- Practice length a maximum of 3 hours.
- Mandatory 3 hour recovery period between practices.
- Contact sports and activities with additional equipment - Helmets and other possible equipment removed if not involved in contact or necessary for safety.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['max_category'] == 4)
Warning
- Maximum of 5 hours of practice today.
- OSAA Recommendation: Postpone practice to later in the day.
- Practice length a maximum of 3 hours.
- Mandatory 3 hour recovery period between practices.
- Alter uniform by removing items if possible - Allow for changes to dry t-shirts and shorts.
- Contact sports and activities with additional equipment - Helmets and other possible equipment removed if not involved in contact or necessary for safety.
- Reduce time of planned outside activity as well as indoor activity if air conditioning is unavailable.
- Provide ample amounts of water.
- Water should always be available and athletes should be able to take in as much water as they desire.
- Watch/monitor athletes for necessary action.
@endif
@if ($weather['max_category'] == 5)
Danger
- OSAA Recommendation: Stop all outside activity in practice and/or play, and stop all inside activity if air conditioning is unavailable.
@endif