-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christian
committed
Aug 16, 2023
1 parent
6d993da
commit 0f45deb
Showing
32 changed files
with
27 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# osm2gpd: OpenStreetMap to GeoPandas Parser | ||
# osm4gpd: OpenStreetMap to GeoPandas Parser | ||
|
||
![Test](https://github.com/knthls/osm2gpd/actions/workflows/test.yml/badge.svg) | ||
![Release](https://img.shields.io/github/v/release/knthls/osm2gpd) | ||
[![codecov](https://codecov.io/gh/knthls/osm2gpd/branch/main/graph/badge.svg?token=OSNRL1NSNH)](https://codecov.io/gh/knthls/osm2gpd) | ||
![Test](https://github.com/knthls/osm4gpd/actions/workflows/test.yml/badge.svg) | ||
![Release](https://img.shields.io/github/v/release/knthls/osm4gpd) | ||
[![codecov](https://codecov.io/gh/knthls/osm4gpd/branch/main/graph/badge.svg?token=OSNRL1NSNH)](https://codecov.io/gh/knthls/osm4gpd) | ||
|
||
## Introduction | ||
|
||
OSM2GPD is a Python package that provides a moderately memory-efficient parser for loading OpenStreetMap (OSM) data in its native protobuf format into a sparse GeoPandas DataFrame. This package aims to help users work with large OSM datasets while minimizing memory usage and providing a convenient interface for data manipulation. | ||
Osm4gpd is a Python package that provides a fairly memory-efficient parser to load OpenStreetMap data in its native protobuf format into a sparse GeoPandas DataFrame. This package aims to help users work with large OSM datasets while minimizing memory usage and providing a convenient interface for data manipulation. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "osm2gpd" | ||
version = "0.2.0" | ||
name = "osm4gpd" | ||
version = "0.1.0" | ||
description = "A parser that loads openstreetmaps native protobuf format into a sparse geopandas dataframe." | ||
authors = ["Christian <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -36,7 +36,7 @@ pandas-stubs = "^2.0.3.230814" | |
version = "0.2.0" | ||
tag_format = "$version" | ||
version_files = [ | ||
"osm2gpd/__version__.py", | ||
"osm4gpd/__version__.py", | ||
"pyproject.toml:^version" | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import pytest | ||
|
||
from osm2gpd.parse import OSMFile | ||
from osm4gpd.parse import OSMFile | ||
|
||
|
||
@pytest.mark.parametrize( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import pytest | ||
|
||
from osm2gpd.parse import OSMFile | ||
from osm4gpd.parse import OSMFile | ||
|
||
|
||
@pytest.mark.parametrize( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters