1. # -*- coding: utf-8 -*-
  2. import arcpy
  3. import sys
  4. import datetime
  5. import cx_Oracle
  6. import json
  7. import os
  8. import time
  9. import uuid
  10. from arcpy import env
  11. from arcpy.sa import *
  12.  
  13. env.workspace = r"F:\py";
  14. mapPath = r"F:\py";
  15. imagepath = r'F:\py\images\2016-06-07'
  16.  
  17. arcpy.AddMessage("1.查询数据库");
  18. cnxn = cx_Oracle.connect('jinan/jinan@127.0.0.1:1521/orcl')
  19. cursor = cnxn.cursor();
  20. sql = "select citycode,aqi from city ";
  21. cursor.execute(sql);
  22. cursorData = cursor ;
  23.  
  24. arcpy.AddMessage("2.数据保存到fc");
  25. for item in cursorData:
  26. print item[0]+'-'+item[1];
  27.  
  28. fc = "F:\py\jinan.gdb/city";
  29. where = "CITYCODE=" +item[0];
  30. rows = arcpy.UpdateCursor(fc,where);
  31. for row in rows:
  32. row.setValue('aqi1',item[1]);
  33. rows.updateRow(row)
  34. del rows ,fc;
  35.  
  36. arcpy.AddMessage("3.进行差值操作");
  37. inPointFeatures = "F:\py\jinan.gdb/city";
  38. inBarrierFeature = "F:\py\jinan.gdb/barrier";
  39. cellSize = 10000.0
  40. arcpy.CheckOutExtension("Spatial")
  41. outSplineBarriers = SplineWithBarriers(inPointFeatures, 'aqi1', inBarrierFeature, cellSize, 1);
  42. tif = "pointraster.tif";
  43. tif1 = "pointraster1.tif";
  44. outSplineBarriers.save(tif);
  45.  
  46. arcpy.AddMessage("4.根据行政区边界图层剪切栅格")
  47. outExtractByMask = ExtractByMask(tif, inBarrierFeature)
  48. outExtractByMask.save(tif1)
  49.  
  50. arcpy.AddMessage("5.更新mxd");
  51. mxdPath = mapPath + r"\pointraster1.mxd";
  52. mxd = arcpy.mapping.MapDocument(mxdPath);
  53. df = arcpy.mapping.ListDataFrames(mxd, "")[0];
  54. for lyr in arcpy.mapping.ListLayers(mxd, "", df):
  55. arcpy.mapping.RemoveLayer(df, lyr);
  56. addLayer = arcpy.mapping.Layer(mapPath + r"\pointraster1.lyr")
  57. arcpy.mapping.AddLayer(df, addLayer, "BOTTOM")
  58.  
  59. arcpy.AddMessage("6.输出图片png");
  60. fileName ="aqi.png"
  61. df.extent = addLayer.getSelectedExtent()
  62. arcpy.mapping.ExportToPNG(mxd, imagepath+"\\" + fileName , df, background_color="255,255,255", transparent_color="255,255,255",world_file=True);
  63.  
  64. arcpy.AddMessage("7.清理内存")
  65. del mxd, addLayer,df,outSplineBarriers,inPointFeatures,inBarrierFeature

python 读取全国城市aqi数据,差值生成png图片的更多相关文章

  1. python读取数据库并把数据写入本地文件

    一,介绍 上周用jmeter做性能测试时,接口B传入的参数需要依赖接口A生成的借贷申请ID,接口A运行完需要把生成的借贷申请ID导出来到一个文件,作为参数传给接口B,刚开始的时候,手动去数据库倒, 倒 ...

  2. python读取grib grib2气象数据

    如何读取GRIB数据?快看Python大神整理的干货! 橙子心法 百家号17-11-0116:30 GRIB是WMO开发的一种用于交换和存储规则分布数据的二进制文件格式,主要用来表示数值天气预报的产品 ...

  3. 两分钟解决Python读取matlab的.mat数据

    Matlab是学术界非常受欢迎的科学计算平台,matlab提供强大的数据计算以及仿真功能.在Matlab中数据集通常保存为.mat格式.那么如果我们想要在Python中加载.mat数据应该怎么办呢?所 ...

  4. Python读取字典(Dictionary)内数据的方法

    读取json后,数据类型为字典,对字典内数据的提取又有不同的方法,根据不同的字典类型 上图可以看到有”[]”,”{}” python语言最常见的括号有三种,分别是:小括号( ).中括号[ ]和大括号也 ...

  5. Python读取excel表的数据

    from openpyxl.reader.excel import load_workbook #读取xlsx文件def readExcelFile(path): dic={} #打开文件 file= ...

  6. python 读取单所有json数据写入mongodb(单个)

    <--------------主函数-------------------> from pymongo import MongoClientfrom bson.objectid impor ...

  7. Python读取Excel中的数据并导入到MySQL

    """ 功能:将Excel数据导入到MySQL数据库 """ import xlrd import MySQLdb # Open the w ...

  8. python读取.mat文件的数据

    首先导入scipy的包 from scipy.io import loadmat 然后读取 m = loadmat("F:/__identity/activity/论文/data/D001. ...

  9. Python 读取word中表格数据、读取word修改并保存、替换word中词汇、读取word中每段内容,读取一段话中相同样式内容,理解Document中run

    from docx import Document path = r'D:\pywork\12' # word信息表所在文件夹 w = Document(path + '/' + 'word信息表.d ...

随机推荐

  1. ava获得当前文件路径

    第一种: File f = new File(this.getClass().getResource("/").getPath()); System.out.println(f); ...

  2. VMWare虚拟机下为Ubuntu 12.04.1配置静态IP_转

    转自:http://www.cnblogs.com/objectorl/archive/2012/09/27/vmware-ubuntu-nat-static-ip-settings.html 背景在 ...

  3. 第一篇 Replication:复制简介

    本篇文章是SQL Server Replication系列的第一篇,详细内容请参考原文. 复制这个词来自拉丁语中的"replicare",意味着重复.Replication des ...

  4. python_如何建立包

    步骤: (1)包的名称为drawing (2)drawing中建立模块color和shape 视图: 备注: (1) E:/python_script/已经加入到系统变量path中 (2) 建立包时, ...

  5. windows 64位 dll文件 位置及python包rtree shapely安装

    位置 \Windows\System32 python包依赖包安装 rtree 依赖 spatialindex(spatialindex.dll   spatialindex_c.dll) shape ...

  6. 当AS3遇见Swift(一)

    当AS3遇见Swift 从Hello开始 As3 trace(“Hello Eko”) Swift println(“Hello Eko”) 挺象,有点隔壁王叔叔的意思. 常量和变量 As3 publ ...

  7. spring 官方下载地址

    SPRING官方网站改版后,建议都是通过Maven和Gradle下载,对不使用Maven和Gradle开发项目的,下载就非常麻烦. 下给出Spring Framework jar官方直接下载路径: h ...

  8. 【皇甫】☀那些事儿......STEP

    写项目之前呢,先来缕缕思路,既然要写学生管理系统,那肯定上不了从数据库中读取信息,然而想要从数据库中拿到你想要的东西,就要先登录,得到他的权限才行,所以我们第一步就要先搞出一个登录页面并且能连接到数据 ...

  9. Hibernate二进制或大文件类型数据和Oracle交互

    //测试存储二进制文件 @Test public void test() throws IOException{  InputStream in=new FileInputStream("E ...

  10. php session memcache

    ini_set("session.save_handler", "memcache"); ini_set("session.save_path&quo ...