Skip to content

Commit

Permalink
Merge pull request #19 from agrenott/dev
Browse files Browse the repository at this point in the history
Rely on numpy array to store pending ways
  • Loading branch information
agrenott authored Jun 2, 2023
2 parents eeed683 + 33d68ea commit d40a978
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
venv/
venv*/
.vscode/
.pytest_cache/
__pycache__/
Expand Down
38 changes: 32 additions & 6 deletions pyhgtmap/output/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import logging
from typing import Callable, List, NamedTuple, Tuple
from typing import Any, Callable, List, NamedTuple, Tuple

import numpy
from nptyping import NDArray, Structure

from pyhgtmap.hgt.tile import TileContours

Expand All @@ -18,6 +19,12 @@
],
)

# Efficient representation of many ways (array of 4-tuple, similar to a list of WayType)
WaysType = NDArray[
Any,
Structure["first_node_id: Int, nb_nodes: Int, closed_loop: Bool, elevation: Int"],
]

NodeType = Tuple[int, int]


Expand All @@ -42,37 +49,41 @@ class Output:

def __init__(self) -> None:
self.timestampString: str
self.ways_pending_write: List[Tuple[List[WayType], int]] = []
self.ways_pending_write: List[Tuple[WaysType, int]] = []

def write_nodes(
self,
tile_contours: TileContours,
timestamp_string: str,
start_node_id: int,
osm_version: float,
) -> Tuple[int, List[WayType]]:
) -> Tuple[int, WaysType]:
"""
Write nodes and prepare associated ways.
Return (latest_node_id, [ways]) tuple.
"""
raise NotImplementedError

def write_ways(self, ways: List[WayType], start_way_id: int) -> None:
def write_ways(self, ways: WaysType, start_way_id: int) -> None:
"""
Add ways previously prepared by write_nodes to be written later
(as ways should ideally be written after all nodes).
"""
self.ways_pending_write.append((ways, start_way_id))

def _write_ways(self, ways: List[WayType], start_way_id: int) -> None:
def _write_ways(self, ways: WaysType, start_way_id: int) -> None:
"""Actually write ways, upon output finalization via done()."""
raise NotImplementedError

def done(self) -> None:
"""Finalize and close file."""
logger.debug("done() - Writing pending ways")
logger.debug(
"done() - Writing %s pending ways",
sum([len(x[0]) for x in self.ways_pending_write]),
)
for ways, start_way_id in self.ways_pending_write:
self._write_ways(ways, start_way_id)
logger.debug("done() - done!")

def flush(self) -> None:
"""Flush file to disk."""
Expand Down Expand Up @@ -121,3 +132,18 @@ def make_nodes_ways(
else:
ways.append(WayType(nodeRefs[0], len(nodeRefs), False, elevation))
return nodes, ways


def build_efficient_ways(ways: List[WayType]) -> WaysType:
"""Convert a list of ways (tuples) into a more efficient numpy array."""
return numpy.array(
ways,
dtype=numpy.dtype(
[
("first_node_id", int),
("nb_nodes", int),
("closed_loop", bool),
("elevation", int),
]
),
) # type: ignore # not supported by pylance
16 changes: 8 additions & 8 deletions pyhgtmap/output/o5mUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


import time
from typing import Callable, List, Tuple
from typing import Callable, Tuple

import pyhgtmap.output
from pyhgtmap import output
Expand Down Expand Up @@ -173,7 +173,7 @@ def makeNodeData(self, node, lastNode, idDelta):
# no tags, so data is complete now
return join(data)

def _write_ways(self, ways, startWayId):
def _write_ways(self, ways: pyhgtmap.output.WaysType, startWayId):
"""writes ways to self.outf. ways shall be a list of
(<startNodeId>, <length>, <isCycle>, <elevation>) tuples.
"""
Expand All @@ -187,7 +187,7 @@ def _write_ways(self, ways, startWayId):
for way in ways[1:]:
self.writeWay(way, idDelta=1)

def writeWay(self, way, idDelta, first=False):
def writeWay(self, way: pyhgtmap.output.WayType, idDelta, first=False):
wayDataset = []
# 0x11 means way
wayDataset.append(writableInt(0x11))
Expand All @@ -197,7 +197,7 @@ def writeWay(self, way, idDelta, first=False):
wayDataset.append(wayData)
self.outf.write(join(wayDataset))

def makeWayData(self, way, idDelta, first):
def makeWayData(self, way: pyhgtmap.output.WayType, idDelta, first):
startNodeId, length, isCycle, elevation = way
data = []
data.append(sint2str(idDelta))
Expand Down Expand Up @@ -263,16 +263,16 @@ def write_nodes(
timestamp_string: str,
start_node_id: int,
osm_version: float,
) -> Tuple[int, List[output.WayType]]:
) -> Tuple[int, output.WaysType]:
return writeNodes(self, tile_contours, timestamp_string, start_node_id)


