miami_dade_geo 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 35f9933574eeb9f7163ed1c107c53da3fc116da8
4
+ data.tar.gz: 0bf8e191958d06929163a30f80b3e8268d997b73
5
+ SHA512:
6
+ metadata.gz: 0045aef7a298c51c5ace220ddfbad3fd27a6f3ae462562b220cc4452cada9f5b61c2e6b665e218dbf027f3e12f5070cd5d8c5c3b0e151bf4f4f9cb51c81ae624
7
+ data.tar.gz: c0ee7540fd3626cf8c36483a0b4358479fbd02696faaa4f68c3e51eb2c67897b67f37e18de2f99052454ab2a14ba85d7ef32d3e7a7ec5c5a777d3f2fdfb3997e
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.1
5
+ before_install: gem install bundler -v 1.12.3
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at bkerley@brycekerley.net. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in miami_dade_geo.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,46 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ ## Uncomment and set this to only include directories you want to watch
5
+ # directories %w(app lib config test spec features) \
6
+ # .select{|d| Dir.exists?(d) ? d : UI.warning("Directory #{d} does not exist")}
7
+
8
+ ## Note: if you are using the `directories` clause above and you are not
9
+ ## watching the project directory ('.'), then you will want to move
10
+ ## the Guardfile to a watched dir and symlink it back, e.g.
11
+ #
12
+ # $ mkdir config
13
+ # $ mv Guardfile config/
14
+ # $ ln -s config/Guardfile .
15
+ #
16
+ # and, you'll have to watch "config/Guardfile" instead of "Guardfile"
17
+
18
+ # Note: The cmd option is now required due to the increasing number of ways
19
+ # rspec may be run, below are examples of the most common uses.
20
+ # * bundler: 'bundle exec rspec'
21
+ # * bundler binstubs: 'bin/rspec'
22
+ # * spring: 'bin/rspec' (This will use spring if running and you have
23
+ # installed the spring binstubs per the docs)
24
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
25
+ # * 'just' rspec: 'rspec'
26
+
27
+ guard :rspec, cmd: "bundle exec rspec" do
28
+ require "guard/rspec/dsl"
29
+ dsl = Guard::RSpec::Dsl.new(self)
30
+
31
+ # Feel free to open issues for suggestions and improvements
32
+
33
+ # RSpec files
34
+ rspec = dsl.rspec
35
+ watch(rspec.spec_helper) { rspec.spec_dir }
36
+ watch(rspec.spec_support) { rspec.spec_dir }
37
+ watch(rspec.spec_files)
38
+
39
+ # Ruby files
40
+ ruby = dsl.ruby
41
+ dsl.watch_spec_files_for(ruby.lib_files)
42
+
43
+ watch(%r{^spec/.+_spec\.rb$})
44
+ watch(%r{^lib/.+/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
45
+ watch('spec/spec_helper.rb') { "spec" }
46
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Bryce Kerley
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # MiamiDadeGeo
2
+
3
+ This library wraps some of the Miami-Dade County geospatial services, including:
4
+
5
+ * Address to NAD 83 State Plane X and Y coordinate
6
+ * NAD 83 State Plane X and Y coordinate to latitude and longitude
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ ```ruby
13
+ gem 'miami_dade_geo'
14
+ ```
15
+
16
+ And then execute:
17
+
18
+ $ bundle
19
+
20
+ Or install it yourself as:
21
+
22
+ $ gem install miami_dade_geo
23
+
24
+ ## Usage
25
+
26
+ TODO: Write usage instructions here
27
+
28
+ ## Development
29
+
30
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
31
+
32
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
33
+
34
+ ## Contributing
35
+
36
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/miami_dade_geo. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
37
+
38
+
39
+ ## License
40
+
41
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "miami_dade_geo"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ %w{version address municipality}.each do |f|
2
+ require "miami_dade_geo/#{f}"
3
+ end
4
+
5
+ module MiamiDadeGeo
6
+ # Your code goes here...
7
+ end
@@ -0,0 +1,14 @@
1
+ require 'singleton'
2
+ require 'savon'
3
+
4
+ module MiamiDadeGeo
5
+ class AddrXyClient
6
+ include Singleton
7
+
8
+ WSDL_URL = "http://gisws.miamidade.gov/gisaddress/addrxy.asmx?wsdl"
9
+
10
+ def savon
11
+ @savon ||= Savon.client(wsdl: WSDL_URL)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,77 @@
1
+ require 'miami_dade_geo/addr_xy_client'
2
+ require 'miami_dade_geo/latlong_client'
3
+ require 'miami_dade_geo/municipality'
4
+
5
+ module MiamiDadeGeo
6
+ class Address
7
+ attr_reader :address
8
+
9
+ def initialize(address)
10
+ @address = address
11
+ end
12
+
13
+ def x
14
+ @x ||= xy_addr[:x].to_f
15
+ end
16
+
17
+ def y
18
+ @y ||= xy_addr[:y].to_f
19
+ end
20
+
21
+ def zip
22
+ @zip ||= xy_addr[:zip_code].to_i
23
+ end
24
+
25
+ def munic_code
26
+ @munic_code ||= xy_addr[:munic_code].to_i
27
+ end
28
+
29
+ def lat
30
+ @lat ||= latlong[:lat]
31
+ end
32
+
33
+ def long
34
+ @long ||= latlong[:long]
35
+ end
36
+
37
+ def municipality
38
+ @municipality ||= Municipality.new_with_code(munic_code)
39
+ end
40
+
41
+ private
42
+ def latlong
43
+ return @latlong if defined? @latlong
44
+ body = latlong_client.
45
+ call(:get_lat_long_dec_from_xy,
46
+ message: { 'X' => x.to_s, 'Y' => y.to_s} ).
47
+ body
48
+
49
+ resp = body[:get_lat_long_dec_from_xy_response]
50
+ result = resp[:get_lat_long_dec_from_xy_result]
51
+ double = result[:double]
52
+
53
+ @latlong = {
54
+ lat: double[0].to_f,
55
+ long: double[1].to_f
56
+ }
57
+ end
58
+
59
+ def xy_addr
60
+ return @xy_addr if defined? @xy_addr
61
+
62
+ body = addr_xy_client.
63
+ call(:xy_address, message: { myAddress: address}).
64
+ body
65
+
66
+ @xy_addr = body[:xy_address_response][:xy_address_result][:xy][:arr_xy]
67
+ end
68
+
69
+ def addr_xy_client
70
+ AddrXyClient.instance.savon
71
+ end
72
+
73
+ def latlong_client
74
+ LatlongClient.instance.savon
75
+ end
76
+ end
77
+ end
@@ -0,0 +1,37 @@
1
+ require 'singleton'
2
+ require 'savon'
3
+
4
+ module MiamiDadeGeo
5
+ class GeoAttributeClient
6
+ include Singleton
7
+
8
+ WSDL_URL = "http://gisws.miamidade.gov/gisdata/GeoAttribute.asmx?wsdl"
9
+
10
+ def all_fields(table, field_name, value)
11
+ body = savon.
12
+ call(:get_all_fields_records_given_a_field_name_and_value,
13
+ message: {
14
+ 'strFeatureClassOrTableName' => table,
15
+ 'strFieldNameToSearchOn' => field_name,
16
+ 'strValueOfFieldToSearchOn' => value
17
+ }).
18
+ body
19
+
20
+ resp = body[:get_all_fields_records_given_a_field_name_and_value_response]
21
+ rslt = resp[:get_all_fields_records_given_a_field_name_and_value_result]
22
+ polys = rslt[:diffgram][:document_element][:municipality_poly]
23
+
24
+ poly = if polys.is_a? Array
25
+ polys.first
26
+ elsif polys.is_a? Hash
27
+ polys
28
+ else
29
+ fail "Unexpected polys #{polys.class.name}, wanted Array or Hash"
30
+ end
31
+ end
32
+
33
+ def savon
34
+ @savon ||= Savon.client(wsdl: WSDL_URL)
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,14 @@
1
+ require 'singleton'
2
+ require 'savon'
3
+
4
+ module MiamiDadeGeo
5
+ class GetClosestFeatureClient
6
+ include Singleton
7
+
8
+ WSDL_URL = "http://gisws.miamidade.gov/gisxyservices/GetClosestFeature.asmx?wsdl"
9
+
10
+ def savon
11
+ @savon ||= Savon.client(wsdl: WSDL_URL)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ require 'singleton'
2
+ require 'savon'
3
+
4
+ module MiamiDadeGeo
5
+ class LatlongClient
6
+ include Singleton
7
+
8
+ WSDL_URL =
9
+ "http://gisws.miamidade.gov/gisxyservices/XYLatLongConversions.asmx?wsdl"
10
+
11
+ def savon
12
+ @savon ||= Savon.client(wsdl: WSDL_URL)
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,54 @@
1
+ require 'miami_dade_geo/geo_attribute_client'
2
+ require 'miami_dade_geo/get_closest_feature_client'
3
+
4
+ module MiamiDadeGeo
5
+ class Municipality
6
+ attr_reader :name, :munic_code
7
+
8
+ def self.new_with_name(name)
9
+ canonicalized_name = name.upcase
10
+
11
+ poly = GeoAttributeClient.instance.
12
+ all_fields('municipality_poly',
13
+ 'name',
14
+ canonicalized_name)
15
+
16
+ new poly
17
+ end
18
+
19
+ def self.new_with_code(munic_code)
20
+ canonicalized_munic_code = "%02d" % [munic_code.to_i]
21
+
22
+ poly = GeoAttributeClient.instance.
23
+ all_fields('municipality_poly',
24
+ 'municid',
25
+ canonicalized_munic_code)
26
+
27
+ new poly
28
+ end
29
+
30
+ def self.new_with_xy(xy_hash)
31
+ body = GetClosestFeatureClient.instance.savon.
32
+ call(:get_closest_feature_from_xy_all_atrbts,
33
+ message: {
34
+ 'X' => xy_hash[:x],
35
+ 'Y' => xy_hash[:y],
36
+ 'Buffer' => 0,
37
+ 'NameOfFeatureClass' => 'municipality_poly'
38
+ }).
39
+ body
40
+ resp = body[:get_closest_feature_from_xy_all_atrbts_response]
41
+ rslt = resp[:get_closest_feature_from_xy_all_atrbts_result]
42
+ poly = rslt[:diffgram][:document_element][:results]
43
+
44
+ new poly
45
+ end
46
+
47
+ private
48
+
49
+ def initialize(poly)
50
+ @name = poly[:name]
51
+ @munic_code = poly[:municid]
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,3 @@
1
+ module MiamiDadeGeo
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'miami_dade_geo/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "miami_dade_geo"
8
+ spec.version = MiamiDadeGeo::VERSION
9
+ spec.authors = ["Bryce Kerley", "Josef Diago"]
10
+ spec.email = ["bkerley@brycekerley.net", "josef.diago@gmail.com"]
11
+
12
+ spec.summary = %q{Geospatial utility API for Miami-Dade County}
13
+ spec.description = %q{Rubyist-friendly geospatial utilities for Miami-Dade County}
14
+ spec.homepage = "https://github.com/bkerley/miami_dade_geo"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "bundler", "~> 1.12"
23
+ spec.add_development_dependency "rake", "~> 10.0"
24
+ spec.add_development_dependency "rspec", "~> 3.0"
25
+ spec.add_development_dependency "vcr", "~> 3.0"
26
+ spec.add_development_dependency 'webmock', "~> 2.1"
27
+ spec.add_development_dependency 'guard-rspec', "~> 4.7"
28
+
29
+ spec.add_dependency 'savon', '~> 2.11.1'
30
+ end
metadata ADDED
@@ -0,0 +1,164 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: miami_dade_geo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Bryce Kerley
8
+ - Josef Diago
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2016-06-04 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bundler
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '1.12'
21
+ type: :development
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - "~>"
26
+ - !ruby/object:Gem::Version
27
+ version: '1.12'
28
+ - !ruby/object:Gem::Dependency
29
+ name: rake
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - "~>"
33
+ - !ruby/object:Gem::Version
34
+ version: '10.0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '10.0'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rspec
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '3.0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '3.0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: vcr
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '3.0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '3.0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: webmock
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '2.1'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '2.1'
84
+ - !ruby/object:Gem::Dependency
85
+ name: guard-rspec
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '4.7'
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '4.7'
98
+ - !ruby/object:Gem::Dependency
99
+ name: savon
100
+ requirement: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: 2.11.1
105
+ type: :runtime
106
+ prerelease: false
107
+ version_requirements: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: 2.11.1
112
+ description: Rubyist-friendly geospatial utilities for Miami-Dade County
113
+ email:
114
+ - bkerley@brycekerley.net
115
+ - josef.diago@gmail.com
116
+ executables: []
117
+ extensions: []
118
+ extra_rdoc_files: []
119
+ files:
120
+ - ".gitignore"
121
+ - ".rspec"
122
+ - ".travis.yml"
123
+ - CODE_OF_CONDUCT.md
124
+ - Gemfile
125
+ - Guardfile
126
+ - LICENSE.txt
127
+ - README.md
128
+ - Rakefile
129
+ - bin/console
130
+ - bin/setup
131
+ - lib/miami_dade_geo.rb
132
+ - lib/miami_dade_geo/addr_xy_client.rb
133
+ - lib/miami_dade_geo/address.rb
134
+ - lib/miami_dade_geo/geo_attribute_client.rb
135
+ - lib/miami_dade_geo/get_closest_feature_client.rb
136
+ - lib/miami_dade_geo/latlong_client.rb
137
+ - lib/miami_dade_geo/municipality.rb
138
+ - lib/miami_dade_geo/version.rb
139
+ - miami_dade_geo.gemspec
140
+ homepage: https://github.com/bkerley/miami_dade_geo
141
+ licenses:
142
+ - MIT
143
+ metadata: {}
144
+ post_install_message:
145
+ rdoc_options: []
146
+ require_paths:
147
+ - lib
148
+ required_ruby_version: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ required_rubygems_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: '0'
158
+ requirements: []
159
+ rubyforge_project:
160
+ rubygems_version: 2.5.1
161
+ signing_key:
162
+ specification_version: 4
163
+ summary: Geospatial utility API for Miami-Dade County
164
+ test_files: []