-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
67 additions
and
101 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
# Included for native namespace package support | ||
# Included for native namespace package support |
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,34 +1,18 @@ | ||
from tethys_sdk.base import TethysAppBase, url_map_maker | ||
from tethys_sdk.base import TethysAppBase | ||
|
||
|
||
class EarthEngine(TethysAppBase): | ||
""" | ||
Tethys app class for Earth Engine. | ||
""" | ||
|
||
name = 'Earth Engine' | ||
index = 'earth_engine:home' | ||
icon = 'earth_engine/images/earth-engine-logo.png' | ||
package = 'earth_engine' | ||
name = 'Google Earth Engine Tutorial' | ||
description = '' | ||
package = 'earth_engine' # WARNING: Do not change this value | ||
index = 'home' | ||
icon = f'{package}/images/earth-engine-logo.png' | ||
root_url = 'earth-engine' | ||
color = '#524745' | ||
description = '' | ||
tags = '' | ||
enable_feedback = False | ||
feedback_emails = [] | ||
|
||
def url_maps(self): | ||
""" | ||
Add controllers | ||
""" | ||
UrlMap = url_map_maker(self.root_url) | ||
|
||
url_maps = ( | ||
UrlMap( | ||
name='home', | ||
url='earth-engine', | ||
controller='earth_engine.controllers.home' | ||
), | ||
) | ||
|
||
return url_maps | ||
feedback_emails = [] |
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 was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
/* Remove padding on bottom where app-actions section used to be */ | ||
#app-content-wrapper #app-content { | ||
padding-bottom: 0; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
#inner-app-content { | ||
height: 100%; | ||
padding: 0; | ||
} | ||
} |
Binary file not shown.
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