-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support GeoInterface geometry column(s). (#41)
* Support GeoInterface geometry column(s). * Update dependend on recent GeoInterface. * Always try to write :geometry as column name. * Catch geom_columns being nothing. * Up GI compat.
- Loading branch information
Showing
6 changed files
with
100 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ docs/src/*.png | |
*.sbn | ||
*.sbx | ||
*.sha256 | ||
.DS_Store | ||
Manifest.toml |
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,19 +1,21 @@ | ||
name = "GeoDataFrames" | ||
uuid = "62cb38b5-d8d2-4862-a48e-6a340996859f" | ||
authors = ["Maarten Pronk <[email protected]> and contributors"] | ||
version = "0.2.4" | ||
version = "0.3.0" | ||
|
||
[deps] | ||
ArchGDAL = "c9ce4bd3-c3d5-55b8-8973-c0e20141b8c3" | ||
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" | ||
GeoFormatTypes = "68eda718-8dee-11e9-39e7-89f7f65f511f" | ||
GeoInterface = "cf35fbd7-0cd7-5166-be24-54bfbe79505f" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | ||
|
||
[compat] | ||
ArchGDAL = "0.8, 0.9" | ||
ArchGDAL = "0.9" | ||
DataFrames = "1.0" | ||
GeoFormatTypes = "0.3, 0.4" | ||
GeoInterface = "1.0.1" | ||
Tables = "1" | ||
julia = "1.6" | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
function stringlist(dict::Dict{String,String}) | ||
sv = Vector{String}() | ||
for (k, v) in pairs(dict) | ||
push!(sv, uppercase(string(k)) * "=" * string(v)) | ||
end | ||
return sv | ||
end |
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