Skip to main content

A function for calculating a buffer around a polyline, defining the contours of a line with variable thickness.

Project description

Variable polyline buffer

Description

variable_polyline_buffer is a Python library for calculating a buffer around a polyline, defining the contours of a line with variable thickness. This function supports various applications in geographical information systems, computer graphics, and spatial analysis where dynamic line thickness is required.

Installation

To install this package, use pip:

pip install variable_polyline_buffer

Usage

Here is a simple example of how to use Variable-Polyline-Buffer:

from variable_polyline_buffer import generate_polyline_buffer
import matplotlib.pyplot as plt

# Example data: coordinates of polyline points and distance for each segment
points = [(0, 0), (2, 0.5), (3, -0.5), (4, 1)]
distances = [1, 0.5, 0.2]  # Thickness of the individual segments

# Generate contours
left_contour, right_contour = generate_polyline_buffer(points, distances)

# Plot the contours
plt.plot([p[0] for p in points], [p[1] for p in points], "C0")
plt.plot([p[0] for p in left_contour], [p[1] for p in left_contour], "k--")
plt.plot([p[0] for p in right_contour], [p[1] for p in right_contour], "k--")
plt.axis("equal")

Output image

Replace points and dists with your polyline data and corresponding thicknesses.

Via supplying tuples as dists, one can also generate different thicknesses on the curve's two sides:

points = [(0, 0), (2, 0.5), (3, -0.5), (4, 1)]
distances = [(0.1, 1), (0.1, 0.5), 0.2]

Output image

By supplying False as distance, one can taper between segments with different widths:

points = [(0, 0), (1, 0), (2, 0), (3, 0)]
distances = [(0.5, 0), (False, 0), (0.2, 0)]

Output image

Requirements

Variable-Polyline-Buffer requires the following Python libraries:

  • NumPy

License

This project is licensed under the MIT License.

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

variable_polyline_buffer-0.1.7.tar.gz (4.1 kB view details)

Uploaded Source

Built Distribution

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

variable_polyline_buffer-0.1.7-py3-none-any.whl (4.6 kB view details)

Uploaded Python 3

File details

Details for the file variable_polyline_buffer-0.1.7.tar.gz.

File metadata

File hashes

Hashes for variable_polyline_buffer-0.1.7.tar.gz
Algorithm Hash digest
SHA256 3932cc7cba618716b815579c7a5aee103be4acb765cae3470d586e778cadc704
MD5 1aff1961ed97703955951d155566a31c
BLAKE2b-256 a36c36db03ff74820489ba09bac38ae7328d88f5c35c150df3519bf9c5401ec6

See more details on using hashes here.

File details

Details for the file variable_polyline_buffer-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for variable_polyline_buffer-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 652d38b4f4c01cf81306d88c98586fbf370946cebfb7eb9054528760590c1f0c
MD5 42040f4ffedb4c72c105bcac86136194
BLAKE2b-256 8085049fc7e6197c8caf4bdc2aba215105daf251dee71065698765932a41667c

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