本文整理汇总了Python中django.contrib.gis.shortcuts.numpy.array方法的典型用法代码示例。如果您正苦于以下问题:Python numpy.array方法的具体用法?Python numpy.array怎么用?Python numpy.array使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.contrib.gis.shortcuts.numpy
的用法示例。
在下文中一共展示了numpy.array方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _listarr
# 需要导入模块: from django.contrib.gis.shortcuts import numpy [as 别名]
# 或者: from django.contrib.gis.shortcuts.numpy import array [as 别名]
def _listarr(self, func):
"""
Internal routine that returns a sequence (list) corresponding with
the given function. Will return a numpy array if possible.
"""
lst = [func(i) for i in range(len(self))]
if numpy:
return numpy.array(lst) # ARRRR!
else:
return lst
示例2: array
# 需要导入模块: from django.contrib.gis.shortcuts import numpy [as 别名]
# 或者: from django.contrib.gis.shortcuts.numpy import array [as 别名]
def array(self):
"Returns a numpy array for the LineString."
return self._listarr(self._cs.__getitem__)
示例3: x
# 需要导入模块: from django.contrib.gis.shortcuts import numpy [as 别名]
# 或者: from django.contrib.gis.shortcuts.numpy import array [as 别名]
def x(self):
"Returns a list or numpy array of the X variable."
return self._listarr(self._cs.getX)
示例4: y
# 需要导入模块: from django.contrib.gis.shortcuts import numpy [as 别名]
# 或者: from django.contrib.gis.shortcuts.numpy import array [as 别名]
def y(self):
"Returns a list or numpy array of the Y variable."
return self._listarr(self._cs.getY)
示例5: z
# 需要导入模块: from django.contrib.gis.shortcuts import numpy [as 别名]
# 或者: from django.contrib.gis.shortcuts.numpy import array [as 别名]
def z(self):
"Returns a list or numpy array of the Z variable."
if not self.hasz:
return None
else:
return self._listarr(self._cs.getZ)
# LinearRings are LineStrings used within Polygons.