Sha256: 0ca76d26834ece712e7ead296be2f84ff8e9239c633802b75b2d0ad2671b796d

Contents?: true

Size: 1.41 KB

Versions: 6

Compression:

Stored size: 1.41 KB

Contents

# frozen_string_literal: true

# The Geographic module includes a suite of
# implementations with one common feature: they represent geographic
# latitude/longitude coordinates measured in degrees. The "x"
# coordinate corresponds to longitude, and the "y" coordinate to
# latitude. Thus, coordinates are often expressed in reverse
# (i.e. long-lat) order. e.g.
#
#  location = geographic_factory.point(long, lat)
#
# Some geographic implementations include a secondary factory that
# represents a projection. For these implementations, you can quickly
# transform data between lat/long coordinates and the projected
# coordinate system, and most calculations are done in the projected
# coordinate system. For implementations that do not include this
# secondary projection factory, calculations are done on the sphereoid.
# See the various class methods of Geographic for more information on
# the behaviors of the factories they generate.

require_relative "geographic/factory"
require_relative "geographic/projected_window"
require_relative "geographic/interface"
require_relative "geographic/spherical_math"
require_relative "geographic/spherical_feature_methods"
require_relative "geographic/spherical_feature_classes"
require_relative "geographic/proj4_projector"
require_relative "geographic/simple_mercator_projector"
require_relative "geographic/projected_feature_methods"
require_relative "geographic/projected_feature_classes"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rgeo-3.0.0.pre.rc.2 lib/rgeo/geographic.rb
rgeo-3.0.0.pre.rc.1 lib/rgeo/geographic.rb
rgeo-2.4.0 lib/rgeo/geographic.rb
rgeo-2.3.1 lib/rgeo/geographic.rb
rgeo-2.3.0 lib/rgeo/geographic.rb
rgeo-2.2.0 lib/rgeo/geographic.rb