Skip to main content

A package for mapping parcels and buildings using various data sources

Project description

building2parcel-training

building2parcel-training is a Python package for mapping parcels and buildings, designed to assist in training models to associate buildings with their corresponding parcels. It provides functionality for loading, processing, and visualizing geospatial data for parcels and buildings.

Features

  • Load and process parcel and building data from shapefiles or geoJSON
  • Optional loading and processing of block data
  • Join parcel and building data based on spatial relationships
  • Split buildings that span multiple parcels
  • Generate maps using Mapbox satellite imagery
  • Customize map output with various options
  • Generate dataset specifications and statistics
  • Support for creating training datasets for building-to-parcel association models

Installation

You can install building2parcel-training using pip:

pip install building2parcel-trainingdata

For development, clone the repository and install in editable mode:

git clone https://github.com/scalable-design-participation-lab/building2parcel-trainingdata.git
cd building2parcel-trainingdata
pip install -e .

Configuration

Before using the package, you need to set up your environment:

  1. Create a .env file in the main folder (it will be a hidden file on Unix-based systems).
  2. In the .env file, add the following lines:
MAPBOX_ACCESS_TOKEN="YOUR-API-KEY"
LOCAL_PATH="YOUR-DROPBOX-PATH/Million Neighborhoods/"

Replace YOUR-API-KEY with your Mapbox Access Token for the Mapbox Web API, and YOUR-DROPBOX-PATH with the path to your Dropbox folder containing the parcel and building data (NYC data is available on our Dropbox).

Usage

Here's a basic example of how to use building2parcel-training:

from building2parcel_trainingdata import Building2ParcelMapper

# Initialize the mapper with paths to your data
parcels_path = "path/to/your/parcels.shp"
buildings_path = "path/to/your/buildings.shp"
blocks_path = "path/to/your/blocks.shp"  # Optional

mapper = Building2ParcelMapper(parcels_path, buildings_path, blocks_path)

# Split buildings (optional)
mapper.split_buildings(threshold_high=0.75, threshold_low=0.15)

# Assign colors to parcels and buildings
mapper.assign_colors()

# Generate dataset specifications and statistics
mapper.generate_dataset_specs(output_folder='./dataset_specs')

# Generate images
parcel_images_directory = "./parcels_output/"
buildings_images_directory = "./buildings_output/"
number_of_images = 100
mapper.generate_images(parcel_images_directory, buildings_images_directory, number_of_images)

Command-line Usage

The package also provides a command-line interface:

python -m building2parcel_trainingdata --buildings_path path/to/buildings.shp --parcels_path path/to/parcels.shp --blocks_path path/to/blocks.shp --split_buildings True --threshold_high 0.75 --threshold_low 0.15 --parcel_images_directory ./parcels_output/ --buildings_images_directory ./buildings_output/ --number_of_images 100

Requirements

  • matplotlib
  • cartopy
  • geopandas
  • python-dotenv
  • Pillow
  • numpy
  • owslib
  • tqdm
  • pandas

Generating Documentation

To generate documentation for this package, we use pdoc. Follow these steps:

  1. Install pdoc if you haven't already:

    pip install pdoc
    
  2. Navigate to the directory containing your building2parcel_trainingdata.py file.

  3. Run the following command to generate HTML documentation:

    pdoc -o ./docs building2parcel_trainingdata.py
    

    This will create a docs directory and generate HTML documentation inside it.

  4. To view the documentation, open ./docs/building2parcel_trainingdata.html in a web browser.

For more comprehensive documentation:

  • Ensure all functions and classes have proper docstrings.

  • Add a module-level docstring at the top of building2parcel_trainingdata.py.

  • To generate documentation for the entire package (if you have multiple Python files):

    pdoc -o ./docs building2parcel_trainingdata
    
  • To generate documentation in Markdown format:

    pdoc -o ./docs --format md building2parcel_trainingdata.py
    

Remember to regenerate the documentation after making significant changes to your code or docstrings.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Thanks to Mapbox for providing satellite imagery services.
  • This project was developed to support machine learning efforts in associating buildings with their corresponding parcels.

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

building2parcel_trainingdata-0.3.2.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

File details

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

File metadata

File hashes

Hashes for building2parcel_trainingdata-0.3.2.tar.gz
Algorithm Hash digest
SHA256 8ca32ce3d57a381c154e041c4c85d02675863d952fda35a976a44b283d36d939
MD5 944896cc57f3554186b8faa7d331dde6
BLAKE2b-256 b3edd03ba3f8261001598df33543f56977f9a1d9e5b35a908f717cb54be706ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for building2parcel_trainingdata-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 51f99c2366c936e01210862b963c5920fcdfe78932944bc7f1a654ac614ad856
MD5 2e74c41401993161c148342ed72b4b51
BLAKE2b-256 a7e44988e8859c76e7be0d290fe87981805ed8bd66c9cbcf39d8fa38997e6e17

See more details on using hashes here.

Supported by

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