-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* super tile start * writing windows * working super tiles * clean up supertiles take 1 * generalize over zoom to work for going up x number of zoom levels as specified in config * remove prints * test for overzoom * clean up main * fix test * fix test again * circle ci env variable for config * fix images command * config format * circle token * change how tokens are read * remove print * config env variable * config env variable * fix circler ci yaml * fix how env is injected * fix config * fix environment variables in tox * option to read access token as environment variable * update docs about access token * Minor supertiling cleanup Co-authored-by: Drew Bollinger <drew@developmentseed.org>
- Loading branch information
Showing
7 changed files
with
107 additions
and
8 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
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
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
24 changes: 24 additions & 0 deletions
24
test/fixtures/integration/config_overzoom.integration.json
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{"country": "portugal", | ||
"bounding_box": [ | ||
-9.4575, | ||
38.8467, | ||
-9.4510, | ||
38.8513 | ||
], | ||
"zoom": 17, | ||
"classes": [ | ||
{ "name": "Water Tower", "filter": ["==", "man_made", "water_tower"] }, | ||
{ "name": "Building", "filter": ["has", "building"] }, | ||
{ "name": "Farmland", "filter": ["==", "landuse", "farmland"] }, | ||
{ "name": "Ruins", "filter": ["==", "historic", "ruins"] }, | ||
{ "name": "Parking", "filter": ["==", "amenity", "parking"] }, | ||
{ "name": "Roads", "filter": ["has", "highway"] } | ||
], | ||
"imagery": "https://api.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.jpg?access_token={ACCESS_TOKEN}", | ||
"background_ratio": 1, | ||
"ml_type": "classification", | ||
"seed": 19, | ||
"split_names": ["train", "test", "val"], | ||
"split_vals": [0.7, 0.2, 0.1], | ||
"over_zoom": 1 | ||
} |
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