.. pyplaces documentation master file, created by
   sphinx-quickstart on Mon Apr 14 22:18:38 2025.
   You can adapt this file completely to your liking, but it should at least
   contain the root `toctree` directive.

pyplaces |release| documentation
################################
.. note::
   pyplaces is still in development, so if you run into any bugs please report them `here <https://github.com/tbanken/pyplaces/issues/>`_.

**Pyplaces** is a Python package that allows you to easily read places data from a known address, place, or just a bounding box. Currently, the two sources are
Overture Maps and Foursquare Open Places, and Open Street Maps Layercake. Overture Maps provides support to get data from multiple versions of the dataset for its many themes. 
Foursquare Open Places is primarily point of interest data which also supports fetching multiple versions of the dataset. OSM Layercake has buildings and highways data.

**The available datasets are: Foursquare Places and Categories; Overture Places, Addresses, Transportation, Buildings, and Base layers.**

Quickstart
**********

Installation
============

This package is available on PyPI as well as conda-forge: ::

   pip install pyplaces

I recommend that you use Anaconda for your Python environments. (I use miniforge and mamba)::

   conda install pyplaces

Basic Usage
===========

To access places, all you need is a place, address, or bounding box: ::

   from pyplaces.foursquare_open_places import foursquare_places_from_address

   hemenway_st_places = foursquare_places_from_address("204 Hemenway Street, Boston, MA")

Additionally, you can:

* :ref:`Select and filter on columns using SQL<filtering>`
* :ref:`Get data from past releases <versions>`
* :ref:`Inspect dataset schemas <schemas>`
* :ref:`Find relevant category names for retrieving places data <categories>`

Most of the functions follow the same type of workflow.

User Reference
**************

.. toctree::
   :maxdepth: 3
   
   usage

Examples
**************

.. toctree::
   :maxdepth: 3
   
   examples

License
*******

pyplaces is open source and licensed under the MIT license. 

pyplaces Usage
**************

This package uses a geocoder that uses OpenStreetMaps's geocoding service Nominatim. Please abide by their usage policy `here <https://operations.osmfoundation.org/policies/nominatim/>`_.

Future Support
**************

* more readable schema output
* more filter operators
* reduce time in the pyarrow parquet reading pipeline
* speed up model transactions- current implementation is inefficient
* support more geoparquet datasets
* basic network analysis for transportation data

