Tuesday, December 27, 2011
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.
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.
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
Thursday, November 24, 2011
Thursday, November 10, 2011
Friday, October 14, 2011
Wednesday, October 12, 2011
Deleting duplicate rows in SQL Server
WITH TableDup AS
(
SELECT *,
ROW_NUMBER() OVER( ORDER BY IDCol) AS RN_col
FROM dbo.TableSource
)
DELETE FROM TableDup WHERE RN_col > 1;
Tuesday, October 04, 2011
Airline Seating Charts - Best Airplane Seats - SeatGuru
Airline Seating Charts - Best Airplane Seats - SeatGuru
Gives information about seating information, amenities for various airlines and airplanes.
Gives information about seating information, amenities for various airlines and airplanes.
Saturday, October 01, 2011
Sunday, September 11, 2011
Stress and consequences
An explanation about the stress and related illness it can cause as part of the consequences.
http://en.wikipedia.org/wiki/Holmes_and_Rahe_stress_scale
http://en.wikipedia.org/wiki/Holmes_and_Rahe_stress_scale
Saturday, September 10, 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");
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");
Friday, March 25, 2011
Thursday, March 10, 2011
Thursday, February 10, 2011
Wednesday, February 09, 2011
Wednesday, February 02, 2011
Fuel Conservation No Idle Matter at UPS
Fuel Conservation No Idle Matter at UPS
By avoiding left turns and taking more right turns UPS saves a lot on fuel and time.
By avoiding left turns and taking more right turns UPS saves a lot on fuel and time.
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.
Subscribe to:
Posts (Atom)