-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from conveyal/update-batch-download
Update batch regional download example
- Loading branch information
Showing
3 changed files
with
40 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Examples of how to download travel time surfaces (`.tiff` format) from [Conveyal Analysis](http://conveyal.com/analysis), extract travel time contours (isochrones), and save them as `.geojson`, or create a `.csv` of accessibility results, for multiple origins | ||
|
||
Details are in the jupyter lab notebook `batch-isos.ipynb` (viewable directly on GitHub) | ||
Examples of batch downloads from [Conveyal](http://conveyal.com/analysis): | ||
- Download travel time surfaces (in the `.tif` GeoTiff format) for multiple origins, extract travel time contours (isochrones), and save them as `.geojson` or create a `.csv` of accessibility results. See the `batch-isos.ipynb` jupyter lab notebook (viewable directly on GitHub). | ||
- Download a .zip file of regional analysis results including all combinations of time cutoffs, percentiles, and destination layers (in the `.tif` GeoTiff format). See the `batch-result-download.ipynb` jupyter lab notebook (viewable directly on GitHub). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,6 @@ | ||
{ | ||
"regionId": "abc123", | ||
"analysisIds": [ | ||
"def456", | ||
"ghi789" | ||
], | ||
"cutoffs": [ | ||
30, | ||
45, | ||
60 | ||
], | ||
"pointSetIds": [ | ||
"uvw123", | ||
"xyz456" | ||
], | ||
"percentiles": [ | ||
25, | ||
50, | ||
75 | ||
"abc123", | ||
"def456" | ||
] | ||
} |