def test_load_strict(self): ncfile = os.path.join(os.path.dirname(__file__), 'dsg', 'profile', 'resources', 'om-single.nc') ncd = CFDataset.load(ncfile) assert omt.is_mine(ncd) is False with self.assertRaises(BaseException): omt.is_mine(ncd, strict=True) ncd.close()
def test_load_url(self): ncd = CFDataset.load('http://geoport.whoi.edu/thredds/dodsC/usgs/data2/emontgomery/stellwagen/CF-1.6/ARGO_MERCHANT/1211-AA.cdf') assert omt.is_mine(ncd) is True ncd.close()