From 1838a59cc01a70f7dc29963f50e4463f716bee37 Mon Sep 17 00:00:00 2001 From: Maarten Pronk Date: Sat, 4 Jun 2022 21:28:06 +0200 Subject: [PATCH] Cleanup, fixed links. --- README.md | 8 ++++---- src/GeoParquet.jl | 10 ---------- src/meta.jl | 2 -- 3 files changed, 4 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 686fa42..e9606e0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/src/GeoParquet.jl b/src/GeoParquet.jl index 47a2081..782f319 100644 --- a/src/GeoParquet.jl +++ b/src/GeoParquet.jl @@ -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 diff --git a/src/meta.jl b/src/meta.jl index 1680bc0..c08aab4 100644 --- a/src/meta.jl +++ b/src/meta.jl @@ -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))