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
- Join parcel and building data based on spatial relationships
- Generate maps using different base layers:
- Mapbox satellite imagery
- NASA GIBS REST API
- NASA GIBS Web Map Service (WMS)
- Simple maps without satellite imagery
- Customize map output with various options
- Support for creating training datasets for building-to-parcel association models
Installation
You can install building2parcel-training using pip:
pip install building2parcel_trainingdata==0.2.4
For development, clone the repository and install in editable mode:
git clone https://github.com/yourusername/building2parcel-training.git
cd building2parcel-training
pip install -e .
Usage
Here's a basic example of how to use building2parcel-training:
from building2parcel_trainingdata import ParcelBuildingMapper
# Initialize the mapper with paths to your data
parcels_path = "path/to/your/parcels.shp"
buildings_path = "path/to/your/buildings.shp"
mapper = ParcelBuildingMapper(parcels_path, buildings_path)
# Set output paths
parcels_output_path = "output/parcels/"
buildings_output_path = "output/buildings/"
# Generate maps using Mapbox satellite imagery
mapper.generate_maps(parcels_output_path, buildings_output_path,
start_index=0, end_index=5, distance=200,
map_type='mapbox_satellite')
# Generate simple maps without satellite imagery
mapper.generate_maps(parcels_output_path, buildings_output_path,
start_index=5, end_index=10, distance=200,
map_type='simple')
# Generate maps using NASA GIBS REST API
mapper.generate_maps(parcels_output_path, buildings_output_path,
start_index=10, end_index=15, distance=200,
map_type='nasa_gibs_rest')
# Generate maps using NASA GIBS WMS
mapper.generate_maps(parcels_output_path, buildings_output_path,
start_index=15, end_index=20, distance=200,
map_type='nasa_gibs_wms')
## Requirements
- matplotlib
- cartopy
- geopandas
- python-dotenv
- Pillow
- numpy
- owslib
## 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 and NASA GIBS for providing satellite imagery services.
- This project was developed to support machine learning efforts in associating buildings with their corresponding parcels.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file building2parcel_trainingdata-0.2.5.tar.gz
.
File metadata
- Download URL: building2parcel_trainingdata-0.2.5.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa87a30aebcc173a42509ef095eb0dcab1c702be385542b9b3f0e392b62a7306 |
|
MD5 | f5fb02a3d037acf1307d67bb7ac09ef5 |
|
BLAKE2b-256 | fbc75631c2dcc36acbe40e73ace4f72a7bfbcd7f051587a9f34d63d8ec8bbe0c |
File details
Details for the file building2parcel_trainingdata-0.2.5-py3-none-any.whl
.
File metadata
- Download URL: building2parcel_trainingdata-0.2.5-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddf966a35816dda9b4f4671398c0e606045820f99441f7e4dd34ef26ec0f5fc3 |
|
MD5 | df09f3c672f942549ee4d9b65a9c1e08 |
|
BLAKE2b-256 | 356c6554cfbbbf0cba211b8aa0ebb88c6d66d4b76c6918a09a7f8d3ccf0745f1 |