Skip to content

Commit 9c8f1a7

Browse files
committed
fixed inplace in some functions
1 parent a40e009 commit 9c8f1a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+20228
-7748
lines changed

.gitignore

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -339,9 +339,9 @@ $RECYCLE.BIN/
339339
# Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
340340

341341
developing/
342-
examples/*
343-
!examples/geolife_sample.csv
344-
!examples/atlantic.csv
345-
!examples/README.md
346-
!examples/[0-9]*.ipynb
347-
!examples/extracao_geolife.ipynb
342+
notebooks/*
343+
!notebooks/geolife_sample.csv
344+
!notebooks/atlantic.csv
345+
!notebooks/README.md
346+
!notebooks/[0-9]*.ipynb
347+
!notebooks/extracao_geolife.ipynb

.mapping.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ lint: clean
2525
flake8
2626

2727
docs: clean
28+
cp docs/examples/notebooks.rst docs
2829
rm -rf docs/api docs/examples
2930
sphinx-apidoc -f -o docs/api pymove pymove/tests/
30-
jupyter nbconvert --to rst --output-dir docs/examples examples/[0-9]*.ipynb
31+
jupyter nbconvert --to rst --output-dir docs/examples notebooks/[0-9]*.ipynb
32+
mv docs/notebooks.rst docs/examples
3133
make -C docs html

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ If you installed from `pip` or `github`, you may encounter an error related to
219219

220220
## Examples
221221

222-
You can access examples of how to use PyMove [here](https://github.com/InsightLab/PyMove/tree/master/examples)
222+
You can see examples of how to use PyMove [here](https://github.com/InsightLab/PyMove/tree/master/notebooks)
223223
---
224224

225225
## Papers
@@ -240,7 +240,7 @@ You can access examples of how to use PyMove [here](https://github.com/InsightLa
240240

241241

242242
## Mapping PyMove methods with the Paradigms of Trajectory Data Mining
243-
![](.mapping.svg)
243+
244244
![](.mapping.png)
245245
[ZHENG 2015](https://www.microsoft.com/en-us/research/publication/trajectory-data-mining-an-overview/).
246246

docs/examples/01_Exploring_MoveDataFrame.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ c. DataFrames
804804
805805
.. parsed-literal::
806806
807-
{'name': 'to_grid', 'time in seconds': 0.021413803100585938, 'memory': '0.0 B'}
807+
{'name': 'to_grid', 'time in seconds': 0.004861116409301758, 'memory': '0.0 B'}
808808
809809
810810

0 commit comments

Comments
 (0)