摘要: "属性字段" LIKE '%关键词%'(注意必须在英文输入法下) 阅读全文
posted @ 2019-12-24 10:30 漂洋过海的鱼 阅读(5803) 评论(0) 推荐(0) 编辑
摘要: data = pd.read_excel('E:\workup.xlsx')#打开表格 FF = data.loc[(data['OBJECTID'] == 0)]#搜索OBJECTID中等于0的值print(FF) FF.to_excel('o.xlsx') 阅读全文
posted @ 2019-04-03 22:14 漂洋过海的鱼 阅读(13405) 评论(0) 推荐(1) 编辑
摘要: class Program { static void Main(string[] args) { Sushu(); } public static void Sushu() { Console.WriteLine("请输入求素数的起始数字用','隔开:"); string y = Console. 阅读全文
posted @ 2018-10-14 19:27 漂洋过海的鱼 阅读(598) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { string input = ""; bool result; int number = 0; do { Console.WriteLine("请输入一个正整数:"); input = Console.ReadLine(); if 阅读全文
posted @ 2018-10-08 15:34 漂洋过海的鱼 阅读(1545) 评论(1) 推荐(0) 编辑
摘要: 只要找到Arcgis安装目录,然后找到Python! 点击安装,之和试试Arctoolbox能不能打开,不能打开在配置Python的环境变量! 阅读全文
posted @ 2018-10-02 17:33 漂洋过海的鱼 阅读(6559) 评论(0) 推荐(0) 编辑
摘要: 1.加载数据库 try { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.CheckFileExists = true; openFileDialog.Title = "打开地图文档"; openFileDi 阅读全文
posted @ 2017-01-10 14:56 漂洋过海的鱼 阅读(1718) 评论(0) 推荐(1) 编辑
摘要: 1.书签 private void textBox1_TextChanged(object sender, EventArgs e) { if (txtBookmark.Text == "") { button1.Enabled = false; } else { button1.Enabled = 阅读全文
posted @ 2016-12-27 17:15 漂洋过海的鱼 阅读(534) 评论(0) 推荐(0) 编辑
摘要: ESRI.ArcGIS.RuntimeManager.Bind(ESRI.ArcGIS.ProductCode.EngineOrDesktop); 阅读全文
posted @ 2016-12-27 17:08 漂洋过海的鱼 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 1.要素选择 ICommand Select = new ControlsSelectFeaturesToolClass(); Select.OnCreate(axMapControl1.Object); Select.OnClick(); axMapControl1.CurrentTool = ( 阅读全文
posted @ 2016-12-27 17:07 漂洋过海的鱼 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 1. 加载数据Icommand方法 ICommand Butdata = new ControlsAddDataCommandClass(); Butdata.OnCreate(axMapControl1.Object); Butdata.OnClick(); axMapControl1.Curre 阅读全文
posted @ 2016-12-27 17:00 漂洋过海的鱼 阅读(4234) 评论(0) 推荐(0) 编辑