Skip to content

Commit

Permalink
Cleanup, fixed links.
Browse files Browse the repository at this point in the history
  • Loading branch information
evetion committed Jun 4, 2022
1 parent 3ff04fd commit 1838a59
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 16 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# GeoParquet

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://evetion.github.io/GeoParquet.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://evetion.github.io/GeoParquet.jl/dev)
[![Build Status](https://github.com/evetion/GeoParquet.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/evetion/GeoParquet.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/evetion/GeoParquet.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/evetion/GeoParquet.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaGeo.github.io/GeoParquet.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaGeo.github.io/GeoParquet.jl/dev)
[![Build Status](https://github.com/JuliaGeo/GeoParquet.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaGeo/GeoParquet.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/JuliaGeo/GeoParquet.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaGeo/GeoParquet.jl)

Adding *geospatial data* to Parquet. Follows the [GeoParquet](https://github.com/opengeospatial/geoparquet) `v0.4` spec.

Expand Down
10 changes: 0 additions & 10 deletions src/GeoParquet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,4 @@ include("utils.jl")
include("io.jl")
include("geointerface.jl")

# precompile(Parquet2.Dataset, (String,))
# precompile(Parquet2.Dataset, (Parquet2.FilePathsBase.PosixPath,))
# precompile(Parquet2.FileManager, (Parquet2.FilePathsBase.PosixPath, Parquet2.VectorFetcher))
# precompile(Parquet2.Dataset, (Parquet2.FileManager{Parquet2.FilePathsBase.PosixPath,Parquet2.VectorFetcher},))
# precompile(DataFrame, (Parquet2.FileManager{Parquet2.FilePathsBase.PosixPath,Parquet2.VectorFetcher},))

# function __init__()
# Parquet2.Dataset(jinpath(@__DIR__, "../test/data/example.parquet"))
# end

end
2 changes: 0 additions & 2 deletions src/meta.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ StructTypes.StructType(::Type{GFT.WellKnownText2{GFT.CRS}}) = StructTypes.String
StructTypes.StructType(::Type{GFT.ProjJSON}) = StructTypes.DictType()
StructTypes.construct(::Type{GFT.ProjJSON}, x::Dict; kw...) = GFT.ProjJSON(x)

# Base.keys(p::GFT.ProjJSON) = keys(p.val)
# Base.values(p::GFT.ProjJSON) = values(p.val)
Base.pairs(p::GFT.ProjJSON) = pairs(p.val)
GFT.ProjJSON(input::Dict{Symbol,<:Any}) = GFT.ProjJSON(todict(input))

Expand Down

2 comments on commit 1838a59

@evetion
Copy link
Member Author

@evetion evetion commented on 1838a59 Jun 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/61745

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 1838a59cc01a70f7dc29963f50e4463f716bee37
git push origin v0.1.0

Please sign in to comment.