Finishing this guide you'll get:
- A running WordPress installation
- Nginx proxy with PHP and Fast CGI
- MySQL server accessible with phpMyAdmin
Specification of latest running installation:
- Date: 03.03.2014
| #Name: Export ArcGIS Server Map Service Layer to Shapefile with Iterate | |
| #Author: Bryan McIntosh | |
| #Description: Python script that connects to an ArcGIS Server Map Service and downloads a single vector layer | |
| # to shapefiles. If there are more features than AGS max allowed, it will iterate to extract all features. | |
| import urllib2,json,os,arcpy,itertools | |
| ws = os.getcwd() + os.sep | |
| #Set connection to ArcGIS Server, map service, layer ID, and server max requests (1000 is AGS default if not known). | |
| serviceURL = "https://domain/arcgis/rest/services" |
Finishing this guide you'll get:
Specification of latest running installation: