private function testIncidentsByBounds()
 {
     $UshApiLib_Site_Info = new UshApiLib_Site_Info(url::base() . "api");
     echo "<h1>Incidents, By Bounds</h1><strong>URL:</strong> " . $UshApiLib_Site_Info->getUrl() . "<br/><br/>";
     $params = new UshApiLib_Incidents_Task_Parameter();
     $params->setBy(UshApiLib_Incidents_Bys::BY_BOUNDS);
     $params->setNe("-8,9");
     $params->setSw("-12,4");
     $params->setC(1);
     echo "<strong>Query String:</strong> " . Kohana::debug($params->get_query_string()) . "<br/><br/>";
     $task = new UshApiLib_Incidents_Task($params, $UshApiLib_Site_Info);
     $response = $task->execute();
     echo "<strong>JSON:</strong> " . $task->getJson() . "<br/><br/>";
     echo "<strong>Code:</strong> " . $response->getError_code() . " <strong>Message:</strong> " . $response->getError_message() . "<br/><br/>";
     foreach ($response->getIncidents() as $cat) {
         echo "Incident Title: " . $cat["incident"]->incident_title . "<br/>";
     }
 }