Skip to main content

A SplineCloud client based on SciPy.

Project description

splinecloud-scipy

A Python client for SplineCloud API

The client library is based on SciPy and allows to load data and curves from SplineCloud into your code. Once loaded spline curves can be easily evaluated.

Installation

pip install splinecloud-scipy

Example of loading spline curve

SplineCloud curve
from splinecloud_scipy import load_spline

curve_id = 'spl_K5t56P5bormJ' # take curve ID from the 'API link' dropdown at SplineCloud
spline = load_spline(curve_id)

Evaluating spline curve for a range of x values

import numpy as np
import matplotlib.pyplot as plt

X = np.linspace(0, 20, 100)
Y = [spline.eval(x) for x in X]

plt.plot(X,Y)
plt.grid()
plt.show()

Spline curve

Load data fitted by spline and evaluate fit accuracy

columns, table = spline.load_data()
x_data, y_data = table.T

plt.plot(X,Y)
plt.plot(x_data, y_data, 'o', color="grey")
plt.grid()
plt.xlabel(columns[0])
plt.ylabel(columns[1])
plt.show()

Spline curve

RMSE = spline.fit_accuracy(table, method="RMSE")
print(RMSE)

0.011307453345329156

Example of loading data in your code

from splinecloud_scipy import load_subset
subset_id = 'sbt_nDO4XmmYqeGI' # subset id can be taken from the SplineCloud
columns, table = load_subset(subset_id)
>>> columns

['Throttle (%)',
 'Load Currency (A)',
 'Pull (g)',
 'Power (W)',
 'Efficiency (g/W)']
>>> table

array([[5.0000e-01, 6.7600e+00, 3.8500e+02, 1.0871e+02, 3.5420e+00],
       [6.0000e-01, 1.0200e+01, 4.9500e+02, 1.6249e+02, 3.0460e+00],
       [7.0000e-01, 1.3580e+01, 6.0600e+02, 2.1768e+02, 2.7840e+00],
       [8.0000e-01, 1.7390e+01, 6.8700e+02, 2.7140e+02, 2.5510e+00],
       [9.0000e-01, 2.1030e+01, 7.4700e+02, 3.2813e+02, 2.2770e+00],
       [1.0000e+00, 2.5060e+01, 8.0700e+02, 3.8555e+02, 2.0930e+00]])

These examples are available as notebooks in the project's 'examples' folder.

Important

This library supports BSpline geometry but does not support weighted BSplines (NURBS). If you adjust the weights of the curve control points use another client, that supports NURBS (a link will be provided here soon).

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

splinecloud_scipy-1.3.1.tar.gz (28.1 kB view details)

Uploaded Source

Built Distribution

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

splinecloud_scipy-1.3.1-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

Details for the file splinecloud_scipy-1.3.1.tar.gz.

File metadata

  • Download URL: splinecloud_scipy-1.3.1.tar.gz
  • Upload date:
  • Size: 28.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.5

File hashes

Hashes for splinecloud_scipy-1.3.1.tar.gz
Algorithm Hash digest
SHA256 43e5d4a7658f6a038c56b0df7a3e5bfc4846be8fa4eb6e6c827f71f12a4e58e1
MD5 e18c7cdb0fa790af4df05d5a8a027549
BLAKE2b-256 85b3758e8476327c2e8fb6f057485830d7e90a8336db9eb7bbdcc886972555ca

See more details on using hashes here.

File details

Details for the file splinecloud_scipy-1.3.1-py3-none-any.whl.

File metadata

File hashes

Hashes for splinecloud_scipy-1.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bffc253d97d0f86b45967f9070db02a2a63c354cfb7e0ea887687bdd66edfdd2
MD5 572c2fc29d8c330a58fa0cc68ee007a5
BLAKE2b-256 24d990e733136a00775f823079be2e2b03d91ff2c7c78268ceb1e3473f69bcb7

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