I am modelling delivery system of a city. the delivery branch agent's location is based on the real world coordinates. How can I make a smaller netlogo world that can clearly display all the agents in a defined area (min-x: 113.783131, max-x: 114.42618; min-y: 22.476584, max-y: 22.809712)? The current netlogo world is simply too big to make each agents visible (they all clustered in a small point)
Netlogo - make patches smaller to display clearly all agents ' locations clustered in a small area
80 Views Asked by Jack At
1
There are 1 best solutions below
Related Questions in COORDINATES
- MAUI ItemsControl+DataTemplates (like WPF)?
- BGS Groundhog software coordinate system input
- Could you please provide instructions or Code on exporting point coordinates from a CATIA product to Excel using VB?
- How to create a hexagonal grid system with each grid mapped in an array and plot it?
- Calculating borders of a rectangle
- Splitting a CSV file of coordinates into longitude and latitude ArrayLists
- GeoJSON MultiPolygon Inversion Works for All Federal Districts of Russia Except Siberia in D3.js Map
- valhalla map matching with a kafka source
- Orienting a camera that orbits spheres in JOGL2
- Made a plot in R containing two separate datasets with coordinates, but need to find the overlapping ones
- Pyhton get lat and lon data of a cartopy orthographic projection by a MouseClick event
- i need to turn an integer of coordinates in a list that need to be in a certain order into a iterable so the turtle can goto those coordinates
- QGIS export coords on mouse click in file
- Bresenham distance for shifted rows
- How to accurately translate image coordinates from Python/OpenCV to Android ImageView?
Related Questions in NETLOGO
- All turtles are mating in NetLogo even after setting a condition
- How can I tell my agents not to move outside of gis:load-dataset
- Problem with 2-condition random number assign and using length and distance in a procedure
- New To NetLogo, don't really know what I'm doing
- Is it possible to use "min-one-of" and "in-cone"/"in-radius" in the same let procedure?
- How to move a turtle to the nearest colored patch which isn't occupied?
- Procedure with "foreach" command crashes model occasionally. Does "ask turtles with [x]" affect each turtle individually?
- How do i connect a 5 patches to 5 other patches without having double connections?
- How to assign a polygon value to existent turtles inside it with NetLogo GIS extension?
- Don't Understand Brackets
- Strange decimal addition errors
- BehaviorSpace having trouble to deal with subexperiments?
- How can I plot several distributions in the same window?
- How to handle large GIS shapefiles?
- how to define the value of a variable in an interface slider instead of agent initialization?
Related Questions in PATCH
- Yocto kernel patch fails with git am
- Cargo patch to redirect registry to local path without having to call cargo login
- Sharepoint 2016 timer service cannot start after applying windows OS patch KB5035855
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- How do I update data in my JSON file using Postman?
- How do I apply this apache patch: rewrite-windows-testchar-h.patch
- How to distinguish two PATCH operations for the same enity
- Patching UEFI Pei module problems with addresses
- Marklogic versioning
- How to use New-AzConfigurationAssignment Powershell cmdlet for Dynamic Scope for different subscriptions -Azure update manager
- Patch executable is deleted by windows defender but the same was not deleted in earlier build patches
- How to make patch(1) use the answer with +++ instead of asking
- Create "git format-patch" output from existing "diff" file
- Laravel PATCH validation fails in controller
- Edite https://graph.microsoft.com/v1.0/admin/people/profileCardProperties
Related Questions in GRIDWORLD
- How to solve a gridworld problem using dp with numpy
- How can I use trials in GridWorld problem using DP?
- How to change a shape file with grids to a 2D grid world for RL?
- Implementing Sarsa(lambda) - Gridworld - in Julia language
- Python native gridworld implementation (no NumPy)
- How to represent state space when designing a grid world for reinforcement learning
- Python grid world inncorrect depth first search algorithm implementation
- Create a new Actor with Location in Gridworld
- Procedural world generation can't handle big maps
- Teach robot to collect items in grid world before reach terminal state by using reinforcement learning
- Netlogo - make patches smaller to display clearly all agents ' locations clustered in a small area
- Java JOptionPane Visual Artifact from Window Interaction
- Java Gridworld How could I call a marked class? (marker interface)
- How to make Bug object move five times using recursive function?
- How do I install/use GridWorld?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
All you need to do is write a function that rescales your x and y coordinates into the NetLogo range. Then simply call that function whenever you refer to real world coordinates. See below for functions that are independent of the number of patches in your world. You may want to fiddle with the maximums and minimums in the functions if you want to get closer to or further away from the edge. Also, I would add an error check (so the function prints a meaningful message if you accidentally try to ask for coordinates outside your predefined max and min).
Run the testme to see what it does.
UPDATE from comments: If you actually have a GIS dataset, simply load that into NetLogo using the GIS extension and set the envelope. The world will adjust.