@@ -62,7 +62,16 @@ class NHD(AGRBase):
62
62
outfields : str or list, optional
63
63
Target field name(s), default to "*" i.e., all the fields.
64
64
crs : str, int, or pyproj.CRS, optional
65
- Target spatial reference, default to ``EPSG:4326``
65
+ Target spatial reference, default to ``EPSG:4326``.
66
+
67
+ Methods
68
+ -------
69
+ bygeom(geom, geo_crs=4326, sql_clause="", distance=None, return_m=False, return_geom=True)
70
+ Get features within a geometry that can be combined with a SQL where clause.
71
+ byids(field, fids, return_m=False, return_geom=True)
72
+ Get features by object IDs.
73
+ bysql(sql_clause, return_m=False, return_geom=True)
74
+ Get features using a valid SQL 92 WHERE clause.
66
75
"""
67
76
68
77
def __init__ (
@@ -597,7 +606,16 @@ class NHDPlusHR(AGRBase):
597
606
outfields : str or list, optional
598
607
Target field name(s), default to "*" i.e., all the fields.
599
608
crs : str, int, or pyproj.CRS, optional
600
- Target spatial reference, default to ``EPSG:4326``
609
+ Target spatial reference, default to ``EPSG:4326``.
610
+
611
+ Methods
612
+ -------
613
+ bygeom(geom, geo_crs=4326, sql_clause="", distance=None, return_m=False, return_geom=True)
614
+ Get features within a geometry that can be combined with a SQL where clause.
615
+ byids(field, fids, return_m=False, return_geom=True)
616
+ Get features by object IDs.
617
+ bysql(sql_clause, return_m=False, return_geom=True)
618
+ Get features using a valid SQL 92 WHERE clause.
601
619
"""
602
620
603
621
def __init__ (
0 commit comments