def test_load(tmpdir, shared_datadir): with tmpdir.as_cwd(): topo = Topography( dem_type=Topography.DEFAULT["dem_type"], output_format=Topography.DEFAULT["output_format"], south=Topography.DEFAULT["south"], west=Topography.DEFAULT["west"], north=Topography.DEFAULT["north"], east=Topography.DEFAULT["east"], cache_dir=shared_datadir, ) topo.load() assert topo.da is not None
"""An example used in the README and documentation.""" import matplotlib.pyplot as plt from bmi_topography import Topography params = Topography.DEFAULT.copy() params["south"] = 39.93 params["north"] = 40.00 params["west"] = -105.33 params["east"] = -105.26 boulder = Topography(**params) boulder.fetch() boulder.load() boulder.da.plot() plt.show()