Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TravelingSalesman/3.3/Evaluators/TSPGeoPathEvaluator.cs @ 3158

Last change on this file since 3158 was 3158, checked in by swagner, 14 years ago

Renamed HeuristicLab.Problems.TSP to HeuristicLab.Problems.TravelingSalesman (#924).

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using HeuristicLab.Core;
24using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
25
26namespace HeuristicLab.Problems.TravelingSalesman {
27  /// <summary>
28  /// An operator which evaluates TSP solutions given in path representation using the GEO distance metric (globe coordinates).
29  /// </summary>
30  [Item("TSPGeoPathEvaluator", "An operator which evaluates TSP solutions given in path representation using the GEO distance metric (globe coordinates).")]
31  [Creatable("Test")]
32  [StorableClass]
33  public sealed class TSPGeoPathEvaluator : TSPCoordinatesPathEvaluator {
34    private const double PI = 3.141592;
35    private const double RADIUS = 6378.388;
36
37    /// <summary>
38    /// Calculates the distance between two points using the GEO distance metric (globe coordinates).
39    /// </summary>
40    /// <param name="x1">The x-coordinate of point 1.</param>
41    /// <param name="y1">The y-coordinate of point 1.</param>
42    /// <param name="x2">The x-coordinate of point 2.</param>
43    /// <param name="y2">The y-coordinate of point 2.</param>
44    /// <returns>The calculated distance.</returns>
45    protected override double CalculateDistance(double x1, double y1, double x2, double y2) {
46      double latitude1, longitude1, latitude2, longitude2;
47      double q1, q2, q3;
48      double length;
49
50      latitude1 = ConvertToRadian(x1);
51      longitude1 = ConvertToRadian(y1);
52      latitude2 = ConvertToRadian(x2);
53      longitude2 = ConvertToRadian(y2);
54
55      q1 = Math.Cos(longitude1 - longitude2);
56      q2 = Math.Cos(latitude1 - latitude2);
57      q3 = Math.Cos(latitude1 + latitude2);
58
59      length = (int)(RADIUS * Math.Acos(0.5 * ((1.0 + q1) * q2 - (1.0 - q1) * q3)) + 1.0);
60      return (length);
61    }
62
63    private double ConvertToRadian(double x) {
64      return PI * (Math.Truncate(x) + 5.0 * (x - Math.Truncate(x)) / 3.0) / 180.0;
65    }
66  }
67}
Note: See TracBrowser for help on using the repository browser.