Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/ovid/feature.clj
Original file line number Diff line number Diff line change
Expand Up @@ -366,3 +366,8 @@
"Convert a Feature's geometry to spatial4j."
[feat]
(update-geometry feat to-shape))

(defn feature?
"WARNING: this assumes feature is implemented as a hashmap, and uses duck-typing"
[feat]
(and (map? feat) (contains? feat :geometry) (contains? feat :properties)))