Adding features with attribution to Feature Service using Jupyter Notebooks and ArcGIS Python API? The Next CEO of Stack OverflowReplacing ArcPy with ArcGIS API for Python?Cannot plot map on ArcGIS python API?Difference between ArcPy and ArcGIS API for Python?Creating Tile Service in ArcGIS Online Python APIArcGIS API for Python Delete Multiple FeaturesDisplaying 3rd party FeatureSet geometries on jupyter notebook webmap using ArcGIS Python APIUsing ArcPy and ArcGIS API for Python together?Getting Exent of Queried Results using ArcGIS Python API?Using the arcpy Python library with hosted feature service layers from ArcGIS Online?How to update a hosted feature service on ArcGIS Online using the Python API for ArcGIS Pro?

Is there such a thing as a proper verb, like a proper noun?

Can this note be analyzed as a non-chord tone?

Is it ever safe to open a suspicious HTML file (e.g. email attachment)?

How to find image of a complex function with given constraints?

What connection does MS Office have to Netscape Navigator?

AB diagonalizable then BA also diagonalizable

(How) Could a medieval fantasy world survive a magic-induced "nuclear winter"?

What is the difference between Statistical Mechanics and Quantum Mechanics

Purpose of level-shifter with same in and out voltages

When "be it" is at the beginning of a sentence, what kind of structure do you call it?

Defamation due to breach of confidentiality

Is French Guiana a (hard) EU border?

Does Germany produce more waste than the US?

Is there a way to save my career from absolute disaster?

Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?

What does "shotgun unity" refer to here in this sentence?

If Nick Fury and Coulson already knew about aliens (Kree and Skrull) why did they wait until Thor's appearance to start making weapons?

Decide between Polyglossia and Babel for LuaLaTeX in 2019

How did Beeri the Hittite come up with naming his daughter Yehudit?

Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?

What flight has the highest ratio of timezone difference to flight time?

Sulfuric acid symmetry point group

I dug holes for my pergola too wide

In the "Harry Potter and the Order of the Phoenix" videogame, what potion is used to sabotage Umbridge's speakers?



Adding features with attribution to Feature Service using Jupyter Notebooks and ArcGIS Python API?



The Next CEO of Stack OverflowReplacing ArcPy with ArcGIS API for Python?Cannot plot map on ArcGIS python API?Difference between ArcPy and ArcGIS API for Python?Creating Tile Service in ArcGIS Online Python APIArcGIS API for Python Delete Multiple FeaturesDisplaying 3rd party FeatureSet geometries on jupyter notebook webmap using ArcGIS Python APIUsing ArcPy and ArcGIS API for Python together?Getting Exent of Queried Results using ArcGIS Python API?Using the arcpy Python library with hosted feature service layers from ArcGIS Online?How to update a hosted feature service on ArcGIS Online using the Python API for ArcGIS Pro?










0















I want to have a user add points by clicking on a map in a Jupyter Notebook and those points get pushed to a feature service.



I'm able to accomplish that task, but I would like the user to be able to customize the attribution for the points they just added.



I'm envisioning a pop up with the various fields that appears when the user adds a point on the map and they just type in a string. I've tried using input(), as well as ipywidgets.



Is there another way to accomplish this?



Most of the examples I see online are for the ArcGIS JavaScript API.



def create_feature(_map, location):

try:
object_id = 1
point = geometry.Point(location)
feature = features.Feature(
geometry=point,
attributes=
'OBJECTID': object_id,
'PARK_NAME': 'My Park',
'TRL_NAME': 'Foobar Trail',
'ELEV_FT': '5000'

)

trailheads_layer.edit_features(adds=[feature])
_map.draw(point)

except Exception as e:
print("Couldn't create the feature. ".format(str(e)))

m.on_click(create_feature)









share|improve this question




























    0















    I want to have a user add points by clicking on a map in a Jupyter Notebook and those points get pushed to a feature service.



    I'm able to accomplish that task, but I would like the user to be able to customize the attribution for the points they just added.



    I'm envisioning a pop up with the various fields that appears when the user adds a point on the map and they just type in a string. I've tried using input(), as well as ipywidgets.



    Is there another way to accomplish this?



    Most of the examples I see online are for the ArcGIS JavaScript API.



    def create_feature(_map, location):

    try:
    object_id = 1
    point = geometry.Point(location)
    feature = features.Feature(
    geometry=point,
    attributes=
    'OBJECTID': object_id,
    'PARK_NAME': 'My Park',
    'TRL_NAME': 'Foobar Trail',
    'ELEV_FT': '5000'

    )

    trailheads_layer.edit_features(adds=[feature])
    _map.draw(point)

    except Exception as e:
    print("Couldn't create the feature. ".format(str(e)))

    m.on_click(create_feature)









    share|improve this question


























      0












      0








      0








      I want to have a user add points by clicking on a map in a Jupyter Notebook and those points get pushed to a feature service.



      I'm able to accomplish that task, but I would like the user to be able to customize the attribution for the points they just added.



      I'm envisioning a pop up with the various fields that appears when the user adds a point on the map and they just type in a string. I've tried using input(), as well as ipywidgets.



      Is there another way to accomplish this?



      Most of the examples I see online are for the ArcGIS JavaScript API.



      def create_feature(_map, location):

      try:
      object_id = 1
      point = geometry.Point(location)
      feature = features.Feature(
      geometry=point,
      attributes=
      'OBJECTID': object_id,
      'PARK_NAME': 'My Park',
      'TRL_NAME': 'Foobar Trail',
      'ELEV_FT': '5000'

      )

      trailheads_layer.edit_features(adds=[feature])
      _map.draw(point)

      except Exception as e:
      print("Couldn't create the feature. ".format(str(e)))

      m.on_click(create_feature)









      share|improve this question
















      I want to have a user add points by clicking on a map in a Jupyter Notebook and those points get pushed to a feature service.



      I'm able to accomplish that task, but I would like the user to be able to customize the attribution for the points they just added.



      I'm envisioning a pop up with the various fields that appears when the user adds a point on the map and they just type in a string. I've tried using input(), as well as ipywidgets.



      Is there another way to accomplish this?



      Most of the examples I see online are for the ArcGIS JavaScript API.



      def create_feature(_map, location):

      try:
      object_id = 1
      point = geometry.Point(location)
      feature = features.Feature(
      geometry=point,
      attributes=
      'OBJECTID': object_id,
      'PARK_NAME': 'My Park',
      'TRL_NAME': 'Foobar Trail',
      'ELEV_FT': '5000'

      )

      trailheads_layer.edit_features(adds=[feature])
      _map.draw(point)

      except Exception as e:
      print("Couldn't create the feature. ".format(str(e)))

      m.on_click(create_feature)






      arcgis-python-api jupyter-notebook






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 days ago









      Kadir Şahbaz

      4,52721331




      4,52721331










      asked 2 days ago









      fpolig01fpolig01

      15311




      15311




















          0






          active

          oldest

          votes












          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317181%2fadding-features-with-attribution-to-feature-service-using-jupyter-notebooks-and%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317181%2fadding-features-with-attribution-to-feature-service-using-jupyter-notebooks-and%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

          QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

          PDF-ში გადმოწერა სანავიგაციო მენიუproject page