AppleMapDownloader 1.0.0__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.
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/PKG-INFO +41 -0
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/SOURCES.txt +11 -0
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/dependency_links.txt +1 -0
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/entry_points.txt +2 -0
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/requires.txt +5 -0
- applemapdownloader-1.0.0/AppleMapDownloader.egg-info/top_level.txt +1 -0
- applemapdownloader-1.0.0/PKG-INFO +41 -0
- applemapdownloader-1.0.0/README.md +23 -0
- applemapdownloader-1.0.0/applemapdownloader/__init__.py +3 -0
- applemapdownloader-1.0.0/applemapdownloader/__main__.py +3 -0
- applemapdownloader-1.0.0/applemapdownloader/app.py +3011 -0
- applemapdownloader-1.0.0/pyproject.toml +32 -0
- applemapdownloader-1.0.0/setup.cfg +4 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: AppleMapDownloader
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Apple Maps raster downloader and stitcher GUI
|
|
5
|
+
Author: Tarek Wasfy
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: maps,raster,stitching,geotiff,apple-maps
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: pillow
|
|
15
|
+
Requires-Dist: tifffile
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: PySide6
|
|
18
|
+
|
|
19
|
+
# AppleMapDownloader
|
|
20
|
+
|
|
21
|
+
AppleMapDownloader is a desktop raster downloader/stitcher GUI based on PySide6.
|
|
22
|
+
|
|
23
|
+
Use only with map or tile servers for which you have permission. Many public map providers prohibit bulk downloading.
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```powershell
|
|
28
|
+
python -m pip install AppleMapDownloader
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Start
|
|
32
|
+
|
|
33
|
+
```powershell
|
|
34
|
+
applemapdownloader
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
or:
|
|
38
|
+
|
|
39
|
+
```powershell
|
|
40
|
+
python -m applemapdownloader
|
|
41
|
+
```
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
AppleMapDownloader.egg-info/PKG-INFO
|
|
4
|
+
AppleMapDownloader.egg-info/SOURCES.txt
|
|
5
|
+
AppleMapDownloader.egg-info/dependency_links.txt
|
|
6
|
+
AppleMapDownloader.egg-info/entry_points.txt
|
|
7
|
+
AppleMapDownloader.egg-info/requires.txt
|
|
8
|
+
AppleMapDownloader.egg-info/top_level.txt
|
|
9
|
+
applemapdownloader/__init__.py
|
|
10
|
+
applemapdownloader/__main__.py
|
|
11
|
+
applemapdownloader/app.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
applemapdownloader
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: AppleMapDownloader
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Apple Maps raster downloader and stitcher GUI
|
|
5
|
+
Author: Tarek Wasfy
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: maps,raster,stitching,geotiff,apple-maps
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: GIS
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Requires-Dist: pillow
|
|
15
|
+
Requires-Dist: tifffile
|
|
16
|
+
Requires-Dist: numpy
|
|
17
|
+
Requires-Dist: PySide6
|
|
18
|
+
|
|
19
|
+
# AppleMapDownloader
|
|
20
|
+
|
|
21
|
+
AppleMapDownloader is a desktop raster downloader/stitcher GUI based on PySide6.
|
|
22
|
+
|
|
23
|
+
Use only with map or tile servers for which you have permission. Many public map providers prohibit bulk downloading.
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```powershell
|
|
28
|
+
python -m pip install AppleMapDownloader
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Start
|
|
32
|
+
|
|
33
|
+
```powershell
|
|
34
|
+
applemapdownloader
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
or:
|
|
38
|
+
|
|
39
|
+
```powershell
|
|
40
|
+
python -m applemapdownloader
|
|
41
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# AppleMapDownloader
|
|
2
|
+
|
|
3
|
+
AppleMapDownloader is a desktop raster downloader/stitcher GUI based on PySide6.
|
|
4
|
+
|
|
5
|
+
Use only with map or tile servers for which you have permission. Many public map providers prohibit bulk downloading.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```powershell
|
|
10
|
+
python -m pip install AppleMapDownloader
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Start
|
|
14
|
+
|
|
15
|
+
```powershell
|
|
16
|
+
applemapdownloader
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
or:
|
|
20
|
+
|
|
21
|
+
```powershell
|
|
22
|
+
python -m applemapdownloader
|
|
23
|
+
```
|