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


Python LDSUtilities.checkHasChangesetIdentifier方法代码示例

本文整理汇总了Python中lds.LDSUtilities.LDSUtilities.checkHasChangesetIdentifier方法的典型用法代码示例。如果您正苦于以下问题:Python LDSUtilities.checkHasChangesetIdentifier方法的具体用法?Python LDSUtilities.checkHasChangesetIdentifier怎么用?Python LDSUtilities.checkHasChangesetIdentifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lds.LDSUtilities.LDSUtilities的用法示例。


在下文中一共展示了LDSUtilities.checkHasChangesetIdentifier方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: parseSourceConfig

# 需要导入模块: from lds.LDSUtilities import LDSUtilities [as 别名]
# 或者: from lds.LDSUtilities.LDSUtilities import checkHasChangesetIdentifier [as 别名]
    def parseSourceConfig(self,sc):
        '''If a user supplied their own LDS connection string, parse out relevant values'''

        self.source_str = sc
        #check for dates to set incr  
        ufd = LU.getDateStringFromURL('from',sc)
        if ufd:
            ufds = ufd.group(1)
            ldslog.warn("Using 'from:' date string from supplied URL "+str(ufds))
            self.fromdate = ufds
        utd = LU.getDateStringFromURL('to',sc)
        if utd:
            utds = utd.group(1)
            ldslog.warn("Using 'to:' date string from supplied URL "+str(utds))
            self.todate = utds
            
        #if doing incremental we also need to check changeset
        if (utd or ufd) and not LU.checkHasChangesetIdentifier(sc):
            raise InputMisconfigurationException("'changeset' identifier required for incremental LDS query")
        
        #all going well we can now get the layer string. This isn't optional so we just set it
        self.layer = LU.getLayerNameFromURL(sc)
        ldslog.warn('Using layer selection from supplied URL '+str(self.layer))  
开发者ID:josephramsay,项目名称:LDS,代码行数:25,代码来源:TransferProcessor.py


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