Wednesday, September 14, 2005

System pinpoints Pocket PC phones on Google's earth

System pinpoints Pocket PC phones on Google's earth

Keep track of your GPS-enabled Pocket PC phones (whatever those are) by using Google Earth.




Technorati tags: ,

Tuesday, September 13, 2005

Glenn's GISuser Weblog

Glenn's GISuser Weblog

Found this weblog while browsing the blogger home. Glen is editor of GISuser, a free daily newsletter for the GIS Industry (those should all be in quotes, since I'm quoting verbatim from the website). I'll put a link to his blog here somewhere.


Thursday, September 08, 2005

Testing Code posting

using System;
using Manifold.Interop;
using Manifold.Interop.Scripts;

class Test
{
   static void Main()
   {
     Document doc = (Document) Context.Application.ActiveDocument;
     History logBook = (History) Context.Application.History;
     bool isPopUp = true;
     string newLine = "\r\n";

     Drawing draw = (Drawing) doc.ComponentSet[ "Total Migration" ];
     RecordSet drawRecords = ((Table)draw.OwnedTable).RecordSet;

     string message = "Number of objects: " + draw.ObjectSet.Count + newLine;
     logBook.Log( message, isPopUp );

     message = "";
     double[] bearings = new double[ draw.ObjectSet.Count ];
     Point[] initPoints = new Point[ draw.ObjectSet.Count ];

     int counter = 0;

     foreach( Manifold.Interop.Object lineObject in draw.ObjectSet )
     {
       bearings[ counter ] =
         (double) drawRecords[ drawRecords.ItemByID( lineObject.ID )].
         get_Data("Bearing (I)");
       message += "Line ID: " + lineObject.ID + " \tBearing: " +
       bearings[ counter++ ] + newLine;
     }

     logBook.Log( "Line Bearings:\r\n" + message, isPopUp );

   }
}

Terrane - Wikipedia, the free encyclopedia

Terrane - Wikipedia, the free encyclopedia