metnotimeseries2
TypeScript icon, indicating that this package has built-in type declarations

2.15.0 • Public • Published

current version coverage

Timeseries

This is a Beta release of the timeseries library. There is a chance for breaking changes with newer versions.

React component library with Timeseries components for the opengeoweb project. This library was generated with Nx.

Installation

npm install @opengeoweb/timeseries

Use

Timeseries can be used with or without a map component. In the latter case, there needs to be set a location variable set in the presets object.

import React from 'react';
import { lightTheme, ThemeWrapper } from '@opengeoweb/theme';
import { Types, TimeSeriesView } from "@opengeoweb/timeseries";

const plotPreset = {
  mapId: 'TimeseriesMap',
  location: {
    lat: 60,
    lon: 10,
  },
  plots: [
    {
      title: 'Plot 1',
      plotId: 'Plot_1',
    },
    {
      title: 'Plot 2',
      plotId: 'Plot_2',
    },
  ],
  services: [
    {
      parameters: [
        {
          plotId: 'Plot_1',
          unit: 'C',
          propertyName: 'Temperature',
          plotType: 'line',
        },
        {
          plotId: 'Plot_1',
          unit: 'C',
          propertyName: 'DewPoint',
          plotType: 'line',
        },
        {
          plotId: 'Plot_2',
          unit: '%',
          propertyName: 'Humidity',
          plotType: 'line',
        },
      ],
      serviceUrl: 'url to ogc api features service',
    },
  ],
};

export const App: React.FC = () => (
  <ThemeWrapper theme={lightTheme}>
   <TimeSeriesView
      plotPreset={plotPreset as Types.PlotPreset}
      selectedLocation={{ lat: 61.2, lon: 5.6 }}
    />
  </ThemeWrapper>
);

Running unit tests

Run nx test timeseries to execute the unit tests via Jest.

Preset locations

You can provide a list of preset locations in the format shown below.

[
  {
    "lat": 59.911491,
    "lon": 10.757933,
    "name": "Oslo"
  },
  {
    "lat": 52.377956,
    "lon": 4.89707,
    "name": "Amsterdam"
  }
]

Each name in the locations needs to be unique. If two locations have the same name you have to seperate them by giving some extra information, for example "Amsterdam1" and "Amsterdam2.

Dependencies (33)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i metnotimeseries2

    Weekly Downloads

    1

    Version

    2.15.0

    License

    Apache-2.0

    Unpacked Size

    192 kB

    Total Files

    60

    Last publish

    Collaborators

    • flaten