基本信息
源码名称:《Python Geospatial Development - Third Edition》随书代码sourece codes
源码大小:4.36M
文件格式:.zip
开发语言:Python
更新时间:2023-04-26
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
《Python Geospatial Development - Third Edition》一书的随书代码


文件清单
├── Chapter 02
│   ├── example01.py
│   ├── example02.py
│   ├── example03.py
│   ├── example04.py
│   └── example05.py
├── Chapter 03
│   ├── mapnik_example.py
│   ├── pyproj_example.py
│   ├── readRaster.py
│   ├── readVector.py
│   ├── shapely_example.py
│   ├── writeRaster.py
│   └── writeVector.py
├── Chapter 04
│   ├── __MACOSX
│   │   └── 8937_05_code
│   └── Windows
│       ├── calcBorderLength.py
│       ├── calcBoundingBoxes.py
│       ├── calcCommonBorder.py
│       ├── calcFeatureLengths.py
│       ├── changeDatum.py
│       ├── changeProjection.py
│       ├── findNearbyParks.py
│       ├── findShoshone.py
│       └── histogram.py
├── Chapter 05
│   ├── __MACOSX
│   │   └── 8937_05_code
│   └── Windows
│       ├── calcBorderLength.py
│       ├── calcBoundingBoxes.py
│       ├── calcCommonBorder.py
│       ├── calcFeatureLengths.py
│       ├── changeDatum.py
│       ├── changeProjection.py
│       ├── findNearbyParks.py
│       ├── findShoshone.py
│       └── histogram.py
├── Chapter 06
│   └── postgis_test.py
├── Chapter 07
│   ├── __MACOSX
│   │   └── Code
│   └── Windows
│       └── createExampleMap.py
├── Chapter 08
│   ├── __MACOSX
│   │   └── B04608_08_updated_code
│   │       └── DISTAL
│   │           └── cgi-bin
│   └── Windows
│       └── DISTAL
│           ├── cgi-bin
│           │   ├── mapGenerator.py
│           │   ├── point.png
│           │   ├── selectArea.py
│           │   ├── selectCountry.py
│           │   └── showResults.py
│           ├── create_db.py
│           ├── import_geonames.py
│           ├── import_gnis.py
│           ├── import_gshhg.py
│           ├── import_world_borders.py
│           └── webserver.py
├── Chapter 09
│   ├── __MACOSX
│   │   └── B04608_09_code_2ndDraft
│   │       └── cgi-bin
│   └── Windows
│       ├── cgi-bin
│       │   ├── mapGenerator.py
│       │   ├── point.png
│       │   ├── selectArea.py
│       │   ├── selectCountry.py
│       │   └── showResults.py
│       ├── import_world_borders.py
│       ├── shiftSplitCountries.py
│       ├── tileShorelines.py
│       └── webserver.py
├── Chapter 10
│   ├── __MACOSX
│   │   └── 8937_10_code
│   │       ├── Django Example
│   │       │   └── example
│   │       │       ├── example
│   │       │       └── hello
│   │       │           ├── migrations
│   │       │           └── templates
│   │       └── Example Web Service
│   │           └── cgi-bin
│   └── Windows
│       ├── Django Example
│       │   └── example
│       │       ├── example
│       │       │   ├── __init__.py
│       │       │   ├── settings.py
│       │       │   ├── urls.py
│       │       │   └── wsgi.py
│       │       ├── hello
│       │       │   ├── admin.py
│       │       │   ├── __init__.py
│       │       │   ├── migrations
│       │       │   │   ├── 0001_initial.py
│       │       │   │   └── __init__.py
│       │       │   ├── models.py
│       │       │   ├── templates
│       │       │   │   └── say_hello.html
│       │       │   ├── tests.py
│       │       │   └── views.py
│       │       └── manage.py
│       ├── Example Web Service
│       │   ├── callWebService.py
│       │   ├── cgi-bin
│       │   │   └── greatCircleDistance.py
│       │   └── webserver.py
│       └── OpenLayers Example.html
├── Chapter 11
│   ├── __MACOSX
│   │   └── B04608_11_2ndDraftCode
│   │       └── shapeEditor
│   │           └── shapeEditor
│   │               └── shared
│   │                   └── migrations
│   └── shapeEditor
│       ├── manage.py
│       └── shapeEditor
│           ├── __init__.py
│           ├── settings.py
│           ├── shared
│           │   ├── admin.py
│           │   ├── __init__.py
│           │   ├── migrations
│           │   │   ├── 0001_initial.py
│           │   │   ├── 0002_remove_shapefile_encoding.py
│           │   │   └── __init__.py
│           │   └── models.py
│           ├── urls.py
│           └── wsgi.py
├── Chapter 12
│   ├── code
│   │   └── shapeEditor
│   │       ├── manage.py
│   │       └── shapeEditor
│   │           ├── __init__.py
│   │           ├── settings.py
│   │           ├── shapefiles
│   │           │   ├── forms.py
│   │           │   ├── __init__.py
│   │           │   ├── migrations
│   │           │   │   └── __init__.py
│   │           │   ├── models.py
│   │           │   ├── shapefileIO.py
│   │           │   ├── templates
│   │           │   │   ├── import_shapefile.html
│   │           │   │   └── list_shapefiles.html
│   │           │   └── views.py
│   │           ├── shared
│   │           │   ├── admin.py
│   │           │   ├── __init__.py
│   │           │   ├── migrations
│   │           │   │   ├── 0001_initial.py
│   │           │   │   ├── 0002_remove_shapefile_encoding.py
│   │           │   │   └── __init__.py
│   │           │   ├── models.py
│   │           │   └── utils.py
│   │           ├── urls.py
│   │           └── wsgi.py
│   └── __MACOSX
│       └── code
│           └── shapeEditor
│               └── shapeEditor
│                   ├── shapefiles
│                   │   ├── migrations
│                   │   └── templates
│                   └── shared
│                       └── migrations
├── Chapter 13
│   ├── __MACOSX
│   │   └── 8937_13_code
│   │       └── shapeEditor
│   │           └── shapeEditor
│   │               ├── shapefiles
│   │               │   ├── migrations
│   │               │   └── templates
│   │               ├── shared
│   │               │   └── migrations
│   │               └── tms
│   │                   ├── fixtures
│   │                   └── migrations
│   └── Windows
│       └── shapeEditor
│           ├── manage.py
│           └── shapeEditor
│               ├── __init__.py
│               ├── settings.py
│               ├── shapefiles
│               │   ├── forms.py
│               │   ├── __init__.py
│               │   ├── migrations
│               │   │   └── __init__.py
│               │   ├── models.py
│               │   ├── shapefileIO.py
│               │   ├── templates
│               │   │   ├── delete_feature.html
│               │   │   ├── delete_shapefile.html
│               │   │   ├── edit_feature.html
│               │   │   ├── import_shapefile.html
│               │   │   ├── list_shapefiles.html
│               │   │   ├── openlayers-custom.html
│               │   │   └── select_feature.html
│               │   └── views.py
│               ├── shared
│               │   ├── admin.py
│               │   ├── __init__.py
│               │   ├── migrations
│               │   │   ├── 0001_initial.py
│               │   │   └── __init__.py
│               │   ├── models.py
│               │   └── utils.py
│               ├── tms
│               │   ├── fixtures
│               │   │   └── initial_data.json
│               │   ├── __init__.py
│               │   ├── migrations
│               │   │   ├── 0001_initial.py
│               │   │   └── __init__.py
│               │   ├── models.py
│               │   ├── urls.py
│               │   └── views.py
│               ├── urls.py
│               └── wsgi.py
├── Readme.txt
└── Software_list.PDF

102 directories, 133 files