root/MGET/Branches/Jason/PythonPackage/dist/TracOnlineDocumentation/Documentation/ArcGISReference/ArcGISPoints.CreateFeatureClassWithPoints2.html @ 842

Revision 842, 7.3 KB (checked in by jjr8, 19 months ago)

Rebuilt installation packages again. This will be merged with the Trunk and released as MGET 0.8a28.

Line 
1<?xml version="1.0" encoding="utf-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml"><head><link rel="stylesheet" type="text/css" href="81help.css?format=raw" /><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Create Points</title></head><body><table style="margin-top:-1em; margin-bottom:0; padding:0; margin-left:-1em"><tr><td style="background:white"><img width="875" height="70" alt="ArcToolbox banner" src="AHBanner_ArcToolbox.gif?format=raw" /></td></tr></table><h1>Create Points</h1><p></p><p>Creates points in a new ArcGIS point feature class.</p><br /><p><h2><img width="11" height="11" border="0" src="sm_arrow_down.gif?format=raw" /> Command line syntax</h2></p><div Class="expand" id="id103142">ArcGISPointsCreateFeatureClassWithPoints2_GeoEco &lt;featureClass&gt; &lt;spatialReference&gt; &lt;xyCoordinates;xyCoordinates...&gt; {zCoordinates;zCoordinates...} {mValues;mValues...} {configKeyword} {spatialGrid1} {spatialGrid2} {spatialGrid3} <br /><br /><b>Parameters</b><br /><table width="100%" border="0" cellpadding="5"><tbody><tr><th width="40%"><b>Expression</b></th><th width="60%"><b>Explanation</b></th></tr><tr><td class="info">&lt;featureClass&gt;</td><td class="info" align="left"><p>Output point feature class to create.</p></td></tr><tr><td class="info">&lt;spatialReference&gt;</td><td class="info" align="left"><p>Spatial reference for the output feature class.</p></td></tr><tr><td class="info">&lt;xyCoordinates;xyCoordinates...&gt;</td><td class="info" align="left"><p>X and Y coordinates of the points to create.</p><p>If you are invoking this tool programmatically, you must specify each
4point as a string, as must be done when invoking an ArcGIS tool that
5accepts a point as input. For example, to create three points when
6invoking this tool from Python, you use the list:</p><dl><dt></dt><dd><pre>[u'1 2', u'3 4', u'5 6']</pre></dd></dl></td></tr><tr><td class="info">{zCoordinates;zCoordinates...}</td><td class="info" align="left"><p>Z coordinates of the points to create.</p><p>If you are invoking this tool programmatically, specify these
7coordinates as floating point numbers, not strings as is done with the
8xyCoordinates parameter.</p></td></tr><tr><td class="info">{mValues;mValues...}</td><td class="info" align="left"><p>Measure values of the points to create.</p><p>If you are invoking this tool programmatically, specify these values
9as floating point numbers, not strings as is done with the
10xyCoordinates parameter.</p></td></tr><tr><td class="info">{configKeyword}</td><td class="info" align="left"><p>The configuration keyword that determines the storage parameters
11of the table in a Relational Database Management System
12(RDBMS)--ArcSDE only.</p></td></tr><tr><td class="info">{spatialGrid1}</td><td class="info" align="left"><p>The size of the output feature class's spatial grid index. The
13following formats support spatial grid index grids: personal
14geodatabase, file geodatabase or ArcSDE geodatabase. If not provided,
15or if the value 0 is provided, a valid grid size will be calculated
16automatically by ArcGIS.</p></td></tr><tr><td class="info">{spatialGrid2}</td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index.
17The value must be at least three times larger than the first index
18grid. The following formats support spatial grid index grids: personal
19geodatabase, file geodatabase or ArcSDE geodatabase. Note that
20personal geodatabases support only one spatial index grid.</p></td></tr><tr><td class="info">{spatialGrid3}</td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index.
21The value must be at least three times larger than the second index
22grid. The following formats support spatial grid index grids: personal
23geodatabase, file geodatabase or ArcSDE geodatabase. Note that
24personal geodatabases support only one spatial index grid.</p></td></tr></tbody></table></div><p><h2><img width="11" height="11" border="0" src="sm_arrow_down.gif?format=raw" /> Scripting syntax</h2></p><div Class="expand" id="TEST">ArcGISPointsCreateFeatureClassWithPoints2_GeoEco (featureClass, spatialReference, xyCoordinates, zCoordinates, mValues, configKeyword, spatialGrid1, spatialGrid2, spatialGrid3) <br /><br /><b>Parameters</b><br /><table width="100%" border="0" cellpadding="5"><tbody><tr><th width="40%"><b>Expression</b></th><th width="60%"><b>Explanation</b></th></tr><tr><td class="info">Output point feature class (Required) </td><td class="info" align="left"><p>Output point feature class to create.</p></td></tr><tr><td class="info">Spatial reference (Required) </td><td class="info" align="left"><p>Spatial reference for the output feature class.</p></td></tr><tr><td class="info">Points (Required) </td><td class="info" align="left"><p>X and Y coordinates of the points to create.</p><p>If you are invoking this tool programmatically, you must specify each
25point as a string, as must be done when invoking an ArcGIS tool that
26accepts a point as input. For example, to create three points when
27invoking this tool from Python, you use the list:</p><dl><dt></dt><dd><pre>[u'1 2', u'3 4', u'5 6']</pre></dd></dl></td></tr><tr><td class="info">Z coordinates (Optional) </td><td class="info" align="left"><p>Z coordinates of the points to create.</p><p>If you are invoking this tool programmatically, specify these
28coordinates as floating point numbers, not strings as is done with the
29xyCoordinates parameter.</p></td></tr><tr><td class="info">M values (Optional) </td><td class="info" align="left"><p>Measure values of the points to create.</p><p>If you are invoking this tool programmatically, specify these values
30as floating point numbers, not strings as is done with the
31xyCoordinates parameter.</p></td></tr><tr><td class="info">Configuration keyword (Optional) </td><td class="info" align="left"><p>The configuration keyword that determines the storage parameters
32of the table in a Relational Database Management System
33(RDBMS)--ArcSDE only.</p></td></tr><tr><td class="info">Output spatial grid 1 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's spatial grid index. The
34following formats support spatial grid index grids: personal
35geodatabase, file geodatabase or ArcSDE geodatabase. If not provided,
36or if the value 0 is provided, a valid grid size will be calculated
37automatically by ArcGIS.</p></td></tr><tr><td class="info">Output spatial grid 2 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index.
38The value must be at least three times larger than the first index
39grid. The following formats support spatial grid index grids: personal
40geodatabase, file geodatabase or ArcSDE geodatabase. Note that
41personal geodatabases support only one spatial index grid.</p></td></tr><tr><td class="info">Output spatial grid 3 (Optional) </td><td class="info" align="left"><p>The size of the output feature class's second spatial grid index.
42The value must be at least three times larger than the second index
43grid. The following formats support spatial grid index grids: personal
44geodatabase, file geodatabase or ArcSDE geodatabase. Note that
45personal geodatabases support only one spatial index grid.</p></td></tr></tbody></table></div></body></html>
Note: See TracBrowser for help on using the browser.