示例#1
0
文件: pyGDP.py 项目: ocefpaf/pyGDP
 def getValues(self,
               shapefile,
               attribute,
               getTuples='false',
               limitFeatures=None):
     return shapefile_value_handle.getValues(shapefile, attribute,
                                             getTuples, limitFeatures,
                                             self.wfsUrl)
def getTuples(shapefile, attribute, WFS_URL):
    """
    Will return the dictionary tuples only.
    """
    return shapefile_value_handle.getValues(shapefile,
                                            attribute,
                                            getTuples='only',
                                            limitFeatures=None,
                                            WFS_URL=WFS_URL)
示例#3
0
 def getValues(self, shapefile, attribute, getTuples='false', limitFeatures=None):
     return shapefile_value_handle.getValues(shapefile, attribute, getTuples, limitFeatures, self.wfsUrl)
示例#4
0
def getTuples(shapefile, attribute, WFS_URL):
    """
    Will return the dictionary tuples only.
    """
    return shapefile_value_handle.getValues(shapefile, attribute, getTuples='only', limitFeatures=None, WFS_URL=WFS_URL)