Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/M3Works/metloom
Location Oriented Observed Meteorology
https://github.com/M3Works/metloom
Last synced: about 1 month ago
JSON representation
Location Oriented Observed Meteorology
- Host: GitHub
- URL: https://github.com/M3Works/metloom
- Owner: M3Works
- License: other
- Created: 2021-09-17T17:26:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-29T18:25:46.000Z (4 months ago)
- Last Synced: 2024-10-29T19:58:18.463Z (2 months ago)
- Language: Python
- Size: 1.67 MB
- Stars: 16
- Watchers: 1
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
- open-sustainable-technology - metloom - A python library created with the goal of consistent, simple sampling of meteorology and snow related point measurments from a variety of datasources across the Western US. (Atmosphere / Meteorological Observation and Forecast)
README
========
metloom
========.. image:: https://img.shields.io/pypi/v/metloom.svg
:target: https://pypi.python.org/pypi/metloom
.. image:: https://github.com/M3Works/metloom/actions/workflows/testing.yml/badge.svg
:target: https://github.com/M3Works/metloom/actions/workflows/testing.yml
:alt: Testing Status
.. image:: https://readthedocs.org/projects/metloom/badge/?version=latest
:target: https://metloom.readthedocs.io/en/latest/?version=latest
:alt: Documentation Status
.. image:: https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/micah-prime/04da387b53bdb4a3aa31253789550a9f/raw/metloom__heads_main.json
:target: https://github.com/M3Works/metloom
:alt: Code CoverageLocation Oriented Observed Meteorology
metloom is a python library created with the goal of consistent, simple sampling of
meteorology and snow related point measurments from a variety of datasources is developed by `M3 Works `_ as a tool for validating
computational hydrology model results. Contributions welcome!Warning - This software is provided as is (see the license), so use at your own risk.
This is an opensource package with the goal of making data wrangling easier. We make
no guarantees about the quality or accuracy of the data and any interpretation of the meaning
of the data is up to you.* Free software: BSD license
Features
--------* Sampling of daily, hourly, and snow course data
* Searching for stations from a datasource within a shapefile
* Current data sources:
* `CDEC `_
* `SNOTEL `_
* `MESOWEST `_
* `USGS `_
* `NWS FORECAST `_
* `GEOSPHERE AUSTRIA `_
* `UCSB CUES `_
* `MET NORWAY `_
* `SNOWEX MET STATIONS `_
* `CENTER FOR SNOW AND AVALANCHE STUDIES (CSAS) `_Requirements
------------
python >= 3.7Install
-------
.. code-block:: bashpython3 -m pip install metloom
* Common install issues:
* Macbook M1 and M2 chips: some python packages run into issues with the new M chips
* ``error : from lxml import etree in utils.py ((mach-o file, but is an incompatible architecture (have 'x86_64', need 'arm64)``
The solution is the following.. code-block:: bash
pip uninstall lxml
pip install --no-binary lxml lxmlLocal install for dev
---------------------
The recommendation is to use virtualenv, but other local python
environment isolation tools will work (pipenv, conda).. code-block:: bash
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements_dev
python3 -m pip install .Testing
-------.. code-block:: bash
pytest
If contributing to the codebase, code coverage should not decrease
from the contributions. Make sure to check code coverage before
opening a pull request... code-block:: bash
pytest --cov=metloom
Documentation
-------------
readthedocs coming soonhttps://metloom.readthedocs.io.
Usage
-----
See usage documentation https://metloom.readthedocs.io/en/latest/usage.html**NOTES:**
PointData methods that get point data return a GeoDataFrame indexed
on *both* datetime and station code. To reset the index simply run
``df.reset_index(inplace=True)``Simple usage examples are provided in this readme and in the docs. See
our `examples `_
for code walkthroughs and more complicated use cases.Usage Examples
==============Use metloom to find data for a station
.. code-block:: python
from datetime import datetime
from metloom.pointdata import SnotelPointDatasnotel_point = SnotelPointData("713:CO:SNTL", "MyStation")
df = snotel_point.get_daily_data(
datetime(2020, 1, 2), datetime(2020, 1, 20),
[snotel_point.ALLOWED_VARIABLES.SWE]
)
print(df)Use metloom to find snow courses within a geometry
.. code-block:: python
from metloom.pointdata import CDECPointData
from metloom.variables import CdecStationVariablesimport geopandas as gpd
fp =
obj = gpd.read_file(fp)vrs = [
CdecStationVariables.SWE,
CdecStationVariables.SNOWDEPTH
]
points = CDECPointData.points_from_geometry(obj, vrs, snow_courses=True)
df = points.to_dataframe()
print(df)Tutorials
---------
In the ``Examples`` folder, there are multiple Jupyter notbook based
tutorials. You can edit and run these notebooks by running Jupyter Lab
from the command line.. code-block:: bash
pip install jupyterlab
jupyter labThis will open a Jupyter Lab session in your default browser.
Credits
-------This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage