中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當(dāng)前位置: 首頁(yè) > news >正文

企業(yè)微信有哪些功能寧波seo軟件

企業(yè)微信有哪些功能,寧波seo軟件,網(wǎng)頁(yè)傳奇發(fā)布網(wǎng),西安教育類網(wǎng)站建設(shè)公司arcpy 位置D:\Program Files\GeoScene\Pro\Resources\ArcPy\arcpy\__init__.py ”““AddMessage(消息) 創(chuàng)建可以使用任何GetMessages函數(shù)訪問(wèn)的地理處理信息消息(Severity0)。 message(字符串):要添加的消息?!薄?arcpy.geoprocessing D:\Program Files\GeoScene\Pro\Re…

arcpy

位置D:\Program Files\GeoScene\Pro\Resources\ArcPy\arcpy\__init__.py

”““AddMessage(消息)

創(chuàng)建可以使用任何GetMessages函數(shù)訪問(wèn)的地理處理信息消息(Severity=0)。

message(字符串):要添加的消息?!薄?/p>

arcpy.geoprocessing

D:\Program Files\GeoScene\Pro\Resources\ArcPy\arcpy\geoprocessing\_base.py

“”“GP函數(shù)AddMessage”“”

create({version})作用創(chuàng)建Geoprocessor對(duì)象

arcgisscripting

?.pyd文件是用Python編寫(xiě)生成的動(dòng)態(tài)鏈接庫(kù),包含一個(gè)或多個(gè)Python modules,可以被其它Python代碼調(diào)用。

python解析.pyd文件_.pyd 文件讀取-CSDN博客

參數(shù)調(diào)整

"""調(diào)整傳入函數(shù)的參數(shù),使其對(duì)腳本友好:傳入字符串化的結(jié)果對(duì)象和未包裝的圓弧對(duì)象"""

isinstance() 函數(shù)詳細(xì)解釋:isinstance() 函數(shù)來(lái)判斷一個(gè)對(duì)象是否是一個(gè)已知的類型,類似 type()。

python基礎(chǔ)教程:isinstance() 函數(shù)_isinstance函數(shù)python_夢(mèng)想拯救世界_的博客-CSDN博客

result類

一個(gè)Result對(duì)象由地理處理工具返回。

class Result(mixins.ResultMixin,_BaseArcObject):"""A Result object is returned by geoprocessing tools."""status = passthrough_attr('status')resultID = passthrough_attr('resultID')messageCount = passthrough_attr('messageCount')maxSeverity = passthrough_attr('maxSeverity')outputCount = passthrough_attr('outputCount')inputCount = passthrough_attr('inputCount')def getMessage(self, *args):"""Result.getMessage(index)Returns a specific message.返回一個(gè)特定的消息。index(Integer):指數(shù)(整數(shù)):The index position of the message.消息的索引位置。"""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetMessage(*gp_fixargs(args)))def getMessages(self, *args):"""Result.getMessages({severity})Returns messages.severity{Integer}:The type of messages to be returned: 0=message, 1=warning, 2=error.Not specifying a value returns all message types.* 0:   informational message* 1:   warning message* 2:   error message嚴(yán)重性{整數(shù)}:要返回的消息類型:0=消息,1=警告,2=錯(cuò)誤。不指定值將返回所有消息類型。* 0:提示消息* 1:警告信息* 2:錯(cuò)誤信息"""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetMessages(*gp_fixargs(args)))def getSeverity(self, *args):"""Result.getSeverity(index)Returns the severity of a specific message.返回特定消息的嚴(yán)重性。index(Integer):The message index position."""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetSeverity(*gp_fixargs(args)))def getOutput(self, *args):"""Result.getOutput(index)Returns a given output, either as a recordset or a string.以記錄集或字符串的形式返回給定的輸出。If the output of the tool, such as MakeFeatureLayer is a layer,getOutput will return a Layer object.如果工具的輸出,比如MakeFeatureLayer是一個(gè)圖層,getOutput將返回一個(gè)Layer對(duì)象。index(Integer):The index position of the outputs."""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetOutput(*gp_fixargs(args)))def getInput(self, *args):"""Result.getInput(index)Returns a given input, either as a recordset or string.以記錄集或字符串的形式返回給定的輸入。index(Integer):The index position of the input."""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetInput(*gp_fixargs(args)))def getMapImageURL(self, *args):"""Result.getMapImageURL({parameter_list}, {height}, {width},{resolution})Gets a map service image for a given output, if one exists.parameter_list{Integer}:Parameter(s) on which the map service image will be based.height{Double}:The height of the image.width{Double}:The width of the image.resolution{Double}:The resolution of the image."""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.GetMapImageURL(*gp_fixargs(args)))def cancel(self, *args):"""Result.cancel()Cancels an associated job"""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.Cancel(*gp_fixargs(args)))def saveToFile(self, *args):"""Result.saveToFile(rlt_file)Saves the result to a result file (.rlt) .rlt_file(String):Full path to the outputresult file (.rlt) ."""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object.SaveToFile(*gp_fixargs(args)))def _repr_html_(self, *args):"""Extent.exportToString()Exports the object to its string representation.將對(duì)象導(dǎo)出為其字符串表示形式。"""from arcpy.geoprocessing._base import gp_fixargsreturn convertArcObjectToPythonObject(self._arc_object._repr_html_(*gp_fixargs(args)))

?convertArcObjectToPythonObject

type(obj)用來(lái)查看某個(gè)變量(類對(duì)象)的具體類型,obj 表示某個(gè)變量或者類對(duì)象。

type(obj).__name__返回的是類名

type的使用參考Python type()函數(shù):動(dòng)態(tài)創(chuàng)建類

arcobject_to_python_class_mapping包含的內(nèi)容:

"""從現(xiàn)有的ARC對(duì)象創(chuàng)建的對(duì)象繞過(guò)構(gòu)造函數(shù)。"”“

http://www.risenshineclean.com/news/60604.html

相關(guān)文章:

  • 農(nóng)產(chǎn)品網(wǎng)站建設(shè)投標(biāo)書(shū)百度開(kāi)戶是什么意思
  • wordpress調(diào)用第一張圖片合肥網(wǎng)絡(luò)優(yōu)化公司有幾家
  • 襄陽(yáng)建設(shè)21網(wǎng)站搜索引擎營(yíng)銷有哪些方式
  • 深圳網(wǎng)站建設(shè)快速排名自動(dòng)seo網(wǎng)站源碼
  • 怎么免費(fèi)搭建一個(gè)網(wǎng)站成都網(wǎng)絡(luò)營(yíng)銷推廣
  • 網(wǎng)站開(kāi)發(fā)項(xiàng)目技能比賽獲獎(jiǎng)報(bào)道千鋒教育培訓(xùn)機(jī)構(gòu)可靠嗎
  • 工程建設(shè)采購(gòu)有哪些網(wǎng)站今天特大新聞最新消息
  • 非法網(wǎng)站開(kāi)發(fā)者刑事責(zé)任網(wǎng)絡(luò)平臺(tái)推廣方式
  • 做系統(tǒng)網(wǎng)站建設(shè)外貿(mào)網(wǎng)站推廣費(fèi)用
  • 小程序網(wǎng)站建設(shè)長(zhǎng)沙百度百科
  • 準(zhǔn)備php和易語(yǔ)言混編做網(wǎng)站國(guó)家高新技術(shù)企業(yè)
  • 客戶網(wǎng)站開(kāi)發(fā)全流程理發(fā)培訓(xùn)專業(yè)學(xué)校
  • 投票網(wǎng)站開(kāi)發(fā)國(guó)際新聞報(bào)道
  • 裝飾設(shè)計(jì)網(wǎng)站推薦谷歌推廣外包
  • 網(wǎng)站地圖在線生成國(guó)內(nèi)永久免費(fèi)域名注冊(cè)
  • 網(wǎng)站建設(shè)收費(fèi)標(biāo)準(zhǔn)網(wǎng)站seo最新優(yōu)化方法
  • 南寧軟件優(yōu)化網(wǎng)站建設(shè)超級(jí)外鏈
  • 網(wǎng)站建設(shè)公司怎么運(yùn)營(yíng)營(yíng)銷推廣外包公司
  • flash網(wǎng)站整站下載seo sem是什么
  • 自然資源部網(wǎng)站綠色礦山建設(shè)四川網(wǎng)站推廣公司
  • 網(wǎng)站開(kāi)發(fā)需求大廳如何有效的推廣宣傳
  • 玉溪網(wǎng)站建設(shè)現(xiàn)狀最佳搜索引擎磁力
  • 網(wǎng)站觸屏版今日新聞?lì)^條內(nèi)容
  • 網(wǎng)站建設(shè)業(yè)務(wù)市場(chǎng)營(yíng)銷論文免費(fèi)培訓(xùn)課程
  • ui設(shè)計(jì)方向網(wǎng)站建設(shè)目標(biāo)深圳網(wǎng)站設(shè)計(jì)專業(yè)樂(lè)云seo
  • 國(guó)外網(wǎng)站設(shè)計(jì)參考寧波seo快速優(yōu)化平臺(tái)
  • 上海網(wǎng)站建設(shè)哪家便宜外鏈代發(fā)免費(fèi)
  • wordpress運(yùn)行php 404廊坊網(wǎng)絡(luò)推廣優(yōu)化公司
  • 徐州網(wǎng)站建設(shè)制作公司保定seo博客
  • 網(wǎng)站搜索框代碼怎么做國(guó)內(nèi)網(wǎng)站建設(shè)公司