当前位置: 首页>>代码示例>>Python>>正文


Python numpy.array方法代码示例

本文整理汇总了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 
开发者ID:ComputerSocietyUNB,项目名称:CodingDojo,代码行数:12,代码来源:linestring.py

示例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__) 
开发者ID:ComputerSocietyUNB,项目名称:CodingDojo,代码行数:5,代码来源:linestring.py

示例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) 
开发者ID:ComputerSocietyUNB,项目名称:CodingDojo,代码行数:5,代码来源:linestring.py

示例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) 
开发者ID:ComputerSocietyUNB,项目名称:CodingDojo,代码行数:5,代码来源:linestring.py

示例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. 
开发者ID:ComputerSocietyUNB,项目名称:CodingDojo,代码行数:11,代码来源:linestring.py


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