Skip to content

Commit

Permalink
Update scripts dependencies (#179)
Browse files Browse the repository at this point in the history
* update deps

* fix example

* Update projjson schema version in the example metadata

* remove trailing newline

* add updated example.parquet
  • Loading branch information
kylebarron authored Jul 27, 2023
1 parent ad32cca commit dc941c0
Show file tree
Hide file tree
Showing 6 changed files with 576 additions and 581 deletions.
Binary file modified examples/example.parquet
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/example_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
83.6451
],
"crs": {
"$schema": "https://proj.org/schemas/v0.5/projjson.schema.json",
"$schema": "https://proj.org/schemas/v0.6/projjson.schema.json",
"area": "World.",
"bbox": {
"east_longitude": 180,
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
HERE = pathlib.Path(__file__).parent

df = geopandas.read_file(geopandas.datasets.get_path("naturalearth_lowres"))
df = df.to_crs("crs84")
df = df.to_crs("ogc:84")
table = pa.Table.from_pandas(df.head().to_wkb())


Expand Down
Loading

0 comments on commit dc941c0

Please sign in to comment.