Questions tagged «documentation»


4
在pyQGIS中缓冲?
我正在寻找一些示例来在QGIS中执行简单的python脚本。如何对数据集进行缓冲区分析? 在手册和QGIS python中,我似乎找不到与Esri文档完全匹配的内容。

4
定义Python工具箱帮助的参数说明?
我正在尝试为我们的ArcMap应用程序创建一些Python工具箱(例如MyTool.pyt) 我可以看到帮助文本是使用class self.description属性定义的。 但是,一旦我运行该程序并单击任何参数字段,帮助/说明文本将变为空。我希望能够为每个参数提供描述字段。这是如何完成的? 经过一番回应之后,我发现通过“项目描述”右键单击上下文菜单,可以填充许多字段。有没有一种“ pythonic”的方式来做到这一点?也就是说,仅将某些属性嵌入.pyt文件类中? 例如,在.pyt工具箱定义中,您具有Toolbox类: import arcpy class Toolbox(object): def __init__(self): """Define the toolbox (the name of the toolbox is the name of the .pyt file).""" self.label = "My Toolbox" self.alias = "" # List of tool classes associated with this toolbox self.tools = [MyNiceTool] class MyNiceTool(object): def …


1
OpenLayers API文档与开发人员文档
OpenLayers网站提供了两组参考文档: API文件:http://dev.openlayers.org/apidocs/ 开发人员文档:http : //dev.openlayers.org/docs/ 对于大多数类,API文档仅包含开发人员文档中的一小部分。我发现通常仅使用API​​文档中描述的功能并不能完成很多工作,因此我使用了开发人员文档(并且阅读了源代码和示例)。 这两个文档集之间的正式区别是什么?API文档是否描述了预期稳定的接口?如果我使用仅在开发人员文档中描述的功能,是否有将来遭受破坏的风险?



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.