09 2013 档案

摘要:原文链接:http://www.maptiler.org/google-maps-coordinates-tile-bounds-projection/Addressing tiles: same tile bounds with different indexesGoogle Maps, Microsoft Virtual Earth, Yahoo Maps, and other commercial API providers as well as OpenStreetMap and OpenAerialMap are using the same projection and tilin 阅读全文
posted @ 2013-09-28 14:13 太一吾鱼水 阅读(323) 评论(0) 推荐(0) 编辑
摘要:Bing Maps Tile System Bing地图瓦片体系 原文链接:http://msdn.microsoft.com/en-us/library/bb259689.aspx https://learn.microsoft.com/en-us/bingmaps/articles/bing-m 阅读全文
posted @ 2013-09-28 12:44 太一吾鱼水 阅读(1622) 评论(0) 推荐(0) 编辑
摘要:1.首先找一个可用的WMS栅格地图服务:http://demo.cubewerx.com/demo/cubeserv/cubeserv.cgi获取GetCapabilities:http://demo.cubewerx.com/demo/cubeserv/cubeserv.cgi?service=WMS&request=GetCapabilities2.在ArcGIS中添加GIS空间服务2.在ArcCatalog和ArcMap中浏览,不成问题。3.在ArcGlobe中浏览,查看该WMS服务的属性信息。注意该图层是有空间参考坐标信息的,所以能够加载到ArcGlobe中!可能可用的WMS服 阅读全文
posted @ 2013-09-26 13:06 太一吾鱼水 阅读(1000) 评论(0) 推荐(0) 编辑
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Net; 6 using System.Threading; 7 ... 阅读全文
posted @ 2013-09-24 19:57 太一吾鱼水 阅读(772) 评论(0) 推荐(0) 编辑
摘要:1 using System; 2 using System.Diagnostics; 3 using System.Globalization; 4 using System.Net; 5 using System.IO; 6 using System.IO.Compression; 7 using System.Threading; 8 using System.Xml; 9 using Utility; 10 using WorldWind; 11 12 namespace WorldWind.Net 13 { 14 public delegate void... 阅读全文
posted @ 2013-09-22 21:49 太一吾鱼水 阅读(839) 评论(1) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2013-09-21 21:13 太一吾鱼水 阅读(165) 评论(0) 推荐(0) 编辑
摘要:自己根据C++ D3D的源码改写一个相机类(第一人称)。 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using Microsoft.DirectX; 6 using Microsoft.DirectX.PrivateImplementationDetails; 7 using Microsoft.DirectX.Direct3D; 8 9 namespace AppScene 10 { 11 public enum C... 阅读全文
posted @ 2013-09-12 22:22 太一吾鱼水 阅读(668) 评论(0) 推荐(0) 编辑
摘要:OracleDataReader 类发送反馈提供从数据源读取数据行的只进流的方法。无法继承此类。命名空间:System.Data.OracleClient程序集:System.Data.OracleClient(在 System.Data.OracleClient.dll 中)语法VBC#C++F#JScript打印public sealed class OracleDataReader : DbDataReader备注若要创建OracleDataReader,必须调用OracleCommand对象的ExecuteReader方法,而不能直接使用构造函数。OracleDataReader的用户 阅读全文
posted @ 2013-09-12 19:00 太一吾鱼水 阅读(236) 评论(0) 推荐(0) 编辑
摘要:连接数据库Conn scott/tiger@Orcl as Normal;Disconn;创建表空间CREATE TABLESPACE DbDemo DATAFILE 'DbDemo.dbf' size 400M autoextend on next 512M maxsize unlimited EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO创建用户-- Create the user create user DbDemo identified by dbdemo default tablespace DBDEMO t 阅读全文
posted @ 2013-09-12 17:13 太一吾鱼水 阅读(352) 评论(0) 推荐(0) 编辑
摘要:使用查询返回DataReader的时候需要注意,如果关闭了Connection对象,返回的DataReader也会关闭。所以如下写法都会出现错误: public static OracleDataReader ExecuteQueryDataReader2(string sql) { using (OracleConnection conn = new OracleConnection(ConnectionString)) { try { ... 阅读全文
posted @ 2013-09-12 13:26 太一吾鱼水 阅读(296) 评论(0) 推荐(0) 编辑
摘要:最近研究汇流累积量的计算,下了些资料,不过都是英文的看着真的很吃力。搞明白了其中一种方法,是用Matlab写的:7872697158497467564946506953443738486458552231246861472116197453341211121.算法初始值dem高程值矩阵、x坐标值矩阵和y坐标值矩阵。2.返回汇流累积量flowacc、坡度slope。首先计算坡度,采用邻接矩阵36*36表示。[ic1,icd1] = ixneighbors(dem);e = (dem(ic1)-dem(icd1))./hypot(X(ic1)-X(icd1),Y(ic1)-Y(icd1));接着计 阅读全文
posted @ 2013-09-08 21:15 太一吾鱼水 阅读(3029) 评论(0) 推荐(0) 编辑
摘要:Matlab运算符 名称 说明/(向右倒称为右除) 右除 AB=C A=C/B\(向左倒称为左除) 左除 AB=C B=A\CB\A 就是对应线性方程B*X=A 的解。2.reshape 函数功能:重新调整矩阵的行数、列数、维数。http://baike.baidu.com/link?url=m4H_KgKyB31KXHobdopzs_JJKkOfhJhEjMsx6se8sg8gtXlFXvtEzIHHNA-0-nHpxkZj1PMuvYZq4WfZU4w9fa3.ht... 阅读全文
posted @ 2013-09-06 21:09 太一吾鱼水 阅读(231) 评论(0) 推荐(0) 编辑
摘要:http://www.cppblog.com/mythit/archive/2009/04/19/80492.aspxhttp://www.gamedev.net/page/resources/_/technical/artificial-intelligence/a-pathfinding-for-beginners-r2003http://blog.csdn.net/feixiaoxing/article/details/6982932http://www.codeproject.com/Articles/4391/C-A-Star-is-bornhttp://download.csdn. 阅读全文
posted @ 2013-09-03 16:52 太一吾鱼水 阅读(243) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示