{"id":13948810,"url":"https://github.com/fnemina/pyOSOAA","last_synced_at":"2025-07-20T10:32:48.072Z","repository":{"id":47647463,"uuid":"165712479","full_name":"fnemina/pyOSOAA","owner":"fnemina","description":"pyOSOAA is a python interface for the Ocean Successive Orders with Atmosphere - Advanced (OSOAA) radiative transfer.","archived":false,"fork":false,"pushed_at":"2024-08-16T14:28:30.000Z","size":3166,"stargazers_count":23,"open_issues_count":23,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-14T05:05:24.524Z","etag":null,"topics":["atmospheric-science","ocean-sciences","radiative-transfer","radiative-transfer-models"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fnemina.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-14T18:26:11.000Z","updated_at":"2025-07-01T15:13:31.000Z","dependencies_parsed_at":"2024-01-19T07:08:14.383Z","dependency_job_id":"63672468-979f-4ee0-9693-923c49eae6e9","html_url":"https://github.com/fnemina/pyOSOAA","commit_stats":{"total_commits":170,"total_committers":5,"mean_commits":34.0,"dds":0.08235294117647063,"last_synced_commit":"2daf92264d351d2e43d45c111cf630fde02d59cb"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/fnemina/pyOSOAA","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnemina%2FpyOSOAA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnemina%2FpyOSOAA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnemina%2FpyOSOAA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnemina%2FpyOSOAA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fnemina","download_url":"https://codeload.github.com/fnemina/pyOSOAA/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fnemina%2FpyOSOAA/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265506086,"owners_count":23778651,"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":["atmospheric-science","ocean-sciences","radiative-transfer","radiative-transfer-models"],"created_at":"2024-08-08T05:01:31.621Z","updated_at":"2025-07-20T10:32:48.051Z","avatar_url":"https://github.com/fnemina.png","language":"Python","funding_links":[],"categories":["Atmosphere"],"sub_categories":["Radiative Transfer"],"readme":"[![Build Status](https://travis-ci.org/fnemina/pyOSOAA.svg?branch=master)](https://travis-ci.org/fnemina/pyOSOAA) [![Coverage Status](https://coveralls.io/repos/github/fnemina/pyOSOAA/badge.svg?branch=master)](https://coveralls.io/github/fnemina/pyOSOAA?branch=master)\n\n# pyOSOAA\n\n`pyOSOAA` is a python interface for the Ocean Successive Orders with Atmosphere - Advanced (OSOAA) radiative transfer. The OSOAA is a radiative transfer code developed in the Sorbonne Université by Pr. Malik Chami group and supported by the CNES. \n\nThe coded is based in the successive orders of scattering method and the OSOA code developed by Malik Chami in 2001 that included the computation of the radiance and polarization for the ocean-atmosphere system with a flat surface.\n\nThe OSOAA code simulates:\n\n- **Atmospheric and sea profiles**: The atmosphere can be and sea profiles can be defined by the user both for the molecules and aerosol in the atmosphere and the water column, chlorophyll and mineral-like particles in the sea. Detritus and yellow substance absorption can also be modelled.\n- **Aerosol models**: Aerosol models include WMO, LND, Junge mono-modal, bimodal LND and Shettle and Fenn.\n- **Hydrosol models**: For phytoplankton and mineral-like particles including scattering and absorbing properties.\n- **Sea surface interface**: Both for a flat surface or by a rough surface using Cox and Munk model.\n\nThe `pyOSOAA` interface aims to incorporate the creation of run scripts and parsing of output results for the OSOAA model. It also incorporates helpers to perform common tasks like calculating the radiance for a certain band instead of a wavelength or running the model for multiple wavelengths. \n\nThis code was inspired by [py6S](https://github.com/robintw/Py6S) by Robin Wilson.\n\nYou can find the full `pyOSOAA` manual [here](https://pyosoaa.readthedocs.io/en/latest/).\n\n## Installation\n\nThe installation of the `pyOSOAA` has two parts.\n\nFirst, you need to install the OSOAA software package from https://github.com/CNES/RadiativeTransferCode-OSOAA.\n\nSecond, install pyOSOAA. There are two ways to install pyOSOAA.\n\n### Install pyOSOAA from pypi\n\n```bash\npip install pyOSOAA\n```\n\n### Install pyOSOAA from source code\nDownload the last version of the `pyOSOAA` from [github](https://github.com/fnemina/pyOSOAA/releases/latest).\n\nOnce downloaded decompress it, go to the folder containing the code and run\n\n```bash\npython setup.py install\n```\n\nTo then check that software installed correctly\n\n```python\n# Load pyOSOAA module\nimport pyOSOAA\n# Run the test suite\npyOSOAA.test()\n```\nthe following output should appear at the end of the screen\n```\nOSOAA wrapper script by Francisco Nemiña\nInspired by Py6S wrapper by Robin Wilson\nUsing OSOAA located at /home/.../OSOAA_V1.5\nRunning OSOAA using a set of test parameters\nThe results are:\nExpected result: 0.128266\nActual result: 0.128266\n#### Results agree PyOSOAA is working correctly\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnemina%2FpyOSOAA","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffnemina%2FpyOSOAA","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffnemina%2FpyOSOAA/lists"}