GBIF dataset metrics
Get insights in GBIF-mediated datasets with charts and metrics.
Τι είναι το GBIF dataset metrics;
Το GBIF dataset metrics είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Datafable, και η κύρια λειτουργία του είναι "Get insights in GBIF-mediated datasets with charts and metrics.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GBIF dataset metrics
Λήψη αρχείων επέκτασης GBIF dataset metrics σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The Global Biodiversity Information Facility (GBIF) facilitates access to over 13,233 species occurrence datasets, collectively holding more than 570 million records. GBIF dataset pages are important access points to GBIF-mediated data (e.g. via DOIs) and currently show dataset metadata, a map of georeferenced occurrences, some basic statistics, and a paged table of download events. If a user wants to know more about the occurrences a dataset contains, he/she has to filter/page through a table of occurrences or download the data. Neither are convenient ways to get quick insights or assess the fitness for use. For the 2015 GBIF Ebbe Nielsen challenge, we have developed this Google Chrome extension as proof of concept for enhancing GBIF dataset pages with aggregated occurrence metrics. These metrics are visualized as stacked bar charts - showing the occurrence distribution for basis of record, coordinates, multimedia, and taxa matched with the GBIF backbone - as well as an interactive taxonomy partition, a sample of images (if available), and a downloads chart. Metrics that score particularly well are highlighted as achievements. Collectively these features not only inform the user what a dataset contains and if it is fit for use, but also help data publishers discover what aspects could be improved. Follow @Datafable on Twitter to be notified of new metrics or improvements.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GBIF dataset metrics |
ID | kcianglkepodpjdiebgidhdghoaeefba |
Επίσημο URL | https://chromewebstore.google.com/detail/gbif-dataset-metrics/kcianglkepodpjdiebgidhdghoaeefba |
Περιγραφή | Get insights in GBIF-mediated datasets with charts and metrics. |
Μέγεθος Αρχείου | 186 KB |
Αριθμός Εγκαταστάσεων | 97 |
Τρέχουσα Έκδοση | 0.2.1 |
Τελευταία Ενημέρωση | 2015-08-31 |
Ημερομηνία Δημοσίευσης | 2015-08-31 |
Αξιολόγηση | 5.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | Datafable |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/datafable/gbif-dataset-metrics |
Διεύθυνση URL της Σελίδας Βοήθειας | https://twitter.com/datafable |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GBIF dataset metrics", "version": "0.2.1", "description": "Get insights in GBIF-mediated datasets with charts and metrics.", "author": "Datafable", "homepage_url": "https:\/\/github.com\/datafable\/gbif-dataset-metrics", "icons": { "128": "img\/logo-128.png" }, "manifest_version": 2, "minimum_chrome_version": "20", "permissions": [ "http:\/\/*.gbif.org\/", "http:\/\/datafable.cartodb.com\/" ], "content_scripts": [ { "matches": [ "http:\/\/www.gbif.org\/dataset\/*" ], "exclude_matches": [ "http:\/\/www.gbif.org\/dataset", "http:\/\/www.gbif.org\/dataset\/", "http:\/\/www.gbif.org\/dataset\/search*", "http:\/\/www.gbif.org\/dataset\/*\/*", "http:\/\/www.gbif.org\/dataset\/*\/stats", "http:\/\/www.gbif.org\/dataset\/*\/activity" ], "css": [ "css\/bootstrap-custom.css", "css\/content.css" ], "js": [ "js\/jquery.min.js", "js\/bootstrap-custom.min.js", "js\/content.js", "js\/home.js" ] }, { "matches": [ "http:\/\/www.gbif.org\/dataset\/*\/stats" ], "css": [ "css\/bootstrap-custom.css", "css\/content.css" ], "js": [ "js\/jquery.min.js", "js\/bootstrap-custom.min.js", "js\/d3.min.js", "js\/content.js", "js\/stats.js" ] }, { "matches": [ "http:\/\/www.gbif.org\/dataset\/*\/activity" ], "css": [ "css\/c3.min.css", "css\/content.css" ], "js": [ "js\/d3.min.js", "js\/c3.min.js", "js\/content.js", "js\/activity.js" ] } ] } |