Class: MiamiDadeGeo::LatlongClient Private

Inherits:
Object
  • Object
show all
Includes:
Singleton
Defined in:
lib/miami_dade_geo/latlong_client.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Singleton SOAP client for converting NAD 83 x-y coordinates to latitude and longitude, and back again. Makes one SOAP request for WSDL on first instantiation.

Constant Summary collapse

WSDL_URL =

This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.

URL to XyLatLongConversions SOAP service WSDL

"http://gisws.miamidade.gov/gisxyservices/XYLatLongConversions.asmx?wsdl"

Instance Method Summary collapse

Instance Method Details

#savonSavon::Client

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a Savon SOAP client instance

Returns:

  • (Savon::Client)


20
21
22
# File 'lib/miami_dade_geo/latlong_client.rb', line 20

def savon
  @savon ||= Savon.client(wsdl: WSDL_URL)
end