- The ability to modify geometric networks. Nearly every gis asset we maintain is participating in a geometric network, so this is a must have.
- The ability to add annotations to a map. Word is, this is coming in 2.0, so we'll see.
- An efficient data managing interface, like ArcCatalog is not present. I regularly use the plethora of tools built into ArcCatalog and ArcMap. This includes the ability to create new datasets, networks, etc but also the management tools like Import/Export, Administration, Distributed Database, Share As... etc.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/stache" id="component"> | |
{{#if show}} | |
{{#each data as obj}} | |
<p>{{obj.value}}</p> | |
{{/each}} | |
<p ($click)="refresh">refresh</p> | |
{{#if promise.isPending}}is pending{{else}}not pending{{/if}} | |
{{#if data}}<p>we have data {{data.length}}</p>{{/if}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "can-admin-app", | |
"version": "0.1.1", | |
"lockfileVersion": 1, | |
"dependencies": { | |
"@types/express": { | |
"version": "4.0.36", | |
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.0.36.tgz", | |
"integrity": "sha512-bT9q2eqH/E72AGBQKT50dh6AXzheTqigGZ1GwDiwmx7vfHff0bZOrvUWjvGpNWPNkRmX1vDF6wonG6rlpBHb1A==", | |
"dev": true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def updateParameters(self): | |
"""Modify the values and properties of parameters before internal | |
validation is performed. This method is called whenever a parameter | |
has been changed.""" | |
if self.params[0].altered and self.params[0].value != "": | |
projectPath = self.params[0].value | |
aprx = arcpy.mp.ArcGISProject(projectPath) | |
# Get list of maps in project | |
map_list = [m.name for m in aprx.listMaps()] | |
# Populate Map param |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
These are the scripts I use to build CanJS 3 in AMD format. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define([ | |
'dojo/_base/declare', | |
'dojo/_base/lang' | |
], function (declare, lang) { | |
return declare(null, { | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import paginate from 'spectre-canjs/paginate-widget/'; | |
import scope from 'can-view-scope'; | |
new paginate(document.body, { | |
scope: new scope({ | |
pages: 2 | |
}), | |
options: new scope({ | |
}), | |
subTemplate: '' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function calculateRatedCapacity(staticPressure, residualPressure, outletDiameter, pitotReading) { | |
var outletCoefficient = 0.9; | |
var MULTIPLIER = 29.83; | |
var EXPONENT = 0.54; | |
if (outletDiameter > 2.5) { | |
outletCoefficient = 0.75; | |
} | |
var pressureToSubtract; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
identifies: { | |
wellFields: { | |
1: { | |
title: 'Petrolium', | |
//for our content formatter, we call the function, since | |
//it returns a function | |
content: formatters.relationship( | |
[{ | |
objectIdField: 'OBJECTID', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// in the top of viewer.js add these in your define block... | |
// ORDER is important and function variables need to match the list | |
define([ | |
'esri/tasks/query', | |
'esri/tasks/QueryTask', | |
'esri/SpatialReference', | |
], function(Query, QueryTask, SpatialReference){ | |
.... |