Skip to main content

Python library for working with the QUDT (Quantity, Unit, Dimension and Type) ontology.

Project description

Introduction

pyqudt is a Python library for working with QUDT units and convertions between them. It is based on jQUDT, a similar Java library.

QUDT is "Quantities, Units, Dimensions and Data Types in OWL and XML".

http://www.qudt.org

QUDT is a CC-SA-BY project by NASA Ames Research Center and TopQuadrant, Inc.

License of this Python library: 3-clause BSD ("New BSD License")

Installation

pip3 install pyqudt

Status

The package is relatively complete and test cases cover most code. Version 1.0.0 has been released.

Quick demo

Keep in mind, these conversions are purely derived from data in the QUDT ontology.

Source:

from qudt.quantity import Quantity
from qudt.units.concentration import ConcentrationUnit
from qudt.units.temperature import TemperatureUnit

obs = Quantity(0.1, ConcentrationUnit.MICROMOLAR)
print(f'{obs} = {obs.convert_to(ConcentrationUnit.NANOMOLAR)}')

temp = Quantity(20, TemperatureUnit.CELSIUS)
print(f'{temp} = {temp.convert_to(TemperatureUnit.KELVIN)}')

Output

0.1 μM = 100.00000000000001 nM
20 degC = 293.15 K

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

pyqudt-1.1.0.tar.gz (190.4 kB view hashes)

Uploaded Source

Built Distribution

pyqudt-1.1.0-py3-none-any.whl (218.4 kB view hashes)

Uploaded Python 3

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