Skip to main content

A lightweight Python package for extracting data from Esri REST API endpoints.

Project description

ezesri

ezesri is a lightweight Python package for extracting data and metadata from Esri REST API endpoints. It provides a modular API and optional CLI for exporting feature layers and metadata to common formats, with robust handling of Esri-specific pagination and filtering.

Why ezesri?

Many tools exist for interacting with Esri services, but they often come with trade-offs:

  • pysridump/esridump: Simple and widely used, but not modular, lacks modern export formats, and is not actively maintained.
  • ArcGIS API for Python: A full-featured Esri SDK, but its heavy dependencies make it overkill for simple data extraction.
  • ogr2ogr (GDAL): Extremely powerful, but can be complex to use and is not a native Python library.

Key features

  • Multiple export formats: Export to GeoJSON, Esri shapefile, GeoPackage, CSV, geodatabase.
    • Advanced: GeoParquet (spatial), Parquet (tabular), NDJSON (streaming)
  • Simple extraction: Automatically handles Esri's pagination.
  • Filtering: Filter data by bounding box, geometry, or attribute query.
  • Bulk exports: Download all layers from a MapServer or FeatureServer.
  • CLI: An easy-to-use command-line interface for all features.
  • Human-readable metadata: Fetch a clean summary of a layer's metadata.

Installation

pip install ezesri

Quickstart

Here's a simple example of how to use ezesri as a library to extract data and metadata.

import ezesri

# URL for Riverside County, CA parcels layer
url = "https://gis.countyofriverside.us/arcgis/rest/services/mmc/mmc_mSrvc_v12_prod/MapServer/8"

# Get layer metadata
metadata = ezesri.get_metadata(url)
print("## Layer Metadata Summary")
print(ezesri.summarize_metadata(metadata))

# Extract layer to a GeoDataFrame
print("\n## Extracting Layer to GeoDataFrame")
gdf = ezesri.extract_layer(url, where="APN LIKE '750%'")
print(f"Successfully extracted {len(gdf)} features.")
print(gdf.head())

Usage

Documentation

You can read the full documentation on Read the Docs: https://ezesri.readthedocs.io/

Python library

ezesri is designed to be used as a library for integration with your Python scripts.

  • get_metadata(url): Fetches the raw metadata for a layer.
  • summarize_metadata(metadata): Returns a human-readable summary of the metadata.
  • extract_layer(url, where, bbox, geometry, out_sr): Extracts a layer to a GeoDataFrame, with optional filters.
  • bulk_fetch(service_url, output_dir, file_format): Downloads all layers from a MapServer or FeatureServer.

Command-line interface (CLI)

ezesri also provides a command-line tool for quick data extraction.

Fetch metadata

Get a clean, human-readable summary of a layer's metadata.

ezesri metadata "https://gis.countyofriverside.us/arcgis/rest/services/mmc/mmc_mSrvc_v12_prod/MapServer/8"

To get the raw JSON output, use the --json flag:

ezesri metadata <YOUR_ESRI_LAYER_URL> --json

Fetch layer data

You can fetch a layer and save it to a file in various formats.

  • GeoJSON

    ezesri fetch <URL> --format geojson --out output.geojson
    
  • Shapefile

    ezesri fetch <URL> --format shapefile --out output.shp
    
  • GeoPackage

    ezesri fetch <URL> --format gpkg --out output.gpkg
    
  • File Geodatabase

    ezesri fetch <URL> --format gdb --out output.gdb
    
  • GeoParquet (spatial)

    ezesri fetch <URL> --format geoparquet --out output.parquet
    
  • Parquet (tabular)

    ezesri fetch <URL> --format parquet --out output.parquet
    
  • NDJSON (streaming)

    # to stdout
    ezesri fetch <URL> --format ndjson
    # to file
    ezesri fetch <URL> --format ndjson --out output.ndjson
    

You can also filter by a bounding box (in WGS84 coordinates) or an attribute query:

ezesri fetch <URL> --bbox <xmin,ymin,xmax,ymax> --out <FILE>
ezesri fetch <URL> --where "STATUS = 'ACTIVE'" --out <FILE>

Bulk-fetch all layers from a service

You can discover and export all layers from a MapServer or FeatureServer to a specified directory.

ezesri bulk-fetch <YOUR_ESRI_SERVICE_URL> <YOUR_OUTPUT_DIRECTORY> --format gdb

Or use GeoPackage as an open, broadly supported alternative:

ezesri bulk-fetch <YOUR_ESRI_SERVICE_URL> <YOUR_OUTPUT_DIRECTORY> --format gpkg

You can also write per-layer files in these formats:

ezesri bulk-fetch <YOUR_ESRI_SERVICE_URL> <YOUR_OUTPUT_DIRECTORY> --format geoparquet
ezesri bulk-fetch <YOUR_ESRI_SERVICE_URL> <YOUR_OUTPUT_DIRECTORY> --format parquet
ezesri bulk-fetch <YOUR_ESRI_SERVICE_URL> <YOUR_OUTPUT_DIRECTORY> --format ndjson

Speed and politeness options:

# use 4 parallel workers
ezesri bulk-fetch <SERVICE_URL> <OUT_DIR> --format geoparquet --workers 4
# apply a global rate limit of 2 requests/second across all workers
ezesri bulk-fetch <SERVICE_URL> <OUT_DIR> --format geoparquet --workers 4 --rate 2

Examples

For a detailed, real-world example of using ezesri to acquire, process, and visualize data, see the scripts in the examples/ directory. These examples demonstrate how to download data, merge it, and create a map.

To run these examples, you will first need to install the required dependencies:

pip install geopandas matplotlib

Then, you can run the scripts directly:

python examples/00_palm_springs_fetch.py
python examples/01_palm_springs_pools_map.py

Testing

This project uses pytest for unit testing. For details on how to run the test suite, please see the testing guide.

Contributing

Contributions are welcome! Please see the contributing guide for more information.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ezesri-0.3.2.tar.gz (16.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ezesri-0.3.2-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file ezesri-0.3.2.tar.gz.

File metadata

  • Download URL: ezesri-0.3.2.tar.gz
  • Upload date:
  • Size: 16.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for ezesri-0.3.2.tar.gz
Algorithm Hash digest
SHA256 9ef428710359832d8d1c5b3fbe0704c17104bd41b65a193049843bc0cd4e4da1
MD5 1c38daa3f27478f3112a04977c9d9095
BLAKE2b-256 6205b8f7dc594ea350a745178c3d1cba026822d03053c36875dfa7ac4ba4f8f0

See more details on using hashes here.

File details

Details for the file ezesri-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: ezesri-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.18

File hashes

Hashes for ezesri-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 4b24afc2ce67386835ae473c515de7fbdbb6d5e33a2633cbae0505df7dc57fec
MD5 b501c469ef62bfccf5b2f0da4ac1c2c3
BLAKE2b-256 74e51cb8aabb84dc28c5d47aca4707a1b343b3114ec95ea072890b48ce6649be

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page