Explaining ENVI equations?Needing more explanation?ENVI Vegetation Index CalculatorWhat is meaning of Emissive in ENVI?Loading ENVI file into ArcGIS Desktop?Asking linear regression between NDVI and LST using ENVIatmospheric correction in ENVI 5.1Parameter names and meaning of their values in an ENVI header fileOpen Sentinel-1 products using ENVI 5.3How to spatial subset (clip) TerraSAR-X SSC data (.cos) using vector files and one of the softwares (ENVI, PCI Geomatica, Erdas Imagine, etc)?ENVI band math incorrect valuesOther ideas on flaash?
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
Replacing matching entries in one column of a file by another column from a different file
meaning of に in 本当に?
How to format long polynomial?
What does the "remote control" for a QF-4 look like?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Can a monk's single staff be considered dual wielded, as per the Dual Wielder feat?
Can I make popcorn with any corn?
Is it legal for company to use my work email to pretend I still work there?
RSA: Danger of using p to create q
Do I have a twin with permutated remainders?
Maximum likelihood parameters deviate from posterior distributions
Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?
Which country benefited the most from UN Security Council vetoes?
Can you really stack all of this on an Opportunity Attack?
What does it mean to describe someone as a butt steak?
Decision tree nodes overlapping with Tikz
expand `ifthenelse` immediately
How do I deal with an unproductive colleague in a small company?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Watching something be written to a file live with tail
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
Is it possible to run Internet Explorer on OS X El Capitan?
What doth I be?
Explaining ENVI equations?
Needing more explanation?ENVI Vegetation Index CalculatorWhat is meaning of Emissive in ENVI?Loading ENVI file into ArcGIS Desktop?Asking linear regression between NDVI and LST using ENVIatmospheric correction in ENVI 5.1Parameter names and meaning of their values in an ENVI header fileOpen Sentinel-1 products using ENVI 5.3How to spatial subset (clip) TerraSAR-X SSC data (.cos) using vector files and one of the softwares (ENVI, PCI Geomatica, Erdas Imagine, etc)?ENVI band math incorrect valuesOther ideas on flaash?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Could you please explain the meaning of this equation:
(b1 le 0) * 0 + (b1 ge 10000) * 1 + (b1 gt 0 et b1 lt 10000) * float (b1) / 10000 b1.
What do ge, gl etc mean?
envi
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Could you please explain the meaning of this equation:
(b1 le 0) * 0 + (b1 ge 10000) * 1 + (b1 gt 0 et b1 lt 10000) * float (b1) / 10000 b1.
What do ge, gl etc mean?
envi
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Could you please explain the meaning of this equation:
(b1 le 0) * 0 + (b1 ge 10000) * 1 + (b1 gt 0 et b1 lt 10000) * float (b1) / 10000 b1.
What do ge, gl etc mean?
envi
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Could you please explain the meaning of this equation:
(b1 le 0) * 0 + (b1 ge 10000) * 1 + (b1 gt 0 et b1 lt 10000) * float (b1) / 10000 b1.
What do ge, gl etc mean?
envi
envi
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 2 at 20:56
PolyGeo♦
53.9k1781245
53.9k1781245
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 2 at 10:29
alexandraalexandra
11
11
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
alexandra is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
gemeans "greater or equal" (i.e.>=)gtmeans "greater than" (i.e. strictly greater,>)lemeans "lower or equal" (i.e.<=)ltmeans "lower than" (i.e. strictly lower,<)
et is probably a mistake (French for and).
add a comment |
These are relational Operators. See here: https://www.harrisgeospatial.com/docs/Relational_Operators.html
I'm not sure what et stands for, but using these, the equation becomes:
(b1 <= 0) * 0 + (b1 >= 10000) * 1 + (b1 > 0 et b1 < 10000) * float (b1) / 10000 b1.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
alexandra is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317468%2fexplaining-envi-equations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
gemeans "greater or equal" (i.e.>=)gtmeans "greater than" (i.e. strictly greater,>)lemeans "lower or equal" (i.e.<=)ltmeans "lower than" (i.e. strictly lower,<)
et is probably a mistake (French for and).
add a comment |
gemeans "greater or equal" (i.e.>=)gtmeans "greater than" (i.e. strictly greater,>)lemeans "lower or equal" (i.e.<=)ltmeans "lower than" (i.e. strictly lower,<)
et is probably a mistake (French for and).
add a comment |
gemeans "greater or equal" (i.e.>=)gtmeans "greater than" (i.e. strictly greater,>)lemeans "lower or equal" (i.e.<=)ltmeans "lower than" (i.e. strictly lower,<)
et is probably a mistake (French for and).
gemeans "greater or equal" (i.e.>=)gtmeans "greater than" (i.e. strictly greater,>)lemeans "lower or equal" (i.e.<=)ltmeans "lower than" (i.e. strictly lower,<)
et is probably a mistake (French for and).
edited Apr 2 at 12:01
answered Apr 2 at 10:46
ArMoraerArMoraer
4,69121640
4,69121640
add a comment |
add a comment |
These are relational Operators. See here: https://www.harrisgeospatial.com/docs/Relational_Operators.html
I'm not sure what et stands for, but using these, the equation becomes:
(b1 <= 0) * 0 + (b1 >= 10000) * 1 + (b1 > 0 et b1 < 10000) * float (b1) / 10000 b1.
add a comment |
These are relational Operators. See here: https://www.harrisgeospatial.com/docs/Relational_Operators.html
I'm not sure what et stands for, but using these, the equation becomes:
(b1 <= 0) * 0 + (b1 >= 10000) * 1 + (b1 > 0 et b1 < 10000) * float (b1) / 10000 b1.
add a comment |
These are relational Operators. See here: https://www.harrisgeospatial.com/docs/Relational_Operators.html
I'm not sure what et stands for, but using these, the equation becomes:
(b1 <= 0) * 0 + (b1 >= 10000) * 1 + (b1 > 0 et b1 < 10000) * float (b1) / 10000 b1.
These are relational Operators. See here: https://www.harrisgeospatial.com/docs/Relational_Operators.html
I'm not sure what et stands for, but using these, the equation becomes:
(b1 <= 0) * 0 + (b1 >= 10000) * 1 + (b1 > 0 et b1 < 10000) * float (b1) / 10000 b1.
answered Apr 2 at 10:50
Devdatta TengsheDevdatta Tengshe
31.1k21109214
31.1k21109214
add a comment |
add a comment |
alexandra is a new contributor. Be nice, and check out our Code of Conduct.
alexandra is a new contributor. Be nice, and check out our Code of Conduct.
alexandra is a new contributor. Be nice, and check out our Code of Conduct.
alexandra is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317468%2fexplaining-envi-equations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown