コード例 #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)
コード例 #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)
コード例 #3
0
ファイル: pyGDP.py プロジェクト: rsignell-usgs/pyGDP
 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)