Transform.cs
上传用户:sex100000
上传日期:2013-11-09
资源大小:1377k
文件大小:3k
源码类别:

GIS编程

开发平台:

C#

  1. // Copyright 2005, 2006 - Morten Nielsen (www.iter.dk)
  2. //
  3. // This file is part of SharpMap.
  4. // SharpMap is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU Lesser General Public License as published by
  6. // the Free Software Foundation; either version 2 of the License, or
  7. // (at your option) any later version.
  8. // 
  9. // SharpMap is distributed in the hope that it will be useful,
  10. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. // GNU Lesser General Public License for more details.
  13. // You should have received a copy of the GNU Lesser General Public License
  14. // along with SharpMap; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
  16. using System;
  17. using System.Collections.Generic;
  18. using System.Text;
  19. namespace SharpMap.Utilities
  20. {
  21. /// <summary>
  22. /// Class for transforming between world and image coordinate
  23. /// </summary>
  24. public class Transform
  25. {
  26. /// <summary>
  27. /// Transforms from world coordinate system (WCS) to image coordinates
  28. /// NOTE: This method DOES NOT take the MapTransform property into account (use SharpMap.Map.MapToWorld instead)
  29. /// </summary>
  30. /// <param name="p">Point in WCS</param>
  31. /// <param name="map">Map reference</param>
  32. /// <returns>Point in image coordinates</returns>
  33. public static System.Drawing.PointF WorldtoMap(SharpMap.Geometries.Point p, SharpMap.Map map)
  34. {
  35. //if (map.MapTransform != null && !map.MapTransform.IsIdentity)
  36. // map.MapTransform.TransformPoints(new System.Drawing.PointF[] { p });
  37. System.Drawing.PointF result = new System.Drawing.Point();
  38. double Height = (map.Zoom * map.Size.Height) / map.Size.Width;
  39. double left = map.Center.X - map.Zoom*0.5;
  40. double top = map.Center.Y + Height * 0.5 * map.PixelAspectRatio;
  41. result.X = (float)((p.X - left) / map.PixelWidth);
  42. result.Y = (float)((top - p.Y) / map.PixelHeight);
  43. return result;
  44. }
  45. /// <summary>
  46. /// Transforms from image coordinates to world coordinate system (WCS).
  47. /// NOTE: This method DOES NOT take the MapTransform property into account (use SharpMap.Map.MapToWorld instead)
  48. /// </summary>
  49. /// <param name="p">Point in image coordinate system</param>
  50. /// <param name="map">Map reference</param>
  51. /// <returns>Point in WCS</returns>
  52. public static SharpMap.Geometries.Point MapToWorld(System.Drawing.PointF p, SharpMap.Map map)
  53. {
  54. //if (this.MapTransform != null && !this.MapTransform.IsIdentity)
  55. //{
  56. //    System.Drawing.PointF[] p2 = new System.Drawing.PointF[] { p };
  57. //    this.MapTransform.TransformPoints(new System.Drawing.PointF[] { p });
  58. //    this.MapTransformInverted.TransformPoints(p2);
  59. //    return Utilities.Transform.MapToWorld(p2[0], this);
  60. //}
  61. //else 
  62. SharpMap.Geometries.BoundingBox env = map.Envelope;
  63. return new SharpMap.Geometries.Point(env.Min.X + p.X * map.PixelWidth,
  64. env.Max.Y - p.Y * map.PixelHeight);
  65. }
  66. }
  67. }