diff --git a/applications/gravimeter/gravimeter.html b/applications/gravimeter/gravimeter.html
new file mode 100644
index 0000000..9688910
--- /dev/null
+++ b/applications/gravimeter/gravimeter.html
@@ -0,0 +1,99 @@
+
+
+
+ Gravimeter
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/applications/gravimeter/gravimeter.js b/applications/gravimeter/gravimeter.js
new file mode 100644
index 0000000..cb4d2c1
--- /dev/null
+++ b/applications/gravimeter/gravimeter.js
@@ -0,0 +1,55 @@
+"use strict";
+
+// gravimeter.js
+//
+// By Alezia Kurdis, June 2019.
+//
+// This application returns the orientation and the position of your avatar.
+// This data becomes very helpful when you want to build on a sphere with a radial gravity
+// where it is difficult to evaluate the perpendicularity of the floor.
+//
+// Distributed under the Apache License, Version 2.0.
+// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+//
+(function() {
+
+ var MainPath = Script.resolvePath('').split("gravimeter.js")[0];
+ var APP_NAME = "GRAVITY";
+ var APP_URL = MainPath + "gravimeter.html";
+ var APP_ICON = MainPath + "gravimeter_icon.png";
+
+
+ var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
+ var button = tablet.addButton({
+ text: APP_NAME,
+ icon: APP_ICON
+ });
+
+ var ProcessInterval;
+
+ function clicked(){
+ displayData();
+
+
+
+ }
+ button.clicked.connect(clicked);
+
+ function displayData(){
+ var AvatarPosition = MyAvatar.position;
+
+ var grav = Quat.safeEulerAngles(MyAvatar.orientation);
+
+
+ tablet.gotoWebScreen(APP_URL + "?px=" + Math.round(AvatarPosition.x) + "&py=" + Math.round(AvatarPosition.y) + "&pz=" + Math.round(AvatarPosition.z) + "&rx=" + (Math.round(grav.x * 100)/100) + "&ry=" + (Math.round(grav.y * 100)/100) + "&rz=" + (Math.round(grav.z * 100)/100));
+
+ }
+
+
+
+ function cleanup() {
+ tablet.removeButton(button);
+ }
+
+ Script.scriptEnding.connect(cleanup);
+}());
\ No newline at end of file
diff --git a/applications/gravimeter/gravimeter_icon.png b/applications/gravimeter/gravimeter_icon.png
new file mode 100644
index 0000000..f5c8054
Binary files /dev/null and b/applications/gravimeter/gravimeter_icon.png differ
diff --git a/applications/metadata.js b/applications/metadata.js
index d20abac..04687bc 100644
--- a/applications/metadata.js
+++ b/applications/metadata.js
@@ -1 +1 @@
-var metadata = {"applications":[{"directory":"doppelganger-mirror","name":"Doppelganger-Mirror","description":"Generate an double of your avatar that only you can see. This allows you to examine your avatar and see how you move. The doppelganger can be grabbed and positioned like you want.","jsfile":"doppelganger-mirror/app-doppleganger.js","icon":"doppelganger-mirror/doppleganger-i.svg","caption":"MIRROR"},{"directory":"spectator-camera","name":"Spectator Camera v2.5","description":"Give you a video camera that can display its image on your monitor screen for video capture. It can capture from the camera or from the VR Headset. It can also take classic and spherical 360 snapshots (equirectangular format). Definitely a must.","jsfile":"spectator-camera/spectatorCamera.js","icon":"spectator-camera/spectator-i.svg","caption":"SPECTATOR"}]};
\ No newline at end of file
+var metadata = {"applications":[{"directory":"doppelganger-mirror","name":"Doppelganger-Mirror","description":"Generate an double of your avatar that only you can see. This allows you to examine your avatar and see how you move. The doppelganger can be grabbed and positioned like you want.","jsfile":"doppelganger-mirror/app-doppleganger.js","icon":"doppelganger-mirror/doppleganger-i.svg","caption":"MIRROR"},{"directory":"spectator-camera","name":"Spectator Camera v2.5","description":"Give you a video camera that can display its image on your monitor screen for video capture. It can capture from the camera or from the VR Headset. It can also take classic and spherical 360 snapshots (equirectangular format). Definitely a must.","jsfile":"spectator-camera/spectatorCamera.js","icon":"spectator-camera/spectator-i.svg","caption":"SPECTATOR"},{"directory":"gravimeter","name":"Gravimeter","description":"This application returns a record of the orientation and the position of your avatar. This tool becomes very helpful when you want to build on a sphere with a radial gravity, where it\\'s arduous to evaluate the perpendicularity of the floor.","jsfile":"gravimeter/gravimeter.js","icon":"gravimeter/gravimeter_icon.png","caption":"GAVITY"}]};
\ No newline at end of file