def writeNodes(
output: Output,
tile_contours: TileContours,
timestampString,
timestampString, # dummy option
start_node_id,
): # dummy option
) -> Tuple[int, output.WaysType]:
IDCounter = pyhgtmap.output.Id(start_node_id)
ways = []
nodes = []
Expand All @@ -294,4 +294,4 @@ def writeNodes(
if len(nodes) > 0:
output.write(str((startId, nodes)) + "\n")
output.flush()
return newId, ways
return newId, pyhgtmap.output.build_efficient_ways(ways)
10 changes: 5 additions & 5 deletions pyhgtmap/output/osmUtil.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import datetime
import time
from io import IOBase
from typing import Callable, List, Tuple
from typing import Callable, Tuple

import numpy

Expand Down Expand Up @@ -80,7 +80,7 @@ def write(self, output):
def flush(self) -> None:
self.outF.flush()

def _write_ways(self, ways, startWayId):
def _write_ways(self, ways: pyhgtmap.output.WaysType, startWayId):
IDCounter = pyhgtmap.output.Id(startWayId)
for startNodeId, length, isCycle, elevation in ways:
IDCounter.curId += 1
Expand Down Expand Up @@ -109,7 +109,7 @@ def write_nodes(
timestamp_string: str,
start_node_id: int,
osm_version: float,
) -> Tuple[int, List[pyhgtmap.output.WayType]]:
) -> Tuple[int, pyhgtmap.output.WaysType]:
return writeXML(
self, tile_contours, timestamp_string, start_node_id, osm_version
)
Expand Down Expand Up @@ -163,7 +163,7 @@ def _writeContourNodes(

def writeXML(
output, tile_contours: TileContours, timestampString, start_node_id, osm_version
):
) -> Tuple[int, pyhgtmap.output.WaysType]:
"""emits node OSM XML to <output> and collects path information.
<output> may be anything having a write method. For now, its used with
Expand Down Expand Up @@ -195,4 +195,4 @@ def writeXML(
)
# output.flush()
newId = IDCounter.getId()
return newId, ways
return newId, pyhgtmap.output.build_efficient_ways(ways)
23 changes: 14 additions & 9 deletions pyhgtmap/output/pbfUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
import time
from typing import Callable, List, Tuple

import numpy
import numpy.typing
import npyosmium
import npyosmium.io
import npyosmium.osm
import npyosmium.osm.mutable
import numpy
import numpy.typing

import pyhgtmap.output
from pyhgtmap.hgt.tile import TileContours
Expand Down Expand Up @@ -69,22 +69,26 @@ def makeHeader(self, pyhgtmap_version) -> npyosmium.io.Header:

return osm_header

def _write_ways(self, ways: List[pyhgtmap.output.WayType], startWayId) -> None:
def _write_ways(self, ways: pyhgtmap.output.WaysType, startWayId) -> None:
"""writes ways to self.outf. ways shall be a list of
(<startNodeId>, <length>, <isCycle>, <elevation>) tuples.
The waylist is split up to make sure the pbf blobs will not be too big.
"""
for ind, way in enumerate(ways):
closed_loop_id: list[int] = [way.first_node_id] if way.closed_loop else []
closed_loop_id: list[int] = (
[way["first_node_id"]] if way["closed_loop"] else []
)
osm_way = npyosmium.osm.mutable.Way(
id=startWayId + ind,
tags=(
("ele", str(way.elevation)),
("ele", str(way["elevation"])),
("contour", "elevation"),
("contour_ext", self.elevClassifier(way.elevation)),
("contour_ext", self.elevClassifier(way["elevation"])),
),
nodes=list(range(way.first_node_id, way.first_node_id + way.nb_nodes))
nodes=list(
range(way["first_node_id"], way["first_node_id"] + way["nb_nodes"])
)
+ closed_loop_id,
)
self.osm_writer.add_way(osm_way)
Expand All @@ -102,7 +106,7 @@ def write_nodes(
timestamp_string: str,
start_node_id: int,
osm_version: float,
) -> Tuple[int, List[pyhgtmap.output.WayType]]:
) -> Tuple[int, pyhgtmap.output.WaysType]:
logger.debug(f"writeNodes - startId: {start_node_id}")

ways: List[pyhgtmap.output.WayType] = []
Expand Down Expand Up @@ -130,4 +134,5 @@ def write_nodes(
next_node_id += len(contour)

logger.debug(f"writeNodes - next_node_id: {next_node_id}")
return next_node_id, ways

return next_node_id, pyhgtmap.output.build_efficient_ways(ways)
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ dependencies = [
"contourpy>=1.0.7",
"matplotlib>=3.4.3",
"numpy>=1.24.2",
"nptyping>=2.5.0",
"npyosmium>=3.6.1",
"pybind11-rdp>=0.1.3",
"scipy>=1.8.0",
Expand Down

0 comments on commit d40a978

Please sign in to comment.