当前位置: 首页>>代码示例>>PHP>>正文


PHP map::distance方法代码示例

本文整理汇总了PHP中map::distance方法的典型用法代码示例。如果您正苦于以下问题:PHP map::distance方法的具体用法?PHP map::distance怎么用?PHP map::distance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在map的用法示例。


在下文中一共展示了map::distance方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: index

 public function index($saved = false)
 {
     $db = new Database();
     $this->template->content = new View('gpxer/gpxer');
     // Add gpx mimetype
     Kohana::config_set('mimes.gpx', array('application/octet-stream'));
     // setup and initialize form field names
     $form = array('gpx_location' => '', 'gpx' => '');
     $errors = $form;
     $form_error = FALSE;
     if ($saved == 'saved') {
         $form_saved = TRUE;
     } else {
         $form_saved = FALSE;
     }
     // check, has the form been submitted, if so, setup validation
     if ($_POST) {
         $post = Validation::factory(array_merge($_POST, $_FILES));
         $post->pre_filter('trim', TRUE);
         $post->add_rules('gpx_location', 'required', 'length[3,100]');
         $post->add_rules('gpx', 'upload::valid', 'upload::required', 'upload::type[gpx]', 'upload::size[2M]');
         if ($post->validate()) {
             // Temporary file name
             $gpx = upload::save('gpx');
             // Load File
             $xml = simplexml_load_file($gpx);
             // Get the Points Data
             $linestring = array();
             $i = 0;
             $point_array = array();
             foreach ($xml->trk as $part) {
                 foreach ($part->trkseg->trkpt as $point) {
                     // START POINT
                     if ($i == 0) {
                         $longitude = $point['lon'];
                         $latitude = $point['lat'];
                         $time = $point->time;
                     }
                     $linestring[] = $point['lon'] . " " . $point['lat'];
                     // We'll use these array elements to calculate distance later
                     $point_array[$i][0] = $point['lon'];
                     $point_array[$i][1] = $point['lat'];
                     $point_array[$i][2] = $point->time;
                     $i++;
                 }
             }
             // If we have points...
             if (count($linestring)) {
                 // Calculate Total Distance by adding up
                 // distance between each point
                 $distance = 0;
                 $start_time = 0;
                 $end_time = 0;
                 for ($i = 0; $i < count($point_array); $i++) {
                     if ($i == 0) {
                         $start_time = strtotime($point_array[$i][2]);
                     } else {
                         $latitude1 = (double) $point_array[$i][1];
                         $longitude1 = (double) $point_array[$i][0];
                         $latitude2 = (double) $point_array[$i - 1][1];
                         $longitude2 = (double) $point_array[$i - 1][0];
                         $d = map::distance($latitude1, $longitude1, $latitude2, $longitude2);
                         if (!is_nan($d)) {
                             $distance += $d;
                         }
                         $end_time = strtotime($point_array[$i][2]);
                     }
                 }
                 $description = "Location: " . $post->gpx_location . "\n";
                 $description .= "Start Time: " . date("Y-m-d H:i:s", $start_time) . "\n";
                 $description .= "End Time: " . date("Y-m-d H:i:s", $end_time) . "\n";
                 $description .= "Elapsed Time: " . $this->_seconds_2Words($end_time - $start_time) . "\n";
                 $description .= "Distance: " . round($distance, 2) . " Kms";
                 // STEP 1: SAVE LOCATION
                 $location = ORM::factory("location");
                 $location->location_name = $post->gpx_location;
                 $location->latitude = $latitude;
                 $location->longitude = $longitude;
                 $location->location_date = date("Y-m-d H:i:s", strtotime($time));
                 $location->save();
                 // STEP 2: SAVE INCIDENT
                 $incident = ORM::factory("incident");
                 $incident->location_id = $location->id;
                 $incident->user_id = $_SESSION['auth_user']->id;
                 $incident->incident_title = $post->gpx_location . " (" . round($distance, 2) . " Kms)";
                 $incident->incident_description = $description;
                 $incident->incident_zoom = 16;
                 $incident->incident_date = date("Y-m-d H:i:s", strtotime($time));
                 $incident->save();
                 // STEP 3: SAVE LINESTRING
                 $linestring = implode(",", $linestring);
                 //++ Can't Use ORM for this
                 $sql = "INSERT INTO " . Kohana::config('database.default.table_prefix') . "geometry ( incident_id, geometry ) \n\t\t\t\t\t\tVALUES( " . $incident->id . ", GeomFromText( 'LINESTRING(" . mysql_escape_string($linestring) . ")' ))";
                 $db->query($sql);
                 // STEP 4: SAVE POINT
                 //++ Can't Use ORM for this
                 $sql = "INSERT INTO " . Kohana::config('database.default.table_prefix') . "geometry ( incident_id, geometry ) \n\t\t\t\t\t\tVALUES( " . $incident->id . ", GeomFromText( 'POINT(" . mysql_escape_string($longitude) . " " . mysql_escape_string($latitude) . ")' ))";
                 $db->query($sql);
             }
             // Remove the temporary file
//.........这里部分代码省略.........
开发者ID:rmarianski,项目名称:pps-ushahidi,代码行数:101,代码来源:gpxer.php


注:本文中的map::distance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。