Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed variable names #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Find an example script [here](/examples/Importing%20GeoJSON%20Python%20Demo.py '

2. Open GeoJSON data file.
```python
bikeroutes_json = open('PATH/TO/osd-street-center-line/data/Bikeroutes.json', 'r')
bikeroutes = open('PATH/TO/osd-street-center-line/data/Bikeroutes.json', 'r')
```

3. Check first few lines of data (repeat this command several times)
Expand All @@ -86,12 +86,13 @@ Find an example script [here](/examples/Importing%20GeoJSON%20Python%20Demo.py '

4. Load GeoJSON file.
```python
bikeroutes = json.load(bikeroutes_json)
bikeroutes_json = json.load(bikeroutes)
```

5. Close the open GeoJSON file.
```python
json.close(bikeroutes_json)
close(bikeroutes)
```

Ruby
Expand Down Expand Up @@ -123,4 +124,4 @@ The folder "Transformations" contains the necessary code to transform data on th

License
=======
This data is released under the [MIT License](http://opensource.org/licenses/MIT 'MIT License'). See LICENSE.txt.
This data is released under the [MIT License](http://opensource.org/licenses/MIT 'MIT License'). See LICENSE.txt.