Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

For SNAP 10 the toolboxes are thematically reorganised.

...

Code Block
languagexml
<object classid="java:org.netbeans.modules.javahelp.BrowserDisplayer">
    <param name="content" value="https://seadas.gsfc.nasa.gov/">
    <param name="text" value="https<html><u>https://seadas.gsfc.nasa.govgov</u></html>">
    <param name="textFontSize" value="bigger">
</object>

...

Code Block
languagexml
<object classid="java:eu.esa.snap.netbeans.javahelp.BrowserDisplayer">
    <param name="content" value="https://seadas.gsfc.nasa.gov/">
    <param name="text" value="https<html><u>https://seadas.gsfc.nasa.govgov</u></html>">
    <param name="textFontSize" value="bigger">
</object>

...

In SNAP 10, the access to SNAP from Python is provided by an external plugin ‘esa_snappy'. This plugin basically contains the functionalities of the previous ‘snappy’ module in SNAP versions <= 9. The plugin works with the standard CPython, so that any native Python extension modules such as numpy and scipy can be used. The esa_snappy module depends on a bi-directional Java-Python bridge jpy that enables calls from Python into a Java virtual machine and, at the same time, the other way round. This bridge is implemented by the jpy Project and is independent from the esa_snappy module.

...