File size: 896 Bytes
7677e00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# ArcGIS

>[ArcGIS](https://www.esri.com/en-us/arcgis/about-arcgis/overview) is a family of client, 
> server and online geographic information system software developed and maintained by [Esri](https://www.esri.com/).
> 
>`ArcGISLoader` uses the `arcgis` package.
> `arcgis` is a Python library for the vector and raster analysis, geocoding, map making, 
> routing and directions. It administers, organizes and manages users, 
> groups and information items in your GIS.
>It enables access to ready-to-use maps and curated geographic data from `Esri` 
> and other authoritative sources, and works with your own data as well. 

## Installation and Setup

We have to install the `arcgis` package.

```bash
pip install -U arcgis
```

## Document Loader

See a [usage example](/docs/integrations/document_loaders/arcgis).

```python
from langchain_community.document_loaders import ArcGISLoader
```