We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9121a2 commit 4d90463Copy full SHA for 4d90463
pyproject.toml
@@ -44,6 +44,7 @@ dependencies = [
44
"hvplot",
45
"healpix",
46
"polars",
47
+ "pyproj"
48
]
49
# minimal dependencies end
50
uxarray/cross_sections/dataarray_accessor.py
@@ -80,6 +80,9 @@ def __call__(
80
>>> uxda.cross_section(lon=0, steps=200)
81
"""
82
83
+ if steps < 2:
84
+ raise ValueError("steps must be at least 2")
85
+
86
great_circle = start is not None or end is not None
87
const_lon = lon is not None
88
const_lat = lat is not None
0 commit comments