Exemplo n.º 1
0
 def getValues(self,
               shapefile,
               attribute,
               getTuples='false',
               limitFeatures=None):
     return shapefile_value_handle.getValues(shapefile, attribute,
                                             getTuples, limitFeatures,
                                             self.wfsUrl)
Exemplo n.º 2
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)
Exemplo n.º 3
0
 def getValues(self, shapefile, attribute, getTuples='false', limitFeatures=None):
     return shapefile_value_handle.getValues(shapefile, attribute, getTuples, limitFeatures, self.wfsUrl)
Exemplo n.º 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)