• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Spatial.DbGeography类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Data.Spatial.DbGeography的典型用法代码示例。如果您正苦于以下问题:C# DbGeography类的具体用法?C# DbGeography怎么用?C# DbGeography使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



DbGeography类属于System.Data.Spatial命名空间,在下文中一共展示了DbGeography类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: AsGml

        public override string AsGml(DbGeography geographyValue)
        {
            CheckParameterNotNull("geographyValue", geographyValue);

            dynamic providerValue = geographyValue.ProviderValue;
            return providerValue.AsGml().Value;
        }
开发者ID:christiandpena,项目名称:entityframework,代码行数:7,代码来源:SpatialServices.cs


示例2: Buffer

        public override DbGeography Buffer(DbGeography geographyValue, double distance)
        {
            CheckParameterNotNull("geographyValue", geographyValue);

            dynamic providerValue = geographyValue.ProviderValue;
            return GeographyFromProviderValue(providerValue.STBuffer(distance));
        }
开发者ID:christiandpena,项目名称:entityframework,代码行数:7,代码来源:SpatialServices.cs


示例3: AsText

        public override string AsText(DbGeography geographyValue)
        {
            CheckParameterNotNull("geographyValue", geographyValue);

            dynamic providerValue = geographyValue.ProviderValue;
            return providerValue.STAsText().ToSqlString().Value;
        }
开发者ID:christiandpena,项目名称:entityframework,代码行数:7,代码来源:SpatialServices.cs


示例4: AsBinary

        public override byte[] AsBinary(DbGeography geographyValue)
        {
            CheckParameterNotNull("geographyValue", geographyValue);

            dynamic providerValue = geographyValue.ProviderValue;
            return providerValue.STAsBinary().Value;
        }
开发者ID:christiandpena,项目名称:entityframework,代码行数:7,代码来源:SpatialServices.cs


示例5: CheckCompatible

 private static ReadOnlySpatialValues CheckCompatible(DbGeography geographyValue)
 {
     Debug.Assert(geographyValue != null, "Validate geographyValue is non-null before calling CheckCompatible");
     if (geographyValue != null)
     {
         ReadOnlySpatialValues expectedValue = geographyValue.ProviderValue as ReadOnlySpatialValues;
         if (expectedValue != null)
         {
             return expectedValue;
         }
     }
     throw SpatialExceptions.GeographyValueNotCompatibleWithSpatialServices("geographyValue");
 }
开发者ID:uQr,项目名称:referencesource,代码行数:13,代码来源:DefaultSpatialServices.cs


示例6: PointAt

 public override DbGeography PointAt(DbGeography geographyValue, int index)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例7: GetIsClosed

 public override bool? GetIsClosed(DbGeography geographyValue)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例8: SymmetricDifference

 public override DbGeography SymmetricDifference(DbGeography geographyValue, DbGeography otherGeography)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例9: Distance

 public override double Distance(DbGeography geographyValue, DbGeography otherGeography)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例10: Intersects

 public override bool Intersects(DbGeography geographyValue, DbGeography otherGeography)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例11: GetArea

 /// <summary>
 /// Returns a nullable double value that indicates the area of the given <see cref="DbGeography"/> value, which may be null if the value does not represent a surface.
 /// <param name="geographyValue">The geography value, which need not represent a surface.</param>
 /// <returns>The area of <paramref name="geographyValue"/>, if it represents a surface; otherwise <c>null</c>.</returns>
 /// </summary>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract double? GetArea(DbGeography geographyValue);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:8,代码来源:DbSpatialServices.cs


示例12: PointAt

 /// <summary>
 /// Returns a point element of the given <see cref="DbGeography"/> value, if it represents a linestring or linear ring.
 /// <param name="geographyValue">The geography value, which need not represent a linestring or linear ring.</param>
 /// <param name="index">The position within the geography value from which the element should be taken.</param>
 /// <returns>The point in <paramref name="geographyValue"/> at position <paramref name="index"/>, if it represents a linestring or linear ring; otherwise <c>null</c>.</returns>
 /// </summary>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract DbGeography PointAt(DbGeography geographyValue, int index);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:9,代码来源:DbSpatialServices.cs


