Skip to content

Commit 8c2d3db

Browse files
committed
feat: Add São Paulo crime data examples
- Add police district (DISTPOL) shapefiles and crime statistics - Include historical crime data from 2000-2020 (CSV and DBF formats) - Add demo_sp_2.ipynb notebook with real crime data analysis - Add .gitignore to exclude system files (.DS_Store, __pycache__, etc) Examples now include both synthetic and real-world crime analysis for São Paulo
1 parent 8e7c3b6 commit 8c2d3db

16 files changed

Lines changed: 173 additions & 0 deletions

.gitignore

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Testing
24+
.pytest_cache/
25+
.coverage
26+
htmlcov/
27+
.tox/
28+
.hypothesis/
29+
30+
# IDEs
31+
.vscode/
32+
.idea/
33+
*.swp
34+
*.swo
35+
*~
36+
37+
# OS
38+
.DS_Store
39+
.DS_Store?
40+
._*
41+
.Spotlight-V100
42+
.Trashes
43+
ehthumbs.db
44+
Thumbs.db
45+
46+
# Jupyter
47+
.ipynb_checkpoints/
48+
*.ipynb_checkpoints
49+
50+
# Logs
51+
*.log
52+
53+
# Temporary files
54+
*.tmp
55+
*.bak
56+
Binary file not shown.

examples/DISTPOL2021_MSP_CEM_V1_2/DADOS_DISTPOL_2000_2020_MSP_CEM_V1.csv

Lines changed: 115 additions & 0 deletions
Large diffs are not rendered by default.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
57.6 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.25722356]],PRIMEM["Greenwich",0],UNIT["Degree",0.0174532925199433]]
380 KB
Binary file not shown.

0 commit comments

Comments
 (0)