arcgis 10 engine 开发资源

http://training.esrichina-bj.cn/



http://bbs.esrichina-bj.cn/ESRI/viewthread.php?tid=107612&extra=page%3D1

ArcGIS Engine 10开发环境的一些常见问题



http://wenku.baidu.com/view/a583844d2b160b4e767fcfd9.html?from=rec&pos=1&weight=11&lastweight=9&count=5

ArcGISEngine


http://www.360doc.com/content/11/0818/10/7534722_141357734.shtml

基于arcscene的3D建模,用到了cad文件,以及sketchup


http://yuanzhenyu-2007.blog.163.com/blog/static/49531691201051681448705/?fromdm&fromSearch&isFromSearchEngine=yes

SketchUp和ArcGIS三维建模(三) 



http://www.360doc.com/content/11/0818/10/7534722_141363009.shtml

arcscene三维制作

http://www.cnblogs.com/Realh/archive/2010/12/14/1906112.html


ARC GIS 打开cad文件的几种方法

http://www.cnblogs.com/13590/archive/2010/07/13/1776311.html


使用ArcGIS Engine 开发自定义GIS应用:

http://bbs.esrichina-bj.cn/ESRI/viewthread.php?tid=25575&page=1&extra


http://datamirror.csdb.cn/dem/search.jsp

SRTM 数据查询选项,可以下载指定区域的90米的dem,tif格式


http://www.gdem.aster.ersdac.or.jp/search.jsp

这里可以下载全球任意区域的DEM,精度据说7米,用户名x5,密码 xu74

经过验证,这里的精度应该可以达到7米,反正30米的dem为平面,这里可以渲染如下:

arcgis 10 engine 开发资源_第1张图片


http://datamirror.csdb.cn/admin/productdemMain.jsp

90米分辨率数字高程数据产品

http://bbs.esrichina-bj.cn/ESRI/viewthread.php?tid=65594&highlight=DEM%2B%D3%B0%CF%F1

基于DEM和DOM制作数字影像地图


























重装了操作系统之后,Engine就一直有问题,仅添加几个控件然后运行,就会出现Could not load file or assembly 'ESRI.ArcGIS.Version, Version=10.0.0.0,Culture=neutral, PublicKeytoken=.......的错误提示。

    因为用10之前没出现这样的问题,所以很纳闷,查了一些原因也没解决,今天又查,终于在帮助里找到了这么一段话:
The following screen shot is an example of an error that can occur if the platform. target CPU is not set to x86 and the ArcObjects application attempts to execute on a 64-bit machine。
    所指的截图就是我出现的这个问题。我的操作系统是64位,之前一直用的vs2010,没出现这样的问题,现在用vs2008就出错了。解决的方法当然很简单,把项目的目标平台改为x86就可以了。
    

    这是帮助中从9.3迁移到10的主题中所讲的。
    迁移中要注意的问题还有其他几个,
    1. Remove the reference to the original ESRI.ArcGIS.ADF assembly.
       Add a reference to the ESRI.ArcGIS.ADF.Local assembly.

    2. Remove the references to any of the original assemblies for individual controls (AxMapControl, AxTOCControl, and so on.
      Add a reference to the ESRI.ArcGIS.AxControls assembly.

     3. Set ESRI assemblies Specific Version property
      

       4.使用license control设置许可,就不会出现ArcGIS Version not specified....的问题了。
         //Insert this line before the Application.Run in the static void Main() method.
         ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.Engine);

你可能感兴趣的:(assembly,360,reference,2010,X86)