npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@opengeoweb/data-explorer

v14.3.0

Published

MeteoGate Data Explorer is an UI dialog for searching and visualizing data from WIS2 Global Discovery Catalogue. The dialog can be opened from the Layer Select by clicking the "MeteoGate" button on the left side of the dialog. It provides dataset search a

Downloads

320

Readme

Data Explorer

MeteoGate Data Explorer is an UI dialog for searching and visualizing data from WIS2 Global Discovery Catalogue. The dialog can be opened from the Layer Select by clicking the "MeteoGate" button on the left side of the dialog. It provides dataset search and filtering functionality. WMS datasets can be added as a layer and visualized on the map.

This library was generated with Nx.

Configuration

Data Explorer has its own configuration file data-explorerPresets.json.

The file that is used for Data Explorer configuration has to be defined with the property GW_DATA_EXPLORER_CONFIGURATION_FILENAME in GeoWeb configuration. See the example in config.example.json If Data Explorer configuration filename is not defined in config.json, the "MeteoGate" button will not be displayed in the Layer Select.

To display the "MeteoGate" button in the main map view controls on the left side, the config.json property GW_DATA_EXPLORER_BUTTON_ON_MAP should be set as "true".

The Data Explorer configuration file contains the following properties:

discoveryCatalogueURL

This is the path to the WIS2 Global Discovery Catalogue metadata collection. For example, the DWD instance is at https://wis2.dwd.de/gdc/collections/wis2-discovery-metadata

It is a OGC Records API, where each dataset is a GeoJSON Feature. You can find more information about Global Discovery Catalogue at https://training.wis2box.wis.wmo.int/practical-sessions/discovering-datasets-from-wis2-gdc/

concepts

The "concepts" are a way to categorize datasets in the discovery catalogue. A dataset can have multiple "themes" which contain different concepts.

Themes are listed in the dataset properties, for example:

"themes":[
    {
        "concepts":[
            {
                "id":"Radar"
            },
            {
                "id":"Surface"
            },
        ],
        "scheme":"https://canada.multites.net/cst/EAEAD1E6-7DD2-4997-BE7F-40BFB1CBE8A2/CST20230912.rdf"
    }
]

In the Data Explorer configuration, the concepts list defines the concept filters which are displayed as chips below the search field. Each one has id which corresponds to the id in the GeoJSON properties, and label is what will be displayed in the UI.

  "concepts": [
    {
      "id": "Surface",
      "label": "Observation"
    },
    {
      "id": "Radar",
      "label": "Radar"
    },
  ],

queryables

Properties in the discovery catalogue datasets can be used for filtering through the API. The queryables configuration property defines the fields that will be displayed as filters on the left side of the Data Explorer dialog. Each queryable has an id that corresponds to the nested property path in the dataset GeoJSON, and a label, that will be displayed in the UI.

  "queryables": [
    {
      "id": "contacts.addresses.country",
      "label": "Country"
    },
    {
      "id": "formats",
      "label": "Formats"
    },
    {
      "id": "rights",
      "label": "Licenses"
    }
  ]

areaFilterTileURL

Area filter uses OpenStreetMap tiles (https://tile.openstreetmap.org/). The tile server URL can be configured with this property.

areaFilterTileLicense

OpenStreetMap tile API requires showing an attribution text (https://operations.osmfoundation.org/policies/tiles/).

The text is displayed in the bottom left corner of the map.

Running unit tests

Run nx test data-explorer to execute the unit tests via Jest.

Running storybook

Run nx run data-explorer:storybook to run the storybooks.