-
Notifications
You must be signed in to change notification settings - Fork 10
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
add a new service called plantation mapping #6
Conversation
landcover_viewer/core.py
Outdated
@@ -17,6 +17,8 @@ class LandCoverViewer(): | |||
|
|||
PROBABILITY_MAP = ee.ImageCollection('users/servirmekong/LandCover') | |||
|
|||
YEARLY_COMPOSITES = ee.ImageCollection("projects/servir-mekong/yearlyComposites") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use single quote please
@@ -799,9 +799,6 @@ | |||
}); | |||
}; | |||
|
|||
// check to see if probability map exists |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why did you remove this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the earlier comment was for the plantation not the probability maps
@@ -1,4 +1,5 @@ | |||
{% extends "layout.html" %} | |||
{% block title %}Myanmar Nation FRA{% endblock %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
National?
@@ -1,4 +1,5 @@ | |||
{% extends "layout.html" %} | |||
{% block title %}Myanmar Nation Classification{% endblock %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
National?
@@ -0,0 +1,133 @@ | |||
{% extends "layout.html" %} | |||
{% block title %}Myanmar Nation Plantation Service{% endblock %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
National?
plantation_mapping/core.py
Outdated
} | ||
] | ||
|
||
REMAPPED_CLASSES = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we are not remapping any classes here. look the examples at the myanmar products
@@ -0,0 +1,44 @@ | |||
# -*- coding: utf-8 -*- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this needs to go to init file as well
add a new service called plantation mapping