diff --git a/index.html b/index.html index e4112c1..6e1cd93 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,24 @@ font-size: 8pt; } .chart { float: right; } + .waitboard { + position: absolute; + display: none; + top: 0; + left:0; + opacity: 0.6; + background-color: #f0f0ff; + width: 100%; + height: 100%; + } + .waititem { + margin: 50% auto; + font-size: 50px; + font-family: cursive; + color: purple; + } + @@ -34,9 +51,9 @@
-
+
+
+
+
Changing....
+
+
+
diff --git a/jma.sh b/jma.sh index 2fba8b4..d5b3ee4 100755 --- a/jma.sh +++ b/jma.sh @@ -2,7 +2,7 @@ # script to retrieve weather information from JMA. # first dummy access to get session id for the request. -sid=$(curl -s http://www.data.jma.go.jp/risk/obsdl/ | sed -n -e '/id="sid"/s/^.*value="\(.*\)".*$/\1/p') +sid=$(curl -s https://www.data.jma.go.jp/risk/obsdl/ | sed -n -e '/id="sid"/s/^.*value="\(.*\)".*$/\1/p') # make date priod (today and '15 days before'). F_Y=$(date +%Y) @@ -27,7 +27,7 @@ mv -f JMA.csv.xz.002 JMA.csv.xz.003 mv -f JMA.csv.xz.001 JMA.csv.xz.002 mv -f JMA.csv.xz JMA.csv.xz.001 -curl -s --data "${postmsg}" http://www.data.jma.go.jp/risk/obsdl/show/table > data.csv +curl -s --data "${postmsg}" https://www.data.jma.go.jp/risk/obsdl/show/table > data.csv # convert data.csv to JMA.csv which only pickups necessary points ./out.py > JMA.csv