Skip to content

Commit 4317af1

Browse files
committed
removed pyogrio from dist (no pure python wheel), used driver="fiona" in reading JSON dataset (GPKG doesn't seem to work)
1 parent 6c08798 commit 4317af1

11 files changed

+9
-622
lines changed

dist/weavingspace-0.0.4.2.tar.gz

-82.8 KB
Binary file not shown.

dist/weavingspace-0.0.4.6.tar.gz

79.7 KB
Binary file not shown.

pyproject.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta"
44

5-
[tool.setuptools.packages]
6-
find = {}
5+
[tool.setuptools.packages.find]
6+
include = ["weavingspace"]
7+
exclude = ["superseded"]
78

89
[project]
910
name = "weavingspace"
10-
version = "0.0.4.2"
11+
version = "0.0.4.6"
1112
authors = [
1213
{ name="David O'Sullivan", email="[email protected]" },
1314
]

tiling-explorer-2.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,15 @@ def _():
2121

2222
@app.cell(hide_code=True)
2323
def _():
24-
import requests
2524
import geopandas as gpd
2625
from weavingspace.tile_unit import TileUnit
2726
from weavingspace.tile_map import Tiling
28-
return TileUnit, Tiling, gpd, requests
27+
return TileUnit, Tiling, gpd
2928

3029

3130
@app.cell(hide_code=True)
3231
def _(gpd):
33-
# gdf = gpd.read_file("./examples/data/dummy-data.gpkg")
34-
# gdf = gpd.read_file("https://dosull.github.io/weaving-space/tiling-explorer-2/examples/data/dummy-data.json")
35-
_url = "https://dosull.github.io/weaving-space/tiling-explorer-2/examples/data/dummy-data.json"
36-
# _response = requests.get(_url, stream=True)
37-
# _response.raw.decode_content = True
38-
# gdf = gpd.read_file(_response.content, driver="GPKG")
39-
# _response = requests.get(_url)
40-
gdf = gpd.read_file(_url)
32+
gdf = gpd.read_file("https://dosull.github.io/weaving-space/examples/data/dummy-data.json", engine="fiona")
4133
return (gdf,)
4234

4335

-2.28 MB
Binary file not shown.

tiling-explorer-2/examples/data/dummy-data.json

-593
This file was deleted.

tiling-explorer-2/index.html

+2-2
Large diffs are not rendered by default.

weavingspace.egg-info/PKG-INFO

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.2
22
Name: weavingspace
3-
Version: 0.0.4.2
3+
Version: 0.0.4.6
44
Summary: A package for making tiled mapping layers
55
Author-email: David O'Sullivan <[email protected]>
66
Project-URL: Homepage, https://github.com/DOSull/weaving-space

weavingspace.egg-info/SOURCES.txt

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
LICENSE.md
22
README.md
33
pyproject.toml
4-
superseded/early-python-stuff/main.py
5-
superseded/early-python-stuff/tile.py
64
weavingspace/__init__.py
75
weavingspace/_loom.py
86
weavingspace/_weave_grid.py

weavingspace.egg-info/top_level.txt

-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
1-
dist
2-
doc
3-
examples
4-
images
5-
layouts
6-
notes
7-
odds-and-ends
8-
presentations
9-
superseded
10-
tiling-explorer
11-
tiling-explorer-2
121
weavingspace

0 commit comments

Comments
 (0)