{"id":1170,"date":"2023-05-15T03:23:49","date_gmt":"2023-05-15T03:23:49","guid":{"rendered":"https:\/\/shop.cre8tivenow.com\/?p=1170"},"modified":"2024-02-18T13:29:26","modified_gmt":"2024-02-18T13:29:26","slug":"what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets","status":"publish","type":"post","link":"https:\/\/shop.cre8tivenow.com\/zh\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/","title":{"rendered":"\u4ec0\u4e48\u662f\u5f00\u653e\u6570\u636e\u53ca\u597d\u5904\uff1f | \u6559\u4f60\u5982\u4f55COVIDNOW \u6570\u636e\u5bfc\u5165 Google \u8868\u683c"},"content":{"rendered":"\n<p class=\"has-medium-font-size wp-block-paragraph\">The CovidNow website is designed by Henry Lim, Calum Lim, Sheng Han Lim, and Roshen Maghhan to collaborate with our Ministry of Health and the open data community. View more about the developer&#8217;s background at   <a href=\"https:\/\/covidnow.moh.gov.my\/about\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/covidnow.moh.gov.my\/about\/<\/a>.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">The new website <a href=\"https:\/\/covidnow.moh.gov.my\" target=\"_blank\" rel=\"noreferrer noopener\">covidnow.moh.gov.my<\/a> is significantly better in terms of User Interface (UI) and User Experience (UX) compared with the existing covid-19.moh.gov.my\/terkini-negeri, which has no longer been updated since the launch of the <a href=\"https:\/\/covidnow.moh.gov.my\/\" target=\"_blank\" rel=\"noreferrer noopener\">CovidNow<\/a> website.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">So, what is Open Data and how useful or important is Open Data?<\/h2>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Open Data is data that can be freely used, published, or distributed by anyone. Open data should also be easy to access and understand, leading to most data being published in .csv or excel format.<br>One of the reasons is that Open Data consumes a lot of time and resources. Since not all data can be published directly or raw, some sensitive data will need to be kept confidential. Hence, governments or organizations will need to filter or structure the data before being published openly.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">The good about Open Data is that with the current technology, knowledge, and Data Science, we can use Open Data to get more insight or prediction. For example, how long will it take before the ICUs are overcrowded, given the rate of vaccine today? Or how long will we achieve herd immunity?<br>Of course, Open Data is not tied to only health care; it can be in every sector such as government, economy, society, organization, transport, and everything else!<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">The Open Data will surely help improve our quality of life, increase the performance and efficiency of public services, contribute to ideas for developing new business models or innovation services, improve social welfare, and more.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Extract\/Import Data from COVIDNOW to Google Sheets?<\/h2>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">To extract data such as the daily new cases or the vaccination rate, you can pull the data from the <a href=\"https:\/\/covidnow.moh.gov.my\/\" target=\"_blank\" rel=\"noreferrer noopener\">CovidNow<\/a> website, which is relatively more straightforward, or directly from the source, Github.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">To pull the data from Github, use the formula ImportHTML() with the Github URL and select Table 1. For example, when pulling the cases Malaysia data, use the formula below:<br><strong>=Importhtml(&#8220;https:\/\/github.com\/MoH-Malaysia\/covid19-public\/blob\/main\/epidemic\/cases_malaysia.csv&#8221;,&#8221;table&#8221;,1)<br><\/strong>*You may encounter not enough column errors; just add more columns to the right.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">To extract or import the data via the<a href=\"https:\/\/covidnow.moh.gov.my\/\" target=\"_blank\" rel=\"noreferrer noopener\"> CovidNow<\/a> website, you can use the formula ImportXML() or the UrlFetchApp.fetch() function inside Google App Script.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">For the ImportXML() formula, you will need to learn how to use the XPath Query and inspect the HTML element of the <a href=\"https:\/\/covidnow.moh.gov.my\/\" target=\"_blank\" rel=\"noreferrer noopener\">CovidNow<\/a> website (Press Ctrl+Shift+I for Google Chrome to inspect the element). <br>For example, if you wish to pull the daily new local cases data, use the formula: <strong>=index(IMPORTXML(&#8220;https:\/\/covidnow.moh.gov.my\/&#8221;,&#8221;\/\/div[@class=&#8217;grid gap-0 sm:gap-2&#8242;]\/div\/div\/div\/div[@class=&#8217;chip bg-gray-300 px-2 font-semibold&#8217;]&#8221;),1,1)<\/strong><br><br>The index() formula helps select the correct data to display, ignoring others after the ImportXML() formula that helps extract the data from the CovidNow website.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">The XPath query can be understood as <strong>div[@class=&#8217;grid gap-0 sm:gap-2&#8242;]  <\/strong> look for the &lt;div&gt; tag that has the class attribute of grid gap-0 sm:gap-2. Then we are going to select the &lt;div&gt; tag that is nested inside by inputting \/div. Finally, we are going to select the &lt;div&gt; tag that has the class attribute of chip bg-gray-300 px-2 font-semibold.<br>As a result, you will get only the local new daily cases.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">To access App Script in Google Sheets, go to Tools &gt; Script Editor.<br>Then with the UrlFetchApp.fetch() function, you will need to copy down the sample below to the Script Editor and change yourself to suit your needs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>function getCOVIDNOW(){\n  var ss = SpreadsheetApp.getActiveSpreadsheet();\n  var res;\n  \n var data = UrlFetchApp.fetch(\"https:\/\/covidnow.moh.gov.my\/\").getContentText();\n    try {\n    \/\/Logger.log(\"data: \"+data);\n    var values = data.match(\/&lt;div class=\"number flex justify-center gap-1.5\"&gt;&lt;div tabindex=\"-1\" class=\"relative\"&gt;&lt;span&gt;&#91;0-9, \\n]+\/)&#91;0]; \/\/get total local cases value only\n    Logger.log(\"values: \"+values);\n    var num = values.indexOf(\"\\n\")+1; \/\/check for newline\n    Logger.log(\"num: \"+num);\n    res = values.substring(num,values.length); \/\/remove all html\n    res = res.match(\/&#91;0-9,]+\/)&#91;0]; \/\/get numbers only\n    Logger.log(\"res: \"+res);\n \n    } catch(e) {\n      res =\"invalid\";\n    }\n \n    ss.getRange(\"C5\").setValue(res); \/\/set value at cell C5\n}<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">After that, insert a button to run the App Script by clicking on Insert &gt; Drawings. Create your button in Google Drawings and press Save. Click on the 3 dots on the top right of the drawing and click Assign a Script. Input the script function name, for example,  <strong>getCOVIDNOW<\/strong>. (If you have previously assigned a script and would like to change the function, press Ctrl on your keyboard while clicking the button.)<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">We also give out a copy of Google Sheets with a sample formula for importing data from GitHub and the <a href=\"https:\/\/covidnow.moh.gov.my\/\" target=\"_blank\" rel=\"noreferrer noopener\">CovidNow<\/a> website via various ways, as stated above.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\"><a href=\"https:\/\/docs.google.com\/spreadsheets\/d\/101R8jushKGFk3lwQYYZG9fbc-K_xm2uDQm5AvO4vo0I\/copy\" target=\"_blank\" rel=\"noreferrer noopener\">Copy the Google Sheets HERE<\/a>. You can edit or view the script at Tools &gt; Script Editor.<\/p>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">We hope this helps, and share this post if you think it could help more!<\/p>\n\n\n\n<script async=\"\" src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-4923505833600279\" crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\" style=\"display:block; text-align:center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-4923505833600279\" data-ad-slot=\"1641290438\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<p class=\"has-medium-font-size wp-block-paragraph\">Follow us:<br>Telegram: <a href=\"http:\/\/t.me\/cre8tivenow\" target=\"_blank\" rel=\"noreferrer noopener\">t.me\/cre8tivenow<\/a><br><a href=\"https:\/\/www.buymeacoffee.com\/cre8tivenow\" target=\"_blank\" rel=\"noreferrer noopener\">Buy Me A Coffee<\/a> (Click on Follow to get our updates directly sent to your mailbox for free!)<br>Facebook: <a href=\"http:\/\/facebook.com\/cre8tivenow\" target=\"_blank\" rel=\"noreferrer noopener\">facebook.com\/cre8tivenow<\/a><br>Instagram: <a href=\"http:\/\/instagram.com\/cre8tivenow\" target=\"_blank\" rel=\"noreferrer noopener\">instagram.com\/cre8tivenow<\/a><br>Email: <a href=\"mailto:sales@creativenow.my\" target=\"_blank\" rel=\"noreferrer noopener\">sales@creativenow.my<\/a><br> <\/p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/i0.wp.com\/www.cre8tivenow.com\/Backup\/blog.cre8tivenow.com\/wp-content\/uploads\/2021\/09\/covidnow-1024x367.png?ssl=1\"><img data-recalc-dims=\"1\" height=\"351\" width=\"980\" decoding=\"async\" data-id=\"528\" src=\"https:\/\/i0.wp.com\/www.cre8tivenow.com\/Backup\/blog.cre8tivenow.com\/wp-content\/uploads\/2021\/09\/covidnow-1024x367.png?resize=980%2C351&#038;ssl=1\" alt=\"\" class=\"wp-image-528\"\/><\/a><\/figure>\n<\/figure>\n","protected":false},"excerpt":{"rendered":"<p>The CovidNow website is designed by Henry Lim, Calum Lim, Sheng Han Lim, and Roshen Maghhan to collaborate with our Ministry of Health and the open data community. View more about the developer&#8217;s background at https:\/\/covidnow.moh.gov.my\/about\/. The new website covidnow.moh.gov.my is significantly better in terms of User Interface (UI) and User Experience (UX) compared with [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":1172,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_eb_attr":"","_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[57],"tags":[],"class_list":["post-1170","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Open Data &amp; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/shop.cre8tivenow.com\/zh\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Open Data &amp; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now\" \/>\n<meta property=\"og:description\" content=\"The CovidNow website is designed by Henry Lim, Calum Lim, Sheng Han Lim, and Roshen Maghhan to collaborate with our Ministry of Health and the open data community. View more about the developer&#8217;s background at https:\/\/covidnow.moh.gov.my\/about\/. The new website covidnow.moh.gov.my is significantly better in terms of User Interface (UI) and User Experience (UX) compared with [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/shop.cre8tivenow.com\/zh\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/\" \/>\n<meta property=\"og:site_name\" content=\"Cre8tive Now\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-15T03:23:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-18T13:29:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1029\" \/>\n\t<meta property=\"og:image:height\" content=\"535\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Cre8tive Now\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u4f5c\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cre8tive Now\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\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:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/\"},\"author\":{\"name\":\"Cre8tive Now\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#\\\/schema\\\/person\\\/35bf61f5dadffcfbc5a395b597c71a54\"},\"headline\":\"What is Open Data &#038; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets\",\"datePublished\":\"2023-05-15T03:23:49+00:00\",\"dateModified\":\"2024-02-18T13:29:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/\"},\"wordCount\":826,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/covidnow-website.png?fit=1029%2C535&ssl=1\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"zh-CN\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/\",\"url\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/\",\"name\":\"What is Open Data & How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/covidnow-website.png?fit=1029%2C535&ssl=1\",\"datePublished\":\"2023-05-15T03:23:49+00:00\",\"dateModified\":\"2024-02-18T13:29:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#breadcrumb\"},\"inLanguage\":\"zh-CN\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-CN\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/covidnow-website.png?fit=1029%2C535&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2023\\\/05\\\/covidnow-website.png?fit=1029%2C535&ssl=1\",\"width\":1029,\"height\":535},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Open Data &#038; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#website\",\"url\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/\",\"name\":\"Cre8tive Now\",\"description\":\"Shop @ Cre8tive Now\",\"publisher\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-CN\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#organization\",\"name\":\"Cre8tive Now\",\"url\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-CN\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logotrans-1.png?fit=1548%2C873&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/shop.cre8tivenow.com\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/logotrans-1.png?fit=1548%2C873&ssl=1\",\"width\":1548,\"height\":873,\"caption\":\"Cre8tive Now\"},\"image\":{\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/cre8tivenow\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCdzGJ60l_Pm3fTENh1Z3cEQ?sub_confirmation=1\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/#\\\/schema\\\/person\\\/35bf61f5dadffcfbc5a395b597c71a54\",\"name\":\"Cre8tive Now\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-CN\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g\",\"caption\":\"Cre8tive Now\"},\"sameAs\":[\"https:\\\/\\\/shop.cre8tivenow.com\"],\"url\":\"https:\\\/\\\/shop.cre8tivenow.com\\\/zh\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Open Data & How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now","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:\/\/shop.cre8tivenow.com\/zh\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/","og_locale":"zh_CN","og_type":"article","og_title":"What is Open Data & How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now","og_description":"The CovidNow website is designed by Henry Lim, Calum Lim, Sheng Han Lim, and Roshen Maghhan to collaborate with our Ministry of Health and the open data community. View more about the developer&#8217;s background at https:\/\/covidnow.moh.gov.my\/about\/. The new website covidnow.moh.gov.my is significantly better in terms of User Interface (UI) and User Experience (UX) compared with [&hellip;]","og_url":"https:\/\/shop.cre8tivenow.com\/zh\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/","og_site_name":"Cre8tive Now","article_published_time":"2023-05-15T03:23:49+00:00","article_modified_time":"2024-02-18T13:29:26+00:00","og_image":[{"width":1029,"height":535,"url":"https:\/\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png","type":"image\/png"}],"author":"Cre8tive Now","twitter_card":"summary_large_image","twitter_misc":{"\u4f5c\u8005":"Cre8tive Now","\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#article","isPartOf":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/"},"author":{"name":"Cre8tive Now","@id":"https:\/\/shop.cre8tivenow.com\/#\/schema\/person\/35bf61f5dadffcfbc5a395b597c71a54"},"headline":"What is Open Data &#038; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets","datePublished":"2023-05-15T03:23:49+00:00","dateModified":"2024-02-18T13:29:26+00:00","mainEntityOfPage":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/"},"wordCount":826,"commentCount":0,"publisher":{"@id":"https:\/\/shop.cre8tivenow.com\/#organization"},"image":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png?fit=1029%2C535&ssl=1","articleSection":["Blog"],"inLanguage":"zh-CN","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/","url":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/","name":"What is Open Data & How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets - Cre8tive Now","isPartOf":{"@id":"https:\/\/shop.cre8tivenow.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#primaryimage"},"image":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png?fit=1029%2C535&ssl=1","datePublished":"2023-05-15T03:23:49+00:00","dateModified":"2024-02-18T13:29:26+00:00","breadcrumb":{"@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#breadcrumb"},"inLanguage":"zh-CN","potentialAction":[{"@type":"ReadAction","target":["https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/"]}]},{"@type":"ImageObject","inLanguage":"zh-CN","@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#primaryimage","url":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png?fit=1029%2C535&ssl=1","contentUrl":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png?fit=1029%2C535&ssl=1","width":1029,"height":535},{"@type":"BreadcrumbList","@id":"https:\/\/shop.cre8tivenow.com\/what-is-open-data-how-useful-is-it-tips-to-import-covidnow-data-to-google-sheets\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/shop.cre8tivenow.com\/"},{"@type":"ListItem","position":2,"name":"What is Open Data &#038; How Useful Is It? | Tips to Import COVIDNOW Data to Google Sheets"}]},{"@type":"WebSite","@id":"https:\/\/shop.cre8tivenow.com\/#website","url":"https:\/\/shop.cre8tivenow.com\/","name":"\u521b\u610f\u79d1\u6280","description":"\u7acb\u5373\u5728 Cre8tive \u8d2d\u7269","publisher":{"@id":"https:\/\/shop.cre8tivenow.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/shop.cre8tivenow.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-CN"},{"@type":"Organization","@id":"https:\/\/shop.cre8tivenow.com\/#organization","name":"\u521b\u610f\u79d1\u6280","url":"https:\/\/shop.cre8tivenow.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-CN","@id":"https:\/\/shop.cre8tivenow.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2020\/11\/logotrans-1.png?fit=1548%2C873&ssl=1","contentUrl":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2020\/11\/logotrans-1.png?fit=1548%2C873&ssl=1","width":1548,"height":873,"caption":"Cre8tive Now"},"image":{"@id":"https:\/\/shop.cre8tivenow.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/cre8tivenow","https:\/\/www.youtube.com\/channel\/UCdzGJ60l_Pm3fTENh1Z3cEQ?sub_confirmation=1"]},{"@type":"Person","@id":"https:\/\/shop.cre8tivenow.com\/#\/schema\/person\/35bf61f5dadffcfbc5a395b597c71a54","name":"\u521b\u610f\u79d1\u6280","image":{"@type":"ImageObject","inLanguage":"zh-CN","@id":"https:\/\/secure.gravatar.com\/avatar\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7dc23570626ba12de1c147e751b04c6cc9730a6e9727a98c9f3560ce0d3ffe4a?s=96&d=mm&r=g","caption":"Cre8tive Now"},"sameAs":["https:\/\/shop.cre8tivenow.com"],"url":"https:\/\/shop.cre8tivenow.com\/zh\/author\/admin\/"}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/05\/covidnow-website.png?fit=1029%2C535&ssl=1","jetpack-related-posts":[{"id":1356,"url":"https:\/\/shop.cre8tivenow.com\/zh\/how-to-build-powerful-apps-with-google-appsheet\/","url_meta":{"origin":1170,"position":0},"title":"\u5982\u4f55\u4f7f\u7528 Google AppSheet \u6784\u5efa\u5f3a\u5927\u7684\u5e94\u7528\u7a0b\u5e8f","author":"Cre8tive Now","date":"February 18, 2024","format":false,"excerpt":"Do you want to create your own apps without writing a line of code? Do you want to automate your manual tasks and streamline your workflows? Do you want to leverage the power of Google Workspace to transform your business? If you answered yes to any of these questions, then\u2026","rel":"","context":"\u5728\u201cBlog\u201d\u4e2d","block_context":{"text":"Blog","link":"https:\/\/shop.cre8tivenow.com\/zh\/.\/blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/02\/d1b5c73f-1877-4ff3-b3db-30dd7c04e330.jpeg?fit=1024%2C1024&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/02\/d1b5c73f-1877-4ff3-b3db-30dd7c04e330.jpeg?fit=1024%2C1024&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/02\/d1b5c73f-1877-4ff3-b3db-30dd7c04e330.jpeg?fit=1024%2C1024&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/02\/d1b5c73f-1877-4ff3-b3db-30dd7c04e330.jpeg?fit=1024%2C1024&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":1296,"url":"https:\/\/shop.cre8tivenow.com\/zh\/automating-your-work-microsoft-365-or-google-workspace\/","url_meta":{"origin":1170,"position":1},"title":"\u81ea\u52a8\u5316\u60a8\u7684\u5de5\u4f5c\uff0cMicrosoft 365 \u8fd8\u662f Google Workspace\uff1f","author":"Cre8tive Now","date":"September 14, 2023","format":false,"excerpt":"In today's fast-paced business world, efficiency is key to staying competitive. Automating repetitive tasks not only saves time but also reduces the risk of errors and frees up your team to focus on more strategic initiatives. When it comes to office productivity suites, Microsoft 365 and Google Workspace offer powerful\u2026","rel":"","context":"\u5728\u201cBlog\u201d\u4e2d","block_context":{"text":"Blog","link":"https:\/\/shop.cre8tivenow.com\/zh\/.\/blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/09\/appdotmy-Apps2.png?fit=1080%2C1080&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/09\/appdotmy-Apps2.png?fit=1080%2C1080&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/09\/appdotmy-Apps2.png?fit=1080%2C1080&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/09\/appdotmy-Apps2.png?fit=1080%2C1080&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2023\/09\/appdotmy-Apps2.png?fit=1080%2C1080&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1217,"url":"https:\/\/shop.cre8tivenow.com\/zh\/free-ssm-registration-for-students-youth-under-b40-and-single-mother\/","url_meta":{"origin":1170,"position":2},"title":"\u4e3a\u5b66\u751f\u3001B40 \u5c81\u4ee5\u4e0b\u9752\u5e74\u548c\u5355\u4eb2\u6bcd\u4eb2\u63d0\u4f9b\u514d\u8d39 SSM \u6ce8\u518c","author":"Cre8tive Now","date":"May 2, 2021","format":false,"excerpt":"Suruhanjaya Syarikat Malaysia (SSM) launches its free SSM registration or Skim Pendaftaran Perniagaan Prihatin (SPPP) for students, youth under B40, and single mothers to register their businesses for free in order to earn extra income during the pandemic. This announcement was made by the Minister of Domestic Trade and Consumer\u2026","rel":"","context":"\u5728\u201cBlog\u201d\u4e2d","block_context":{"text":"Blog","link":"https:\/\/shop.cre8tivenow.com\/zh\/.\/blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2021\/05\/SSM.jpg?fit=600%2C450&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2021\/05\/SSM.jpg?fit=600%2C450&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2021\/05\/SSM.jpg?fit=600%2C450&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":1410,"url":"https:\/\/shop.cre8tivenow.com\/zh\/myhours\/","url_meta":{"origin":1170,"position":3},"title":"Introducing [My Hours Integration], 1st Google Workspace\u2122 Add-On Developed by Cre8tive Now","author":"Cre8tive Now","date":"April 4, 2024","format":false,"excerpt":"My Hours time-tracking software, integrated with Google Workspace, streamlines project management, billing, and workflow efficiency. It offers an intuitive interface, automated timekeeping, and real-time insights to enhance productivity within Google's suite of tools. The integration allows for in-app time tracking and the My Hours add-on is available with a trial\u2026","rel":"","context":"\u5728\u201cBlog\u201d\u4e2d","block_context":{"text":"Blog","link":"https:\/\/shop.cre8tivenow.com\/zh\/.\/blog\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/04\/AppSheet.png?fit=1080%2C1080&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/04\/AppSheet.png?fit=1080%2C1080&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/04\/AppSheet.png?fit=1080%2C1080&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/04\/AppSheet.png?fit=1080%2C1080&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/shop.cre8tivenow.com\/wp-content\/uploads\/2024\/04\/AppSheet.png?fit=1080%2C1080&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/posts\/1170","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/comments?post=1170"}],"version-history":[{"count":8,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/posts\/1170\/revisions"}],"predecessor-version":[{"id":1365,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/posts\/1170\/revisions\/1365"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/media\/1172"}],"wp:attachment":[{"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/media?parent=1170"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/categories?post=1170"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shop.cre8tivenow.com\/zh\/wp-json\/wp\/v2\/tags?post=1170"}],"curies":[{"name":"\u53ef\u6e7f\u6027\u7c89\u5242","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}