Corona info

Shows corona virus data from https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6 and alerts you when the corona virus comes to your country.

Image preview of Corona info plugin.

corona.1h.sh

Edit
Open on GitHub
#!/bin/bash

# <xbar.title>Corona info</xbar.title>
# <xbar.version>v1.0</xbar.version>
# <xbar.author>Joakim Ramer</xbar.author>
# <xbar.author.github>jramer</xbar.author.github>
# <xbar.desc>Shows corona virus data from https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6 and alerts you when the corona virus comes to your country.</xbar.desc>
# <xbar.dependencies>bash, curl, jq, fping</xbar.dependencies>
# <xbar.image>https://github.com/jramer/bitbar-corona/raw/master/corona_info.png</xbar.image>
# <xbar.abouturl>https://github.com/jramer/bitbar-corona</xbar.abouturl>

COUNTRY='Sweden'
COUNTRY_FLAG='πŸ‡ΈπŸ‡ͺ'
WARNING_THRESHOLD=0

FPING_PATH=/usr/local/bin/fping
CURL_PATH=/usr/bin/curl
JQ_PATH=/usr/local/bin/jq

API_URL='https://services1.arcgis.com/0MSEUqKaxRlEPj5g/arcgis/rest/services/ncov_cases/FeatureServer/2/query'
PARAMS='f=json&where=1%3D1&returnGeometry=false&spatialRel=esriSpatialRelIntersects&outFields=*&orderByFields=Confirmed%20desc&resultOffset=0&resultRecordCount=250&cacheHint=true'

# Check internet
COUNT=6
until (( COUNT == 0 ))
do
  if $FPING_PATH -c1 -t300 8.8.8.8 2>/dev/null 1>/dev/null
  then
    break
  fi

  if (( --COUNT == 0 ))
  then
    echo "-"
    exit
  fi

  sleep 10
done

RESPONSE=$($CURL_PATH -s -X GET "$API_URL?$PARAMS" -H 'Accept: application/json')
CONFIRMED=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes.Confirmed] | reduce .[] as \$num (0; .+\$num)")
DEATHS=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes.Deaths] | reduce .[] as \$num (0; .+\$num)")
RECOVERED=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes.Recovered] | reduce .[] as \$num (0; .+\$num)")
COUNTRIES_INFECTED=$(echo "$RESPONSE" | $JQ_PATH ".features | length")

IN_COUNTRY=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes.Country_Region] | map(select(. == \"$COUNTRY\")) | if . == [] then \"false\" else \"true\" end")

if [ "$IN_COUNTRY" = '"true"' ]
then
   COUNTRY_CONFIRMED=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes] | map(select(.Country_Region == \"$COUNTRY\")) | .[].Confirmed")
   COUNTRY_DEATHS=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes] | map(select(.Country_Region == \"$COUNTRY\")) | .[].Deaths")
   COUNTRY_RECOVERED=$(echo "$RESPONSE" | $JQ_PATH "[.features[].attributes] | map(select(.Country_Region == \"$COUNTRY\")) | .[].Recovered")

   if [ "$COUNTRY_CONFIRMED" -gt "$WARNING_THRESHOLD" ]; then
      echo "$COUNTRY_FLAG πŸ”΄ 😷"
   else
      echo "$COUNTRY_FLAG 🟒"
  fi
   echo "---"
   echo "$COUNTRY: | color=white"
   echo "😷 $COUNTRY_CONFIRMED"
   echo "☠️ $COUNTRY_DEATHS | color=red"
   echo "πŸ˜‡ $COUNTRY_RECOVERED | color=green"
else
   echo "$COUNTRY_FLAG 🟒"
fi

echo "---"
echo "The World: | color=white"
echo "😷 $CONFIRMED"
echo "☠️ $DEATHS | color=red"
echo "πŸ˜‡ $RECOVERED | color=green"
echo "πŸ—Ί $COUNTRIES_INFECTED"
echo "---"
echo "↻ - Refresh| terminal=false refresh=true"
echo "🌍 Check data origin | href=https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6"