ArcGISLoader#
- class langchain_community.document_loaders.arcgis_loader.ArcGISLoader(layer: str | arcgis.features.FeatureLayer, gis: arcgis.gis.GIS | None = None, where: str = '1=1', out_fields: List[str] | str | None = None, return_geometry: bool = False, result_record_count: int | None = None, lyr_desc: str | None = None, **kwargs: Any)[source]#
Load records from an ArcGIS FeatureLayer.
Methods
__init__
(layer[,Β gis,Β where,Β out_fields,Β ...])A lazy loader for Documents.
aload
()Load data into Document objects.
Lazy load records from FeatureLayer.
load
()Load data into Document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- Parameters:
layer (Union[str, arcgis.features.FeatureLayer]) β
gis (Optional[arcgis.gis.GIS]) β
where (str) β
out_fields (Optional[Union[List[str], str]]) β
return_geometry (bool) β
result_record_count (Optional[int]) β
lyr_desc (Optional[str]) β
kwargs (Any) β
- __init__(layer: str | arcgis.features.FeatureLayer, gis: arcgis.gis.GIS | None = None, where: str = '1=1', out_fields: List[str] | str | None = None, return_geometry: bool = False, result_record_count: int | None = None, lyr_desc: str | None = None, **kwargs: Any)[source]#
- Parameters:
layer (Union[str, arcgis.features.FeatureLayer]) β
gis (Optional[arcgis.gis.GIS]) β
where (str) β
out_fields (Optional[Union[List[str], str]]) β
return_geometry (bool) β
result_record_count (Optional[int]) β
lyr_desc (Optional[str]) β
kwargs (Any) β
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- lazy_load() Iterator[Document] [source]#
Lazy load records from FeatureLayer.
- Return type:
Iterator[Document]
- load_and_split(text_splitter: TextSplitter | None = None) List[Document] #
Load Documents and split into chunks. Chunks are returned as Documents.
Do not override this method. It should be considered to be deprecated!
- Parameters:
text_splitter (Optional[TextSplitter]) β TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.
- Returns:
List of Documents.
- Return type:
List[Document]
Examples using ArcGISLoader