newradio 1.3__tar.gz
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.
- newradio-1.3/PKG-INFO +69 -0
- newradio-1.3/README.md +42 -0
- newradio-1.3/newradio.egg-info/PKG-INFO +69 -0
- newradio-1.3/newradio.egg-info/SOURCES.txt +7 -0
- newradio-1.3/newradio.egg-info/dependency_links.txt +1 -0
- newradio-1.3/newradio.egg-info/requires.txt +6 -0
- newradio-1.3/newradio.egg-info/top_level.txt +1 -0
- newradio-1.3/pyproject.toml +43 -0
- newradio-1.3/setup.cfg +4 -0
newradio-1.3/PKG-INFO
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: newradio
|
|
3
|
+
Version: 1.3
|
|
4
|
+
Summary: Utilities for 5G NR network analysis, including grid mapping and geographic calculations
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/newradio
|
|
8
|
+
Project-URL: Repository, https://github.com/yourusername/newradio
|
|
9
|
+
Keywords: 5g,nr,network,grid,gis,geolocation
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
Requires-Dist: numpy
|
|
22
|
+
Requires-Dist: tqdm
|
|
23
|
+
Requires-Dist: scipy
|
|
24
|
+
Requires-Dist: psycopg2
|
|
25
|
+
Requires-Dist: pandas
|
|
26
|
+
Requires-Dist: sqlalchemy==1.4.52
|
|
27
|
+
|
|
28
|
+
# newradio
|
|
29
|
+
|
|
30
|
+
Utilities for 5G NR network analysis, including grid mapping and geographic calculations.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install newradio
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
- **GridMapper**: Convert between grid IDs and longitude/latitude coordinates for Guangdong Province (20x20m grid)
|
|
41
|
+
- **MDT**: Grid ID and coordinate conversion utilities
|
|
42
|
+
- **DualPoints**: Calculate distance between two geographic points using Haversine formula
|
|
43
|
+
- **genNearPoint**: Find nearby points within a specified radius
|
|
44
|
+
- **comb_files**: Multi-process CSV/Excel file merging
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from newradio.common import GridMapper, MDT, DualPoints, haversine
|
|
50
|
+
|
|
51
|
+
# Grid ID to coordinates
|
|
52
|
+
mapper = GridMapper()
|
|
53
|
+
lon, lat = mapper.gridid_to_lnglat(12345)
|
|
54
|
+
|
|
55
|
+
# Coordinates to grid ID
|
|
56
|
+
gridid = mapper.lnglat_to_gridid(113.5, 23.5)
|
|
57
|
+
|
|
58
|
+
# Calculate distance between two points
|
|
59
|
+
distance = haversine(23.5, 113.5, 23.6, 113.6)
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Requirements
|
|
63
|
+
|
|
64
|
+
- numpy
|
|
65
|
+
- tqdm
|
|
66
|
+
- scipy
|
|
67
|
+
- psycopg2
|
|
68
|
+
- pandas
|
|
69
|
+
- sqlalchemy==1.4.52
|
newradio-1.3/README.md
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# newradio
|
|
2
|
+
|
|
3
|
+
Utilities for 5G NR network analysis, including grid mapping and geographic calculations.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install newradio
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Features
|
|
12
|
+
|
|
13
|
+
- **GridMapper**: Convert between grid IDs and longitude/latitude coordinates for Guangdong Province (20x20m grid)
|
|
14
|
+
- **MDT**: Grid ID and coordinate conversion utilities
|
|
15
|
+
- **DualPoints**: Calculate distance between two geographic points using Haversine formula
|
|
16
|
+
- **genNearPoint**: Find nearby points within a specified radius
|
|
17
|
+
- **comb_files**: Multi-process CSV/Excel file merging
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
from newradio.common import GridMapper, MDT, DualPoints, haversine
|
|
23
|
+
|
|
24
|
+
# Grid ID to coordinates
|
|
25
|
+
mapper = GridMapper()
|
|
26
|
+
lon, lat = mapper.gridid_to_lnglat(12345)
|
|
27
|
+
|
|
28
|
+
# Coordinates to grid ID
|
|
29
|
+
gridid = mapper.lnglat_to_gridid(113.5, 23.5)
|
|
30
|
+
|
|
31
|
+
# Calculate distance between two points
|
|
32
|
+
distance = haversine(23.5, 113.5, 23.6, 113.6)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Requirements
|
|
36
|
+
|
|
37
|
+
- numpy
|
|
38
|
+
- tqdm
|
|
39
|
+
- scipy
|
|
40
|
+
- psycopg2
|
|
41
|
+
- pandas
|
|
42
|
+
- sqlalchemy==1.4.52
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: newradio
|
|
3
|
+
Version: 1.3
|
|
4
|
+
Summary: Utilities for 5G NR network analysis, including grid mapping and geographic calculations
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/newradio
|
|
8
|
+
Project-URL: Repository, https://github.com/yourusername/newradio
|
|
9
|
+
Keywords: 5g,nr,network,grid,gis,geolocation
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
Requires-Dist: numpy
|
|
22
|
+
Requires-Dist: tqdm
|
|
23
|
+
Requires-Dist: scipy
|
|
24
|
+
Requires-Dist: psycopg2
|
|
25
|
+
Requires-Dist: pandas
|
|
26
|
+
Requires-Dist: sqlalchemy==1.4.52
|
|
27
|
+
|
|
28
|
+
# newradio
|
|
29
|
+
|
|
30
|
+
Utilities for 5G NR network analysis, including grid mapping and geographic calculations.
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install newradio
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
- **GridMapper**: Convert between grid IDs and longitude/latitude coordinates for Guangdong Province (20x20m grid)
|
|
41
|
+
- **MDT**: Grid ID and coordinate conversion utilities
|
|
42
|
+
- **DualPoints**: Calculate distance between two geographic points using Haversine formula
|
|
43
|
+
- **genNearPoint**: Find nearby points within a specified radius
|
|
44
|
+
- **comb_files**: Multi-process CSV/Excel file merging
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
```python
|
|
49
|
+
from newradio.common import GridMapper, MDT, DualPoints, haversine
|
|
50
|
+
|
|
51
|
+
# Grid ID to coordinates
|
|
52
|
+
mapper = GridMapper()
|
|
53
|
+
lon, lat = mapper.gridid_to_lnglat(12345)
|
|
54
|
+
|
|
55
|
+
# Coordinates to grid ID
|
|
56
|
+
gridid = mapper.lnglat_to_gridid(113.5, 23.5)
|
|
57
|
+
|
|
58
|
+
# Calculate distance between two points
|
|
59
|
+
distance = haversine(23.5, 113.5, 23.6, 113.6)
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Requirements
|
|
63
|
+
|
|
64
|
+
- numpy
|
|
65
|
+
- tqdm
|
|
66
|
+
- scipy
|
|
67
|
+
- psycopg2
|
|
68
|
+
- pandas
|
|
69
|
+
- sqlalchemy==1.4.52
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel", "setuptools-scm[toml]>=6.2"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "newradio"
|
|
7
|
+
version = "1.3"
|
|
8
|
+
description = "Utilities for 5G NR network analysis, including grid mapping and geographic calculations"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Your Name", email = "your.email@example.com"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["5g", "nr", "network", "grid", "gis", "geolocation"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.8",
|
|
22
|
+
"Programming Language :: Python :: 3.9",
|
|
23
|
+
"Programming Language :: Python :: 3.10",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
dependencies = [
|
|
29
|
+
"numpy",
|
|
30
|
+
"tqdm",
|
|
31
|
+
"scipy",
|
|
32
|
+
"psycopg2",
|
|
33
|
+
"pandas",
|
|
34
|
+
"sqlalchemy==1.4.52",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://github.com/yourusername/newradio"
|
|
39
|
+
Repository = "https://github.com/yourusername/newradio"
|
|
40
|
+
|
|
41
|
+
[tool.setuptools.packages.find]
|
|
42
|
+
where = ["."]
|
|
43
|
+
include = ["newradio*"]
|
newradio-1.3/setup.cfg
ADDED