ArcPy and ArcGIS, geospatial analysis with python :: use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS /
Annotation
Gespeichert in:
1. Verfasser: | |
---|---|
Weitere Verfasser: | , |
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham, England ; Mumbai [India] :
Packt Publishing,
2015.
|
Schriftenreihe: | Community experience distilled.
|
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Annotation |
Beschreibung: | Includes index. |
Beschreibung: | 1 online resource (224 pages) : illustrations |
ISBN: | 9781783988679 1783988673 1523106093 9781523106097 |
Internformat
MARC
LEADER | 00000cam a2200000 i 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-ocn905919210 | ||
003 | OCoLC | ||
005 | 20240705115654.0 | ||
006 | m o d | ||
007 | cr cn||||||||| | ||
008 | 150313t20152015enka o 001 0 eng d | ||
040 | |a E7B |b eng |e rda |e pn |c E7B |d OCLCO |d COO |d REB |d N$T |d YDXCP |d OCLCF |d OCLCA |d OCLCQ |d COCUF |d CNNOR |d LOA |d MERUC |d AGLDB |d ICG |d ICA |d PIFAG |d FVL |d OCLCQ |d VT2 |d OCLCO |d U3W |d D6H |d STF |d WRM |d OCLCQ |d VTS |d NLE |d AU@ |d UKMGB |d OCLCQ |d OCLCO |d G3B |d TKN |d AUW |d BTN |d INTCL |d MHW |d SNK |d M8D |d UKAHL |d OCLCO |d QGK |d OCLCQ |d OCLCO |d OCLCL | ||
016 | 7 | |a 018007089 |2 Uk | |
019 | |a 922559645 |a 1259095837 | ||
020 | |a 9781783988679 |q (electronic bk.) | ||
020 | |a 1783988673 |q (electronic bk.) | ||
020 | |a 1523106093 | ||
020 | |a 9781523106097 | ||
020 | |z 1783988665 | ||
020 | |z 9781783988662 | ||
035 | |a (OCoLC)905919210 |z (OCoLC)922559645 |z (OCoLC)1259095837 | ||
037 | |a 9781783988679 |b Packt Publishing Pvt. Ltd | ||
050 | 4 | |a G70.212 |b .T667 2015eb | |
072 | 7 | |a SCI |x 030000 |2 bisacsh | |
072 | 7 | |a TRV |x 033000 |2 bisacsh | |
072 | 7 | |a TRV |x 034000 |2 bisacsh | |
072 | 7 | |a TRV |x 016000 |2 bisacsh | |
072 | 7 | |a TRV |x 018000 |2 bisacsh | |
082 | 7 | |a 910.285 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Toms, Silas, |e author. | |
245 | 1 | 0 | |a ArcPy and ArcGIS, geospatial analysis with python : |b use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / |c Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty. |
264 | 1 | |a Birmingham, England ; |a Mumbai [India] : |b Packt Publishing, |c 2015. | |
264 | 4 | |c ©2015 | |
300 | |a 1 online resource (224 pages) : |b illustrations | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
347 | |a text file | ||
490 | 1 | |a Community Experience Distilled | |
500 | |a Includes index. | ||
588 | 0 | |a Online resource; title from PDF title page (ebrary, viewed March 13, 2015). | |
520 | 8 | |a Annotation |b If you are a GIS student or professional who needs an understanding of how to use ArcPy to reduce repetitive tasks and perform analysis faster, this book is for you. It is also a valuable book for Python programmers who want to understand how to automate geospatial analyses. | |
505 | 0 | |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Python for ArcGIS; Overview of Python; Python as a programming language; Interpreted language; Standard (built-in) library; The glue language; Wrapper modules; The basics of Python; Import statements; Variables; For loops; If/Elif/Else statements; While statements; Comments; Data types; Strings; Integers; Floats; Lists; Tuples; Dictionaries; Iterable data types; Other important concepts; Indentation; Functions; Keywords; Namespaces; Zero-based indexing. | |
505 | 8 | |a Important Python Modules for GIS AnalysisThe ArcPy module; The Operating System (OS) module; The Python System (SYS) module; The XLRD and XLWT modules; Commonly used built-in functions; Commonly used standard library modules; Summary; Chapter 2: Configuring the Python Environment; What is a Python script?; How Python executes a script; What is the Python interpreter?; Where is the Python interpreter located?; Which Python interpreter should be used?; How does the computer know where the interpreter is?; Make Python scripts executable when clicked on; Integrated Development Environments; IDLE. | |
505 | 8 | |a PythonWinAptana Studio 3; IDE summary; Python folder structure; Where modules reside; Using Python's sys module to add a module; The sys.path.append() method; Summary; Chapter 3: Creating the First Python Script; Prerequisites; ModelBuilder; Creating a model and exporting to Python; Modeling the Select and Buffer tools; Adding the Intersect tool; Tallying the analysis results; Exporting the model and adjusting the script; The automatically generated script; File paths in Python; Continuing the script analysis: the arcPy tools; The intersect tool and string manipulation. | |
505 | 8 | |a The string manipulation method 1-string additionThe string manipulation method 2-string formatting #1; The string manipulation method 3-string formatting#2 ; Adjusting the Script; Adding the CSV Module to the script; Accessing the data: Using a cursor; The final script; Summary; Chapter 4: Complex ArcPy Scripts and Generalizing Functions; Python functions-Avoid repeating code; Technical definition of functions; A first function; Functions with parameters; Using functions to replace repetitive code; More generalization of the functions; Summary. | |
505 | 8 | |a Chapter 5: ArcPy Cursors: Search, Insert and UpdateThe data access module; Attribute field interactions; Update cursors; Updating the shape field; Adjusting a point location; Deleting a row using an Update Cursor; Using an Insert Cursor; Inserting a polyline geometry; Inserting a polygon geometry; Summary; Chapter 6: Working with ArcPy Geometry Objects; ArcPy geometry object classes; ArcPy Point objects; ArcPy Array objects; ArcPy Polyline objects; ArcPy Polygon objects; Polygon object buffers; Other Polygon object methods; ArcPy geometry objects; ArcPy PointGeometry objects; Summary. | |
546 | |a English. | ||
630 | 0 | 0 | |a ArcGIS. |
630 | 0 | 7 | |a ArcGIS |2 fast |
650 | 0 | |a Geographic information systems. |0 http://id.loc.gov/authorities/subjects/sh90001880 | |
650 | 0 | |a Graphical user interfaces (Computer systems) |0 http://id.loc.gov/authorities/subjects/sh93002168 | |
650 | 0 | |a Python (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh96008834 | |
650 | 6 | |a Systèmes d'information géographique. | |
650 | 6 | |a Interfaces graphiques (Informatique) | |
650 | 6 | |a Python (Langage de programmation) | |
650 | 7 | |a geographic information systems. |2 aat | |
650 | 7 | |a SCIENCE |x Earth Sciences |x Geography. |2 bisacsh | |
650 | 7 | |a TRAVEL |x Budget. |2 bisacsh | |
650 | 7 | |a TRAVEL |x Hikes & Walks. |2 bisacsh | |
650 | 7 | |a TRAVEL |x Museums, Tours, Points of Interest. |2 bisacsh | |
650 | 7 | |a TRAVEL |x Parks & Campgrounds. |2 bisacsh | |
650 | 7 | |a Geographic information systems |2 fast | |
650 | 7 | |a Graphical user interfaces (Computer systems) |2 fast | |
650 | 7 | |a Python (Computer program language) |2 fast | |
700 | 1 | |a Saldanha, Aarti, |e editor. | |
700 | 1 | |a Shetty, Adithi, |e editor. | |
758 | |i has work: |a ArcPy and ArcGIS - Geospatial Analysis with Python (Text) |1 https://id.oclc.org/worldcat/entity/E39PCFPRGGTyjT83FjY3tyPfFX |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Toms, Silas. |t ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS. |d Birmingham, England ; Mumbai, [India] : Packt Publishing, ©2015 |h v, 205 pages |k Community experience distilled. |z 9781783988662 |
830 | 0 | |a Community experience distilled. |0 http://id.loc.gov/authorities/names/no2011030603 | |
856 | 1 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972 |3 Volltext | |
856 | 1 | |l CBO01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972 |3 Volltext | |
936 | |a BATCHLOAD | ||
938 | |a Askews and Holts Library Services |b ASKH |n AH28295942 | ||
938 | |a ebrary |b EBRY |n ebr11025932 | ||
938 | |a EBSCOhost |b EBSC |n 959972 | ||
938 | |a YBP Library Services |b YANK |n 12318642 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-ocn905919210 |
---|---|
_version_ | 1813903681280540672 |
adam_text | |
any_adam_object | |
author | Toms, Silas |
author2 | Saldanha, Aarti Shetty, Adithi |
author2_role | edt edt |
author2_variant | a s as a s as |
author_facet | Toms, Silas Saldanha, Aarti Shetty, Adithi |
author_role | aut |
author_sort | Toms, Silas |
author_variant | s t st |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | G - Geography, Anthropology, Recreation |
callnumber-label | G70 |
callnumber-raw | G70.212 .T667 2015eb |
callnumber-search | G70.212 .T667 2015eb |
callnumber-sort | G 270.212 T667 42015EB |
callnumber-subject | G - General Geography |
collection | ZDB-4-EBA |
contents | Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Python for ArcGIS; Overview of Python; Python as a programming language; Interpreted language; Standard (built-in) library; The glue language; Wrapper modules; The basics of Python; Import statements; Variables; For loops; If/Elif/Else statements; While statements; Comments; Data types; Strings; Integers; Floats; Lists; Tuples; Dictionaries; Iterable data types; Other important concepts; Indentation; Functions; Keywords; Namespaces; Zero-based indexing. Important Python Modules for GIS AnalysisThe ArcPy module; The Operating System (OS) module; The Python System (SYS) module; The XLRD and XLWT modules; Commonly used built-in functions; Commonly used standard library modules; Summary; Chapter 2: Configuring the Python Environment; What is a Python script?; How Python executes a script; What is the Python interpreter?; Where is the Python interpreter located?; Which Python interpreter should be used?; How does the computer know where the interpreter is?; Make Python scripts executable when clicked on; Integrated Development Environments; IDLE. PythonWinAptana Studio 3; IDE summary; Python folder structure; Where modules reside; Using Python's sys module to add a module; The sys.path.append() method; Summary; Chapter 3: Creating the First Python Script; Prerequisites; ModelBuilder; Creating a model and exporting to Python; Modeling the Select and Buffer tools; Adding the Intersect tool; Tallying the analysis results; Exporting the model and adjusting the script; The automatically generated script; File paths in Python; Continuing the script analysis: the arcPy tools; The intersect tool and string manipulation. The string manipulation method 1-string additionThe string manipulation method 2-string formatting #1; The string manipulation method 3-string formatting#2 ; Adjusting the Script; Adding the CSV Module to the script; Accessing the data: Using a cursor; The final script; Summary; Chapter 4: Complex ArcPy Scripts and Generalizing Functions; Python functions-Avoid repeating code; Technical definition of functions; A first function; Functions with parameters; Using functions to replace repetitive code; More generalization of the functions; Summary. Chapter 5: ArcPy Cursors: Search, Insert and UpdateThe data access module; Attribute field interactions; Update cursors; Updating the shape field; Adjusting a point location; Deleting a row using an Update Cursor; Using an Insert Cursor; Inserting a polyline geometry; Inserting a polygon geometry; Summary; Chapter 6: Working with ArcPy Geometry Objects; ArcPy geometry object classes; ArcPy Point objects; ArcPy Array objects; ArcPy Polyline objects; ArcPy Polygon objects; Polygon object buffers; Other Polygon object methods; ArcPy geometry objects; ArcPy PointGeometry objects; Summary. |
ctrlnum | (OCoLC)905919210 |
dewey-full | 910.285 |
dewey-hundreds | 900 - History & geography |
dewey-ones | 910 - Geography and travel |
dewey-raw | 910.285 |
dewey-search | 910.285 |
dewey-sort | 3910.285 |
dewey-tens | 910 - Geography and travel |
discipline | Geographie |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>07333cam a2200901 i 4500</leader><controlfield tag="001">ZDB-4-EBA-ocn905919210</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20240705115654.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr cn|||||||||</controlfield><controlfield tag="008">150313t20152015enka o 001 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">E7B</subfield><subfield code="b">eng</subfield><subfield code="e">rda</subfield><subfield code="e">pn</subfield><subfield code="c">E7B</subfield><subfield code="d">OCLCO</subfield><subfield code="d">COO</subfield><subfield code="d">REB</subfield><subfield code="d">N$T</subfield><subfield code="d">YDXCP</subfield><subfield code="d">OCLCF</subfield><subfield code="d">OCLCA</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">COCUF</subfield><subfield code="d">CNNOR</subfield><subfield code="d">LOA</subfield><subfield code="d">MERUC</subfield><subfield code="d">AGLDB</subfield><subfield code="d">ICG</subfield><subfield code="d">ICA</subfield><subfield code="d">PIFAG</subfield><subfield code="d">FVL</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">VT2</subfield><subfield code="d">OCLCO</subfield><subfield code="d">U3W</subfield><subfield code="d">D6H</subfield><subfield code="d">STF</subfield><subfield code="d">WRM</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">VTS</subfield><subfield code="d">NLE</subfield><subfield code="d">AU@</subfield><subfield code="d">UKMGB</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">G3B</subfield><subfield code="d">TKN</subfield><subfield code="d">AUW</subfield><subfield code="d">BTN</subfield><subfield code="d">INTCL</subfield><subfield code="d">MHW</subfield><subfield code="d">SNK</subfield><subfield code="d">M8D</subfield><subfield code="d">UKAHL</subfield><subfield code="d">OCLCO</subfield><subfield code="d">QGK</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018007089</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">922559645</subfield><subfield code="a">1259095837</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781783988679</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1783988673</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1523106093</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781523106097</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">1783988665</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="z">9781783988662</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)905919210</subfield><subfield code="z">(OCoLC)922559645</subfield><subfield code="z">(OCoLC)1259095837</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781783988679</subfield><subfield code="b">Packt Publishing Pvt. Ltd</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">G70.212</subfield><subfield code="b">.T667 2015eb</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">SCI</subfield><subfield code="x">030000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">TRV</subfield><subfield code="x">033000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">TRV</subfield><subfield code="x">034000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">TRV</subfield><subfield code="x">016000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="072" ind1=" " ind2="7"><subfield code="a">TRV</subfield><subfield code="x">018000</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">910.285</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Toms, Silas,</subfield><subfield code="e">author.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">ArcPy and ArcGIS, geospatial analysis with python :</subfield><subfield code="b">use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS /</subfield><subfield code="c">Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty.</subfield></datafield><datafield tag="264" ind1=" " ind2="1"><subfield code="a">Birmingham, England ;</subfield><subfield code="a">Mumbai [India] :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2015.</subfield></datafield><datafield tag="264" ind1=" " ind2="4"><subfield code="c">©2015</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (224 pages) :</subfield><subfield code="b">illustrations</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="347" ind1=" " ind2=" "><subfield code="a">text file</subfield></datafield><datafield tag="490" ind1="1" ind2=" "><subfield code="a">Community Experience Distilled</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Includes index.</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Online resource; title from PDF title page (ebrary, viewed March 13, 2015).</subfield></datafield><datafield tag="520" ind1="8" ind2=" "><subfield code="a">Annotation</subfield><subfield code="b">If you are a GIS student or professional who needs an understanding of how to use ArcPy to reduce repetitive tasks and perform analysis faster, this book is for you. It is also a valuable book for Python programmers who want to understand how to automate geospatial analyses.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Python for ArcGIS; Overview of Python; Python as a programming language; Interpreted language; Standard (built-in) library; The glue language; Wrapper modules; The basics of Python; Import statements; Variables; For loops; If/Elif/Else statements; While statements; Comments; Data types; Strings; Integers; Floats; Lists; Tuples; Dictionaries; Iterable data types; Other important concepts; Indentation; Functions; Keywords; Namespaces; Zero-based indexing.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Important Python Modules for GIS AnalysisThe ArcPy module; The Operating System (OS) module; The Python System (SYS) module; The XLRD and XLWT modules; Commonly used built-in functions; Commonly used standard library modules; Summary; Chapter 2: Configuring the Python Environment; What is a Python script?; How Python executes a script; What is the Python interpreter?; Where is the Python interpreter located?; Which Python interpreter should be used?; How does the computer know where the interpreter is?; Make Python scripts executable when clicked on; Integrated Development Environments; IDLE.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">PythonWinAptana Studio 3; IDE summary; Python folder structure; Where modules reside; Using Python's sys module to add a module; The sys.path.append() method; Summary; Chapter 3: Creating the First Python Script; Prerequisites; ModelBuilder; Creating a model and exporting to Python; Modeling the Select and Buffer tools; Adding the Intersect tool; Tallying the analysis results; Exporting the model and adjusting the script; The automatically generated script; File paths in Python; Continuing the script analysis: the arcPy tools; The intersect tool and string manipulation.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">The string manipulation method 1-string additionThe string manipulation method 2-string formatting #1; The string manipulation method 3-string formatting#2 ; Adjusting the Script; Adding the CSV Module to the script; Accessing the data: Using a cursor; The final script; Summary; Chapter 4: Complex ArcPy Scripts and Generalizing Functions; Python functions-Avoid repeating code; Technical definition of functions; A first function; Functions with parameters; Using functions to replace repetitive code; More generalization of the functions; Summary.</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Chapter 5: ArcPy Cursors: Search, Insert and UpdateThe data access module; Attribute field interactions; Update cursors; Updating the shape field; Adjusting a point location; Deleting a row using an Update Cursor; Using an Insert Cursor; Inserting a polyline geometry; Inserting a polygon geometry; Summary; Chapter 6: Working with ArcPy Geometry Objects; ArcPy geometry object classes; ArcPy Point objects; ArcPy Array objects; ArcPy Polyline objects; ArcPy Polygon objects; Polygon object buffers; Other Polygon object methods; ArcPy geometry objects; ArcPy PointGeometry objects; Summary.</subfield></datafield><datafield tag="546" ind1=" " ind2=" "><subfield code="a">English.</subfield></datafield><datafield tag="630" ind1="0" ind2="0"><subfield code="a">ArcGIS.</subfield></datafield><datafield tag="630" ind1="0" ind2="7"><subfield code="a">ArcGIS</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Geographic information systems.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh90001880</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Graphical user interfaces (Computer systems)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh93002168</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Python (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh96008834</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Systèmes d'information géographique.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Interfaces graphiques (Informatique)</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Python (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">geographic information systems.</subfield><subfield code="2">aat</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">SCIENCE</subfield><subfield code="x">Earth Sciences</subfield><subfield code="x">Geography.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">TRAVEL</subfield><subfield code="x">Budget.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">TRAVEL</subfield><subfield code="x">Hikes & Walks.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">TRAVEL</subfield><subfield code="x">Museums, Tours, Points of Interest.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">TRAVEL</subfield><subfield code="x">Parks & Campgrounds.</subfield><subfield code="2">bisacsh</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Geographic information systems</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Graphical user interfaces (Computer systems)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Python (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Saldanha, Aarti,</subfield><subfield code="e">editor.</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Shetty, Adithi,</subfield><subfield code="e">editor.</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">ArcPy and ArcGIS - Geospatial Analysis with Python (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCFPRGGTyjT83FjY3tyPfFX</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Toms, Silas.</subfield><subfield code="t">ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS.</subfield><subfield code="d">Birmingham, England ; Mumbai, [India] : Packt Publishing, ©2015</subfield><subfield code="h">v, 205 pages</subfield><subfield code="k">Community experience distilled.</subfield><subfield code="z">9781783988662</subfield></datafield><datafield tag="830" ind1=" " ind2="0"><subfield code="a">Community experience distilled.</subfield><subfield code="0">http://id.loc.gov/authorities/names/no2011030603</subfield></datafield><datafield tag="856" ind1="1" ind2=" "><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="856" ind1="1" ind2=" "><subfield code="l">CBO01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="936" ind1=" " ind2=" "><subfield code="a">BATCHLOAD</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH28295942</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">ebrary</subfield><subfield code="b">EBRY</subfield><subfield code="n">ebr11025932</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">959972</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">12318642</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield></record></collection> |
id | ZDB-4-EBA-ocn905919210 |
illustrated | Illustrated |
indexdate | 2024-10-25T16:22:33Z |
institution | BVB |
isbn | 9781783988679 1783988673 1523106093 9781523106097 |
language | English |
oclc_num | 905919210 |
open_access_boolean | |
owner | MAIN |
owner_facet | MAIN |
physical | 1 online resource (224 pages) : illustrations |
psigel | ZDB-4-EBA |
publishDate | 2015 |
publishDateSearch | 2015 |
publishDateSort | 2015 |
publisher | Packt Publishing, |
record_format | marc |
series | Community experience distilled. |
series2 | Community Experience Distilled |
spelling | Toms, Silas, author. ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty. Birmingham, England ; Mumbai [India] : Packt Publishing, 2015. ©2015 1 online resource (224 pages) : illustrations text txt rdacontent computer c rdamedia online resource cr rdacarrier text file Community Experience Distilled Includes index. Online resource; title from PDF title page (ebrary, viewed March 13, 2015). Annotation If you are a GIS student or professional who needs an understanding of how to use ArcPy to reduce repetitive tasks and perform analysis faster, this book is for you. It is also a valuable book for Python programmers who want to understand how to automate geospatial analyses. Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Python for ArcGIS; Overview of Python; Python as a programming language; Interpreted language; Standard (built-in) library; The glue language; Wrapper modules; The basics of Python; Import statements; Variables; For loops; If/Elif/Else statements; While statements; Comments; Data types; Strings; Integers; Floats; Lists; Tuples; Dictionaries; Iterable data types; Other important concepts; Indentation; Functions; Keywords; Namespaces; Zero-based indexing. Important Python Modules for GIS AnalysisThe ArcPy module; The Operating System (OS) module; The Python System (SYS) module; The XLRD and XLWT modules; Commonly used built-in functions; Commonly used standard library modules; Summary; Chapter 2: Configuring the Python Environment; What is a Python script?; How Python executes a script; What is the Python interpreter?; Where is the Python interpreter located?; Which Python interpreter should be used?; How does the computer know where the interpreter is?; Make Python scripts executable when clicked on; Integrated Development Environments; IDLE. PythonWinAptana Studio 3; IDE summary; Python folder structure; Where modules reside; Using Python's sys module to add a module; The sys.path.append() method; Summary; Chapter 3: Creating the First Python Script; Prerequisites; ModelBuilder; Creating a model and exporting to Python; Modeling the Select and Buffer tools; Adding the Intersect tool; Tallying the analysis results; Exporting the model and adjusting the script; The automatically generated script; File paths in Python; Continuing the script analysis: the arcPy tools; The intersect tool and string manipulation. The string manipulation method 1-string additionThe string manipulation method 2-string formatting #1; The string manipulation method 3-string formatting#2 ; Adjusting the Script; Adding the CSV Module to the script; Accessing the data: Using a cursor; The final script; Summary; Chapter 4: Complex ArcPy Scripts and Generalizing Functions; Python functions-Avoid repeating code; Technical definition of functions; A first function; Functions with parameters; Using functions to replace repetitive code; More generalization of the functions; Summary. Chapter 5: ArcPy Cursors: Search, Insert and UpdateThe data access module; Attribute field interactions; Update cursors; Updating the shape field; Adjusting a point location; Deleting a row using an Update Cursor; Using an Insert Cursor; Inserting a polyline geometry; Inserting a polygon geometry; Summary; Chapter 6: Working with ArcPy Geometry Objects; ArcPy geometry object classes; ArcPy Point objects; ArcPy Array objects; ArcPy Polyline objects; ArcPy Polygon objects; Polygon object buffers; Other Polygon object methods; ArcPy geometry objects; ArcPy PointGeometry objects; Summary. English. ArcGIS. ArcGIS fast Geographic information systems. http://id.loc.gov/authorities/subjects/sh90001880 Graphical user interfaces (Computer systems) http://id.loc.gov/authorities/subjects/sh93002168 Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Systèmes d'information géographique. Interfaces graphiques (Informatique) Python (Langage de programmation) geographic information systems. aat SCIENCE Earth Sciences Geography. bisacsh TRAVEL Budget. bisacsh TRAVEL Hikes & Walks. bisacsh TRAVEL Museums, Tours, Points of Interest. bisacsh TRAVEL Parks & Campgrounds. bisacsh Geographic information systems fast Graphical user interfaces (Computer systems) fast Python (Computer program language) fast Saldanha, Aarti, editor. Shetty, Adithi, editor. has work: ArcPy and ArcGIS - Geospatial Analysis with Python (Text) https://id.oclc.org/worldcat/entity/E39PCFPRGGTyjT83FjY3tyPfFX https://id.oclc.org/worldcat/ontology/hasWork Print version: Toms, Silas. ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS. Birmingham, England ; Mumbai, [India] : Packt Publishing, ©2015 v, 205 pages Community experience distilled. 9781783988662 Community experience distilled. http://id.loc.gov/authorities/names/no2011030603 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972 Volltext CBO01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972 Volltext |
spellingShingle | Toms, Silas ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / Community experience distilled. Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introduction to Python for ArcGIS; Overview of Python; Python as a programming language; Interpreted language; Standard (built-in) library; The glue language; Wrapper modules; The basics of Python; Import statements; Variables; For loops; If/Elif/Else statements; While statements; Comments; Data types; Strings; Integers; Floats; Lists; Tuples; Dictionaries; Iterable data types; Other important concepts; Indentation; Functions; Keywords; Namespaces; Zero-based indexing. Important Python Modules for GIS AnalysisThe ArcPy module; The Operating System (OS) module; The Python System (SYS) module; The XLRD and XLWT modules; Commonly used built-in functions; Commonly used standard library modules; Summary; Chapter 2: Configuring the Python Environment; What is a Python script?; How Python executes a script; What is the Python interpreter?; Where is the Python interpreter located?; Which Python interpreter should be used?; How does the computer know where the interpreter is?; Make Python scripts executable when clicked on; Integrated Development Environments; IDLE. PythonWinAptana Studio 3; IDE summary; Python folder structure; Where modules reside; Using Python's sys module to add a module; The sys.path.append() method; Summary; Chapter 3: Creating the First Python Script; Prerequisites; ModelBuilder; Creating a model and exporting to Python; Modeling the Select and Buffer tools; Adding the Intersect tool; Tallying the analysis results; Exporting the model and adjusting the script; The automatically generated script; File paths in Python; Continuing the script analysis: the arcPy tools; The intersect tool and string manipulation. The string manipulation method 1-string additionThe string manipulation method 2-string formatting #1; The string manipulation method 3-string formatting#2 ; Adjusting the Script; Adding the CSV Module to the script; Accessing the data: Using a cursor; The final script; Summary; Chapter 4: Complex ArcPy Scripts and Generalizing Functions; Python functions-Avoid repeating code; Technical definition of functions; A first function; Functions with parameters; Using functions to replace repetitive code; More generalization of the functions; Summary. Chapter 5: ArcPy Cursors: Search, Insert and UpdateThe data access module; Attribute field interactions; Update cursors; Updating the shape field; Adjusting a point location; Deleting a row using an Update Cursor; Using an Insert Cursor; Inserting a polyline geometry; Inserting a polygon geometry; Summary; Chapter 6: Working with ArcPy Geometry Objects; ArcPy geometry object classes; ArcPy Point objects; ArcPy Array objects; ArcPy Polyline objects; ArcPy Polygon objects; Polygon object buffers; Other Polygon object methods; ArcPy geometry objects; ArcPy PointGeometry objects; Summary. ArcGIS. ArcGIS fast Geographic information systems. http://id.loc.gov/authorities/subjects/sh90001880 Graphical user interfaces (Computer systems) http://id.loc.gov/authorities/subjects/sh93002168 Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Systèmes d'information géographique. Interfaces graphiques (Informatique) Python (Langage de programmation) geographic information systems. aat SCIENCE Earth Sciences Geography. bisacsh TRAVEL Budget. bisacsh TRAVEL Hikes & Walks. bisacsh TRAVEL Museums, Tours, Points of Interest. bisacsh TRAVEL Parks & Campgrounds. bisacsh Geographic information systems fast Graphical user interfaces (Computer systems) fast Python (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh90001880 http://id.loc.gov/authorities/subjects/sh93002168 http://id.loc.gov/authorities/subjects/sh96008834 |
title | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / |
title_auth | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / |
title_exact_search | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / |
title_full | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty. |
title_fullStr | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty. |
title_full_unstemmed | ArcPy and ArcGIS, geospatial analysis with python : use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / Silas Toms ; copy editors Aarti Saldanha, Adithi Shetty. |
title_short | ArcPy and ArcGIS, geospatial analysis with python : |
title_sort | arcpy and arcgis geospatial analysis with python use the arcpy module to automate the analysis and mapping of geospatial data in arcgis |
title_sub | use the ArcPy module to automate the analysis and mapping of geospatial data in ArcGIS / |
topic | ArcGIS. ArcGIS fast Geographic information systems. http://id.loc.gov/authorities/subjects/sh90001880 Graphical user interfaces (Computer systems) http://id.loc.gov/authorities/subjects/sh93002168 Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Systèmes d'information géographique. Interfaces graphiques (Informatique) Python (Langage de programmation) geographic information systems. aat SCIENCE Earth Sciences Geography. bisacsh TRAVEL Budget. bisacsh TRAVEL Hikes & Walks. bisacsh TRAVEL Museums, Tours, Points of Interest. bisacsh TRAVEL Parks & Campgrounds. bisacsh Geographic information systems fast Graphical user interfaces (Computer systems) fast Python (Computer program language) fast |
topic_facet | ArcGIS. ArcGIS Geographic information systems. Graphical user interfaces (Computer systems) Python (Computer program language) Systèmes d'information géographique. Interfaces graphiques (Informatique) Python (Langage de programmation) geographic information systems. SCIENCE Earth Sciences Geography. TRAVEL Budget. TRAVEL Hikes & Walks. TRAVEL Museums, Tours, Points of Interest. TRAVEL Parks & Campgrounds. Geographic information systems |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=959972 |
work_keys_str_mv | AT tomssilas arcpyandarcgisgeospatialanalysiswithpythonusethearcpymoduletoautomatetheanalysisandmappingofgeospatialdatainarcgis AT saldanhaaarti arcpyandarcgisgeospatialanalysiswithpythonusethearcpymoduletoautomatetheanalysisandmappingofgeospatialdatainarcgis AT shettyadithi arcpyandarcgisgeospatialanalysiswithpythonusethearcpymoduletoautomatetheanalysisandmappingofgeospatialdatainarcgis |