Skip to content

Commit c5b0cc0

Browse files
committed
- reorg
1 parent a4f5642 commit c5b0cc0

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

pysal/network/README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ PySAL network will include the following spatial analytical methods
1818
- Local Indicators of Network-Constrained Clusters (LINCS)
1919
- Local K-Functions
2020
- Network Kernels
21+
- Accessibility Indices
2122

2223
### Utility
2324

@@ -35,12 +36,29 @@ PySAL network will include the following spatial analytical methods
3536
- Extraction of WED from a planar polyine shapefile
3637
- Spatial Weights for Networks
3738

39+
### FileIO
40+
41+
#### Input
42+
- reading polyline shapefiles
43+
- point shapefiles
44+
- polygon files
45+
- wed
46+
- dot
47+
- (geo)json
48+
49+
#### Output
50+
- wed
51+
- dot
52+
- shapefiles
53+
- polyline
54+
- points
55+
- polygons
56+
- (geo)json
3857

3958
### Module Listing
4059

4160
List key modules here and their purposes
4261

43-
4462
- `shp2graph.py` ?
4563
- `wed.py` core winged edge data structure
4664
- `util.py` utility functions
@@ -53,10 +71,9 @@ List notebooks and their purpose
5371

5472
Prioritize components for 1.7 development
5573

56-
5774
## Issues
5875

59-
76+
- holes in the wed
6077

6178

6279
[GeoDaNet]: https://geodacenter.asu.edu/drupal_files/Geodanet_Manual_03_2012.pdf

pysal/network/analytics.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Analytic functions/classes for network module
2+
3+
"""
4+
- Global Network Autocorrelation
5+
- Global K-Functions
6+
- Local Indicators of Network-Constrained Clusters (LINCS)
7+
- Local K-Functions
8+
- Network Kernels
9+
- Accessibility Indices
10+
"""
11+

pysal/network/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Data structures for network module

pysal/network/fileio.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# IO handlers for network module go here

0 commit comments

Comments
 (0)