{"id":21482782,"url":"https://github.com/ibmstreams/pypi.streamsx.geospatial","last_synced_at":"2025-08-05T08:15:05.631Z","repository":{"id":57471785,"uuid":"221693111","full_name":"IBMStreams/pypi.streamsx.geospatial","owner":"IBMStreams","description":"A project to allow natural use of Streams for a Python developer. It will be registered with PyPi to allow 'pip install' of Python packages that support Python developers interacting with IBM Streams. ","archived":false,"fork":false,"pushed_at":"2020-12-07T08:07:13.000Z","size":128,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":10,"default_branch":"develop","last_synced_at":"2025-03-17T09:22:35.247Z","etag":null,"topics":["pypi","python","python-packages"],"latest_commit_sha":null,"homepage":"https://ibmstreams.github.io/pypi.streamsx.geospatial/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/IBMStreams.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}},"created_at":"2019-11-14T12:31:06.000Z","updated_at":"2020-12-07T07:55:47.000Z","dependencies_parsed_at":"2022-08-30T13:51:22.994Z","dependency_job_id":null,"html_url":"https://github.com/IBMStreams/pypi.streamsx.geospatial","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/IBMStreams/pypi.streamsx.geospatial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IBMStreams%2Fpypi.streamsx.geospatial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IBMStreams%2Fpypi.streamsx.geospatial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IBMStreams%2Fpypi.streamsx.geospatial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IBMStreams%2Fpypi.streamsx.geospatial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/IBMStreams","download_url":"https://codeload.github.com/IBMStreams/pypi.streamsx.geospatial/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/IBMStreams%2Fpypi.streamsx.geospatial/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267054264,"owners_count":24028251,"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","status":"online","status_checked_at":"2025-07-25T02:00:09.625Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["pypi","python","python-packages"],"created_at":"2024-11-23T12:36:28.471Z","updated_at":"2025-08-05T08:15:05.594Z","avatar_url":"https://github.com/IBMStreams.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Python streamsx.geospatial package\n\nThis exposes SPL operators in the `com.ibm.streamsx.geospatial` toolkit as Python methods.\n\nPackage is organized using standard packaging to upload to PyPi.\n\nThe package is uploaded to PyPi in the standard way:\n```\ncd package\npython setup.py sdist bdist_wheel upload -r pypi\n```\nNote: This is done using the `ibmstreams` account at pypi.org and requires `.pypirc` file containing the credentials in your home directory.\n\nPackage details: https://pypi.python.org/pypi/streamsx.geospatial\n\nDocumentation is using Sphinx and can be built locally using:\n```\ncd package/docs\nmake html\n```\n\nor\n\n    ant doc\n\nand viewed using\n```\nfirefox package/docs/build/html/index.html\n```\n\nThe documentation is also setup at `readthedocs.io`.\n\nDocumentation links:\n* http://streamsxgeospatial.readthedocs.io\n\n## Version update\n\nTo change the version information of the Python package, edit following files:\n\n- ./package/docs/source/conf.py\n- ./package/streamsx/geospatial/\\_\\_init\\_\\_.py\n\nWhen the development status changes, edit the *classifiers* in\n\n- ./package/setup.py\n\nWhen the documented sample must be changed, change it here:\n\n- ./package/streamsx/geospatial/\\_\\_init\\_\\_.py\n- ./package/DESC.txt\n\n## Environment\n\nYou need the streamsx package in version 1.13.15 to use and test the streamsx.geospatial package. Install it like this:\n\n    pip install streamsx==1.13.15\n\nIn addition you should unset the PYTHONPATH variable to not use the streams package included in your local Streams installation:\n\n    unset PYTHONPATH\n    \n## Test\n\nWhen using local build (e.g. not forcing remote build), then you need to specifiy the toolkit location, for example:\n\n    export STREAMSX_GEOSPATIAL_TOOLKIT=\u003cPATH_TO_GEOSPATIAL_TOOLKIT\u003e/com.ibm.streamsx.geospatial\n\n\n### Build only test\n\nRun the test with:\n\n    ant test-build-only\n\n\n```\ncd package\npython3 -u -m unittest streamsx.geospatial.tests.test_regionmatch.Test\n```\n\n\n### Distributed test\n\nMake sure that the streams environment is set and the environment variables:\nSTREAMS_INSTALL, STREAMS_DOMAIN_ID, and STREAMS_INSTANCE_ID are setup.\n\nRun the test with:\n\n    ant test\n\nor\n\n```\ncd package\npython3 -u -m unittest streamsx.geospatial.tests.test_regionmatch.TestDistributed\n```\n\n\n\n### Streaming Analytics service\n\nPackage can be tested with TopologyTester using the [Streaming Analytics](https://www.ibm.com/cloud/streaming-analytics) service.\n\nRun the test with:\n\n    ant test-sas\n\nor\n\n```\ncd package\npython3 -u -m unittest streamsx.geospatial.tests.test_regionmatch.TestStreamingAnalytics\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibmstreams%2Fpypi.streamsx.geospatial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fibmstreams%2Fpypi.streamsx.geospatial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fibmstreams%2Fpypi.streamsx.geospatial/lists"}