To reach and strengthen high-risk groups through sports

Facts

Project partner:
Waves for Change

Where:
Cape Town, South Africa

Contact:
Ulrikah Reihs
[email protected]

In the aftermath of apartheid many children in South Africa grow up in areas where violence is part of everyday life. A child who witnesses and experiences violence often suffers from post-traumatic stress and may have difficulty managing emotions and moods. Due to a poor health care system, other ways are needed to give the children the support they are entitled to. Since 2011, the local grass root organization Waves for Change (W4C) offers surfing therapy to children in violent neighborhoods. In their programs, young people not only learn to master the waves, but also get tools to manage their emotions, have a safe place to stay and also access to caring adults and positive relationships.

Lower stress levels and better self-esteem

The University of Cape Town has evaluated the impact of the surfing therapy and the result is undeniable – after completing their year in the program, virtually all children have lower stress levels and better self-esteem. A positive side effect, which was not anticipated, was that many of the girls reported that they more often than before dared to speak out when they were exposed to unwanted sexual approaches.

Surfing therapy for children with autism

Childhood has been working with W4C since 2016. In addition to reaching more children and spreading surfing therapy to more areas, they have, with our support, also established a network for organizations that use sports to engage young people. Their aim is to spread the concept of sports therapy and to inform of factors needed to make a real difference. Since 2019, we help to adapt and test the surfing therapy to children with autism. During the first year, 75 children participated in the program. The results, once more evaluated by the University of Cape Town, are impressive –  a large part of the children have improved their psychomotor skills and communication ability, have developed tools to regulate their emotions and strengthened their social relationships with others.

Most of the surfing coaches come from similar areas as the participants, and the effect of the therapy also benefits them: “You come here to help the children heal, but in the end you also heal yourself.”

Photo: private

.acf-map { width: 100%; height: 400px; /*border: #ccc solid 1px;*/ /*margin: 20px 0;*/ } // Fixes potential theme css conflict. .acf-map img { max-width: inherit !important; } (function( $ ) { /** * initMap * * Renders a Google Map onto the selected jQuery element * * @date 22/10/19 * @since 5.8.6 * * @param jQuery $el The jQuery element. * @return object The map instance. */ function initMap( $el ) { // Find marker elements within map. var $markers = $el.find('.marker'); // Create gerenic map. var mapArgs = { zoom : $el.data('zoom') || 16, mapTypeId : google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map( $el[0], mapArgs ); // Add markers. map.markers = []; $markers.each(function(){ initMarker( $(this), map ); }); // Center map based on markers. centerMap( map ); // Return map instance. return map; } /** * initMarker * * Creates a marker for the given jQuery element and map. * * @date 22/10/19 * @since 5.8.6 * * @param jQuery $el The jQuery element. * @param object The map instance. * @return object The marker instance. */ function initMarker( $marker, map ) { // Get position from marker. var lat = $marker.data('lat'); var lng = $marker.data('lng'); var latLng = { lat: parseFloat( lat ), lng: parseFloat( lng ) }; // Create marker instance. var marker = new google.maps.Marker({ position : latLng, map: map }); // Append to reference for later use. map.markers.push( marker ); // If marker contains HTML, add it to an infoWindow. if( $marker.html() ){ // Create info window. var infowindow = new google.maps.InfoWindow({ content: $marker.html() }); // Show info window when marker is clicked. google.maps.event.addListener(marker, 'click', function() { infowindow.open( map, marker ); }); } } /** * centerMap * * Centers the map showing all markers in view. * * @date 22/10/19 * @since 5.8.6 * * @param object The map instance. * @return void */ function centerMap( map ) { // Create map boundaries from all map markers. var bounds = new google.maps.LatLngBounds(); map.markers.forEach(function( marker ){ bounds.extend({ lat: marker.position.lat(), lng: marker.position.lng() }); }); // Case: Single marker. if( map.markers.length == 1 ){ map.setCenter( bounds.getCenter() ); // Case: Multiple markers. } else{ map.fitBounds( bounds ); } } // Render maps on page load. $(document).ready(function(){ $('.acf-map').each(function(){ var map = initMap( $(this) ); }); }); })(jQuery);