{"id":46700,"date":"2022-04-20T00:00:00","date_gmt":"2022-04-20T07:00:00","guid":{"rendered":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/blog\/creating-heatmaps-grafana\/"},"modified":"2026-03-31T15:28:24","modified_gmt":"2026-03-31T22:28:24","slug":"creating-heatmaps-grafana","status":"publish","type":"post","link":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/blog\/creating-heatmaps-grafana\/","title":{"rendered":"Creating Heatmaps of Geometry Data using Grafana &#038; GridDB"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>We have previously used the <a href=\"https:\/\/data.cityofnewyork.us\/Public-Safety\/NYPD-Complaint-Data-Historic\/qgea-i56i\">Open Data New York City Crimes<\/a> to do a <a href=\"https:\/\/griddb.net\/en\/blog\/geospatial-analysis-of-nyc-crime-data-with-griddb\/\">geospatial analysis<\/a> of NYC&#8217;s crime complaint data. In that blog, we used the very helpful lat\/lon data to try to make some predictions and analysis.<\/p>\n<p>For this blog, we will use the same dataset to draw a heatmap of the crime complaints using GridDB and Grafana. When completed, we hope to have a nice graphic of an explicit heatmap overlaid on top of a map of NYC, showing the various complaints with an indication of frequency.<\/p>\n<h2>Ingesting Data<\/h2>\n<p>This dataset provided by Open Data is rather robust, but we have included the code to Ingest all of it in our previous blog. What follows is a quick version of that.<\/p>\n<p>All complaint data will be placed into one container for simplicity sake. We have a simple <code>.java<\/code> program which handles the ingest for us. To use it, you need to first add the <code>commons-csv<\/code> and <code>gridstore<\/code> jars into your CLASSPATH. From there, simply compile and run the Ingest file. You will also need to name the <code>.csv<\/code> file to <code>rows.csv<\/code> (or jump into the Ingest file and change the filename)<\/p>\n<p>Here&#8217;s a summary:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">$ export CLASSPATH=:\/path\/to\/commons-csv-1.8.jar:\/usr\/share\/java\/gridstore.jar\n$ javac Ingest.java\n$ java Ingest<\/code><\/pre>\n<\/div>\n<h2>Using the GridDB WebAPI<\/h2>\n<p>To use our GridDB data with Grafana, we will elect to use the GridDB WebAPI. With this, we can send data to our Grafana instance using the HTTP protocol. To get the WebAPI running, you can follow the instructions from our <a href=\"https:\/\/griddb.net\/en\/blog\/griddb-webapi\/\">previous blog<\/a>; you can also of course check out the official <a href=\"https:\/\/github.com\/griddb\/webapi\">Github<\/a> page.<\/p>\n<p>And as a side note, using the WebAPI is not limited to using in conjunction with Grafana &#8212; we can also use it for ingesting and querying data as seen in this <a href=\"https:\/\/griddb.net\/en\/blog\/visualize-data-with-griddb-and-the-webapi-using-react-js\/\">blog<\/a>.<\/p>\n<h2>Installing And Using Grafana<\/h2>\n<p>Grafana is a product that &#8220;allows you to query, visualize, alert on and understand your metrics no matter where they are stored.&#8221; In our usecase, we will hope to use Grafana to visualize our geometry lat\/lon data from the NYCC dataset in the form of a heatmap.<\/p>\n<p>To install Grafana, you can read our previous blog <a href=\"https:\/\/griddb.net\/en\/blog\/data-visualization-grafana-griddb\/\">here<\/a>. Here is a shortened version:<\/p>\n<p>To install Grafana itself:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">sudo cat > \/etc\/yum.repos.d\/grafana.repo &lt;&lt; EOF\n> [grafana]\n> name=grafana\n> baseurl=https:\/\/packages.grafana.com\/oss\/rpm\n> repo_gpgcheck=1\n> enabled=1\n> gpgcheck=1\n> gpgkey=https:\/\/packages.grafana.com\/gpg.key\n> sslverify=1\n> sslcacert=\/etc\/pki\/tls\/certs\/ca-bundle.crt\n> EOF<\/code><\/pre>\n<\/div>\n<p>and then<\/p>\n<div class=\"clipboard\">\n<pre><code>sudo yum -y install grafana<\/code><\/pre>\n<\/div>\n<p>And then to start it:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">sudo \/bin\/systemctl enable grafana-server.service\nsudo \/bin\/systemctl start grafana-server.service<\/code><\/pre>\n<\/div>\n<p>Please just make sure that the Grafana version you are installing is version 8.1 or newer.<\/p>\n<p>Next we will be installing the GridDB plugin. As mentioned, it&#8217;s in the blog, but you can get a quick rundown here:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">$ curl -o https:\/\/github.com\/griddb\/griddb-datasource\/archive\/refs\/tags\/1.1.0.tar.gz\n$ tar zxvf 1.1.0.tar.gz\n$ cd 1.1.0\/\n$ sudo cp -a dist \/var\/lib\/grafana\/plugins\/GridDB-DataSource<\/code><\/pre>\n<\/div>\n<p>Once that is done, we will need to edit the <code>grafana.ini<\/code>. Nothing fancy, we just need to allow Grafana to run unsigned modules. So open up the file and add this:<\/p>\n<div class=\"clipboard\">\n<pre><code class=\"language-bash\">[plugins]\nallow_loading_unsigned_plugins = griddb-datasource<\/code><\/pre>\n<\/div>\n<p>With our Grafana instance allowing GridDB as a data source, we need to log in to our running Grafana and &#8220;Add Datasource&#8221;. You can see some examples in this <a href=\"https:\/\/griddb.net\/en\/blog\/an-introduction-to-griddb-cloud\/\">blog<\/a> as well. Essentially, we point our Grafana Data source to our GridDB WebAPI URL, along with our server&#8217;s credentials.<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/datasource.png\"><img fetchpriority=\"high\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/datasource.png\" alt=\"\" width=\"1332\" height=\"1186\" class=\"aligncenter size-full wp-image-28162\" srcset=\"\/wp-content\/uploads\/2022\/03\/datasource.png 1332w, \/wp-content\/uploads\/2022\/03\/datasource-300x267.png 300w, \/wp-content\/uploads\/2022\/03\/datasource-1024x912.png 1024w, \/wp-content\/uploads\/2022\/03\/datasource-768x684.png 768w, \/wp-content\/uploads\/2022\/03\/datasource-600x534.png 600w\" sizes=\"(max-width: 1332px) 100vw, 1332px\" \/><\/a><\/p>\n<p>With the information in, simply click save &amp; test. Now we can move on to the fun parts!<\/p>\n<h2>Data Visualization<\/h2>\n<p>To begin, first create a new panel and then change the visualization type to GeoMAP using the options in the top right corner. Next, set the time period to correspond with the time period in which the complaint data correlates.<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/geopanel.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/geopanel.png\" alt=\"\" width=\"2866\" height=\"1636\" class=\"aligncenter size-full wp-image-28163\" \/><\/a><\/p>\n<p>After that, we need to tell our Grafana instance that we would like to use coordinates as our data type. So change the option from Auto to Coords. You will then specify the actual name <code>nycc.latitude<\/code> and <code>nycc.longitude<\/code><\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/coords.png\"><img decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/coords.png\" alt=\"\" width=\"784\" height=\"398\" class=\"aligncenter size-full wp-image-28165\" srcset=\"\/wp-content\/uploads\/2022\/03\/coords.png 784w, \/wp-content\/uploads\/2022\/03\/coords-300x152.png 300w, \/wp-content\/uploads\/2022\/03\/coords-768x390.png 768w, \/wp-content\/uploads\/2022\/03\/coords-600x305.png 600w\" sizes=\"(max-width: 784px) 100vw, 784px\" \/><\/a><\/p>\n<p>The last step will be to use the transformation tab. The dataframes will need to be concatenated together because the GridDB DataSource was developed for an older version of Grafana which uses a different internal data structure.<\/p>\n<p><a href=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/transforms.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/griddb.net\/wp-content\/uploads\/2022\/03\/transforms.png\" alt=\"\" width=\"2034\" height=\"496\" class=\"aligncenter size-full wp-image-28164\" srcset=\"\/wp-content\/uploads\/2022\/03\/transforms.png 2034w, \/wp-content\/uploads\/2022\/03\/transforms-300x73.png 300w, \/wp-content\/uploads\/2022\/03\/transforms-1024x250.png 1024w, \/wp-content\/uploads\/2022\/03\/transforms-768x187.png 768w, \/wp-content\/uploads\/2022\/03\/transforms-1536x375.png 1536w, \/wp-content\/uploads\/2022\/03\/transforms-600x146.png 600w\" sizes=\"(max-width: 2034px) 100vw, 2034px\" \/><\/a><\/p>\n<h2>Conclusion<\/h2>\n<p>Marrying GridDB with Grafana can lead to very fun, helpful, and illuminating results. Large datasets can be visualized in all sorts of matter of ways with Grafana; and even more importantly, using GridDB allows for large datasets to be easily shared with any Grafana instance.<\/p>\n<p>The heatmap generated by this dataset really helps to think about and analyze the same dataset in a brand new way.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC&#8217;s crime complaint data. In that blog, we used the very helpful lat\/lon data to try to make some predictions and analysis. For this blog, we will use the same dataset to draw a heatmap of the [&hellip;]<\/p>\n","protected":false},"author":71,"featured_media":28163,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[121],"tags":[],"class_list":["post-46700","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Creating Heatmaps of Geometry Data using Grafana &amp; GridDB | GridDB: Open Source Time Series Database for IoT<\/title>\n<meta name=\"description\" content=\"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC&#039;s crime complaint data. In that blog, we used\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Creating Heatmaps of Geometry Data using Grafana &amp; GridDB | GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"og:description\" content=\"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC&#039;s crime complaint data. In that blog, we used\" \/>\n<meta property=\"og:url\" content=\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\" \/>\n<meta property=\"og:site_name\" content=\"GridDB: Open Source Time Series Database for IoT\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/griddbcommunity\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-20T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-31T22:28:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1461\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Owen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:site\" content=\"@GridDBCommunity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Owen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\"},\"author\":{\"name\":\"Owen\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\"},\"headline\":\"Creating Heatmaps of Geometry Data using Grafana &#038; GridDB\",\"datePublished\":\"2022-04-20T07:00:00+00:00\",\"dateModified\":\"2026-03-31T22:28:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\"},\"wordCount\":691,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\",\"url\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\",\"name\":\"Creating Heatmaps of Geometry Data using Grafana & GridDB | GridDB: Open Source Time Series Database for IoT\",\"isPartOf\":{\"@id\":\"https:\/\/griddb.net\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage\"},\"thumbnailUrl\":\"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png\",\"datePublished\":\"2022-04-20T07:00:00+00:00\",\"dateModified\":\"2026-03-31T22:28:24+00:00\",\"description\":\"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC's crime complaint data. In that blog, we used\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage\",\"url\":\"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png\",\"contentUrl\":\"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png\",\"width\":2560,\"height\":1461},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/griddb.net\/en\/#website\",\"url\":\"https:\/\/griddb.net\/en\/\",\"name\":\"GridDB: Open Source Time Series Database for IoT\",\"description\":\"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL\",\"publisher\":{\"@id\":\"https:\/\/griddb.net\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/griddb.net\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/griddb.net\/en\/#organization\",\"name\":\"Fixstars\",\"url\":\"https:\/\/griddb.net\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"contentUrl\":\"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png\",\"width\":200,\"height\":83,\"caption\":\"Fixstars\"},\"image\":{\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/griddbcommunity\/\",\"https:\/\/x.com\/GridDBCommunity\",\"https:\/\/www.linkedin.com\/company\/griddb-by-toshiba\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66\",\"name\":\"Owen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g\",\"caption\":\"Owen\"},\"url\":\"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Creating Heatmaps of Geometry Data using Grafana & GridDB | GridDB: Open Source Time Series Database for IoT","description":"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC's crime complaint data. In that blog, we used","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/","og_locale":"en_US","og_type":"article","og_title":"Creating Heatmaps of Geometry Data using Grafana & GridDB | GridDB: Open Source Time Series Database for IoT","og_description":"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC's crime complaint data. In that blog, we used","og_url":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/","og_site_name":"GridDB: Open Source Time Series Database for IoT","article_publisher":"https:\/\/www.facebook.com\/griddbcommunity\/","article_published_time":"2022-04-20T07:00:00+00:00","article_modified_time":"2026-03-31T22:28:24+00:00","og_image":[{"width":2560,"height":1461,"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png","type":"image\/png"}],"author":"Owen","twitter_card":"summary_large_image","twitter_creator":"@GridDBCommunity","twitter_site":"@GridDBCommunity","twitter_misc":{"Written by":"Owen","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#article","isPartOf":{"@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/"},"author":{"name":"Owen","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66"},"headline":"Creating Heatmaps of Geometry Data using Grafana &#038; GridDB","datePublished":"2022-04-20T07:00:00+00:00","dateModified":"2026-03-31T22:28:24+00:00","mainEntityOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/"},"wordCount":691,"commentCount":0,"publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/","url":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/","name":"Creating Heatmaps of Geometry Data using Grafana & GridDB | GridDB: Open Source Time Series Database for IoT","isPartOf":{"@id":"https:\/\/griddb.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage"},"image":{"@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage"},"thumbnailUrl":"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png","datePublished":"2022-04-20T07:00:00+00:00","dateModified":"2026-03-31T22:28:24+00:00","description":"Introduction We have previously used the Open Data New York City Crimes to do a geospatial analysis of NYC's crime complaint data. In that blog, we used","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/blog\/creating-heatmaps-grafana\/#primaryimage","url":"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png","contentUrl":"\/wp-content\/uploads\/2022\/03\/geopanel-scaled.png","width":2560,"height":1461},{"@type":"WebSite","@id":"https:\/\/griddb.net\/en\/#website","url":"https:\/\/griddb.net\/en\/","name":"GridDB: Open Source Time Series Database for IoT","description":"GridDB is an open source time-series database with the performance of NoSQL and convenience of SQL","publisher":{"@id":"https:\/\/griddb.net\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/griddb.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/griddb.net\/en\/#organization","name":"Fixstars","url":"https:\/\/griddb.net\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/","url":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","contentUrl":"https:\/\/griddb.net\/wp-content\/uploads\/2019\/04\/fixstars_logo_web_tagline.png","width":200,"height":83,"caption":"Fixstars"},"image":{"@id":"https:\/\/griddb.net\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/griddbcommunity\/","https:\/\/x.com\/GridDBCommunity","https:\/\/www.linkedin.com\/company\/griddb-by-toshiba"]},{"@type":"Person","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/0f2f6d4b593adde8c43cf3ea5c794c66","name":"Owen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/griddb.net\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47438a5c81215c7a9043be1b427e0bbd8dc0f77bd536f147f8495575149e4325?s=96&d=mm&r=g","caption":"Owen"},"url":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/author\/owen\/"}]}},"_links":{"self":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46700","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/users\/71"}],"replies":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/comments?post=46700"}],"version-history":[{"count":4,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46700\/revisions"}],"predecessor-version":[{"id":55167,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/posts\/46700\/revisions\/55167"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media\/28163"}],"wp:attachment":[{"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/media?parent=46700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/categories?post=46700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/griddb-linux-hte8hndjf8cka8ht.westus-01.azurewebsites.net\/en\/wp-json\/wp\/v2\/tags?post=46700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}