0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

高知県のよさこい祭り2022に出るチームとスケジュールをjsonデータにする迄。

Posted at

高知県のよさこい祭り2022に出るチームとスケジュールをjsonデータにする迄。

  1. 公式ページからよさこい祭りに出るチームとスケジュールを確認する。
  2. 残念ながらチームとスケジュールデータは画像データだった為、OCR処理を行う。
  3. OCR後、変換できなかった部分を手動修正する。
  4. カンマ区切りのデータを作り下記のPHPコードでjsonファイルを生成する。

尚、githubと自サイトに置いておきますのでjsonデータはご自由にお使いください。

下記のPHPコード
<?php
$j = $a = null;
$data =  explode("\r\n",file_get_contents("./teams-list.txt"));
foreach($data as $key=>$val){
    $a = explode(",",$val);
    $j[] =  ["number"=>$a[0],"car_number"=>$a[1],"number_of_persons"=>$a[2],"date"=>$a[3],"teams_name"=>$a[4]];
}
file_put_contents("./yosakoi2022.json",json_encode($j,JSON_UNESCAPED_UNICODE));
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?