Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

2022-07-11

...

  • Edit a dashboard from UI

    • We added a feature to edit the JSON dashboard definition directly from the UI.

    • Image RemovedImage Added
    • Image RemovedImage Added

  • Redesigned visualization/granularity component

    • We have simplified the design of component for selecting visualization and granularity. User can now see all available visualizations and granularities.

Shell Release

We have released a new version 1.5.5 of CLI tool CleverMaps Shell that changed the directory structure of dumps.

We made these changes to allow the CleverMaps Shell to be used with GIT to version metadata.

1.5.5

  • Changed dump structure. Removed dumpIds. Now there is only one dump per project.

  • Changed dumpProject --force. It now overwrites existing dump.

  • Added dumpProject --ignoreFailedDatasets. It skips failed datasets dumps.

  • Share metadata objects are no longer dumped.

  • Removed --directory from dumpProject.

  • openProject now opens dump if it exists.

  • Removed --dump from openDump.

  • Removed --directory from openDump.

  • dumpCsv now doesn't create new dump.

  • Added dumpCsv --force. It overwrites current dataset data dump.

  • importProject --dump is now boolean option (previously required dumpId).

  • importProject --dump now also requires --project.

  • importDatabase now doesn't create new dump.

  • Removed listDumps command.

Bugfixes

  • Fix of missing geo search for markers

  • Increased maximum number of attribute values in MultiSelect filter to 20000

  • Fix duplicate marker icon when selecting a marker from the map.

...

  • MetricValuesDistribution endpoint does not handle properly metric references.

    • Example: offline_turnover_ratio_metric that reuses two already defined metrics:

    • Code Block
      {
          "name": "offline_turnover_ratio_metric",
          "type": "metric",
          "content": {
              "type": "function_divide",
              "content": [
                  {
                      "type": "metric",
                      "metric": "/rest/projects/$projectId/md/metrics?name=offline_turnover_metric"
                  },
                  {
                      "type": "metric",
                      "metric": "/rest/projects/$projectId/md/metrics?name=turnover_metric"
                  }
              ]
          }
      }
  • Improved DWH Query engine to process multiple nested inAttribute filters.

Shell Release

We have released a new version 1.5.2 of CLI tool CleverMaps Shell.

...

  • We have improved user interaction with Data model schema. You can use it in similar way as you use our map – mouse scroll works for zooming in or out and dragging can be used to pan the schema.

  • Relations between datasets in the schema are interactive. In case you select or hover some dataset, all related links and datasets remain active, others are muted. It helps you find the relations in large data models.

  • There is a new block Data Load History on the detail of dataset. It is available for administrators of the project. This gives you quick summary of all data modifications in the project. You can see when it happened and who made the change.

    Date of load, time, type (Incremental or Full), count of records added, total count of records, user (details on hover)

  • You can preview the content of your datasets in with Data preview feature. You can enter this preview in dataset detail in the bottom of the Overview block.

    It is possible to sort the records by any column, filter records by property value with equality operator or easily go to linked datasets by clicking on blue key icon. It is useful for checking that your data load was successful or checking the geometry columns if you don’t see your data in the map.

...