예제 #1
0
파일: osr.py 프로젝트: levnoah/bvr
 def __init__(self, *args, **kwargs):
     """__init__(OSRSpatialReferenceShadow self, char const * wkt) -> SpatialReference"""
     oldval = _osr.GetUseExceptions()
     if not oldval:
         _osr.UseExceptions()
     try:
         this = _osr.new_SpatialReference(*args, **kwargs)
     finally:
         if not oldval:
             _osr.DontUseExceptions()
     try:
         self.this.append(this)
     except __builtin__.Exception:
         self.this = this
예제 #2
0
def UseExceptions(*args):
    """UseExceptions()"""
    return _osr.UseExceptions(*args)