示例13: GetPointCount

 /// <summary>
 /// Returns the number of points in the given <see cref="DbGeography"/> value, if it represents a linestring or linear ring.
 /// <param name="geographyValue">The geography value, which need not represent a linestring or linear ring.</param>
 /// <returns>The number of elements in <paramref name="geographyValue"/>, if it represents a linestring or linear ring; otherwise <c>null</c>.</returns>
 /// </summary>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract int? GetPointCount(DbGeography geographyValue);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:8,代码来源:DbSpatialServices.cs


示例14: GetIsClosed

 /// <summary>
 /// Returns a nullable Boolean value that whether the given <see cref="DbGeography"/> value is closed, which may be null if the value does not represent a curve.
 /// <param name="geographyValue">The geography value, which need not represent a curve.</param>
 /// <returns><c>true</c> if <paramref name="geographyValue"/> represents a closed curve; <c>false</c> if <paramref name="geographyValue"/> represents a curve that is not closed; otherwise <c>null</c>.</returns>
 /// </summary>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract bool? GetIsClosed(DbGeography geographyValue);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:8,代码来源:DbSpatialServices.cs


示例15: GetEndPoint

 /// <summary>
 /// Returns a <see cref="DbGeography"/> value that represents the end point of the given DbGeography value, which may be null if the value does not represent a curve.
 /// <param name="geographyValue">The geography value, which need not represent a curve.</param>
 /// <returns>The end point of <paramref name="geographyValue"/>, if it represents a curve; otherwise <c>null</c>.</returns>
 /// </summary>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract DbGeography GetEndPoint(DbGeography geographyValue);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:8,代码来源:DbSpatialServices.cs


示例16: AsGml

 public override string AsGml(DbGeography geographyValue)
 {
     geographyValue.CheckNull("geographyValue");
     ReadOnlySpatialValues expectedValue = CheckCompatible(geographyValue);
     return expectedValue.GML;
 }
开发者ID:uQr,项目名称:referencesource,代码行数:6,代码来源:DefaultSpatialServices.cs


示例17: Disjoint

 public override bool Disjoint(DbGeography geographyValue, DbGeography otherGeography)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例18: CreateWellKnownValue

 /// <summary>
 /// Creates an instance of <see cref="DbGeographyWellKnownValue"/> that represents the specified <see cref="DbGeography"/> value using one or both of the standard well known spatial formats.
 /// </summary>
 /// <param name="geographyValue"></param>
 /// <returns>The well known representation of <paramref name="geographyValue"/>, as a new <see cref="DbGeographyWellKnownValue"/>.</returns>
 /// <exception cref="ArgumentNullException"><paramref name="geographyValue"/> is null.</exception>
 /// <exception cref="ArgumentException"><paramref name="geographyValue"/> is not compatible with this spatial services implementation.</exception>
 public abstract DbGeographyWellKnownValue CreateWellKnownValue(DbGeography geographyValue);
开发者ID:krytht,项目名称:DotNetReferenceSource,代码行数:8,代码来源:DbSpatialServices.cs


示例19: Buffer

 public override DbGeography Buffer(DbGeography geographyValue, double distance)
 {
     throw SpatialServicesUnavailable();
 }
开发者ID:uQr,项目名称:referencesource,代码行数:4,代码来源:DefaultSpatialServices.cs


示例20: CreateWellKnownValue

 public override DbGeographyWellKnownValue CreateWellKnownValue(DbGeography geographyValue)
 {
     geographyValue.CheckNull("geographyValue");
     ReadOnlySpatialValues backingValue = CheckCompatible(geographyValue);
     return new DbGeographyWellKnownValue() { CoordinateSystemId = backingValue.CoordinateSystemId, WellKnownBinary = backingValue.CloneBinary(), WellKnownText = backingValue.Text };
 }
开发者ID:uQr,项目名称:referencesource,代码行数:6,代码来源:DefaultSpatialServices.cs



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Spatial.DbGeometry类代码示例发布时间:2022-05-26
下一篇:
C# Providers.ResourceType类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap