{"id":19407805,"url":"https://github.com/nasa-jpl/itslive-py","last_synced_at":"2025-04-24T09:31:48.207Z","repository":{"id":89599315,"uuid":"486012726","full_name":"nasa-jpl/itslive-py","owner":"nasa-jpl","description":"Python client for ITSLIVE glacier ice velocities.","archived":false,"fork":false,"pushed_at":"2024-01-23T03:21:37.000Z","size":2933,"stargazers_count":20,"open_issues_count":0,"forks_count":4,"subscribers_count":6,"default_branch":"main","last_synced_at":"2025-04-18T00:38:52.345Z","etag":null,"topics":["climate-change","climate-science","glaciers","glaciology","itslive","nasa-data","open-data","xarray","zarr"],"latest_commit_sha":null,"homepage":"https://its-live.jpl.nasa.gov/","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/nasa-jpl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.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":"2022-04-27T02:06:24.000Z","updated_at":"2025-03-24T14:36:01.000Z","dependencies_parsed_at":"2023-07-28T22:17:37.156Z","dependency_job_id":"d9c59ae5-b61e-4b9f-a52b-c616666aa054","html_url":"https://github.com/nasa-jpl/itslive-py","commit_stats":{"total_commits":42,"total_committers":4,"mean_commits":10.5,"dds":"0.26190476190476186","last_synced_commit":"4934a877ba874945ebe667741084a1dcdadf58b2"},"previous_names":["nasa-jpl/itslive-py","nasa-jpl/itslive-vortex"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasa-jpl%2Fitslive-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasa-jpl%2Fitslive-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasa-jpl%2Fitslive-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nasa-jpl%2Fitslive-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nasa-jpl","download_url":"https://codeload.github.com/nasa-jpl/itslive-py/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250600715,"owners_count":21457017,"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":["climate-change","climate-science","glaciers","glaciology","itslive","nasa-data","open-data","xarray","zarr"],"created_at":"2024-11-10T12:03:49.050Z","updated_at":"2025-04-24T09:31:47.106Z","avatar_url":"https://github.com/nasa-jpl.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ITS_LIVEpy\n\n# A Python client for ITSLIVE glacier velocity data.\n\n\u003cp align=\"center\"\u003e\n\n\u003ca href=\"https://pypi.org/project/itslive\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/v/itslive?color=%2334D058\u0026label=pypi%20package\" alt=\"Package version\"\u003e\n\u003c/a\u003e\n\n\u003ca href=\"https://pypi.org/project/itslive/\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://img.shields.io/pypi/pyversions/itslive.svg\" alt=\"Python Versions\"\u003e\n\u003c/a\u003e\n\n\u003ca href='https://itslive.readthedocs.io/en/latest/?badge=latest'\u003e\n    \u003cimg src='https://readthedocs.org/projects/itslive/badge/?version=latest' alt='Documentation Status' /\u003e\n\u003c/a\u003e\n\n\u003c/p\u003e\n\n## Installing *itslive*\n\n```bash\npip install itslive\n\n```\n\nOr with Conda\n\n```bash\n\nconda install -c conda-forge itslive\n```\n\nIn addition to NetCDF image pairs and mosaics, ITS_LIVE produces cloud-optimized Zarr data cubes, which contain all image-pair data co-aligned on a common grid for simplified data access. Cloud optimization enable rapid analysis without intermediary APIs or services and ITS_LIVE cubes can map directly into Python xarray or Julia ZArray structures.\n\n\nThis library can be used as a stand alone tool to extract velocity time series from any given lon, lat pair on land glaciers. e.g.\n\n\n### Using a Jupyter notebook\n\n```python\nimport itslive\n\npoints=[(-47.1, 70.1),\n        (-46.1, 71.2)]\n\nvelocities = itslive.velocity_cubes.get_time_series(points=points)\n\n```\n### Using the terminal\n\n```bash\nitslive-export --lat 70.153 --lon -46.231 --format csv --outdir greenland\n```\n\n`netcdf` and `csv` formats are supported. We can print the output to stdout with:\n\n```bash\nitslive-export --lat 70.153 --lon -46.231 --format stdout\n```\n\nWe can also plot any of the ITS_LIVE variables directly on the terminal by executing `itslive-plot`, e.g.\n\n```bash\nitslive-plot --lat 70.1 --lon -46.1 --variable v\n```\n\n \u003e Operations for the aggegation can be mean,max,min,average,median etc and the frequency is represented with a single character i.e. d=day, w=week, m=month.\n\n\nTry it in your browser without installing anything! [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/betolink/itslive-vortex/main)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasa-jpl%2Fitslive-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnasa-jpl%2Fitslive-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnasa-jpl%2Fitslive-py/lists"}