[Opengeoscience-developers] OpenGeoscience branch, master, updated. 6c6e2758f8edf9ddccae026f30bb7127239ec0df

Aashish Chaudhary aashish.chaudhary at kitware.com
Fri May 10 08:29:23 EDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenGeoscience".

The branch, master has been updated
       via  6c6e2758f8edf9ddccae026f30bb7127239ec0df (commit)
       via  49bab1adeb6aab8679cbbef9679c29004f75ce65 (commit)
       via  b17800a98e7fd64e19c0daa4581029b45ae97229 (commit)
       via  3ee23048a0fa1dcdbef34f0530beb87aa3319db7 (commit)
       via  c189c9e89ce7bfe4b87ba5aae4a5e183cf82949e (commit)
       via  e7502aadd148c259fac0627717a897f9c78d9253 (commit)
       via  5459b64f4170b1f9b4826b9c3f6bdd3ef0b48678 (commit)
       via  cecca1e5c5dc512a38c15279b74cf1a12498fe05 (commit)
       via  b998e661ea3d6847bdcf9c2a2430ee42264e5da7 (commit)
       via  a935ec2e3a266c01f2e150d03fca7f91d7dc2a44 (commit)
       via  7c85d79e659131ad0657a5e1ce459e03bbc6c643 (commit)
       via  7205745fb51bbf7405d597d0321c98ebe6158243 (commit)
       via  81b1fecc6a4d9673002602444f8cb1a7f5f9c106 (commit)
       via  59e6e9562276ed44ecf8d7567d6605c6b76c7936 (commit)
       via  bbef7977571a2f54b94a6f66816fed0f766b3c73 (commit)
       via  d63cfd1bf5fe64eae2574edc4752094241f4ba4a (commit)
       via  2a1849709b2ac9ba50eb38178483561323b0eb18 (commit)
       via  9d47582ab90bbe141c68df5df4d21c80ac0384c7 (commit)
       via  1b27b5fb4d544e29d1327198e49d426cb60abbf1 (commit)
       via  ba75b62042a1bda4a4cc444f4b1d49ebc2a75253 (commit)
       via  5966a476d42a60a091c4f3da131c8531d1e76e25 (commit)
       via  55123aba2d47a70a392e33af0ce9453b8c65cad5 (commit)
       via  cff09a663d1eb353c4dd31238b1e9003fe75bd46 (commit)
      from  e706a5c3aebf8cb3cd8cbdd69eb10559ff5ab180 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://public.kitware.com/gitweb?p=OpenGeoscience/geoweb.git;a=commitdiff;h=6c6e2758f8edf9ddccae026f30bb7127239ec0df
commit 6c6e2758f8edf9ddccae026f30bb7127239ec0df
Merge: e706a5c 49bab1a
Author: Aashish Chaudhary <aashish.chaudhary at kitware.com>
Date:   Fri May 10 08:29:04 2013 -0400

    Merge remote-tracking branch 'origin/bug_49_globe_rendering' fixes #49
    
    * origin/bug_49_globe_rendering: (22 commits)
      Using better and consistent naming for variables and member functions
      Fixed loop and other minor issues
      Fixed inconsistent spacing
      Fix spelling typo
      Lots of minor style and bug fixes
      Fixed calculation of zoom delta
      Fixing bugs with interactor
      Re-implementing map interactor style
      Implemented compute clipping range
      Fixed bounding calculation of group mapper
      Clean up the code for geodetic transformation
      Clean up code for bound calculation
      Minor fixes
      Fixed bounding box calculations
      Fixed various bugs related to wgs84 conversion
      Various fixes related to ellipsoid
      Fixed bugs and added new files to build
      Adding modules for geographic transformations
      Added module to freeze JS object
      Fixed documentation
      ...

 CMakeLists.txt                                     |   10 +-
 web/apps/archive/archive.js                        |    2 +-
 web/lib/geo/ellipsoid.js                           |  200 ++++++++++++++++++++
 web/lib/geo/map.js                                 |   82 +++-----
 web/lib/geo/mapInteractorStyle.js                  |   20 +--
 web/lib/ui/gis.js                                  |    6 +-
 web/lib/vgl/boundingObject.js                      |    2 +
 web/lib/vgl/camera.js                              |   74 +++++---
 web/lib/vgl/defaultValue.js                        |   19 ++
 web/lib/vgl/freezeObject.js                        |   23 +++
 web/lib/vgl/geojsonReader.js                       |    4 +-
 web/lib/vgl/geomData.js                            |   89 ++++++---
 web/lib/vgl/groupMapper.js                         |    5 +-
 web/lib/vgl/interactorStyle.js                     |   10 +-
 web/lib/vgl/mapper.js                              |   31 ++--
 web/lib/vgl/renderer.js                            |  131 +++++++++----
 web/lib/vgl/testing/CMakeLists.txt                 |    1 +
 web/lib/vgl/testing/drawSphere.html                |  102 ++++++++++
 web/lib/vgl/testing/drawTest1.html                 |    1 -
 .../trackballInteractorStyle.js}                   |   63 +++---
 web/lib/vgl/viewer.js                              |   29 +++
 21 files changed, 676 insertions(+), 228 deletions(-)

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt                                     |   10 +-
 web/apps/archive/archive.js                        |    2 +-
 web/lib/geo/ellipsoid.js                           |  200 ++++++++++++++++++++
 web/lib/geo/map.js                                 |   82 +++-----
 web/lib/geo/mapInteractorStyle.js                  |   20 +--
 web/lib/ui/gis.js                                  |    6 +-
 web/lib/vgl/boundingObject.js                      |    2 +
 web/lib/vgl/camera.js                              |   74 +++++---
 web/lib/vgl/defaultValue.js                        |   19 ++
 web/lib/vgl/freezeObject.js                        |   23 +++
 web/lib/vgl/geojsonReader.js                       |    4 +-
 web/lib/vgl/geomData.js                            |   89 ++++++---
 web/lib/vgl/groupMapper.js                         |    5 +-
 web/lib/vgl/interactorStyle.js                     |   10 +-
 web/lib/vgl/mapper.js                              |   31 ++--
 web/lib/vgl/renderer.js                            |  131 +++++++++----
 web/lib/vgl/testing/CMakeLists.txt                 |    1 +
 web/lib/vgl/testing/drawSphere.html                |  102 ++++++++++
 web/lib/vgl/testing/drawTest1.html                 |    1 -
 .../trackballInteractorStyle.js}                   |   63 +++---
 web/lib/vgl/viewer.js                              |   29 +++
 21 files changed, 676 insertions(+), 228 deletions(-)
 create mode 100644 web/lib/geo/ellipsoid.js
 create mode 100644 web/lib/vgl/defaultValue.js
 create mode 100644 web/lib/vgl/freezeObject.js
 create mode 100644 web/lib/vgl/testing/drawSphere.html
 copy web/lib/{geo/mapInteractorStyle.js => vgl/trackballInteractorStyle.js} (71%)


hooks/post-receive
-- 
OpenGeoscience



More information about the Opengeoscience-developers mailing list