This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| LANG=ja_JP.utf8 | |
| pid=$$ | |
| date=`date '+%Y-%m-%d-%H_%M'` | |
| playerurl=http://radiko.jp/player/swf/player_3.0.0.01.swf | |
| playerfile="/tmp/player.swf" | |
| keyfile="/tmp/authkey.png" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/h27sakuinzu_A1_65k.pdf | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/h27sakuinzu_A3_130k.pdf | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/sekaisokuchitfw.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/nihonsokuchitfw.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou00-02_00-24.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou05-05_06-09.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou06-10_09-22.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou10-02_10-18.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou10-19_11-08.zip | |
| http://dataset-img.city.shizuoka.jp/data/shisanzei/20160704/gazou11-11_11-21.zip |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- /usr/bin/gdal2tiles.py 2014-04-05 23:21:17.000000000 +0900 | |
| +++ /home/kudarisenmon/bin/gdal2tiles.py 2016-07-09 18:08:34.012957232 +0900 | |
| @@ -783,7 +783,7 @@ | |
| self.out_srs = osr.SpatialReference() | |
| if self.options.profile == 'mercator': | |
| - self.out_srs.ImportFromEPSG(900913) | |
| + self.out_srs.ImportFromEPSG(3857) | |
| elif self.options.profile == 'geodetic': | |
| self.out_srs.ImportFromEPSG(4326) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Original http://wiki.openstreetmap.org/wiki/Regionalisedmap | |
| CREATE view planet_ptosm_line as select | |
| osm_id, | |
| access, | |
| "addr:housename", | |
| "addr:housenumber", | |
| "addr:interpolation", | |
| admin_level, | |
| aerialway, | |
| aeroway, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/48b124ff-051b-4e01-91f0-42e7a94a9535/download/md42-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/90bcfeff-991d-488c-8efb-679fcdee6b62/download/md52-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/45b54c14-df3f-4f71-86ec-656105cc0a19/download/md53-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/684a8aa9-0c02-47cb-916b-f9fe13d44436/download/md56-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/b44e9d86-58e0-48d8-9f92-c4268b49d97d/download/md-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/30beb4eb-4061-4edc-a273-0cabcca4abe9/download/md65-dxf.dxf | |
| http://dataset.city.shizuoka.jp/dataset/f344b4b2-ed1d-4af3-a181-f49350678953/resource/9ad36832-3a54-4edc-bdb9-73b0d75b6ccd/download/md66-dxf.dxf | |
| http://data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| AmbientChannelId=700 # 自分のチャネルIDに置き換えてください | |
| AmbientWriteKey="your_writekey" # 自分のライトキーに置き換えてください | |
| DeviceId="28-03146b3a47ff" # 自分のデバイスIDに置き換えてください | |
| INTERVAL=60 # 取得間隔(秒) | |
| while true;do | |
| temp=`cat /sys/bus/w1/devices/$DeviceId/w1_slave | awk 'BEGIN {FS="="} NR==2{print $2 / 1000.0}'` | |
| JSON="{\"writeKey\":\"${AmbientWriteKey}\",\"d1\":\"${temp}\"}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| SERVER=(a b c) | |
| x=115773 | |
| y=51995 | |
| rm -f *.png | |
| xlist='' | |
| for (( xx = ${x} ; xx < `expr ${x} + 27` ; xx++ )) { | |
| list='' | |
| for (( yy = ${y} ; yy < `expr ${y} + 37` ; yy++ )) { | |
| wget -nv "https://${SERVER[`expr $yy % 3`]}.tile.openstreetmap.org/17/${xx}/${yy}.png"; |
OlderNewer