{"id":21909069,"url":"https://github.com/indenkun/yd2m","last_synced_at":"2025-03-22T07:48:46.681Z","repository":{"id":88527619,"uuid":"278355494","full_name":"indenkun/yd2m","owner":"indenkun","description":"Converted from pound-yard system to metric system on R.","archived":false,"fork":false,"pushed_at":"2020-10-27T14:51:04.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-27T08:11:45.535Z","etag":null,"topics":["meter","pound","r","temprerature","yard"],"latest_commit_sha":null,"homepage":"","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/indenkun.png","metadata":{"files":{"readme":"README.Rmd","changelog":"NEWS.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-09T12:14:40.000Z","updated_at":"2020-10-27T14:51:07.000Z","dependencies_parsed_at":"2023-07-22T22:46:12.039Z","dependency_job_id":null,"html_url":"https://github.com/indenkun/yd2m","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indenkun%2Fyd2m","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indenkun%2Fyd2m/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indenkun%2Fyd2m/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/indenkun%2Fyd2m/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/indenkun","download_url":"https://codeload.github.com/indenkun/yd2m/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244924767,"owners_count":20532874,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["meter","pound","r","temprerature","yard"],"created_at":"2024-11-28T17:15:04.642Z","updated_at":"2025-03-22T07:48:46.675Z","avatar_url":"https://github.com/indenkun.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# yd2m\n\n\u003c!-- badges: start --\u003e\n\u003c!-- badges: end --\u003e\nyd2mはRでポンドヤード法からメートル法に相互変換、華氏温度からセ氏温度への相互変換を行う関数を含むパッケージです。\n\nyd2m is package containing function that Converted to each other from pound-yard system to metric system and from Fahrenheit to Celisius temperature on R.\n\n## Installation\n\n``` r\ndevtools::install_github(\"indenkun/yd2m\")\n```\n\n## How to use\n\n### weight\n\n重さはポンド（lb）、グレーン（gr）、オンス（oz）からキログラム（kg）への変換と、その逆の変換ができます。\n\nWeights in conversions from pounds (lb), grains (gr) and ounces (oz) to kilograms (kg) and and vice versa.\n\nポンドからキログラムへの変換\n\nConversion from Pounds to Kilograms\n```{r}\nyd2m::lb_to_kg(1)\n```\n\nキログラムからポンドへの変換\n\nKilogram to pound conversion\n```{r}\nyd2m::kg_to_lb(1)\n```\n\nグレーンからキログラムへの変換は`yd2m::gr_to_kg`、オンスからキログラムへの変換は`yd2m::oz_to_kg`でできます。\n\nThe conversion from grains to kilograms is `yd2m::gr_to_kg`, ounces to kilograms can be converted to `yd2m::oz_to_kg`.\n\nキログラムからグレーンへの変換は`yd2m::kg_to_gr`、キログラムからオンスへの変換は`yd2m::oz_to_kg`でできます。\n\nKilogram to grain conversion is `yd2m::kg_to_gr`, kilogram to ounce can be converted to `yd2m::oz_to_kg`.\n\n### length\n\n長さはインチ（in）、フィート(ft)、ヤード（yd）、チェーン（ch）から、メートル（m）への変換と、その逆の変換ができます。\n\nLengths can be converted from inches (in), feet (ft), yards (yd) and chains (ch) to meters (m) and vice versa.\n\nヤードからメートルへの変換\n\nYard to meter conversion\n```{r}\nyd2m::yd_to_m(1)\n```\n\nメートルからヤードへの変換\n\nMetric to Yard Conversion\n```{r}\nyd2m::m_to_yd(1)\n```\n\nメートルへの変換はそれぞれ、インチからは`yd2m::in_to_m`、フィートからは`yd2m::ft_to_m`、チェーンからは`yd2m::ch_to_m`でできます。\n\nThe conversions to meters are `yd2m::in_to_m` from inches and `yd2m::in_to_m` from feet, respectively. You can use `yd2m::ft_to_m`, or `yd2m::ch_to_m` from the chain .\n\nメートルからの変換はそれぞれ、インチへは`yd2m::m_to_in`、フィートへは`yd2m::m_to_ft`、チェーンへは`yd2m::m_to_ch`でできます。\n\nThe conversions from meters to inches and feet are `yd2m::m_to_in` and `yd2m::m_to_in`, respectively. yd2m::m_to_ft`, and `yd2m::m_to_ch` to the chain.\n\n### temprerature\n\n華氏温度とセルシウス温度（セ氏温度）の相互変換ができます。\n\nInterconversion between Fahrenheit and Celsius  temperatures can be performed.\n\n華氏温度からセルシウス温度（セ氏温度）への変換\n\nConversion from Fahrenheit to Celsius temperature\n```{r}\nyd2m::FT_to_CT(100)\n```\n\nセルシウス温度（セ氏温度）から華氏温度への変換\n\nConversion from Celsius temperature to Fahrenheit temperature\n```{r}\nyd2m::CT_to_FT(100)\n```\n\n## notice\n\n計算には国際ポンド・ヤードを使用しています。\n\nThe calculations are in international pounds and yards.\n\nDESCRIPTIONに記載しているメールアドレスはダミーです。なにかあればISSUEに記載してください。\n\nThe email address listed in the DESCRIPTION is a dummy. If you have any questions, please post them on ISSUE.\n\n## License\n\nMIT.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findenkun%2Fyd2m","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Findenkun%2Fyd2m","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Findenkun%2Fyd2m/lists"}