Saturday, November 26, 2011

Maps with Geo-Tagged Photos!!!!

ArcGIS idea submitted for geo-tagged photos in ArcMap.

Promote if found necessary.

https://c.na1.visual.force.com/apex/ideaView?id=0873000000087vdAAA

Since the geo-tagged photos are already getting generated from millions of users from their digital cameras. I would like to propose this idea.

I would like to store geo-tagged photos in a blob field of a feature class.  An import functionality to directly download the geo-tagged photos from the digital cameras or storage devices.  Features to be created using the GPS coordinates available in the photos and the the actual image data stored in the blob field.

Then while creating the cartographic symbols such as a callout symbol, I would like to display the stored photos inside the callout.

This feature will provide creation of wonderful maps with geo tagged photos present in them.

Display coordinates of feature geometry in identify tool.

Promote if found necessary.


https://c.na1.visual.force.com/apex/ideaView?id=0873000000087qiAAA

It would be better to get the coordinate information about the feature geometry displayed when identify tool is used.  This can be simple X and Y coordinates for the point feature.  And for all other larger geometries like polyline, polygon etc, an optional show geometrical coordinates button can be used.  The user can have the option of either seeing the geometrical coordinates or not.

Friday, November 25, 2011

GIS consultancy charges

This article at directionsmag.com explains how much does GIS consultants charge.

There are articles on written in 2001 and one in 2011.  This articles should help individuals and small enterprises to arrive at the charges they can for their clients. 

Sunday, September 11, 2011

Thursday, August 25, 2011

Frozen shots in movies

They have used cheetah dolly from Pacific Motion Control for the shot, it has speed of 18 feet per second.


with Phantom HD camera capturing 750 Frames per second.

see the sample here...


Finally, look at this one, the ultimate I think

Friday, August 19, 2011

Finding and executing a command bar in ArcGIS desktop application

Look at the code snippet found at this link for find command and execute here:
http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/Find_Command_and_Execute_Snippet/0049000000n0000000/

Code snippet:

public void FindCommandAndExecute(ESRI.ArcGIS.Framework.IApplication application, System.String commandName)
{
ESRI.ArcGIS.Framework.ICommandBars commandBars = application.Document.CommandBars;
ESRI.ArcGIS.esriSystem.UID uid = new ESRI.ArcGIS.esriSystem.UIDClass();
uid.Value = commandName; // Example: "esriFramework.HelpContentsCommand" or "{D74B2F25-AC90-11D2-87F8-0000F8751720}"
ESRI.ArcGIS.Framework.ICommandItem commandItem = commandBars.Find(uid, false, false);

if (commandItem != null)
commandItem.Execute();
}


Replace the commandName from the following link. (example “select by rectangle”)
http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/ArcMap_commands/00010000029s000000/

Call this method as:
FindCommandAndExecute(mApp,"esriArcMapUI.SelectFeaturesTool");

Thursday, February 10, 2011

Thursday, January 27, 2011

Geodatabase creation problem found

Recently found that workspace XML import into Oracle based ArcSDE version 10 and also SP1, fails when the workspace XML file contains relationship classes.

Opening ports in windows 2008 server