{"id":16200985,"url":"https://github.com/rpakishore/nbcc-loadings","last_synced_at":"2025-10-30T12:32:29.103Z","repository":{"id":153783748,"uuid":"602746623","full_name":"rpakishore/nbcc-loadings","owner":"rpakishore","description":"Library to obtain NBCC Loadings","archived":false,"fork":false,"pushed_at":"2023-09-23T23:46:27.000Z","size":36,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-13T20:15:04.815Z","etag":null,"topics":["pip","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rpakishore.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2023-02-16T21:21:10.000Z","updated_at":"2024-05-07T17:49:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"a9875350-0373-4b29-ba5b-9c6a060287b5","html_url":"https://github.com/rpakishore/nbcc-loadings","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/rpakishore%2Fnbcc-loadings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpakishore%2Fnbcc-loadings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpakishore%2Fnbcc-loadings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rpakishore%2Fnbcc-loadings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rpakishore","download_url":"https://codeload.github.com/rpakishore/nbcc-loadings/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247704572,"owners_count":20982298,"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":["pip","python"],"created_at":"2024-10-10T09:35:08.402Z","updated_at":"2025-10-30T12:32:29.039Z","avatar_url":"https://github.com/rpakishore.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!--- Heading ---\u003e\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eNBCC Loadings\u003c/h1\u003e\n  \u003cp\u003e\n    Library to obtain NBCC Loadings\n  \u003c/p\u003e\n\u003ch4\u003e\n    \u003ca href=\"https://github.com/rpakishore/nbcc-loadings/\"\u003eView Demo\u003c/a\u003e\n  \u003cspan\u003e · \u003c/span\u003e\n    \u003ca href=\"https://github.com/rpakishore/nbcc-loadings\"\u003eDocumentation\u003c/a\u003e\n  \u003cspan\u003e · \u003c/span\u003e\n    \u003ca href=\"https://github.com/rpakishore/nbcc-loadings/issues/\"\u003eReport Bug\u003c/a\u003e\n  \u003cspan\u003e · \u003c/span\u003e\n    \u003ca href=\"https://github.com/rpakishore/nbcc-loadings/issues/\"\u003eRequest Feature\u003c/a\u003e\n  \u003c/h4\u003e\n\u003c/div\u003e\n\u003cbr /\u003e\n\n[![tests](https://github.com/rpakishore/nbcc-loadings/actions/workflows/test.yml/badge.svg)](https://github.com/rpakishore/nbcc-loadings/actions/workflows/test.yml)\n![GitHub commit activity](https://img.shields.io/github/commit-activity/m/rpakishore/nbcc-loadings)\n![GitHub last commit](https://img.shields.io/github/last-commit/rpakishore/nbcc-loadings)\n\n![PyPI - Format](https://img.shields.io/pypi/format/nbcc_loading) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/nbcc_loading)\n\n\u003c!-- Table of Contents --\u003e\n\u003ch2\u003eTable of Contents\u003c/h2\u003e\n\n- [1. About the Project](#1-about-the-project)\n- [2. Getting Started](#2-getting-started)\n  - [2.1. Installation](#21-installation)\n- [3. Usage](#3-usage)\n- [4. Roadmap](#4-roadmap)\n- [5. License](#5-license)\n- [6. Contact](#6-contact)\n- [7. Acknowledgements](#7-acknowledgements)\n\n\u003c!-- About the Project --\u003e\n## 1. About the Project\n\nA library to supply NBCC loadings, to be incorporated into other calculations\n\n\u003c!-- Getting Started --\u003e\n## 2. Getting Started\n\n\u003c!-- Installation --\u003e\n### 2.1. Installation\n\nInstall from pypi\n\n```bash\npip install nbcc_loading\n```\n\u003c!-- Usage --\u003e\n## 3. Usage\n\n```python\n# Load required modules\nfrom nbcc_loading import Snow, Wind\n\n# Set the year\nsnow = Snow.set_year(year=2015) \n## Can also directly call instance, such as\nwind = Wind(2015)\n\n# Get the 3 closest stations to specified coordinates\ns_loads = snow.by_gps(latitude=49.2508744, longitude=-122.9032094, data_points=3)\nw_load = wind.by_location(city='Agassiz')\n\n# Extract Station Information\ns_load = s_loads[0]\ns_load.Ss # Snow Load\ns_load.Sr # Rain Load\nw_load.yr10 # 10-year return wind\nw_load.yr50 # 50-year return wind\n```\n\n\u003c!-- Roadmap --\u003e\n## 4. Roadmap\n\n- [ ] Snow Loadings\n  - [x] NBCC 2020\n  - [x] NBCC 2015\n  - [ ] NBCC 2010\n- [ ] Wind Loadings\n  - [x] NBCC 2020\n  - [x] NBCC 2015\n  - [ ] NBCC 2010\n- [ ] Seismic Loadings\n  - [ ] NBCC 2020\n  - [ ] NBCC 2015\n  - [ ] NBCC 2010\n\n\u003c!-- License --\u003e\n## 5. License\n\nSee `LICENSE` for more information.\n\n\u003c!-- Contact --\u003e\n## 6. Contact\n\nArun Kishore - [@rpakishore](mailto:pypi@rpakishore.co.in)\n\nProject Link: [https://github.com/rpakishore/nbcc-loadings](https://github.com/rpakishore/nbcc-loadings)\n\n\u003c!-- Acknowledgments --\u003e\n## 7. Acknowledgements\n\n- [Awesome README Template](https://github.com/Louis3797/awesome-readme-template/blob/main/README-WITHOUT-EMOJI.md)\n- [Shields.io](https://shields.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpakishore%2Fnbcc-loadings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frpakishore%2Fnbcc-loadings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frpakishore%2Fnbcc-loadings/lists"}