Questions tagged «length»

2
POSTGIS获取多边形的最大长度和平均宽度
我在postgis中有一个多边形类型表。 我需要自动计算多边形的最大长度: 第二个是平均宽度: 我现在怀疑是否可行,因为尽管在其他情况下我所有的多边形将几乎都是矩形的,但它确实可能是模棱两可的,并且几乎不可能区分宽度和高度。 让我们看看是否有人可以对此进行阐述。 问候,

2
了解度数长度公式中的术语?
诸如http://www.csgnetwork.com/degreelenllavcalc.html(查看页面源代码)之类的在线计算器使用以下公式获取每度的米。我通常了解每度的距离如何随纬度位置而变化,但是我不明白这将如何转换为以下内容。更具体地说,常数,每个公式中的3个“ cos”项以及“ lat”的系数(2、4、6、3和5)从何而来? // Set up "Constants" m1 = 111132.92; // latitude calculation term 1 m2 = -559.82; // latitude calculation term 2 m3 = 1.175; // latitude calculation term 3 m4 = -0.0023; // latitude calculation term 4 p1 = 111412.84; // longitude calculation term 1 p2 = -93.5; …


4
寻找一种Python方式来计算WKT线串的长度
我对以WGS84为单位计算线串长度并不满意。它让我想知道是否存在一种更方便的Python方式根据给定的SRID计算WKT线串的长度。 我想到的是: srid="WGS84" line="LINESTRING(3.0 4.0, 3.1 4.1)" print length(line, srid) 我正在寻找一个准确的答案,而不是sin\cos近似值。 有任何想法吗?
13 python  wkt  wgs84  srid  length 

2
形状长度属性的单位是多少?
我正在使用shapely非常简单地计算折线的长度: from shapely.geometry import LineString ... xy_list = [map(float,e) for e in xy_intm] line = LineString(xy_list) s = '%s,%s,%s' % (fr,to,line.length) 我的坐标在WGS84中。我似乎找不到有关shapely的length属性的任何信息。长度属性的单位是什么?有没有简单的方法可以转换成公里或米?
11 shapely  length  units 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.