{"id":16200208,"url":"https://github.com/jss95/curvesimilarities","last_synced_at":"2026-01-25T13:01:18.520Z","repository":{"id":240333706,"uuid":"801945320","full_name":"JSS95/curvesimilarities","owner":"JSS95","description":"Python package for curve similarity measures.","archived":false,"fork":false,"pushed_at":"2024-08-30T00:45:04.000Z","size":272,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-07T16:40:47.873Z","etag":null,"topics":["frechet-distance","geometry","mathematics","python"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/curvesimilarities","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JSS95.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,"zenodo":null}},"created_at":"2024-05-17T08:13:22.000Z","updated_at":"2025-05-30T23:34:59.000Z","dependencies_parsed_at":"2025-05-20T22:45:37.731Z","dependency_job_id":null,"html_url":"https://github.com/JSS95/curvesimilarities","commit_stats":null,"previous_names":["jss95/curvesimilarities"],"tags_count":17,"template":false,"template_full_name":null,"purl":"pkg:github/JSS95/curvesimilarities","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSS95%2Fcurvesimilarities","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSS95%2Fcurvesimilarities/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSS95%2Fcurvesimilarities/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSS95%2Fcurvesimilarities/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JSS95","download_url":"https://codeload.github.com/JSS95/curvesimilarities/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JSS95%2Fcurvesimilarities/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["frechet-distance","geometry","mathematics","python"],"created_at":"2024-10-10T09:29:33.010Z","updated_at":"2026-01-25T13:01:18.495Z","avatar_url":"https://github.com/JSS95.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CurveSimilarities\n\n[![License](https://img.shields.io/github/license/JSS95/curvesimilarities)](https://github.com/JSS95/curvesimilarities/blob/master/LICENSE)\n[![CI](https://github.com/JSS95/curvesimilarities/actions/workflows/ci.yml/badge.svg)](https://github.com/JSS95/curvesimilarities/actions/workflows/ci.yml)\n[![CD](https://github.com/JSS95/curvesimilarities/actions/workflows/cd.yml/badge.svg)](https://github.com/JSS95/curvesimilarities/actions/workflows/cd.yml)\n[![Docs](https://readthedocs.org/projects/curvesimilarities/badge/?version=latest)](https://curvesimilarities.readthedocs.io/en/latest/?badge=latest)\n[![Supported Python Versions](https://img.shields.io/pypi/pyversions/curvesimilarities.svg)](https://pypi.python.org/pypi/curvesimilarities/)\n[![PyPI Version](https://img.shields.io/pypi/v/curvesimilarities.svg)](https://pypi.python.org/pypi/curvesimilarities/)\n\n![title](https://curvesimilarities.readthedocs.io/en/latest/_images/plot-header.png)\n\nA Numpy-friendly package for curve similarity measures.\n\nList of supported measures:\n- Dynamic time warping distance (`dtw()`)\n- (Continuous) Fréchet distance (`fd()`)\n- Discrete Fréchet distance (`dfd()`)\n- Integral Fréchet distance (`ifd()`)\n\n## Usage\n\n```python\n\u003e\u003e\u003e import numpy as np\n\u003e\u003e\u003e from curvesimilarities import fd  # (Continuous) Fréchet distance\n\u003e\u003e\u003e fd(np.array([[0, 0], [1, 3], [2, 0]]), np.array([[0, 1], [2, 1]]))\n2.0\n```\n\n## Installation\n\nCurveSimilarities can be installed using `pip`.\n\n```\n$ pip install curvesimilarities\n```\n\n## Documentation\n\nCurveSimilarities is documented with [Sphinx](https://pypi.org/project/Sphinx/).\nThe manual can be found on Read the Docs:\n\n\u003e https://curvesimilarities.readthedocs.io/\n\nIf you want to build the document yourself, get the source code and install with `[doc]` dependency.\nThen, go to `doc` directory and build the document:\n\n```\n$ pip install .[doc]\n$ cd doc\n$ make html\n```\n\nDocument will be generated in `build/html` directory. Open `index.html` to see the central page.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjss95%2Fcurvesimilarities","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjss95%2Fcurvesimilarities","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjss95%2Fcurvesimilarities/lists"}