windborne 1.0.9__py3-none-any.whl → 1.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: windborne
3
- Version: 1.0.9
3
+ Version: 1.1.1
4
4
  Summary: A Python library for interacting with WindBorne Data and Forecasts API
5
5
  Author-email: WindBorne Systems <data@windbornesystems.com>
6
6
  Classifier: Programming Language :: Python :: 3
@@ -8,7 +8,6 @@ Classifier: License :: OSI Approved :: MIT License
8
8
  Requires-Python: >=3.6
9
9
  Description-Content-Type: text/markdown
10
10
  Requires-Dist: requests
11
- Requires-Dist: boto3>=1.10.0
12
11
  Requires-Dist: PyJWT
13
12
  Requires-Dist: numpy
14
13
  Requires-Dist: xarray
@@ -0,0 +1,13 @@
1
+ windborne/__init__.py,sha256=0bPtPzBG3djZMVfyUNhapiEqCSyN8SSDsm_eCZ4kwhc,1783
2
+ windborne/api_request.py,sha256=J7kcCC3xiISHnrTLxMkFQCEu8rg8UntYvFfP5wkLabQ,11117
3
+ windborne/cli.py,sha256=hAnG1n6ZDICqj3nvjS8Xkc3psLeL-Hxewkmy-FABSCU,35807
4
+ windborne/cyclone_formatting.py,sha256=0S8S_PflRGm6ftUlyR2aGGyX6IRn0hbUTEWptu7f8Q8,7886
5
+ windborne/data_api.py,sha256=JBdedKWdx3eXKz0wGKqDLkR-QYl8O2SjutPL3LPx4l8,30457
6
+ windborne/forecasts_api.py,sha256=-IM78Dr10rV-CKVqRWXpptJPe7Hh64DNMO3P3zVgvuQ,13790
7
+ windborne/observation_formatting.py,sha256=c739aaun6aaYhXl5VI-SRGR-TDS355_0Bfu1t6McoiM,14993
8
+ windborne/utils.py,sha256=AJhvdwtfDrV0NQyN_I5JxXr6K3UgFlPCwUGqApe-c2E,6431
9
+ windborne-1.1.1.dist-info/METADATA,sha256=W5ZRFOnDBarbmqo8Wr4Ix8NWC47VqpsYaQYLVo3W5Vk,1235
10
+ windborne-1.1.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
11
+ windborne-1.1.1.dist-info/entry_points.txt,sha256=j_YrqdCDrCd7p5MIwQ2BYwNXEi95VNANzLRJmcXEg1U,49
12
+ windborne-1.1.1.dist-info/top_level.txt,sha256=PE9Lauriu5S5REf7JKhXprufZ_V5RiZ_TnfnrLGJrmE,10
13
+ windborne-1.1.1.dist-info/RECORD,,
windborne/config.py DELETED
@@ -1,42 +0,0 @@
1
- import os
2
-
3
- # current APIs versions and links
4
- DATA_API_BASE_URL = "https://sensor-data.windbornesystems.com/api/v1"
5
- FORECASTS_API_BASE_URL = "https://forecasts.windbornesystems.com/api/v1"
6
-
7
- # If not set properly make_api_request will display an error message
8
- CLIENT_ID = os.getenv("WB_CLIENT_ID")
9
- API_KEY = os.getenv("WB_API_KEY")
10
-
11
- LAUNCH_SITES = {
12
- '2af36807-2a03-4a89-a54c-c4a09906215a': 'VD',
13
- '1d8f0702-bd4f-485c-b461-bac0375bbfdd': 'DC',
14
- '95dc05e7-ebc2-4127-ae70-6a84cd7c9480': 'WS',
15
- '72d649c7-6faa-4a12-8c78-3e5e9a149766': 'AL',
16
- 'd06da229-94b2-4a9d-828c-a20d8b3c7e3f': 'NY',
17
- '97186bc1-0fe5-4dcf-b86a-fd00b3e9ba92': 'FH',
18
- '7dea0491-a41c-4d49-b371-db2a0babe98c': 'HW',
19
- 'ac69c1de-91d9-4b2f-9a41-6aacec10ddcc': 'OAK',
20
- 'ea9a469a-1f7d-4691-b2ad-73cd04842c42': 'SV',
21
- '954ddab5-9a0d-48ad-899c-0207f32e123f': 'BW',
22
- 'e6074c13-16ff-42c9-9316-bececf7184b5': 'LAH',
23
- 'd65f0b97-f6e9-49d3-8ae5-89c1efd6690c': 'OKC',
24
- 'dcdba72f-3fb2-4971-9ba1-30df7f67b932': 'FL',
25
- '90fe9fd7-d656-4943-b57b-c90868cf3ca0': 'FB',
26
- '51da1d97-4473-466d-96fe-8b2c45462189': 'CB',
27
- 'd504fe5c-e3ec-4c83-87c7-807f63d3aed0': 'PR',
28
- '7b5867eb-48d7-42c7-8028-346588877e95': 'SC',
29
- '15a10191-ecc7-42ed-865d-aa2c304be720': 'SK',
30
- '7489f53d-e937-4098-9666-b735b5ed5a06': 'DAEGU',
31
- 'be90782a-59db-4dc4-bdb5-e41d81c60343': 'KE'
32
- }
33
-
34
- # GRIDDED FORECASTS
35
- FORECASTS_GRIDDED_URL = f"{FORECASTS_API_BASE_URL}/gridded"
36
-
37
- # HISTORICAL FORECASTS
38
- FORECASTS_HISTORICAL_URL = f"{FORECASTS_API_BASE_URL}/gridded/historical"
39
-
40
- # TCS
41
- FORECASTS_TCS_URL = f"{FORECASTS_API_BASE_URL}/tropical_cyclones"
42
- TCS_SUPPORTED_FORMATS = ('.csv', '.json', '.geojson', '.gpx', '.kml', 'little_r')
@@ -1,11 +0,0 @@
1
- windborne/__init__.py,sha256=aDFnZEPGmulZ-VVAVD-0maK3UFeLl9PxUyxp_qZ85Gk,1894
2
- windborne/cli.py,sha256=Qp6wu3ZbXwnpmHa3odr0sjIJ3DOhtraQblUGwKWEKWc,36416
3
- windborne/config.py,sha256=FYIBRiIuii5igAFQlOsHUa6u2i1kKnO1yZE7QfQJvUg,1688
4
- windborne/data_api.py,sha256=0NrbLz7tUgPZnzkyr1ymziYuW5Gx4SHrXNj7VPG9keI,63458
5
- windborne/forecasts_api.py,sha256=AYuhFRls_XvzuNB55NF0w3y-_ocYwPxmI6C1lIyFkgM,16865
6
- windborne/utils.py,sha256=ZcVXhUzfDwPTdk2a05HV00dAXTAQFdCGai7IjjaYqqs,39708
7
- windborne-1.0.9.dist-info/METADATA,sha256=Hw2dKi1AwnjvGW4Tu2xEr8lZStYWNE2YBWi9KR6FjjE,1264
8
- windborne-1.0.9.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
9
- windborne-1.0.9.dist-info/entry_points.txt,sha256=j_YrqdCDrCd7p5MIwQ2BYwNXEi95VNANzLRJmcXEg1U,49
10
- windborne-1.0.9.dist-info/top_level.txt,sha256=PE9Lauriu5S5REf7JKhXprufZ_V5RiZ_TnfnrLGJrmE,10
11
- windborne-1.0.9.dist-info/RECORD,,