Skip to main content

Results extension for OWI Metadatabase SDK

Project description

OWI-metadatabase Results Extension

Results extension for OWI Metadatabase SDK

version python versions license pytest lint issues Documentation

Overview

This package extends owi-metadatabase under the owi.metadatabase.* namespace so it behaves like the existing extension packages.

Installation

Install as extension package (owi-metadatabase-results)

pip install owi-metadatabase-results

Using uv:

uv pip install owi-metadatabase-results

Install from core package extra (owi-metadatabase[results])

If you prefer installing from the base package extras:

pip install "owi-metadatabase[results]"

Using uv:

uv pip install "owi-metadatabase[results]"

Quick Start

from owi.metadatabase.results import ResultsAPI

api = ResultsAPI(token="your-api-token")
print(api.ping())

Architecture At A Glance

The diagram below shows how the package is structured, which parts are core, and how data moves from domain payloads to backend persistence and plots.

flowchart TD
  User[User Code / Notebooks / Scripts] --> Service[services.py\nResultsService\nHigh-level facade]
  User --> API[io.py\nResultsAPI\nLow-level HTTP client]

  Service --> Repo[services.py\nApiResultsRepository]
  Repo --> API

  Service --> Registry[registry.py\nAnalysis registry]
  Registry --> BaseAnalysis[analyses/base.py\nShared analysis contract]

  BaseAnalysis --> Freq[analyses/lifetime_design_frequencies.py\nComparison + location + geo frequencies]
  BaseAnalysis --> Verify[analyses/lifetime_design_verification.py\nTime-series verification]
  BaseAnalysis --> Hist[analyses/wind_speed_histogram.py\nHistogram analysis]
  BaseAnalysis --> CEIT[ceit.py\nCEIT import + merge + plot helpers]

  Freq --> Models[models.py\nAnalysisDefinition\nResultSeries\nResultVector\nResultQuery\nPlotRequest/Response]
  Verify --> Models
  Hist --> Models
  CEIT --> Models

  Models --> Serializers[serializers.py\nDjango payload mapping]
  Serializers --> API

  Service --> Plotting[plotting.py\nGeneric histogram/time-series rendering]
  Freq --> FrequencyPlots[frequency_plots.py\nSpecialized comparison/location/geo plots]
  Plotting --> PlotResponse[PlotResponse\nHTML + notebook widget + chart options]
  FrequencyPlots --> PlotResponse

  Service -. location metadata for geo plots .-> Locations[owi.metadatabase.locations.io\nLocationsAPI]
  Locations -. coordinates and titles .-> FrequencyPlots
  Locations -. asset/site identifiers .-> Repo

  Geometry[owi.metadatabase.geometry\nOWT / subassembly context] -. joined by site/location identifiers .-> User

  classDef core fill:#d9f2e6,stroke:#2c7a4b,color:#143d28;
  classDef domain fill:#e8eefc,stroke:#3559b7,color:#1e2f63;
  classDef infra fill:#f7ead9,stroke:#b7791f,color:#5a3d0c;
  classDef external fill:#f3f4f6,stroke:#6b7280,color:#374151;

  class Service,Repo,Registry,BaseAnalysis,Plotting,FrequencyPlots core;
  class Freq,Verify,Hist,CEIT,Models,PlotResponse,Serializers domain;
  class API infra;
  class User,Locations,Geometry external;

Data Model At A Glance

The results extension stores analysis metadata separately from persisted result rows. Result rows link back to site and location metadata, while geometry stays adjacent and is usually joined through location-aware identifiers.

erDiagram
  ANALYSIS {
    int id PK
    string name
    string source_type
    string source
    string description
    json additional_data
  }

  RESULT {
    int id PK
    int analysis_id FK
    int site FK
    int location FK
    string short_description
    string description
    json additional_data
    json related_object
    string name_col1
    string units_col1
    float_array value_col1
    string name_col2
    string units_col2
    float_array value_col2
    string name_col3
    string units_col3
    float_array value_col3
  }

  PROJECTSITE {
    int id PK
    string title
  }

  ASSETLOCATION {
    int id PK
    int projectsite_id FK
    string title
    float northing
    float easting
  }

  OWT {
    int id PK
    int assetlocation_id FK
    string title
  }

  SUBASSEMBLY {
    int id PK
    int owt_id FK
    string type
  }

  ANALYSIS ||--o{ RESULT : owns
  PROJECTSITE ||--o{ ASSETLOCATION : contains
  PROJECTSITE ||--o{ RESULT : site_scope
  ASSETLOCATION ||--o{ RESULT : location_scope
  ASSETLOCATION ||--|| OWT : anchors
  OWT ||--o{ SUBASSEMBLY : contains

Interpretation:

  • ANALYSIS stores one logical analysis definition, such as LifetimeDesignVerification or WindSpeedHistogram.
  • RESULT stores one persisted series row with 2 to 3 aligned numeric vectors plus JSON metadata.
  • PROJECTSITE and ASSETLOCATION come from the locations package and provide the site and asset identifiers used by result queries.
  • northing and easting on ASSETLOCATION are what make geo-oriented result plots possible.
  • Geometry objects like OWT and SUBASSEMBLY are not owned by the results package, but they are the physical context users typically join onto result rows through location/site relationships.

Development

uv sync --dev
uv run invoke test
uv run invoke qa
uv run invoke docs.build

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

owi_metadatabase_results-0.1.1.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

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

owi_metadatabase_results-0.1.1-py3-none-any.whl (68.7 kB view details)

Uploaded Python 3

File details

Details for the file owi_metadatabase_results-0.1.1.tar.gz.

File metadata

  • Download URL: owi_metadatabase_results-0.1.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for owi_metadatabase_results-0.1.1.tar.gz
Algorithm Hash digest
SHA256 ac6e07fd06fd81bd3b43d7e326909804c29d705a0c60af163ba511b4ed3d0c2f
MD5 e7f84743fc02416a12a4a38a4716632c
BLAKE2b-256 deb12e157fc4b1a9fabb46b347e75f4fb2cddc7eeb45d16a60a41880dd0cf678

See more details on using hashes here.

Provenance

The following attestation bundles were made for owi_metadatabase_results-0.1.1.tar.gz:

Publisher: publish.yml on OWI-Lab/owi-metadatabase-results-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file owi_metadatabase_results-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for owi_metadatabase_results-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6f90d6a00b1f07d6c8facf92a825f5f5aec8c6948018ae52817465a77278ec5f
MD5 42a06b53dd9a514a5e165239bb8767af
BLAKE2b-256 9bf769fb22a0bb65b56154f4ad83458113cc0014baafd7a864dec3e2d64d8519

See more details on using hashes here.

Provenance

The following attestation bundles were made for owi_metadatabase_results-0.1.1-py3-none-any.whl:

Publisher: publish.yml on OWI-Lab/owi-metadatabase-results-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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